/* ============================================================
   EAT. DRINK. SHOOT POOL.  — retro three-pillar poster panel
   ============================================================ */
.edp {
  position: relative;
  background: var(--pd-teal-dark);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 56px);
  overflow: hidden;
}
.edp::before {            /* faint dotted field */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 243, 222, .06) 1.4px, transparent 1.6px);
  background-size: 30px 30px;
  pointer-events: none;
}
.edp__field-star { position: absolute; z-index: 0; opacity: .55; }

/* ---- The aged-paper panel ------------------------------------ */
.edp__panel {
  position: relative;
  z-index: 1;
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(28px, 3.4vw, 48px) clamp(22px, 3.4vw, 54px) clamp(24px, 3vw, 40px);
  border-radius: 22px;
  border: 2px solid rgba(23, 56, 59, .5);
  background-color: var(--pd-cream);
  background-image:
    radial-gradient(120% 80% at 6% 0%, rgba(255, 255, 255, .5), transparent 44%),
    radial-gradient(120% 90% at 100% 100%, rgba(201, 150, 42, .10), transparent 48%);
  box-shadow: var(--pd-shadow), inset 0 0 90px rgba(44, 44, 44, .06);
}
.edp__panel::before {    /* paper grain */
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.edp__panel::after {     /* inner teal rule */
  content: "";
  position: absolute; inset: 11px; border-radius: 15px; pointer-events: none;
  border: 2px solid var(--pd-teal);
}
.edp__corner { position: absolute; z-index: 4; width: 34px; height: 34px; color: var(--pd-red); }
.edp__corner--tl { top: 18px; left: 20px; }
.edp__corner--tr { top: 18px; right: 20px; transform: scaleX(-1); }
.edp__corner--bl { bottom: 18px; left: 20px; transform: scaleY(-1); }
.edp__corner--br { bottom: 18px; right: 20px; transform: scale(-1); }

/* ---- Header -------------------------------------------------- */
.edp__head { position: relative; z-index: 2; text-align: center; margin-bottom: clamp(22px, 3vw, 36px); }
.edp__eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--font-script); color: var(--pd-red);
  font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1;
}
.edp__eyebrow .edp-rays { color: var(--pd-teal); flex: none; }
.edp__eyebrow .edp-rays:last-of-type { transform: scaleX(-1); }
.edp__title {
  display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.6vw, 22px);
  font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark);
  font-size: clamp(2.3rem, 6vw, 4.1rem); line-height: 1; letter-spacing: -.015em;
  margin: .12em 0 .26em;
}
.edp__title .star { font-size: clamp(18px, 2.4vw, 30px); }
.edp__sub {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: clamp(.66rem, 1.3vw, .82rem); color: var(--pd-ink-60);
}
.edp__rule { display: flex; align-items: center; justify-content: center; gap: 14px; max-width: 320px; margin: 16px auto 0; }
.edp__rule::before, .edp__rule::after { content: ""; flex: 1; height: 2px; background: rgba(23, 56, 59, .3); }
.edp__rule .star { font-size: 14px; }

/* ---- Three pillars ------------------------------------------- */
.edp__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 28px);
}
.col {
  display: flex; flex-direction: column;
  border: 2px solid var(--pd-teal);
  border-radius: 13px;
  padding: clamp(20px, 2.2vw, 30px) clamp(18px, 2vw, 26px) clamp(18px, 2vw, 24px);
  box-shadow: inset 0 0 0 3px var(--pd-cream), inset 0 0 0 4.5px rgba(23, 56, 59, .12);
}
.col__top { text-align: center; }
.col__media { position: relative; width: clamp(132px, 12vw, 154px); margin: 4px auto 12px; }
.edp-circle {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: visible;
  background: var(--pd-teal-soft);
  box-shadow: 0 0 0 4px var(--pd-cream), 0 0 0 6.5px var(--pd-red), var(--pd-shadow-sm);
}
.edp-circle image-slot { display: block; width: 100%; height: 100%; }
.col__rays { position: absolute; top: 50%; transform: translateY(-50%); color: var(--pd-teal); opacity: .8; }
.col__rays--l { left: -30px; }
.col__rays--r { right: -30px; transform: translateY(-50%) scaleX(-1); }
.edp-seal { position: absolute; top: -8px; right: -16px; width: clamp(62px, 6vw, 74px); height: clamp(62px, 6vw, 74px); z-index: 3; filter: drop-shadow(0 4px 6px rgba(44,44,44,.25)); }
.edp-seal svg { width: 100%; height: 100%; display: block; }
.edp-seal--red svg polygon { fill: var(--pd-red); }
.edp-seal--teal svg polygon { fill: var(--pd-teal); }
.edp-seal__t {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  font-family: var(--font-label); font-weight: 900; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(.5rem, .85vw, .58rem); color: #fff; line-height: 1.08;
}
.col__title {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem); line-height: 1; margin: 0 0 10px;
}
.col__title .star { font-size: 13px; }
.col__desc {
  font-family: var(--font-body); color: var(--pd-ink-60);
  font-size: clamp(.85rem, 1.1vw, .94rem); line-height: 1.5; margin: 0 auto;
  max-width: 30ch; text-wrap: pretty; min-height: 7.5em;
}
.col__list { margin: clamp(14px, 1.8vw, 20px) 0 0; padding-top: 14px; border-top: 2px dotted rgba(23, 56, 59, .26); }
.edp-feat { display: flex; align-items: center; gap: 13px; padding: 12px 0; min-height: 84px; box-sizing: border-box; }
.edp-feat + .edp-feat { border-top: 2px dotted rgba(23, 56, 59, .26); }
.edp-feat__ic { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--pd-teal); display: grid; place-items: center; }
.edp-feat__ic svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.edp-feat__ic svg.is-fill { fill: #fff; stroke: none; }
.edp-feat__t { font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark); font-size: 1.04rem; line-height: 1.1; }
.edp-feat__d { font-family: var(--font-body); color: var(--pd-ink-60); font-size: .84rem; line-height: 1.35; margin-top: 1px; }

/* shared button */
.edp-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; margin-top: 16px; border: none; cursor: pointer;
  background: var(--pd-red); color: #fff;
  font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  font-size: clamp(.74rem, 1vw, .86rem); padding: 14px 18px; border-radius: var(--r-sm);
  box-shadow: var(--pd-shadow-sm); transition: background .16s ease, transform .12s ease;
}
.edp-btn:hover { background: var(--pd-red-dark); }
.edp-btn:active { transform: scale(.97); }
.edp-btn--teal { background: var(--pd-teal); }
.edp-btn--teal:hover { background: #3a958c; }
.edp-btn .star { font-size: 14px; }
.col .edp-btn { margin-top: auto; }
.col__list { margin-bottom: 16px; }

/* ---- Footer bar ---------------------------------------------- */
.edp__foot {
  position: relative; z-index: 2; margin-top: clamp(18px, 2vw, 26px);
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  border: 2px solid var(--pd-teal); border-radius: 13px;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.6vw, 34px);
}
.edp__juke { flex: none; width: clamp(66px, 6vw, 84px); }
.edp__juke svg { width: 100%; height: auto; display: block; }
.edp__footcopy { flex: 1; min-width: 0; }
.edp__footcopy h3 { font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark); font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1; margin: 0 0 6px; }
.edp__footcopy p { font-family: var(--font-body); color: var(--pd-ink-60); font-size: clamp(.9rem, 1.2vw, 1rem); line-height: 1.4; margin: 0; }
.edp__footdiv { flex: none; align-self: stretch; width: 0; border-left: 2px dotted rgba(23, 56, 59, .3); margin: 4px 0; }
.edp__footbtns { flex: none; display: flex; gap: 14px; }
.edp__footbtns .edp-btn { width: auto; margin-top: 0; padding: 14px 22px; }

/* ---- Responsive ---------------------------------------------- */
@media (max-width: 940px) {
  .edp__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .col .edp-btn { margin-top: 16px; }
}
@media (max-width: 760px) {
  .edp__foot { flex-direction: column; text-align: center; }
  .edp__footcopy { text-align: center; }
  .edp__footdiv { display: none; }
  .edp__footbtns { flex-wrap: wrap; justify-content: center; }
  .edp__footbtns .edp-btn { flex: 1 1 auto; }
}
@media (max-width: 480px) {
  .edp__title { flex-wrap: wrap; gap: 8px; }
  .edp__title .star { display: none; }
}
