/* ============================================
   WOODY McCLAIN — OFFICIAL WEBSITE
   Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold:       #C8A030;
  --gold-light: #F0CC55;
  --gold-dim:   #7A6018;
  --gold-glow:  rgba(190,148,20,0.14);
  --black:      #060606;
  --deep:       #0A0A0A;
  --surface:    #111111;
  --surface2:   #181818;
  --border:     rgba(190,148,20,0.15);
  --text:       #DDD5C4;
  --muted:      #7A7060;
  --white:      #F2EDE3;
  --red:        #DC3232;

  /* Metallic gold gradient — used on all gold backgrounds/buttons */
  --gold-metal: linear-gradient(
    160deg,
    #ECC840 0%,
    #D4A020 28%,
    #9A7010 52%,
    #C49018 72%,
    #ECC840 100%
  );

  /* Metallic gold gradient for horizontal bars (ticker, proof) */
  --gold-bar: linear-gradient(
    90deg,
    #7A5508 0%,
    #B8880E 10%,
    #ECC840 24%,
    #F5E070 36%,
    #D4A020 50%,
    #F0CC45 64%,
    #D4A828 76%,
    #B08010 90%,
    #7A5508 100%
  );

  /* Metallic gold text gradient */
  --gold-text: linear-gradient(
    to bottom,
    #FBE87A 0%,
    #D4A828 32%,
    #9A7010 62%,
    #C8961A 82%,
    #EAC840 100%
  );

  /* Warm amber glow for button shadows */
  --gold-shadow: rgba(180, 138, 10, 0.5);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ============================================
   BOKEH BACKGROUND
   5 blobs, no two in sync. GPU-only animation.
   The "wow" moment lives here.
   ============================================ */
.bokeh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Blob 1 — large, upper right, the warm anchor */
.b1 {
  width: 900px;
  height: 750px;
  top: -180px;
  right: -80px;
  background: radial-gradient(circle at center,
    rgba(190, 148, 10, 0.11) 0%,
    rgba(160, 118, 5, 0.06) 40%,
    transparent 70%
  );
  filter: blur(90px);
  animation: drift1 48s ease-in-out infinite;
}

/* Blob 2 — large, lower left, deep amber */
.b2 {
  width: 800px;
  height: 950px;
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle at center,
    rgba(170, 125, 5, 0.09) 0%,
    rgba(140, 100, 3, 0.05) 40%,
    transparent 70%
  );
  filter: blur(110px);
  animation: drift2 61s ease-in-out infinite;
  animation-delay: -18s;
}

/* Blob 3 — the "wow" blob. Center stage, very slow, very faint. */
/* You don't see it at first. Then you do. */
.b3 {
  width: 600px;
  height: 600px;
  top: 38%;
  left: 28%;
  background: radial-gradient(circle at center,
    rgba(210, 162, 15, 0.06) 0%,
    rgba(180, 135, 8, 0.03) 45%,
    transparent 70%
  );
  filter: blur(130px);
  animation: drift3 37s ease-in-out infinite;
  animation-delay: -10s;
}

/* Blob 4 — medium, upper left, subtle edge warmth */
.b4 {
  width: 650px;
  height: 800px;
  top: 15%;
  left: -160px;
  background: radial-gradient(circle at center,
    rgba(180, 138, 8, 0.08) 0%,
    rgba(150, 110, 4, 0.04) 40%,
    transparent 70%
  );
  filter: blur(100px);
  animation: drift4 52s ease-in-out infinite;
  animation-delay: -28s;
}

/* Blob 5 — wide and flat, bottom right, barely there */
.b5 {
  width: 1000px;
  height: 500px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(ellipse at center,
    rgba(195, 150, 12, 0.07) 0%,
    rgba(165, 120, 5, 0.03) 40%,
    transparent 70%
  );
  filter: blur(120px);
  animation: drift5 73s ease-in-out infinite;
  animation-delay: -40s;
}

/* Each path is asymmetric — they never feel mechanical */
@keyframes drift1 {
  0%   { transform: translate(0px,   0px)   scale(1);    }
  18%  { transform: translate(-55px,  90px)  scale(1.04); }
  37%  { transform: translate( 35px, 155px)  scale(0.96); }
  55%  { transform: translate(-80px,  70px)  scale(1.07); }
  72%  { transform: translate( 20px, -30px)  scale(0.98); }
  88%  { transform: translate(-30px,  40px)  scale(1.02); }
  100% { transform: translate(0px,   0px)   scale(1);    }
}

@keyframes drift2 {
  0%   { transform: translate(0px,   0px)   scale(1);    }
  22%  { transform: translate( 90px, -70px)  scale(1.05); }
  44%  { transform: translate(150px,  30px)  scale(0.93); }
  66%  { transform: translate( 60px, 110px)  scale(1.06); }
  83%  { transform: translate(-20px,  50px)  scale(0.97); }
  100% { transform: translate(0px,   0px)   scale(1);    }
}

@keyframes drift3 {
  0%   { transform: translate(0px,   0px)   scale(1);    }
  30%  { transform: translate(-90px, -65px)  scale(1.08); }
  60%  { transform: translate( 65px,  80px)  scale(0.91); }
  85%  { transform: translate(-40px,  30px)  scale(1.04); }
  100% { transform: translate(0px,   0px)   scale(1);    }
}

@keyframes drift4 {
  0%   { transform: translate(0px,   0px);   }
  25%  { transform: translate( 80px, 100px); }
  50%  { transform: translate( 30px, -45px); }
  75%  { transform: translate(110px,  60px); }
  100% { transform: translate(0px,   0px);   }
}

@keyframes drift5 {
  0%   { transform: translate(0px,   0px)   scale(1);    }
  20%  { transform: translate(-80px, -90px)  scale(1.03); }
  45%  { transform: translate( 60px, -50px)  scale(0.95); }
  68%  { transform: translate(-50px,  70px)  scale(1.05); }
  85%  { transform: translate( 30px,  20px)  scale(0.98); }
  100% { transform: translate(0px,   0px)   scale(1);    }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slow light sweep across metallic text — subtle, not tacky */
@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Richer, deeper gold pulse for featured tray */
@keyframes pulse-gold {
  0%   {
    box-shadow:
      0 0 50px rgba(190,148,10,0.3),
      0 0 100px rgba(190,148,10,0.12),
      0 0 200px rgba(190,148,10,0.05);
  }
  50%  {
    box-shadow:
      0 0 80px rgba(210,168,20,0.55),
      0 0 160px rgba(190,148,10,0.22),
      0 0 280px rgba(190,148,10,0.08);
  }
  100% {
    box-shadow:
      0 0 50px rgba(190,148,10,0.3),
      0 0 100px rgba(190,148,10,0.12),
      0 0 200px rgba(190,148,10,0.05);
  }
}

@keyframes pulse-red {
  0%   { box-shadow: 0 0 50px rgba(220,50,50,0.22), 0 0 100px rgba(220,50,50,0.08); }
  50%  { box-shadow: 0 0 80px rgba(220,50,50,0.45), 0 0 160px rgba(220,50,50,0.16); }
  100% { box-shadow: 0 0 50px rgba(220,50,50,0.22), 0 0 100px rgba(220,50,50,0.08); }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   GOLD METALLIC TEXT UTILITY
   Applied directly to elements below
   ============================================ */
.gold-metal-text {
  background: var(--gold-text);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Scroll Animation --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Eyebrow --- */
.section-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  /* Metallic gold text */
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */

/* Gold metallic button base — shared by all gold buttons */
.btn-primary,
.btn-gold,
.btn-try-gold,
.btn-pill-gold,
.newsletter-btn,
.nav-cta {
  background: var(--gold-metal);
  border-top: 1px solid rgba(255, 248, 150, 0.4);
  box-shadow: 0 4px 22px var(--gold-shadow), 0 1px 6px rgba(0,0,0,0.55);
  transition: box-shadow 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.btn-gold:hover,
.btn-try-gold:hover,
.btn-pill-gold:hover,
.newsletter-btn:hover,
.nav-cta:hover {
  box-shadow: 0 6px 36px var(--gold-shadow), 0 2px 10px rgba(0,0,0,0.65);
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  color: #050505;
  border: none;
  border-top: 1px solid rgba(255, 248, 150, 0.4);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(210,165,30,0.7);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-block;
  color: #050505;
  border: none;
  border-top: 1px solid rgba(255, 248, 150, 0.4);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.btn-red {
  display: inline-block;
  background: linear-gradient(160deg, #E84040 0%, #C02828 45%, #8B1818 70%, #C03030 100%);
  color: var(--white);
  border: none;
  border-top: 1px solid rgba(255,120,120,0.3);
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,30,30,0.35);
  transition: box-shadow 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.btn-red:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(200,30,30,0.55);
}

.btn-ghost-gold {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(190,148,20,0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--text);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border-radius: 100px;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-ghost-gold:hover {
  border-color: rgba(210,165,30,0.7);
  color: var(--gold-light);
  box-shadow: 0 0 18px rgba(180,138,10,0.2);
}

/* Tray buttons */
.btn-tray {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
}

.btn-try-free {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  box-shadow: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-try-free:hover {
  border-color: rgba(210,165,30,0.6);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(180,138,10,0.15);
}

.btn-try-gold {
  color: #050505;
  border: none;
  border-top: 1px solid rgba(255, 248, 150, 0.4);
}

.btn-try-red {
  background: linear-gradient(160deg, #E84040 0%, #C02828 45%, #8B1818 70%, #C03030 100%);
  color: var(--white);
  border-top: 1px solid rgba(255,120,120,0.25);
  box-shadow: 0 4px 18px rgba(200,30,30,0.3);
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-try-red:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,30,30,0.5);
}

/* Pill buttons */
.btn-pill {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-pill-gold {
  color: #050505;
  border-radius: 100px;
  border: none;
  border-top: 1px solid rgba(255, 248, 150, 0.4);
}

.btn-pill-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(190,148,20,0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-pill-ghost:hover {
  border-color: rgba(210,165,30,0.65);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(180,138,10,0.2);
  transform: translateY(-2px);
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 510;
  background: var(--gold-bar);
  overflow: hidden;
  height: 36px;
  /* Thin shadow below to separate from nav */
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  height: 100%;
  align-items: center;
}

.ticker-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  /* Dark ink on gold — reads like letterpress on a gold plate */
  color: #1A0E00;
  letter-spacing: 0.22em;
  flex-shrink: 0;
  padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,6,6,0.96) 0%, rgba(6,6,6,0.0) 100%);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(6,6,6,0.97);
  box-shadow: 0 1px 0 rgba(190,148,20,0.2), 0 8px 32px rgba(0,0,0,0.6);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  font-size: 1.8rem;
  flex-shrink: 0;
  /* Metallic gold text with slow shimmer sweep */
  background: linear-gradient(
    90deg,
    #9A7010 0%,
    #D4A828 18%,
    #F5E07A 30%,
    #FFFDE0 38%,
    #F5E07A 46%,
    #D4A828 58%,
    #9A7010 76%,
    #D4A828 90%,
    #ECC840 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 6s linear infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  letter-spacing: 0.08em;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #050505;
  padding: 10px 24px;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  /* Metallic gradient on the hamburger lines */
  background: linear-gradient(90deg, #9A7010, #ECC840, #9A7010);
  transition: 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 64px 80px;
  overflow: hidden;
  gap: 60px;
}

.hero-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* Multiple radial gradients — cinematic warm lighting from upper right */
  background:
    radial-gradient(ellipse 90% 80% at 70% 30%, rgba(190,148,10,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(160,110,5,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 85% 85%, rgba(180,135,8,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 640px;
  z-index: 1;
  animation: fade-up 0.9s ease 0.2s both;
}

.hero-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease 0.4s both;
  /* Metallic gold text */
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  /* CINEMATIC — fill the frame */
  font-size: clamp(4rem, 8.5vw, 8rem);
  line-height: 0.95;
  margin-bottom: 36px;
  animation: fade-up 0.8s ease 0.55s both;
}

.hero-line-1 {
  display: block;
  color: var(--white);
}

/* "I Have The Map." — this is the money line. Give it gold. */
.hero-line-2 {
  display: block;
  background: linear-gradient(
    to bottom,
    #FBE87A 0%,
    #D4A828 30%,
    #9A7010 60%,
    #C8961A 82%,
    #EAC840 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 500px;
  animation: fade-up 0.8s ease 0.7s both;
}

.hero-attribution {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 12px;
  /* Metallic gold */
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fade-up 0.8s ease 0.85s both;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}

.hero-image {
  max-height: 82vh;
  max-width: 520px;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* Subtle gold edge light on the image */
  filter: drop-shadow(0 0 40px rgba(190,148,10,0.18)) drop-shadow(0 0 80px rgba(180,130,5,0.08));
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
  /* Deep metallic gold — like a gold bar, not a sticky note */
  background: var(--gold-bar);
  padding: 44px 0;
  box-shadow:
    0 -2px 20px rgba(0,0,0,0.5),
    0 2px 20px rgba(0,0,0,0.5);
}

.proof-stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
}

.proof-item {
  flex: 1;
  padding: 0 32px;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(10,5,0,0.25);
  flex-shrink: 0;
}

.proof-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  /* Dark ink — stamped into gold */
  color: #1A0E00;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: #1A0E00;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(15,8,0,0.6);
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.proof-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(15,8,0,0.72);
  line-height: 1.6;
}

/* ============================================
   PRODUCT TRAYS
   ============================================ */
.products {
  position: relative;
  background: transparent;
  padding: 100px 64px;
  text-align: center;
  overflow: hidden;
}

/* Warm ambient light from above — sets the mood */
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(180,138,8,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.trays {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
}

.tray {
  flex: 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 48px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

/* Gold tray — richer border, bigger glow */
.tray-glow {
  border-color: rgba(200,160,30,0.4);
  animation: pulse-gold 3s ease-in-out infinite;
}

.tray-glow-red {
  border-color: rgba(220,50,50,0.25);
  animation: pulse-red 3s ease-in-out infinite;
  animation-delay: 0.8s;
}

.tray-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.tray-eyebrow-red {
  color: rgba(220,90,90,0.9);
}

.tray-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1.12;
}

.tray-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.tray-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
  margin: 4px 0;
}

/* "$59.99" — make it look like actual gold */
.tray-price-gold {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
}

.tray-price-muted {
  color: var(--muted);
  font-size: 1.8rem;
}

/* ============================================
   ROM-COM BANNER
   ============================================ */
.romcom-banner {
  position: relative;
  padding: 70px 64px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(190,148,20,0.15);
  border-bottom: 1px solid rgba(190,148,20,0.15);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.romcom-ambient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 70% 120% at 50% 50%, rgba(180,138,8,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.romcom-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.romcom-left {
  flex: 1;
}

.romcom-left .section-eyebrow {
  text-align: left;
}

.romcom-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.12;
}

.romcom-center {
  flex: 2;
  text-align: center;
}

.romcom-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.65;
}

.romcom-right {
  flex: 1;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ============================================
   FOLLOW + NEWSLETTER
   ============================================ */
.follow {
  background: transparent;
  padding: 100px 64px;
  text-align: center;
  position: relative;
}

.follow::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(180,138,8,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.follow-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.follow-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 44px;
}

.social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(190,148,20,0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  border-radius: 100px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.25s ease;
}

.social-btn:hover {
  border-color: rgba(210,165,30,0.6);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(180,138,10,0.15);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.newsletter-pill {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(190,148,20,0.25);
  border-radius: 100px;
  overflow: hidden;
  height: 58px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(180,138,10,0.08);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
}

.newsletter-input::placeholder {
  color: var(--muted);
}

.newsletter-btn {
  color: #050505;
  height: 100%;
  padding: 0 32px;
  border: none;
  border-left: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  border-radius: 0;
}

.microcopy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: transparent;
  /* Gold gradient border top — like a gilded frame */
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(190,148,20,0.5) 30%, rgba(220,175,40,0.7) 50%, rgba(190,148,20,0.5) 70%, transparent 100%) 1;
  padding: 64px 64px 44px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-wrap {
  margin-bottom: 44px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  /* Matching shimmer as the nav logo */
  background: linear-gradient(
    90deg,
    #9A7010 0%,
    #D4A828 18%,
    #F5E07A 30%,
    #FFFDE0 38%,
    #F5E07A 46%,
    #D4A828 58%,
    #9A7010 76%,
    #D4A828 90%,
    #ECC840 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 6s linear infinite;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}

.footer-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(190,148,20,0.18);
  color: var(--muted);
  transition: all 0.25s ease;
}

.footer-icon-wrap:hover {
  color: var(--gold-light);
  border-color: rgba(210,165,30,0.6);
  box-shadow: 0 0 16px rgba(180,138,10,0.25);
}

.footer-icon-wrap .social-icon {
  width: 18px;
  height: 18px;
}

.footer-legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  color: rgba(138,128,112,0.4);
  letter-spacing: 0.08em;
  line-height: 2;
}

.footer-legal a {
  color: rgba(138,128,112,0.4);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(4,4,4,0.96);
  z-index: 6000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border: 1px solid rgba(190,148,20,0.18);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: modal-in 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(180,138,10,0.06);
}

.modal-card-red {
  border-color: rgba(220,50,50,0.28);
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--white);
}

.modal-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.modal-input:focus {
  border-color: rgba(200,160,30,0.6);
  box-shadow: 0 0 12px rgba(180,138,10,0.15);
}

.modal-input::placeholder {
  color: var(--muted);
}

.modal-select {
  cursor: pointer;
  color: var(--muted);
}

.modal-select option {
  background: var(--surface2);
  color: var(--text);
}

.modal-submit {
  width: 100%;
  margin-top: 4px;
}

/* Apply toggle */
.apply-toggle-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.apply-toggle {
  display: flex;
  gap: 8px;
}

.apply-option {
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
}

.apply-option.selected {
  background: rgba(190,148,10,0.12);
  border-color: rgba(200,160,30,0.55);
  color: var(--gold-light);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--surface);
  border: 1px solid rgba(190,148,20,0.45);
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text);
  z-index: 7000;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(180,138,10,0.1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET  (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 140px 48px 60px;
    gap: 40px;
    align-items: flex-start;
  }

  .hero-image-wrap {
    justify-content: center;
    width: 100%;
  }

  .hero-image {
    max-height: 50vh;
    max-width: 420px;
    width: 100%;
  }

  .proof-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 0 32px;
  }

  .proof-item {
    flex: 0 0 50%;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(10,5,0,0.15);
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-bottom: none;
  }

  .proof-divider {
    display: none;
  }

  .trays {
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
  }

  .tray {
    width: 100%;
    max-width: 520px;
  }

  .romcom-banner {
    padding: 60px 48px;
  }

  .romcom-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .romcom-left .section-eyebrow {
    text-align: center;
  }

  .romcom-right {
    justify-content: center;
  }

  .products {
    padding: 80px 32px;
  }

  .follow {
    padding: 80px 48px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE NAV  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  /* Reduce logo to avoid crowding hamburger */
  .nav-logo {
    font-size: 1.35rem;
    /* Keep gradient but stop the shimmer — saves battery */
    animation: none;
    background-position: 40% center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(6,6,6,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 28px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(190,148,20,0.2);
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Scale bokeh down — fewer, smaller blobs on tablet */
  .b1 { width: 550px; height: 450px; filter: blur(70px); }
  .b2 { width: 500px; height: 600px; filter: blur(80px); }
  .b3 { width: 380px; height: 380px; filter: blur(90px); }
  .b4 { opacity: 0.6; }
  .b5 { opacity: 0.5; }
}

/* ============================================
   RESPONSIVE — MOBILE  (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  /* Ticker */
  .ticker-bar  { height: 28px; }
  .ticker-text { font-size: 0.62rem; padding: 0 20px; }

  /* Nav */
  .nav { top: 28px; padding: 12px 20px; }
  .nav-logo { font-size: 1.2rem; letter-spacing: 0.18em; }

  /* Hero */
  .hero { padding: 110px 20px 56px; gap: 32px; }

  .hero-headline { font-size: clamp(2.8rem, 11vw, 4rem); }

  .hero-subhead { font-size: 1.15rem; }

  .hero-ctas { flex-direction: column; align-items: stretch; }

  .btn-primary,
  .btn-ghost { text-align: center; padding: 15px 24px; }

  .hero-image-wrap { justify-content: center; }

  .hero-image {
    max-height: 42vh;
    max-width: 100%;
    width: 100%;
  }

  /* Social proof — full-width stack */
  .social-proof { padding: 32px 0; }

  .proof-stats { padding: 0 20px; }

  .proof-item {
    flex: 0 0 100%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10,5,0,0.18);
  }

  .proof-item:last-child { border-bottom: none; }

  .proof-number,
  .proof-heading { font-size: 1.5rem; }

  /* Products */
  .products { padding: 70px 20px; }

  .trays { padding: 0; gap: 16px; }

  .tray { padding: 36px 24px; border-radius: 16px; }

  .tray-price { font-size: 2.4rem; }

  .tray-price-gold { font-size: 2.6rem; }

  .tray-headline { font-size: 1.6rem; }

  /* Rom-com */
  .romcom-banner { padding: 44px 20px; }
  .romcom-content { gap: 20px; }
  .romcom-headline { font-size: 1.5rem; }

  /* Follow */
  .follow { padding: 70px 20px; }

  .social-btns { flex-direction: column; align-items: stretch; }

  .social-btn { width: 100%; justify-content: center; padding: 14px 24px; }

  .newsletter-pill {
    max-width: 100%;
    height: 52px;
  }

  .newsletter-btn { padding: 0 20px; }

  /* Footer */
  .footer {
    padding: 44px 20px 28px;
    /* border-image has limited support on some mobile browsers — fallback */
    border-image: none;
    border-top: 1px solid rgba(190,148,20,0.35);
  }

  .footer-logo { font-size: 1.5rem; animation: none; background-position: 40% center; }

  .footer-social { gap: 14px; }

  /* Toast — keep it from running off screen on small phones */
  .toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 100%;
  }

  /* Modals */
  .modal-card { padding: 32px 20px; border-radius: 16px; }

  .modal-headline { font-size: 1.7rem; }

  .apply-toggle { flex-wrap: wrap; }

  .apply-option { flex: 1 1 auto; min-width: 80px; }

  /* Bokeh — cut to 3 blobs, much smaller, lower opacity */
  .b1 { width: 320px; height: 280px; filter: blur(50px); opacity: 0.8; }
  .b2 { width: 280px; height: 340px; filter: blur(60px); opacity: 0.7; }
  .b3 { width: 220px; height: 220px; filter: blur(70px); opacity: 0.6; top: 30%; left: 20%; }
  .b4 { display: none; }
  .b5 { display: none; }

  /* Stop shimmer on mobile — battery & performance */
  .nav-logo,
  .footer-logo { animation: none; background-position: 40% center; }
}

/* ============================================
   RESPONSIVE — SMALL PHONES  (≤ 390px)
   ============================================ */
@media (max-width: 390px) {
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3rem); }

  .hero-eyebrow { font-size: 1.3rem; }

  .tray { padding: 28px 18px; }

  .tray-price      { font-size: 2rem; }
  .tray-price-gold { font-size: 2.2rem; }

  .nav-logo { font-size: 1.05rem; }

  .btn-tray { font-size: 0.68rem; padding: 14px 16px; }
}
