/* ==========================================================================
   smoove — site stylesheet v2 (cinematic redesign)
   Brand: ilikesmoove.com
   Tagline: "always smoove. never harsh."
   Palette per brand bible:
     --ink      #1A1A1A   (primary background)
     --paper    #FFFFFF   (text + reverse)
     --fog      #98A3AF   (secondary text)
     --slate    #4A5D75   (subtle blue-grey accents)
     --juice    #9DDB33   (neon green CTA / hero accent)
   ========================================================================== */

:root {
  --ink: #0d0d0d;       /* darker than the bible spec — gives a more cinematic feel */
  --ink-2: #161616;     /* slightly lighter for panels */
  --paper: #FFFFFF;
  --fog: #98A3AF;
  --slate: #4A5D75;
  --juice: #9DDB33;
  --juice-dim: rgba(157, 219, 51, 0.15);
  --juice-glow: 0 0 80px rgba(157, 219, 51, 0.55);
  --display: 'Anton', 'Bebas Neue', 'Inter', sans-serif;
  --body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Typography (cinematic display + clean body) --- */
h1, h2, h3 { letter-spacing: -0.02em; line-height: 0.92; font-weight: 900; }
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.85; }
.display-massive { font-family: var(--display); font-weight: 400; font-size: clamp(80px, 16vw, 240px); line-height: 0.82; letter-spacing: -0.02em; text-transform: uppercase; }
.display-huge    { font-family: var(--display); font-weight: 400; font-size: clamp(64px, 11vw, 180px); line-height: 0.85; letter-spacing: -0.02em; text-transform: uppercase; }
.display-large   { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 7vw, 96px);  line-height: 0.9;  letter-spacing: -0.01em; text-transform: uppercase; }
p { color: var(--fog); }
.eyebrow { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--juice); font-weight: 700; }

/* --- Layout --- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 180px) 0; position: relative; }

/* --- Cinematic glow bg --- */
.glow-bg { position: relative; isolation: isolate; }
.glow-bg::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 15% 20%, var(--juice-dim) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(74,93,117,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, var(--juice-dim) 0%, transparent 40%);
  filter: blur(60px);
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* --- Top utility bar --- */
.utility-bar {
  background: var(--juice);
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 16px;
}

/* --- Header (cinematic + sticky) --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
/* Logo — bold SMOOVE wordmark (logo #1 from brand bible).
   Markup stays as <a class="logo">smoove</a>; the text is hidden but kept for a11y / SEO.
   Inline style overrides (font-size on the modal) are intercepted via the data-logo-size hack below. */
.logo {
  display: inline-block;
  width: 160px;
  height: 26px;
  background: url('logo/smoove-logo-white.png') center / contain no-repeat;
  text-indent: -10000px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
}
.logo[style*="font-size:64px"],
.logo[style*="font-size: 64px"] {
  /* Bigger variant used in the age-gate / spin modal — preserves the existing inline style hook */
  width: 280px;
  height: 46px;
  font-size: 0 !important;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
  color: rgba(255,255,255,0.85);
}
.nav a:hover { color: var(--juice); }
.nav-cta {
  background: var(--juice); color: var(--ink) !important;
  padding: 12px 22px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--juice-glow); }

.mobile-toggle { display: none; font-size: 28px; padding: 6px 10px; }
@media (max-width: 920px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ==========================================================================
   Mobile slide-out menu
   ========================================================================== */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 9500;
  width: 100%; max-width: 380px;
  background: var(--ink);
  border-left: 1px solid rgba(157,219,51,0.2);
  padding: 28px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px rgba(0,0,0,0.5);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 9400;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-close {
  font-size: 32px; color: var(--paper); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.04);
}
.mobile-nav ul { list-style: none; padding-top: 32px; }
.mobile-nav li { margin-bottom: 4px; }
.mobile-nav a {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: 32px; text-transform: uppercase;
  padding: 14px 0; color: var(--paper);
  letter-spacing: -0.01em; line-height: 1;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--juice); padding-left: 8px; }
.mobile-nav .mn-cta {
  margin-top: 28px;
  background: var(--juice); color: var(--ink);
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  font-size: 14px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-nav .mn-cta:hover { padding: 18px; color: var(--ink); padding-left: 18px; }
.mobile-nav .mn-foot {
  margin-top: auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: var(--fog); letter-spacing: 0.08em;
}

/* ==========================================================================
   HERO CAROUSEL — Jeeter-style rotating campaign slides
   ========================================================================== */
.hero-carousel {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), visibility 0s 0.9s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1);
  pointer-events: auto;
}

/* Each slide gets a distinct background gradient */
.hero-slide.slide-1 {
  background:
    radial-gradient(ellipse at 15% 20%, var(--juice-dim) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(74,93,117,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, var(--juice-dim) 0%, transparent 40%);
}
.hero-slide.slide-2 {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(45,74,24,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, var(--juice-dim) 0%, transparent 45%);
}
.hero-slide.slide-3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74,93,117,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 10%, var(--juice-dim) 0%, transparent 40%);
}
.hero-slide.slide-4 {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(157,219,51,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(30,42,74,0.4) 0%, transparent 55%);
}
.hero-slide.slide-5 {
  background:
    linear-gradient(135deg, rgba(157,219,51,0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(74,93,117,0.3) 0%, transparent 60%);
}
.hero-slide.slide-6 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(44,46,13,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(157,219,51,0.1) 0%, transparent 50%);
}

/* Carousel watermark background type */
.hero-slide .slide-watermark {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(160px, 26vw, 440px);
  font-weight: 400;
  color: rgba(157, 219, 51, 0.035);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  white-space: nowrap;
  z-index: -1;
  user-select: none;
}

.hero-slide-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; height: 100%; justify-content: center;
}

.hero-slide h1, .hero-slide h2.hero-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-slide h1 .accent, .hero-slide .hero-headline .accent {
  color: var(--juice);
  display: block;
  font-style: italic;
}
.hero-slide .hero-sub {
  margin-top: 32px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--fog);
  max-width: 580px;
  line-height: 1.5;
}
.hero-slide .hero-sub strong { color: var(--paper); font-weight: 700; }
.hero-slide .hero-cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide .hero-badge-row {
  margin-top: 48px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* Carousel chrome — dots, arrows, slide-number */
.carousel-controls {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--pad);
  pointer-events: none;
}
.carousel-dots {
  display: flex; gap: 10px;
  pointer-events: auto;
}
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; padding: 0;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.carousel-dots button.active {
  width: 32px; border-radius: 5px;
  background: var(--juice);
}
.carousel-arrows {
  display: flex; gap: 10px;
  pointer-events: auto;
}
.carousel-arrows button {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--paper);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-arrows button:hover { background: rgba(157,219,51,0.12); border-color: var(--juice); }
.carousel-slide-num {
  position: absolute;
  top: 24px; right: var(--pad);
  z-index: 10;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--fog);
}
.carousel-slide-num .current { color: var(--juice); }

@media (max-width: 700px) {
  .carousel-arrows { display: none; }
  .carousel-controls { justify-content: center; }
}


.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 120px;
}
.hero-tagline-bg {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(180px, 28vw, 480px);
  font-weight: 400;
  color: rgba(157, 219, 51, 0.04);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  white-space: nowrap;
  z-index: -1;
  user-select: none;
  animation: bgDrift 60s linear infinite;
}
@keyframes bgDrift {
  0%   { transform: translateX(-5%); }
  50%  { transform: translateX(5%); }
  100% { transform: translateX(-5%); }
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--juice); display: block; font-style: italic; }
.hero-sub {
  margin-top: 36px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--fog);
  max-width: 580px;
  line-height: 1.5;
  font-weight: 400;
}
.hero-sub strong { color: var(--paper); font-weight: 700; }
.hero-cta-row { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 36px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn-primary { background: var(--juice); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--juice-glow); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.25); color: var(--paper); }
.btn-ghost:hover { border-color: var(--juice); color: var(--juice); }

.hero-badge-row {
  margin-top: 56px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-badge {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--paper);
}
.hero-badge.juice { background: var(--juice-dim); border-color: rgba(157,219,51,0.4); color: var(--juice); }

/* ==========================================================================
   COLOR-BLOCKED CATEGORY PANELS (Jeeter-style)
   ========================================================================== */
.cat-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cat-panel {
  position: relative;
  padding: 56px 40px 40px;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
  cursor: pointer;
}
.cat-panel:last-child { border-right: none; }
.cat-panel .cat-num {
  font-family: var(--display);
  font-size: 14px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.cat-panel .cat-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 72px);
  text-transform: uppercase;
  margin-top: 16px;
  letter-spacing: -0.01em;
  line-height: 0.9;
  font-weight: 400;
}
.cat-panel .cat-meta {
  font-size: 13px; color: var(--fog); margin-top: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700;
}
.cat-panel .cat-arrow {
  margin-top: auto;
  font-size: 32px; color: var(--juice);
  transition: transform 0.3s;
}
.cat-panel:hover { background: rgba(157,219,51,0.04); }
.cat-panel:hover .cat-arrow { transform: translateX(8px); }

/* Color block backgrounds — each panel a different vibe */
.cat-panel.p1 { background: linear-gradient(160deg, rgba(157,219,51,0.18), rgba(157,219,51,0.02)); }
.cat-panel.p2 { background: linear-gradient(160deg, rgba(74,93,117,0.30), rgba(74,93,117,0.05)); }
.cat-panel.p3 { background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)); }
.cat-panel.p4 { background: linear-gradient(160deg, var(--juice), #c4f04a); color: var(--ink); }
.cat-panel.p4 .cat-num { color: rgba(26,26,26,0.5); }
.cat-panel.p4 .cat-meta { color: rgba(26,26,26,0.7); }
.cat-panel.p4 .cat-arrow { color: var(--ink); }

@media (max-width: 1100px) { .cat-panels { grid-template-columns: repeat(2, 1fr); } .cat-panel:nth-child(2) { border-right: none; } }
@media (max-width: 600px)  { .cat-panels { grid-template-columns: 1fr; } .cat-panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); min-height: 320px; } }

/* ==========================================================================
   DIFFERENTIATOR — split layout, not 3-card grid
   ========================================================================== */
.diff-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  margin-top: 48px;
}
.diff-headline {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.diff-headline .accent { color: var(--juice); }
.diff-points { display: flex; flex-direction: column; gap: 32px; }
.diff-point {
  border-left: 3px solid var(--juice);
  padding: 4px 0 4px 28px;
}
.diff-point .dp-num { font-size: 13px; color: var(--juice); font-weight: 800; letter-spacing: 0.18em; }
.diff-point .dp-title { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); margin-top: 6px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.diff-point .dp-body { color: var(--fog); margin-top: 12px; font-size: 16px; line-height: 1.6; }
@media (max-width: 900px) { .diff-split { grid-template-columns: 1fr; } }

/* ==========================================================================
   FLAVOR SHOWCASE — colored panels with display type (no mockups)
   The cinematic packaging mockups live on the products page where they have room.
   ========================================================================== */
.flavor-showcase {
  padding: clamp(64px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--ink) 0%, #050505 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.flavor-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  isolation: isolate;
}
.flavor-card:hover { transform: translateY(-6px); }
.flavor-card .flavor-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.flavor-card .flavor-name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-weight: 400;
  line-height: 0.92;
  margin-top: auto;
}
.flavor-card .flavor-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* Strain color treatments — pulled from each strain's actual packaging vibe */
.flavor-card.fc-wedding-cake     { background: radial-gradient(circle at 30% 20%, #2a241e, #0f0d0b); }
.flavor-card.fc-strawberry-cough { background: radial-gradient(circle at 30% 20%, #1d3826, #0a140e); }
.flavor-card.fc-mangonada        { background: radial-gradient(circle at 30% 20%, #4a1818, #1a0606); }
.flavor-card.fc-watermelon-z     { background: radial-gradient(circle at 30% 20%, #3b1944, #160819); }
.flavor-card.fc-blackberry       { background: radial-gradient(circle at 30% 20%, #2c2e0d, #0e0f04); }
.flavor-card.fc-green-apple      { background: radial-gradient(circle at 30% 20%, #2d4a18, #0f1a08); border: 1px solid rgba(157,219,51,0.4); }
.flavor-card.fc-blueberry-caviar { background: radial-gradient(circle at 30% 20%, #1e2a4a, #08101e); }
.flavor-card.fc-more {
  background: var(--juice); color: var(--ink);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.flavor-card.fc-more .flavor-name { color: var(--ink); margin: 0; font-size: clamp(36px, 4vw, 56px); }
.flavor-card.fc-more .flavor-meta { color: rgba(26,26,26,0.7); margin-top: 8px; }

/* Subtle accent bar that lights up on hover */
.flavor-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
  background: var(--juice);
  transition: width 0.3s ease;
}
.flavor-card:hover::after { width: 100%; }
.flavor-card.fc-more::after { display: none; }

@media (max-width: 900px)  { .flavor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .flavor-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   FLAVOR MARQUEE (lateral strain ticker — kept as fallback)
   ========================================================================== */
.flavor-marquee {
  background: var(--ink-2);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em;
  font-weight: 400;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--juice);
  font-size: 0.4em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   PRODUCT VARIETY BANNER (5 pack sizes visualization)
   ========================================================================== */
.pack-variety {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 56px;
}
.pack-tile {
  background: var(--ink-2);
  padding: 32px 20px;
  text-align: center;
  transition: background 0.3s;
}
.pack-tile:hover { background: rgba(157,219,51,0.06); }
.pack-tile .pt-num { font-family: var(--display); font-size: clamp(40px, 4.5vw, 72px); color: var(--juice); line-height: 1; font-weight: 400; }
.pack-tile .pt-pack { font-family: var(--display); font-size: 14px; color: var(--paper); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pack-tile .pt-meta { font-size: 11px; color: var(--fog); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 800px) { .pack-variety { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   LOCATOR (compact, inline)
   ========================================================================== */
.locator-section { background: var(--ink); position: relative; }
.locator-card {
  background:
    radial-gradient(circle at 30% 50%, rgba(157,219,51,0.12), transparent 60%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.locator-card h2 { font-family: var(--display); font-size: clamp(48px, 6vw, 88px); text-transform: uppercase; line-height: 0.9; letter-spacing: -0.01em; font-weight: 400; }
.locator-search { display: flex; gap: 12px; margin-top: 28px; }
.locator-search input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--paper);
  font-size: 15px;
}
.locator-search input::placeholder { color: var(--fog); }
.locator-search input:focus { outline: none; border-color: var(--juice); }
.locator-map {
  background: #0a0a0a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%230d0d0d' width='400' height='300'/%3E%3Cg stroke='%234A5D75' stroke-width='0.5' opacity='0.3' fill='none'%3E%3Cpath d='M0,80 Q100,40 200,90 T400,100'/%3E%3Cpath d='M0,150 Q100,110 200,160 T400,170'/%3E%3Cpath d='M0,220 Q100,180 200,230 T400,240'/%3E%3C/g%3E%3Cg fill='%239DDB33'%3E%3Ccircle cx='80' cy='100' r='5'/%3E%3Ccircle cx='150' cy='160' r='5'/%3E%3Ccircle cx='220' cy='130' r='5'/%3E%3Ccircle cx='280' cy='200' r='5'/%3E%3Ccircle cx='340' cy='110' r='5'/%3E%3Ccircle cx='110' cy='220' r='5'/%3E%3C/g%3E%3C/svg%3E") center/cover;
  border-radius: 20px;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 900px) { .locator-card { grid-template-columns: 1fr; padding: 40px; } }

/* ==========================================================================
   INSIDER (email + SMS capture — bold neon panel)
   ========================================================================== */
.insider {
  background: linear-gradient(135deg, var(--juice) 0%, #c4f04a 100%);
  color: var(--ink);
  border-radius: 32px;
  padding: 72px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.insider h2 { font-family: var(--display); text-transform: uppercase; color: var(--ink); font-size: clamp(48px, 6vw, 88px); line-height: 0.85; font-weight: 400; }
.insider p { color: rgba(26,26,26,0.7); margin-top: 18px; font-size: 17px; }
.insider-form { display: flex; flex-direction: column; gap: 12px; }
.insider-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.insider-form input, .insider-form select {
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--body);
  width: 100%;
  box-sizing: border-box;
}
.insider-form input[type="date"] { color: rgba(26,26,26,0.7); letter-spacing: 0.02em; }
.insider-form input::placeholder { color: rgba(26,26,26,0.5); }
.insider-form input:focus, .insider-form select:focus { outline: none; border-color: var(--ink); background: var(--paper); }
.insider-form .field-label {
  font-size: 10px; color: rgba(26,26,26,0.6); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  margin: 4px 0 -4px 6px; display: block;
}
.insider-form .form-error {
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3);
  color: #991b1b; padding: 10px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
}
.insider-form button {
  background: var(--ink); color: var(--juice);
  padding: 20px 32px; border-radius: 14px;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px;
  transition: transform 0.2s;
}
.insider-form button:hover:not(:disabled) { transform: translateY(-2px); }
.insider-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.insider-form .legal { font-size: 11px; color: rgba(26,26,26,0.55); line-height: 1.5; margin-top: 4px; }
@media (max-width: 900px) { .insider { grid-template-columns: 1fr; padding: 48px 32px; } }
@media (max-width: 480px) { .insider-form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   SKU GRID (products page — keeps working)
   ========================================================================== */
.sku-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.sku {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.sku:hover { transform: translateY(-4px); border-color: var(--juice); background: rgba(157,219,51,0.04); }
.sku .pack-tag { font-size: 11px; color: var(--juice); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.sku .name { font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; margin-top: 2px; }
.sku .meta { font-size: 13px; color: var(--fog); }
.sku .swatch {
  height: 100px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(157,219,51,0.3), transparent 60%),
    linear-gradient(135deg, rgba(157,219,51,0.1) 0%, rgba(74,93,117,0.15) 100%);
  margin-bottom: 8px;
  border: 1px solid rgba(157,219,51,0.1);
}
.sku .find-cta {
  margin-top: auto; padding-top: 12px;
  font-size: 11px; color: var(--juice); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.sku .find-cta::after { content: ' →'; }
@media (max-width: 1000px) { .sku-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .sku-grid { grid-template-columns: 1fr; } }

.cat-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cat-section h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(48px, 6vw, 96px); line-height: 0.9; font-weight: 400; }
.cat-section .lead { color: var(--fog); margin-top: 20px; max-width: 640px; font-size: 17px; line-height: 1.6; }
.cat-section h3 { font-family: var(--display); font-size: 22px; color: var(--paper); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 400; }

.wholesale-banner {
  background: linear-gradient(90deg, rgba(157,219,51,0.14), rgba(157,219,51,0.04));
  border: 1px solid rgba(157,219,51,0.3);
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.wholesale-banner .text { font-size: 14px; color: var(--paper); }
.wholesale-banner .text strong { color: var(--juice); }
.wholesale-banner a {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--juice);
  padding: 14px 22px; border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #050505;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--juice); margin-bottom: 18px; font-weight: 800; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid li a { color: var(--fog); font-size: 14px; transition: color 0.2s; }
.footer-grid li a:hover { color: var(--paper); }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: var(--fog); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--juice); background: var(--juice-dim); color: var(--juice); }
.footer-base {
  display: flex; justify-content: space-between; padding-top: 32px;
  font-size: 12px; color: var(--fog); flex-wrap: wrap; gap: 16px;
}
.footer-base .license { font-family: monospace; letter-spacing: 0.08em; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MODALS (age gate, exit intent, spin wheel)
   ========================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-backdrop.active { display: flex; }
.modal {
  background: var(--ink);
  border: 1px solid rgba(157,219,51,0.3);
  border-radius: 28px;
  max-width: 480px; width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(157,219,51,0.15);
}
.modal h2 { font-family: var(--display); text-transform: uppercase; font-size: 36px; margin-bottom: 12px; line-height: 1; font-weight: 400; }
.modal p { color: var(--fog); margin-bottom: 28px; }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 24px; color: var(--fog); transition: color 0.2s;
}
.modal-close:hover { color: var(--paper); }
.modal-buttons { display: flex; gap: 12px; justify-content: center; }
.modal-buttons .btn { padding: 14px 28px; flex: 1; max-width: 180px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Spin wheel --- */
.wheel-wrapper { display: flex; flex-direction: column; align-items: center; }
.wheel-container { position: relative; width: 320px; height: 320px; margin: 16px 0 24px; }
.wheel-svg {
  width: 100%; height: 100%;
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.21, 0.99);
  transform-origin: center;
}
.wheel-pointer {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--juice);
  filter: drop-shadow(0 4px 8px rgba(157,219,51,0.5));
  z-index: 2;
}
.wheel-result {
  font-family: var(--display);
  font-size: 36px; font-weight: 400; color: var(--juice);
  margin: 12px 0 8px;
  text-transform: uppercase;
  display: none;
  letter-spacing: -0.01em;
}
.wheel-result.show { display: block; animation: pop 0.4s ease; }
@keyframes pop { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.wheel-code {
  display: none;
  background: rgba(157,219,51,0.15);
  border: 1.5px dashed var(--juice);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 8px;
  font-family: monospace;
  font-size: 22px;
  color: var(--juice);
  letter-spacing: 0.18em;
  font-weight: 800;
}
.wheel-code.show { display: inline-block; }

/* --- Persistent OFF tab --- */
.persistent-tab {
  position: fixed; left: 0; bottom: 80px; z-index: 80;
  background: var(--juice); color: var(--ink);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(157,219,51,0.35);
  transition: padding 0.2s;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.persistent-tab:hover { padding: 16px 18px; }

/* --- Compliance strip --- */
.compliance-strip {
  background: var(--ink);
  border-top: 1px solid var(--juice);
  padding: 14px var(--pad);
  font-size: 12px;
  color: var(--fog);
  text-align: center;
}

/* ==========================================================================
   B2B / Wholesale page styles (kept from v1)
   ========================================================================== */
.b2b-hero { padding: 80px 0 40px; }
.b2b-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 48px; align-items: start; }
.b2b-pitch h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; color: var(--juice); margin-top: 32px; font-weight: 400; letter-spacing: 0.02em; }
.b2b-pitch p { color: var(--fog); margin-top: 10px; font-size: 15px; line-height: 1.6; }
.b2b-pitch ul { list-style: none; margin-top: 16px; }
.b2b-pitch li { color: var(--fog); padding-left: 20px; position: relative; margin-bottom: 8px; font-size: 15px; }
.b2b-pitch li::before { content: '✓'; color: var(--juice); position: absolute; left: 0; font-weight: 800; }
.b2b-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px; }
.b2b-form-card h2 { font-family: var(--display); text-transform: uppercase; font-size: 32px; font-weight: 400; line-height: 1; }
.b2b-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.b2b-form .full { grid-column: 1 / -1; }
.b2b-form input, .b2b-form select, .b2b-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--paper);
  font-size: 15px;
  font-family: inherit;
}
.b2b-form input::placeholder, .b2b-form textarea::placeholder { color: var(--fog); }
.b2b-form input:focus, .b2b-form select:focus, .b2b-form textarea:focus { outline: none; border-color: var(--juice); }
.b2b-form label { font-size: 11px; color: var(--fog); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 6px; font-weight: 700; }
.b2b-form button {
  background: var(--juice); color: var(--ink);
  padding: 18px 32px; border-radius: 999px;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}
.b2b-form button:hover { transform: translateY(-2px); box-shadow: var(--juice-glow); }
.b2b-form .legal { font-size: 11px; color: var(--fog); line-height: 1.5; margin-top: 12px; }
.gate-note {
  background: rgba(255, 200, 0, 0.08);
  border: 1px solid rgba(255,200,0,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: #FFCB47;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .b2b-grid { grid-template-columns: 1fr; gap: 32px; } .b2b-form { grid-template-columns: 1fr; } }

/* ==========================================================================
   STRAIN PAGES
   ========================================================================== */
.strain-hero { padding: 100px 0 60px; }
.strain-hero .strain-meta-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.strain-hero .strain-meta-row span {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--paper);
}
.strain-hero .strain-meta-row span.type { background: rgba(157,219,51,0.14); color: var(--juice); }
.strain-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(72px, 13vw, 200px); text-transform: uppercase; line-height: 0.85; letter-spacing: -0.02em; margin-top: 22px; }
.strain-hero .lead { color: var(--fog); margin-top: 28px; max-width: 640px; font-size: 19px; line-height: 1.5; }

.strain-body { padding: 40px 0; }
.strain-body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(36px, 5vw, 64px); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; }
.strain-body .grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; margin-top: 32px; }
.strain-body p { color: var(--paper); font-size: 17px; line-height: 1.7; margin-top: 18px; }
.strain-body .quick-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
}
.strain-body .quick-card .item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.strain-body .quick-card .item:last-child { border-bottom: none; }
.strain-body .quick-card .label { font-size: 11px; color: var(--fog); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.strain-body .quick-card .value { font-family: var(--display); font-weight: 400; font-size: 22px; text-transform: uppercase; margin-top: 4px; letter-spacing: -0.01em; color: var(--paper); }
.strain-body .quick-card .value.juice { color: var(--juice); }
@media (max-width: 900px) { .strain-body .grid { grid-template-columns: 1fr; gap: 32px; } }

.pack-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 28px; }
.pack-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.pack-option.featured { border-color: rgba(157,219,51,0.4); background: rgba(157,219,51,0.05); }
.pack-option .pack-num { font-family: var(--display); font-size: 44px; color: var(--juice); line-height: 1; font-weight: 400; }
.pack-option .pack-label { font-family: var(--display); font-size: 14px; text-transform: uppercase; margin-top: 6px; letter-spacing: 0.04em; }
.pack-option .pack-spec { font-size: 11px; color: var(--fog); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }

.related-strains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.related-strain {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.related-strain:hover { border-color: var(--juice); transform: translateY(-3px); }
.related-strain .tag { font-size: 10px; color: var(--juice); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.related-strain h4 { font-family: var(--display); font-weight: 400; font-size: 22px; text-transform: uppercase; margin-top: 6px; letter-spacing: -0.01em; line-height: 1.05; }
@media (max-width: 700px) { .related-strains { grid-template-columns: 1fr; } }

/* ==========================================================================
   BLOG — "the rotation" content hub
   ========================================================================== */
.blog-hero { padding: 100px 0 60px; }
.blog-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(64px, 11vw, 180px); text-transform: uppercase; line-height: 0.85; letter-spacing: -0.02em; }
.blog-hero .lead { color: var(--fog); margin-top: 24px; max-width: 580px; font-size: 18px; line-height: 1.5; }

.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.post-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 360px;
  transition: transform 0.3s, border-color 0.3s;
}
.post-card:hover { transform: translateY(-6px); border-color: var(--juice); }
.post-card .post-tag { font-size: 11px; color: var(--juice); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.post-card h3 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.3vw, 32px); text-transform: uppercase; margin-top: 14px; line-height: 0.95; letter-spacing: -0.01em; }
.post-card p { color: var(--fog); margin-top: 14px; font-size: 15px; line-height: 1.55; }
.post-card .post-meta { margin-top: auto; padding-top: 20px; display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--fog); letter-spacing: 0.04em; text-transform: uppercase; }
.post-card .post-meta .read-time { color: var(--juice); font-weight: 800; }
.post-card .read-cta { margin-top: 12px; color: var(--juice); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.post-card .read-cta::after { content: ' →'; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .post-grid { grid-template-columns: 1fr; } }

/* Single post page */
.post-hero { padding: 80px 0 40px; max-width: 760px; }
.post-hero .post-tag { font-size: 12px; color: var(--juice); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.post-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(48px, 8vw, 112px); text-transform: uppercase; line-height: 0.88; letter-spacing: -0.02em; margin-top: 18px; }
.post-hero .post-meta { margin-top: 24px; display: flex; gap: 16px; align-items: center; font-size: 13px; color: var(--fog); letter-spacing: 0.06em; text-transform: uppercase; }
.post-hero .post-meta .dot { color: rgba(255,255,255,0.2); }
.post-body { max-width: 760px; padding: 32px 0 80px; }
.post-body p { color: var(--paper); font-size: 18px; line-height: 1.75; margin-top: 22px; font-weight: 400; }
.post-body p.lead { font-size: 22px; line-height: 1.55; color: var(--paper); }
.post-body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.5vw, 44px); text-transform: uppercase; margin-top: 56px; color: var(--paper); letter-spacing: -0.01em; line-height: 0.95; }
.post-body h3 { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2vw, 26px); text-transform: uppercase; margin-top: 36px; letter-spacing: 0.02em; }
.post-body ul, .post-body ol { margin: 20px 0 20px 28px; }
.post-body li { color: var(--paper); font-size: 17px; line-height: 1.7; margin-bottom: 8px; }
.post-body strong { color: var(--juice); font-weight: 700; }
.post-body a { color: var(--juice); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-body blockquote {
  border-left: 4px solid var(--juice);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(24px, 3vw, 32px); text-transform: uppercase;
  color: var(--paper); line-height: 1.1;
}
.post-next {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
}
.post-next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-next-grid .next-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.post-next-grid .next-card:hover { border-color: var(--juice); transform: translateY(-4px); }
.post-next-grid .next-card .label { font-size: 11px; color: var(--juice); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.post-next-grid .next-card h4 { font-family: var(--display); font-weight: 400; font-size: 22px; text-transform: uppercase; margin-top: 8px; letter-spacing: -0.01em; line-height: 1.05; }
@media (max-width: 700px) { .post-next-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { margin-top: 32px; max-width: 920px; }
.faq-item { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-size: clamp(22px, 2vw, 30px); font-weight: 400;
  color: var(--paper); text-transform: uppercase; letter-spacing: -0.01em;
}
.faq-q::after { content: '+'; font-size: 32px; color: var(--juice); font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--fog); margin-top: 16px; line-height: 1.7; font-size: 16px; display: none; }
.faq-item.open .faq-a { display: block; }
