/* ============================================================
   EVENTASTIC INSIDERS — section-specific styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--navy-ink) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-line);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.nav__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; gap: 28px;
}
.wordmark {
  font-family: var(--display); text-transform: uppercase;
  color: var(--white); text-decoration: none; line-height: 1;
  display: flex; flex-direction: column; gap: 6px; font-size: 22px; letter-spacing: .02em;
}
.wordmark__sub { color: var(--accent); font-size: 12px; letter-spacing: .34em; line-height: 1; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  color: var(--navy-soft); text-decoration: none; font-weight: 600; font-size: 15px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta { padding: 12px 22px; }
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
}

/* ---------- HERO ---------- */
.hero { overflow: hidden; padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 460px at 88% 8%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(700px 520px at 0% 100%, rgba(47,180,87,0.10), transparent 70%);
}
.hero__inner {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: clamp(34px, 4.5vw, 60px); text-align: center;
  max-width: 1180px; padding: 0 var(--pad-x);
}
.hero__copy { max-width: 920px; width: 100%; }
.hero__title { margin: 6px 0 22px; text-align: left; }
.hero__lead { margin: 0 auto 32px; font-size: clamp(19px, 1.7vw, 24px); color: #fff; opacity: .92; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__meta { display: inline-flex; gap: clamp(24px, 5vw, 56px); margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--navy-line); justify-content: center; }
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-item .display { font-family: var(--display); color: var(--accent); font-size: clamp(34px, 4vw, 52px); line-height: .9; }
.hero__meta-item small { color: var(--navy-soft); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; max-width: 12ch; }

.hero__media { position: relative; width: 100%; }
.hero__video {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--navy-line);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  background: #000;
}
.hero__video-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.hero__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(64px, 7vw, 92px); height: clamp(64px, 7vw, 92px); border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 16px 50px rgba(0,0,0,0.45); transition: transform .15s ease, opacity .25s ease;
}
.hero__play::after { content: ""; border-left: 26px solid var(--navy-ink); border-top: 15px solid transparent; border-bottom: 15px solid transparent; margin-left: 6px; }
.hero__play:hover { transform: translate(-50%, -50%) scale(1.07); }
.hero__video.is-playing .hero__play { opacity: 0; pointer-events: none; }

/* ---------- SECTION HEADERS ---------- */
.sec-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: none; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; max-width: none; }
.sec-head--wide { max-width: none; }

/* ---------- PROBLEM ---------- */
.problem-grid { margin-bottom: 44px; }
.prob-card {
  background: var(--white); border: 1px solid var(--ink-line);
  border-radius: 10px; padding: clamp(26px, 3vw, 38px);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prob-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(14,42,56,0.12); border-color: transparent; }
.prob-card:hover::before { transform: scaleY(1); }
.prob-card__num {
  font-family: var(--display); font-size: 30px; color: var(--accent-deep);
  -webkit-text-stroke: 1px var(--navy-ink); display: block; margin-bottom: 14px;
}
.prob-card__title { font-size: clamp(20px, 1.9vw, 26px); font-weight: 800; margin-bottom: 12px; line-height: 1.15; color: var(--navy-ink); }

/* Mobile only: sticky card-stack effect. Cards stick just below the nav and the
   next card scrolls up to overlap. Desktop grid layout is untouched. */
@media (max-width: 767px) {
  .problem-grid { display: block; }
  .problem-grid .prob-card {
    position: sticky;
    top: 80px;
    background: var(--white);
    box-shadow: 0 6px 24px rgba(14, 42, 56, 0.18);
    margin-bottom: 24px;
  }
}
.bridge { font-size: clamp(20px, 2.3vw, 30px); font-weight: 700; color: var(--navy-ink); max-width: none; line-height: 1.25; }

/* ---------- STORY (S3) ---------- */
.story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.story__copy h2 { margin: 8px 0 26px; }
.story__body { display: flex; flex-direction: column; gap: 16px; max-width: 52ch; }
.story__body strong { color: #fff; }
.story__sign { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: 22px; color: var(--accent); margin: 30px 0 0; }
.story__photo { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--navy-line); box-shadow: 0 30px 70px rgba(0,0,0,0.4); width: 100%; }
.story__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
@media (max-width: 920px) {
  /* Collapse to a single column. minmax(0, 1fr) (not plain 1fr) lets the track
     shrink to the container instead of being forced wider by the image / long
     headline words; min-width: 0 on the items defeats their default
     min-width: auto. Together this keeps the section within the page's padding
     and centered, instead of overflowing to the right. */
  .story { grid-template-columns: minmax(0, 1fr); }
  .story__copy, .story__media { min-width: 0; max-width: 100%; }
  .story__media { order: -1; }
  .story__media .ph { min-height: 320px !important; aspect-ratio: 16/10 !important; }
  .story__photo { min-height: 340px !important; aspect-ratio: 4/3 !important; max-width: 100%; }
  /* #why uses an inline full-height image treatment for the desktop two-column
     layout. On mobile (single column) that skews the photo sizing and section
     symmetry, so neutralize it: equal left/right padding, centered, no distortion. */
  #why .story { align-items: center !important; }
  #why .story__photo { height: auto !important; }
}

/* ---------- OFFER (S4) ---------- */
.offer { text-align: left; }
.offer__lead { font-size: clamp(19px, 2vw, 26px); font-weight: 600; color: var(--navy-ink); line-height: 1.4; margin: 0 0 30px; text-align: center; }
.offer__pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 0 30px; }
.offer__pill { background: var(--white); border: 1px solid var(--ink-line); border-radius: 999px; padding: 12px 22px; font-weight: 600; color: var(--navy-muted); font-size: 15px; }
.offer__pill b { color: var(--navy-ink); }
.offer__close { font-size: clamp(17px, 1.5vw, 20px); color: var(--navy-muted); line-height: 1.6; margin: 0 0 34px; max-width: none; }
.offer > .btn { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
/* Mobile: the pills duplicate the body copy directly below them (50 members,
   application only, curated, guided by Jay), so hide them; make the CTA full-width.
   Desktop is untouched. */
@media (max-width: 767px) {
  #offer .offer__pills { display: none; }
  #offer .offer > .btn { width: 100%; justify-content: center; }
}

/* ---------- WHAT'S INCLUDED (S5) ---------- */
.incl-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.incl-head__note { max-width: 34ch; }
.incl-grid { margin-bottom: clamp(40px, 5vw, 56px); }
.incl-card {
  background: color-mix(in srgb, #fff 4%, var(--navy-ink));
  border: 1px solid var(--navy-line); border-radius: 12px;
  padding: clamp(24px, 2.4vw, 32px); display: flex; flex-direction: column;
  position: relative; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.incl-card:hover { transform: translateY(-4px); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, var(--navy-ink)); }
.incl-card__icon {
  width: 50px; height: 50px; border-radius: 10px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent);
  font-size: 24px; margin-bottom: 18px;
}
.incl-card__title { font-size: clamp(18px, 1.5vw, 21px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.incl-card__desc { font-size: 15.5px; color: var(--navy-soft); line-height: 1.55; margin: 0 0 18px; flex: 1; }
.incl-card__val { font-family: var(--display); color: var(--accent); font-size: 22px; letter-spacing: .01em; }
.incl-card--bonus { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, var(--navy-ink)); }
.incl-card__flag { display: inline-block; align-self: flex-start; background: var(--accent); color: var(--navy-ink); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }

/* Mobile only: sticky card-stack for the What's Included cards (mirrors the problem
   section). Cards stick just below the nav and the next card scrolls up to overlap.
   The value bar sits outside .incl-grid, so it scrolls normally below. Cards already
   carry an opaque background; the shadow adds the layered look. Desktop untouched. */
@media (max-width: 767px) {
  .incl-grid { display: block; }
  .incl-grid .incl-card {
    position: sticky;
    top: 80px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    margin-bottom: 24px;
  }
}

.value-bar {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap;
  background: var(--navy-deep); border: 1px solid var(--navy-line);
  border-radius: 14px; padding: clamp(26px, 3vw, 38px) clamp(28px, 4vw, 48px);
}
.value-bar__label { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--navy-soft); margin-bottom: 6px; }
.value-bar__num { font-family: var(--display); font-size: clamp(34px, 4vw, 54px); line-height: .9; color: #fff; }
.value-bar__num--price { color: var(--accent); }
.value-bar__div { width: 1px; align-self: stretch; background: var(--navy-line); }
.value-bar__cta { margin-left: auto; }
@media (max-width: 720px) { .value-bar__div { display: none; } .value-bar__cta { margin-left: 0; } }

/* ---------- PAYS FOR ITSELF (S6) ---------- */
/* .math inherits the .wrap container width (1100px, centered) */
.math-grid { margin-bottom: clamp(36px, 4vw, 48px); }
.math-card {
  background: var(--white); border: 1px solid var(--ink-line); border-radius: 12px;
  padding: clamp(28px, 3vw, 40px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.math-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--accent); }
.math-card__big { font-family: var(--display); color: var(--navy-ink); font-size: clamp(64px, 9vw, 108px); line-height: .82; }
.math-card:nth-child(3) .math-card__big { color: var(--accent-deep); -webkit-text-stroke: 2px var(--navy-ink); }
.math-card__cap { font-size: 16px; color: var(--navy-muted); margin: 0; max-width: 22ch; line-height: 1.4; }
.math-card__cap b { color: var(--navy-ink); }

/* Mobile only: sticky card-stack for the three math cards (mirrors the problem /
   What's Included cards). Cards stick just below the nav and the next scrolls up to
   overlap; everything after .math-grid scrolls normally below. Cards already carry an
   opaque white background; the shadow adds the layered look. Desktop untouched. */
@media (max-width: 767px) {
  .math-grid { display: block; }
  .math-grid .math-card {
    position: sticky;
    top: 80px;
    box-shadow: 0 6px 24px rgba(14, 42, 56, 0.18);
    margin-bottom: 24px;
  }
}
.math__q {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; line-height: 1.4; color: var(--navy-ink);
  max-width: 60ch; margin: 0 0 clamp(44px, 5vw, 60px); text-align: left;
}
.math__q em { font-style: italic; }
.math__q-duh {
  display: inline-block; margin: 0.4em 0;
  font-size: 1em; font-weight: 800; line-height: 1.1;
  background: #C9F24E; color: #0E2A38;
  padding: 0.08em 0.4em; border-radius: 6px;
}

.upside { background: var(--navy-ink); border-radius: 16px; padding: clamp(32px, 4vw, 52px); color: #fff; margin-bottom: clamp(40px, 5vw, 56px); }
.upside__head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.upside__head h3 { color: #fff; }
.upside__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; }
.upside__list li { position: relative; padding-left: 34px; font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; line-height: 1.4; color: var(--navy-soft); }
.upside__list li::before {
  content: "↑"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px;
  background: var(--accent); color: var(--navy-ink); border-radius: 6px;
  display: grid; place-items: center; font-weight: 900; font-size: 14px;
}
.upside__list em { color: #fff; font-style: italic; }
@media (max-width: 700px) { .upside__list { grid-template-columns: 1fr; } }

.price-statement { text-align: center; max-width: none; margin: 0; }
.price-statement h3 { margin-bottom: 18px; }
.price-statement__sub { margin: 0 auto 30px; max-width: 50ch; }
.price-statement > .btn { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
/* Mobile only: left-align the investment statement (headline, body, button) and make
   the CTA full-width — centered text is hard to read on small screens. Desktop untouched. */
@media (max-width: 767px) {
  .price-statement { text-align: left; }
  .price-statement__sub { margin-left: 0; margin-right: 0; }
  .price-statement > .btn { width: 100%; justify-content: center; margin-left: 0; margin-right: 0; }
}

/* ---------- IS THIS FOR YOU (S7) ---------- */
.fit-grid { align-items: stretch; }
.fit-card { background: var(--white); border-radius: 14px; padding: clamp(28px, 3vw, 44px); border: 1px solid var(--ink-line); border-top-width: 6px; }
.fit-card--yes { border-top-color: var(--green); }
.fit-card--no { border-top-color: var(--red); }
.fit-card__title { font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: var(--navy-ink); margin-bottom: 22px; }
.fit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.fit-list li { position: relative; padding-left: 40px; font-size: clamp(16px, 1.35vw, 18px); line-height: 1.45; color: var(--navy-muted); }
.fit-list li::before { position: absolute; left: 0; top: -2px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 15px; }
.fit-list--yes li::before { content: "✓"; background: color-mix(in srgb, var(--green) 16%, transparent); color: var(--green); }
.fit-list--no li::before { content: "✕"; background: color-mix(in srgb, var(--red) 14%, transparent); color: var(--red); }

/* Mobile only: sticky card-stack for the two "Is This For You" cards (mirrors the
   problem / What's Included / math cards). "Perfect for you" pins below the nav and
   "Not a fit" scrolls up to overlap it. Cards already carry an opaque white
   background; the shadow adds the layered look. Desktop untouched. */
@media (max-width: 767px) {
  .fit-grid { display: block; }
  .fit-grid .fit-card {
    position: sticky;
    top: 80px;
    box-shadow: 0 6px 24px rgba(14, 42, 56, 0.18);
    margin-bottom: 24px;
  }
}

/* ---------- STORY reverse (S8) ---------- */
.story--reverse .story__media { order: 1; }
.story--reverse .story__copy { order: 0; }
@media (max-width: 920px) { .story--reverse .story__media { order: -1; } }

/* ---------- HOW TO GET IN (S9) ---------- */
/* .getin inherits the .wrap container width (1100px, centered) */
.getin__intro { text-align: left; font-size: clamp(17px, 1.6vw, 20px); color: var(--navy-muted); max-width: 70ch; margin: 0 0 clamp(40px, 5vw, 56px); line-height: 1.55; }
.steps { counter-reset: step; }
.step {
  background: var(--off-white); border: 1px solid var(--ink-line); border-radius: 12px;
  padding: clamp(24px, 2.4vw, 32px); position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(14,42,56,0.12); }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--navy-ink);
  font-family: var(--display); font-size: 26px; display: grid; place-items: center; margin-bottom: 18px;
}
.step__title { font-size: clamp(17px, 1.5vw, 20px); font-weight: 800; color: var(--navy-ink); line-height: 1.2; margin-bottom: 10px; }
.step__desc { font-size: 15.5px; color: var(--navy-muted); line-height: 1.5; margin: 0; }

/* Mobile only: sticky card-stack for the four application step cards (mirrors the
   problem / What's Included / math / fit cards). Each step pins below the nav and the
   next scrolls up to overlap it; the CTA below sits outside .steps and scrolls
   normally. Cards already carry an opaque background; the shadow adds the layered
   look. Desktop untouched. */
@media (max-width: 767px) {
  .steps { display: block; }
  .steps .step {
    position: sticky;
    top: 80px;
    box-shadow: 0 6px 24px rgba(14, 42, 56, 0.18);
    margin-bottom: 24px;
  }
}
.getin__cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---------- FAQ (S10) ---------- */
/* .faq-wrap inherits the .wrap container width (1100px, centered) */
.faq-head { text-align: center; margin-left: auto; margin-right: auto; max-width: none; }
.faq__item { border-bottom: 1px solid var(--navy-line); }
.faq__item:first-child { border-top: 1px solid var(--navy-line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--body); font-weight: 700; color: #fff;
  font-size: clamp(17px, 1.7vw, 22px); padding: 26px 48px 26px 0; position: relative;
  display: flex; align-items: center; transition: color .15s ease;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { position: absolute; right: 4px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease; }
.faq__icon::before { left: 0; right: 0; top: 8px; height: 3px; }
.faq__icon::after { top: 0; bottom: 0; left: 8px; width: 3px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0 0 28px; color: var(--navy-soft); font-size: clamp(15.5px, 1.4vw, 18px); line-height: 1.65; max-width: 64ch; }

/* ---------- FOOTER (S11) ---------- */
.footer { padding-bottom: 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 90px); padding-bottom: clamp(48px, 6vw, 72px); }
.wordmark--lg { font-size: 30px; gap: 9px; }
.wordmark--lg .wordmark__sub { font-size: 13px; letter-spacing: .3em; margin-top: 0; }
.footer__tag { color: var(--navy-soft); font-size: 17px; margin: 18px 0 26px; max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-family: var(--body); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--accent); margin-bottom: 6px; }
.footer__col a { color: var(--navy-soft); text-decoration: none; font-size: 16px; font-weight: 500; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__legal {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--navy-line); padding-top: 26px; padding-bottom: 30px;
  color: var(--navy-soft); font-size: 14px;
}
.footer__legal-links { display: flex; gap: 22px; }
.footer__legal-links a { color: var(--navy-soft); text-decoration: none; }
.footer__legal-links a:hover { color: var(--accent); }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; } }

/* ============================================================
   HERO LAYOUT VARIANTS (Tweaks)
   Base = centered cinematic stack (copy, then full-width landscape video).
   ============================================================ */
/* Split: copy left, video right */
body[data-hero-layout="split"] .hero__inner { flex-direction: row; flex-wrap: wrap; align-items: center; text-align: left; max-width: 1320px; }
body[data-hero-layout="split"] .hero__copy { max-width: none; flex: 1 1 320px; }
body[data-hero-layout="split"] .hero__media { flex: 1 1 360px; }
body[data-hero-layout="split"] .hero__meta { flex: 1 1 100%; justify-content: center; }
body[data-hero-layout="split"] .hero__lead { margin-left: 0; margin-right: 0; }
body[data-hero-layout="split"] .hero__actions { justify-content: flex-start; }
@media (max-width: 920px) {
  body[data-hero-layout="split"] .hero__inner { flex-direction: column; text-align: center; }
  body[data-hero-layout="split"] .hero__copy { max-width: 920px; }
  body[data-hero-layout="split"] .hero__lead { margin-left: auto; margin-right: auto; }
  body[data-hero-layout="split"] .hero__actions,
  body[data-hero-layout="split"] .hero__meta { justify-content: center; }
}

/* Centered: copy left-aligned to match headline; video stays centered */
body[data-hero-layout="centered"] .hero__copy { text-align: left; }
body[data-hero-layout="centered"] .hero__lead { margin-left: 0; margin-right: 0; }
body[data-hero-layout="centered"] .hero__actions { justify-content: flex-start; }

/* Minimal: text only, no video */
body[data-hero-layout="minimal"] .hero__media { display: none; }
body[data-hero-layout="minimal"] .hero { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tw-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 268px; background: #0E2A38; color: #fff;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
  font-family: 'Figtree', system-ui, sans-serif;
  display: none; overflow: hidden;
}
.tw-panel.is-open { display: block; }
.tw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; cursor: grab; user-select: none;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tw-head:active { cursor: grabbing; }
.tw-title { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 16px; }
.tw-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; }
.tw-close:hover { color: #fff; }
.tw-body { padding: 16px; }
.tw-sec { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin: 4px 0 10px; }
.tw-sec:not(:first-child) { margin-top: 20px; }
.tw-swatches { display: flex; gap: 10px; }
.tw-sw { width: 38px; height: 38px; border-radius: 9px; background: var(--sw); border: 2px solid transparent; cursor: pointer; padding: 0; transition: transform .12s ease; position: relative; }
.tw-sw:hover { transform: scale(1.08); }
.tw-sw.is-on { border-color: #fff; box-shadow: 0 0 0 2px #0E2A38, 0 0 0 4px var(--sw); }
.tw-row { display: flex; align-items: center; gap: 12px; }
.tw-range { flex: 1; accent-color: var(--accent); height: 4px; }
.tw-val { font-weight: 700; font-size: 13px; min-width: 40px; text-align: right; color: var(--accent); }
.tw-seg { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; background: rgba(255,255,255,0.06); padding: 4px; border-radius: 9px; }
.tw-seg button { background: none; border: none; color: rgba(255,255,255,0.65); font-family: inherit; font-weight: 700; font-size: 12px; padding: 8px 4px; border-radius: 6px; cursor: pointer; transition: all .12s ease; }
.tw-seg button:hover { color: #fff; }
.tw-seg button.is-on { background: var(--accent); color: #0E2A38; }
