/* ============================================================
   420 LITE — retro lakeside summer
   Palette pulled straight from the bag art
   ============================================================ */
:root {
  --sky:        #8FD8E8;   /* bag turquoise */
  --sky-pale:   #C8ECF4;
  --sky-deep:   #5BC4DC;
  --grass:      #4E8A3A;
  --grass-dark: #2F4A1E;   /* logo oval green */
  --leaf:       #6BA82F;
  --cream:      #F2E8C9;
  --gold:       #C9A96A;
  --ink:        #1E2D14;
  --orange:     #E8703A;
  --brown:      #4A3826;
}

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

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--sky);
  color: var(--ink);
  font-family: "Lato", system-ui, sans-serif;
  overflow-x: hidden;
}

/* ---------- Fixed nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(30,45,20,0.55), rgba(30,45,20,0));
}
.nav-brand {
  font-family: "Alfa Slab One", serif;
  font-size: 1.35rem;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(30,45,20,0.5);
  letter-spacing: 0.04em;
}
.nav-brand .n420 { color: #fff; }
.nav-tag {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--cream);
  opacity: 0.9;
}
.nav-cta {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 8px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,45,20,0.35); }

/* ---------- Cinematic scrub sections ---------- */
.cinematic { position: relative; height: 460vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--sky);
}
.cinematic canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sky-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 95% at 50% 45%, transparent 55%, rgba(30, 45, 20, 0.38) 100%),
    linear-gradient(180deg, rgba(30,45,20,0.28) 0%, transparent 22%, transparent 75%, rgba(30,45,20,0.42) 100%);
}

/* ---------- Overlay copy ---------- */
.overlay { position: absolute; inset: 0; z-index: 10; text-align: center; pointer-events: none; }
.reveal-line {
  position: absolute;
  left: 0; right: 0;
  top: 72%;
  margin: 0 auto;
  width: 92vw;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--cream);
  opacity: 0;
  text-shadow: 0 3px 0 rgba(30,45,20,0.55), 0 10px 40px rgba(30,45,20,0.45);
  will-change: opacity, transform;
  text-transform: uppercase;
}
.reveal-line.gold {
  color: #F7D98B;
  text-shadow: 0 3px 0 rgba(30,45,20,0.6), 0 12px 50px rgba(30,45,20,0.55);
}
.scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--cream);
  animation: bob 1.8s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- Shared section chrome ---------- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 780px; }
.center { text-align: center; }
.sec-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 48px;
  color: var(--ink);
}
.sec-title.cream { color: var(--cream); }

/* scroll reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Intro strip ---------- */
.strip.grass {
  background: linear-gradient(180deg, var(--grass) 0%, var(--grass-dark) 100%);
  padding: 96px 28px;
  position: relative;
}
.strip-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.strip h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 20px;
}
.strip p { color: var(--sky-pale); font-size: 1.2rem; line-height: 1.7; }
.strip em { color: #F7D98B; font-style: italic; }
.badges {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--cream);
}
.badges .sep { color: var(--gold); }

/* ---------- Benefits ---------- */
.benefits.sky {
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--sky) 60%, var(--sky-deep) 100%);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.cloud { position: absolute; fill: rgba(255,255,255,0.75); filter: blur(1px); z-index: 0; }
.cloud.c1 { width: 340px; top: 40px; left: -60px; animation: drift 46s linear infinite; }
.cloud.c2 { width: 240px; top: 130px; right: -80px; animation: drift 62s linear infinite reverse; }
@keyframes drift { 0% { transform: translateX(0); } 50% { transform: translateX(60px); } 100% { transform: translateX(0); } }
.benefits .wrap { position: relative; z-index: 2; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(30,45,20,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(30,45,20,0.26); }
.card-ico { font-size: 2rem; margin-bottom: 12px; }
.card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--grass-dark);
}
.card p { line-height: 1.6; color: var(--ink); }

/* ---------- Buzz meter ---------- */
.buzz.grass-dark {
  background: linear-gradient(180deg, var(--grass-dark), #24380F);
  padding: 100px 0 110px;
}
.meter { max-width: 560px; margin: 0 auto; }
.meter-track {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: rgba(242,232,201,0.18);
  border: 2px solid var(--gold);
  overflow: visible;
}
.meter-fill {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #A6D25A, var(--leaf));
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.meter.in .meter-fill { width: 26%; }
.meter-dot {
  position: absolute;
  top: 50%; left: 0%;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #F7D98B;
  border: 3px solid var(--grass-dark);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(247,217,139,0.6);
  transition: left 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.meter.in .meter-dot { left: 26%; }
.meter-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: rgba(242,232,201,0.55);
}
.meter-labels .lit { color: #F7D98B; }
.meter-note { text-align: center; margin-top: 30px; color: var(--sky-pale); font-size: 1.1rem; }
.meter-note b { color: #F7D98B; }

/* ---------- Lineup ---------- */
.lineup.cream-bg {
  background: linear-gradient(180deg, var(--cream), #E8DBB5);
  padding: 110px 0 120px;
}
.bag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 34px;
  align-items: end;
}
.bag { text-align: center; }
.bag img {
  width: 100%;
  max-width: 300px;
  height: auto;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}
.bag:hover img { transform: translateY(-10px) rotate(-1.5deg); }
.bag h3 {
  font-family: "Alfa Slab One", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin: 18px 0 6px;
  color: var(--grass-dark);
}
.bag p { color: var(--ink); opacity: 0.8; line-height: 1.55; max-width: 300px; margin: 0 auto; }

/* ---------- FAQ ---------- */
.faq.sky {
  background: linear-gradient(180deg, var(--sky-deep), var(--sky));
  padding: 100px 0 110px;
}
.faq details {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: "Oswald", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: var(--grass-dark);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "▾";
  position: absolute;
  right: 22px;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { padding: 0 24px 20px; line-height: 1.65; color: var(--ink); }

/* ---------- Final CTA ---------- */
.cta.grass {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(247,217,139,0.12), transparent 60%),
    linear-gradient(180deg, var(--grass) 0%, var(--grass-dark) 100%);
  padding: 120px 0 130px;
}
.cta-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.05em;
  color: #F7D98B;
  margin-bottom: 16px;
}
.cta p { color: var(--sky-pale); font-size: 1.25rem; margin-bottom: 40px; }
.big-cta {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-pale), var(--sky-deep));
  border: 3px solid var(--cream);
  border-radius: 999px;
  padding: 20px 48px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.big-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 22px 50px rgba(0,0,0,0.38); }

/* ---------- Footer ---------- */
.footer {
  background: var(--brown);
  padding: 60px 28px 50px;
  text-align: center;
}
.foot-chip {
  display: inline-block;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 10px 18px;
  margin-bottom: 22px;
}
.foot-logo { height: 84px; width: auto; mix-blend-mode: multiply; display: block; }
.foot-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 26px; }
.foot-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.foot-links a:hover { color: #F7D98B; }
.compliance { max-width: 720px; margin: 0 auto; color: rgba(242,232,201,0.6); font-size: 0.82rem; line-height: 1.7; }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .nav { padding: 12px 16px; }
  .nav-tag { display: none; }
  .cinematic { height: 380vh; }
  .reveal-line { font-size: clamp(1.9rem, 9vw, 3rem); }
  .card-grid { gap: 18px; }
  .bag-grid { gap: 40px; }
}
