/* ============================================================
   Think Thick — storefront system, structure replicated from lemmelive.com
   Layout, spacing, and palette match the reference site;
   fonts are free substitutes (Fraunces ≈ Recoleta,
   Schibsted Grotesk ≈ Mier A).
   ============================================================ */

:root {
  --bg: #FBC8E4;            /* page candy pink */
  --bg-card: #FDF0F7;       /* light card */
  --ink: #000;
  --white: #fff;
  --indigo: #A50C61;        /* giveaway banner — berry */
  --indigo-deep: #7C0847;
  --lime: #C5FF89;          /* accent green */
  --panel-dark: #160A10;    /* leave-out panel */
  --radius-card: 25px;
  --radius-pill: 48px;
  --border: 1.6px solid var(--ink);
  --font-serif: 'Fraunces', georgia, serif;
  --font-sans: 'Schibsted Grotesk', helvetica, arial, sans-serif;
  --header-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { max-width: 1424px; margin: 0 auto; padding: 0 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- type ---------- */
.h-serif { font-family: var(--font-serif); font-weight: 500; line-height: 1; }

.section-title {
  font-size: clamp(40px, 4.2vw, 60px);
  text-align: center;
}

.section-sub { text-align: center; font-size: 18px; margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  padding: 10px 40px;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-outline { background: var(--white); border: var(--border); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-black { background: var(--ink); color: var(--white); }
.btn-black:hover { background: #2b2b2b; }

.btn-lime { background: var(--lime); color: var(--ink); padding: 16px 86px; text-transform: none; font-size: 16px; }
.btn-lime:hover { background: #b7f573; }

.btn-white { background: var(--white); border: var(--border); text-transform: none; }

.btn-sm { padding: 9px 32px; font-size: 15px; }

.link-plain { font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.nav {
  height: var(--header-h);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
}

.nav-left, .nav-right { display: flex; align-items: center; gap: 34px; }
.nav-right { justify-content: flex-end; }

.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .01em; color: var(--white); white-space: nowrap;
}
.nav-link:hover { opacity: .75; }

.icon-plus { width: 11px; height: 11px; fill: currentColor; }
.icon-chev { width: 11px; height: 8px; }

.logo {
  font-family: 'Anton', 'Schibsted Grotesk', sans-serif;
  font-size: 30px; font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  display: inline-block;
  transform: skewX(-4deg) scaleY(1.08);
  color: var(--white); line-height: 1; white-space: nowrap;
}

.bag { position: relative; }
.bag-count {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  font-size: 13px; font-weight: 700;
}

/* shop dropdown */
.nav-item.has-menu { position: relative; }
.shop-menu {
  position: absolute; top: calc(100% + 18px); left: -20px;
  background: var(--white); color: var(--ink);
  border: var(--border); border-radius: 16px;
  padding: 18px 0; min-width: 260px;
  display: none; flex-direction: column;
}
.shop-menu.open { display: flex; }
.shop-menu a { padding: 9px 24px; font-weight: 700; }
.shop-menu a:hover { background: #FBE4F1; }
.shop-menu .menu-all { border-top: 1px solid #F3D2E4; margin-top: 10px; padding-top: 16px; }

/* burger (mobile) */
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { width: 22px; height: 2.5px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--ink); color: var(--white);
  padding: 8px 32px 20px;
}
.mobile-menu a { padding: 12px 0; font-weight: 700; text-transform: uppercase; border-bottom: 1px solid #222; }
.mobile-menu.open { display: flex; }

/* ---------- lime ticker ---------- */
.ticker { background: var(--lime); overflow: hidden; padding: 7px 0; }
.ticker-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px;
  padding-right: 28px;
  font-size: 13.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; white-space: nowrap;
}
.ticker-item::after {
  content: "\2726"; /* four-pointed star */
  font-size: 15px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- indigo giveaway banner ---------- */
.giveaway-banner {
  background: var(--indigo); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 24px;
  padding: 18px 48px;
}
.gb-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px); line-height: 1.05;
  text-align: center;
}
.gb-copy { font-size: 18px; text-align: center; line-height: 1.5; }
.gb-link { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 12px 0 32px; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center; gap: 40px;
}

.hero-copy h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(52px, 5.6vw, 80px); line-height: 1;
  letter-spacing: -.01em;
}

.squiggle { width: min(470px, 90%); height: 22px; margin-top: 10px; display: none; /* waves hidden per request — remove this line to restore */ }
.hero-copy .squiggle { width: min(380px, 80%); margin: 6px 0 0; }
.hero-copy .squiggle path { animation: squiggle-wave 3.6s linear infinite; }
@keyframes squiggle-wave { to { transform: translateX(-60px); } }
.wave-under .squiggle-sm { position: absolute; left: 0; bottom: -0.3em; width: 100%; height: 0.34em; margin: 0; }
.squiggle-sm path { animation: squiggle-wave-sm 3.6s linear infinite; }
@keyframes squiggle-wave-sm { to { transform: translateX(-36px); } }
.wave-under { position: relative; display: inline-block; }
.wave-under .squiggle-md { position: absolute; left: 0; bottom: -0.5em; width: 100%; height: 0.44em; margin: 0; }
.squiggle-md path { animation: squiggle-wave-md 3.6s linear infinite; }
@keyframes squiggle-wave-md { to { transform: translateX(-44px); } }

.hero-sub { max-width: 42ch; margin: 22px 0 0; font-size: 17px; }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }

.hero-art img { width: 100%; height: auto; display: block; border-radius: var(--radius-card); border: var(--border); }

.hero-spark {
  position: absolute; left: -60px; top: 90px;
  width: 150px; height: 150px; fill: var(--white);
}

/* ============================================================
   GIVEAWAY SECTION
   ============================================================ */
.giveaway { padding: 60px 0 90px; }

.giveaway-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 70px; align-items: center;
}

.giveaway-copy .h-serif { font-size: clamp(36px, 3.6vw, 48px); margin: 14px 0 18px; }
.giveaway-sub { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-bottom: 14px; }
.giveaway-copy > p:not(.giveaway-sub) { max-width: 52ch; }
.giveaway-copy .btn { margin-top: 30px; }

.giveaway-art {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--border);
}
.giveaway-art img, .giveaway-art svg { width: 100%; height: auto; display: block; }

/* ============================================================
   CURRENT FAVES
   ============================================================ */
.faves { padding: 40px 0 90px; }

.product-grid {
  display: grid; grid-template-columns: min(360px, 100%);
  justify-content: center;
  gap: 40px; margin-top: 60px;
}

.product-card { text-align: center; display: flex; flex-direction: column; align-items: center; }

.product-media { width: min(230px, 80%); transition: transform .25s ease; position: relative; display: block; }
.product-media svg { position: relative; display: block; }
.product-photo { position: relative; display: block; width: 100%; height: auto; transform: rotate(-6deg); }
.product-card:hover .product-photo { animation: photo-float 2.2s ease-in-out infinite; }
@keyframes photo-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}
.media-hover-bg { position: absolute; top: 50%; left: 50%; width: 150%; transform: translate(-50%, -50%) scale(.8); opacity: 0; transition: opacity .3s ease, transform .3s ease; pointer-events: none; }
.product-card:hover .media-hover-bg { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.product-card:hover .product-media { transform: translateY(-8px); }

.product-name {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 27px; line-height: 1.2;
  text-transform: uppercase;
  margin-top: 26px;
  max-width: 17ch;
}
.product-sub { margin-top: 8px; }
.product-price { font-weight: 700; margin: 14px 0 22px; }

/* label tints (inherited by <use href="#bottle">) */
.tint-max     { --cap: #FBDCEC; --glass: #F4AED3; --contents: #C2185B; --accent: #C5FF89; }
.tint-booty   { --cap: #FBDCEC; --glass: #F1A2CB; --contents: #D6127F; --accent: #C5FF89; }
.tint-hsn     { --cap: #FBDCEC; --glass: #F6C0DC; --contents: #C97A1E; --accent: #F7E463; }
.tint-sleep   { --cap: #FBDCEC; --glass: #DDBCE9; --contents: #52427E; --accent: #9FB9F2; }
.tint-debloat { --cap: #FBDCEC; --glass: #EFB6D8; --contents: #2F8F6B; --accent: #BFF2DC; }

.gummy-pink { --g1: #C2185B; --g2: #EE58A7; }
.gummy-red  { --g1: #D1453C; --g2: #E8604F; }

/* ============================================================
   RESULTS
   ============================================================ */
.results { padding: 40px 0 90px; }

.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 34px; margin-top: 60px;
}

.result-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}

.result-art { border-bottom: var(--border); }
.result-art svg { width: 100%; height: auto; }

.result-body {
  padding: 30px 26px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.result-body p { font-size: 19px; font-weight: 700; line-height: 1.35; }

.check-dot {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--lime); border: var(--border);
}
.check-dot svg { width: 16px; height: 16px; }

.stars { display: flex; gap: 4px; }
.stars svg { width: 26px; height: 26px; fill: #F5C518; }

/* ============================================================
   WHAT WE LEAVE OUT
   ============================================================ */
.leave-out { padding: 40px 0 90px; }

.leave-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 50px 60px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}

.leave-copy .h-serif { font-size: clamp(40px, 3.8vw, 58px); }
.leave-sub { margin-top: 18px; font-size: 17px; }

.leave-panel {
  background: var(--panel-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 48px 56px;
}
.leave-panel ul {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 44px;
}
.leave-panel li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em;
}
.leave-panel s { text-decoration-thickness: 2px; }
.x-mark { font-size: 20px; line-height: 1; }

/* ============================================================
   SUBSCRIBE
   ============================================================ */
.subscribe { padding: 40px 0 90px; }

.subscribe-card {
  position: relative;
  background: linear-gradient(120deg, #FDE4F1 0%, #F8C4DF 55%, #F4B2D5 100%);
  border: var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
}
.subscribe-swirl {
  position: absolute; inset: 0; width: 100%; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 45%, rgba(0, 0, 0, .3) 62%, transparent 90%);
  mask-image: linear-gradient(90deg, #000 45%, rgba(0, 0, 0, .3) 62%, transparent 90%);
}
.subscribe-copy { position: relative; }

.subscribe-art { align-self: center; padding: 40px 0 40px 40px; position: relative; }
.subscribe-swirl { position: absolute; inset: 0; width: 100%; height: 100%; }
.subscribe-art img { width: 100%; height: auto; object-fit: contain; display: block; position: relative; }

.subscribe-copy { padding: 70px 80px 70px 30px; }
.subscribe-copy .h-serif { font-size: clamp(40px, 4vw, 58px); }
.subscribe-sub { margin: 20px 0 30px; font-size: 17px; }

.perk-grid {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
  margin-bottom: 38px;
}
.perk-grid li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.perk-icon {
  flex: none;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border: var(--border); border-radius: 50%;
  background: var(--white);
}
.perk-icon svg { width: 22px; height: 22px; }

/* ============================================================
   LINEUP BANNER
   ============================================================ */
.lineup { padding: 40px 0 110px; }

.lineup-card {
  background:
    linear-gradient(90deg, #F9C6D0 0 28%, rgba(249, 198, 208, 0) 44%),
    url("../img/lineup-banner.png") right center / contain no-repeat,
    #F9C6D0;
  height: 420px;
  border: var(--border);
  border-radius: var(--radius-card);
  display: grid;
  align-items: center;
  padding: 60px 50px;
}

.lineup-title { font-size: clamp(30px, 2.9vw, 42px); text-transform: uppercase; letter-spacing: .01em; }
.lineup-copy { max-width: 420px; }
.lineup-copy p { margin: 18px 0 30px; font-size: 17px; }

/* ============================================================
   WORDPLAY MARQUEE
   ============================================================ */
.word-marquee { background: var(--ink); color: var(--white); overflow: hidden; padding: 12px 0; }
.word-track {
  display: flex; width: max-content;
  will-change: transform;
  animation: ticker-scroll 22s linear infinite;
}
.word-item {
  display: inline-flex; align-items: center; gap: 44px;
  padding-right: 44px;
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; white-space: nowrap;
}
.word-item::after { content: "\2726"; font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 90px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr auto 1.3fr;
  gap: 60px;
  align-items: start;
}

.footer-news .h-serif { font-size: clamp(44px, 4vw, 64px); }

.news-form { display: flex; margin-top: 34px; max-width: 420px; }
.news-form input {
  flex: 1;
  font: inherit;
  padding: 15px 22px;
  border: var(--border); border-right: 0;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  background: var(--white);
  outline-offset: 2px;
}
.news-form input::placeholder { color: #555; }
.news-form button {
  display: grid; place-items: center;
  width: 64px;
  border: var(--border);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--white);
  transition: background .2s ease;
}
.news-form button:hover { background: var(--lime); }
.news-form button svg { width: 22px; height: 22px; }

.news-note { font-size: 13px; max-width: 420px; margin-top: 20px; line-height: 1.55; }
.news-note a { text-decoration: underline; text-underline-offset: 2px; }

.socials { display: flex; gap: 26px; margin-top: 30px; }
.socials a { width: 24px; height: 24px; }
.socials a:hover { opacity: .65; }

.footer-spark {
  width: 190px; height: 190px; fill: var(--white);
  margin-top: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.link-col { display: flex; flex-direction: column; gap: 15px; }
.link-head { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.link-col a { font-weight: 500; text-transform: uppercase; font-size: 15px; }
.link-col a:hover { text-decoration: underline; text-underline-offset: 3px; }

.fda-box {
  grid-column: 1 / -1;
  border: var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 400px;
}
.fda-box p { font-size: 13px; font-weight: 700; line-height: 1.5; }

.footer-legal {
  margin-top: 80px;
  display: flex; flex-wrap: wrap; gap: 18px 40px;
  align-items: baseline; justify-content: space-between;
  font-size: 13px;
}
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.footer-legal nav a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   POPUP
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, .45);
  display: grid; place-items: center;
  padding: 24px;
}
.popup-overlay[hidden] { display: none; }

.popup {
  position: relative;
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  width: min(980px, 100%);
  max-height: min(640px, 92vh);
  display: grid; grid-template-columns: 1fr 1fr;
}

.popup-copy {
  padding: 60px 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 26px;
}
.popup-logo { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.popup-copy .h-serif { font-size: clamp(34px, 3.4vw, 46px); }
.popup-copy .btn { min-width: 280px; }

.popup-art { min-height: 420px; overflow: hidden; display: grid; place-items: center; }
.popup-art img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

.popup-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 34px; height: 34px;
  display: grid; place-items: center;
}
.popup-close svg { width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-spark { display: none; }
  .subscribe-card { grid-template-columns: 1fr; }
  .subscribe-art { padding: 40px 40px 0; }
  .subscribe-copy { padding: 50px; }
  .lineup-card { height: auto; min-height: 460px; background: linear-gradient(180deg, rgba(249, 198, 208, 0.9), rgba(249, 198, 208, 0) 40%), url("../img/lineup-banner.png") 78% center / cover no-repeat #F9C6D0; align-content: start; }
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .nav-left .nav-link, .nav-left .nav-item { display: none; }
  .burger { display: flex; }
  .nav-right .nav-link:not(.bag) { display: none; }
  .logo { justify-self: center; }

  .giveaway-banner { grid-template-columns: 1fr; padding: 16px 24px; gap: 8px; }
  .gb-copy { font-size: 15px; }

  .hero-grid, .giveaway-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
  .hero-spark { display: none; }

  .leave-card { grid-template-columns: 1fr; padding: 44px 32px; }
  .leave-panel { padding: 40px 36px; }

  .popup { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .popup-art { min-height: 300px; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .leave-panel ul { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1; padding: 15px 24px; }
  .footer-legal { flex-direction: column; }
}

/* ============================================================
   CATEGORY STRIP (mobile-only, sits under the ticker)
   ============================================================ */
.category-strip { display: none; }

/* ============================================================
   PRESS BAND
   ============================================================ */
.press-band { background: var(--ink); color: var(--white); padding: 34px 0 22px; }
.press-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; max-width: 760px;
}
.press-logo {
  flex: 1; text-align: center; white-space: nowrap;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: .14em; text-transform: uppercase;
}
.press-arrow { width: 34px; height: 34px; color: var(--white); display: grid; place-items: center; flex: none; }
.press-arrow svg { width: 26px; height: 26px; }
.press-arrow:hover { opacity: .7; }
.press-dots { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.press-dots button { width: 8px; height: 8px; border-radius: 50%; background: #4a4a4a; padding: 0; }
.press-dots button.active { background: var(--lime); }

/* ============================================================
   LEAVE-OUT button placement (desktop: under copy, left column)
   ============================================================ */
.leave-card { grid-template-areas: "copy panel" "more panel"; }
.leave-copy { grid-area: copy; }
.leave-panel { grid-area: panel; }
.leave-more { grid-area: more; justify-self: start; margin-top: 8px; }

/* footer FDA duplicate: desktop shows the in-column box only */
.fda-mobile { display: none; }

/* ============================================================
   MOBILE 1:1 PASS (matched to lemmelive.com mobile layout)
   ============================================================ */
@media (max-width: 900px) {
  /* nav: burger + search icon left, logo center, count-only bag right */
  .nav-left .search-mobile { display: inline-flex; }
  .search-mobile svg { width: 22px; height: 22px; }
  .bag-label { display: none; }

  /* category icon strip (horizontally scrollable) */
  .category-strip {
    display: flex; gap: 36px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 18px 24px 14px;
  }
  .category-strip a {
    flex: none; min-width: 76px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; line-height: 1.3; text-align: center;
  }
  .cat-icon { display: grid; place-items: center; width: 52px; height: 52px; }
  .cat-icon svg { width: 42px; height: 42px; }

  /* hero type scale */
  .hero-copy h1 { font-size: clamp(38px, 10.5vw, 52px); }

  /* results: illustrated cards collapse to bordered pill rows */
  .results-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
  .result-card { border-radius: var(--radius-pill); }
  .result-art { display: none; }
  .result-body {
    display: grid; grid-template-columns: auto 1fr;
    align-items: center; gap: 4px 14px;
    padding: 13px 20px; text-align: left;
  }
  .result-body p { font-size: 16px; grid-column: 2; }
  .check-dot { width: 34px; height: 34px; grid-column: 1; grid-row: 1; }
  .stars { grid-column: 2; }
  .stars svg { width: 20px; height: 20px; }

  /* leave-out: centered copy, button below the panel */
  .leave-card { grid-template-areas: "copy" "panel" "more"; grid-template-columns: 1fr; }
  .leave-copy { text-align: center; }
  .leave-more { justify-self: center; margin-top: 6px; }

  /* subscribe: photo + swirls hidden on mobile, full-width CTA */
  .subscribe-art, .subscribe-swirl { display: none; }
  .subscribe-copy { padding: 44px 28px; }
  .subscribe-copy .h-serif br { display: none; }
  .subscribe-copy .btn { display: block; width: 100%; }

  /* lineup: photo block on top, copy below */
  .lineup-card {
    display: block; padding: 0; height: auto; min-height: 0;
    background: #F9C6D0; overflow: hidden;
  }
  .lineup-card::before {
    content: ""; display: block; height: 330px;
    background: url("../img/lineup-banner.png") 68% center / cover no-repeat;
  }
  .lineup-copy { padding: 30px 26px 40px; max-width: none; }

  /* footer: links first, then newsletter, legal, FDA box last */
  .footer-grid { display: flex; flex-direction: column; gap: 44px; }
  .footer-links { order: 1; }
  .footer-news { order: 2; }
  .fda-desktop { display: none; }
  .footer-legal { margin-top: 44px; }
  .fda-mobile { display: block; margin-top: 28px; max-width: none; }
}

@media (max-width: 620px) {
  .footer-news .h-serif { font-size: 36px; }
  .press-logo { font-size: 24px; }
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--white); border: var(--border); border-radius: var(--radius-pill);
  padding: 10px 22px; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   PRESS BAND — desktop logo row (mobile keeps the carousel)
   ============================================================ */
.press-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; max-width: 1200px;
}
.press-row span {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; opacity: .9;
}
@media (min-width: 901px) {
  .press-inner, .press-dots { display: none; }
}
@media (max-width: 900px) {
  .press-row { display: none; }
}

/* ============================================================
   REVIEW REEL
   ============================================================ */
.ugc-reel { position: relative; padding: 40px 0 90px; overflow: hidden; }
.reel-spark { position: absolute; fill: var(--white); }
.reel-spark-1 { left: 4%; top: 30px; width: 90px; height: 90px; }
.reel-spark-2 { right: 5%; bottom: 60px; width: 60px; height: 60px; }
.reel-track {
  display: flex; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 60px 32px 8px;
  -webkit-overflow-scrolling: touch;
}
.reel-card {
  flex: 0 0 320px; scroll-snap-align: center;
  background: var(--bg-card); border: var(--border); border-radius: 20px;
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.reel-card blockquote {
  font-size: 19px; font-weight: 700; line-height: 1.4;
}
.reel-card figcaption { font-size: 14px; }
.reel-track::-webkit-scrollbar { height: 8px; }
.reel-track::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .25); border-radius: 4px; }

/* ============================================================
   SOCIAL SLIDER (dormant module — see .is-dormant)
   ============================================================ */
.social-slider { padding: 70px 0 90px; }
.social-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 34px;
}
.social-title {
  font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.social-title:hover { text-decoration: underline; text-underline-offset: 4px; }
.social-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 32px 8px;
  -webkit-overflow-scrolling: touch;
}
.social-tile {
  flex: 0 0 280px; height: 280px; scroll-snap-align: start;
  border: var(--border); border-radius: 16px; overflow: hidden;
  background: var(--bg-card);
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.social-tile:hover img { transform: scale(1.05); }
.social-track::-webkit-scrollbar { height: 8px; }
.social-track::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .25); border-radius: 4px; }

/* dormant modules: present in the source, zero rendered height —
   mirrors the reference site's unrendered ugc-reel and social-slider.
   Remove the is-dormant class to activate a section. */
.is-dormant {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  visibility: hidden;
}

/* ============================================================
   DRAWERS (search + bag) & OVERLAY
   ============================================================ */
.site-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, .45);
}
.site-overlay[hidden] { display: none; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 160;
  width: min(420px, 92vw);
  background: var(--white);
  border-left: var(--border);
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 26px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer[hidden] { display: none; }

.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-title { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.drawer-count { font-weight: 500; }
.drawer-close { width: 32px; height: 32px; display: grid; place-items: center; }
.drawer-close svg { width: 20px; height: 20px; }

.drawer-search { display: flex; }
.drawer-search input {
  flex: 1; font: inherit; padding: 13px 20px;
  border: var(--border); border-right: 0;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  outline-offset: 2px;
}
.drawer-search button {
  width: 56px; display: grid; place-items: center;
  border: var(--border);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--lime);
}
.drawer-search button svg { width: 20px; height: 20px; }

.drawer-links { display: flex; flex-direction: column; gap: 12px; }
.drawer-sub { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #666; }
.drawer-links a { font-weight: 700; }
.drawer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

.drawer-empty { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.drawer-empty p { font-size: 17px; }

@media (max-width: 620px) {
  .reel-card { flex-basis: 270px; }
  .social-tile { flex: 0 0 220px; height: 220px; }
  .social-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reel-track, .social-track { padding-left: 20px; padding-right: 20px; }
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .word-track, .hero-copy .squiggle path, .squiggle-sm path, .squiggle-md path { animation: none; }
  html { scroll-behavior: auto; }
  .drawer { transition: none; }
}
