/* ============================================================
   WildCedarValley.com — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables ----------------------------------------- */
:root {
  /* Forest Greens — deep wilderness palette */
  --green-950: #040f0a;
  --green-900: #091c13;
  --green-800: #122e1f;
  --green-700: #1c4530;
  --green-600: #275e43;
  --green-500: #347a57;
  --green-400: #4d9e72;
  --green-300: #74c295;
  --green-200: #a8dcbe;
  --green-100: #d6f0e3;
  --green-50:  #edf8f3;

  /* Amber / Cedar Gold — warm, natural, not formal */
  --gold-900: #4e2c08;
  --gold-800: #6e400f;
  --gold-700: #935a18;
  --gold-600: #b87a26;
  --gold-500: #d09535;
  --gold-400: #e0af4e;
  --gold-300: #edca72;
  --gold-200: #f6e2a8;
  --gold-100: #fdf3d4;
  --gold-50:  #fffae8;

  /* Cedar / Tawny — wood-warm accent */
  --cedar-900: #3a1a0c;
  --cedar-700: #7a3a1c;
  --cedar-500: #b05830;
  --cedar-300: #d4906a;
  --cedar-100: #f5dece;

  /* Stone — mountain grays */
  --stone-900: #1a1c18;
  --stone-800: #2a2d27;
  --stone-700: #40443c;
  --stone-600: #5a5f54;
  --stone-500: #767b6e;
  --stone-400: #979c8e;
  --stone-300: #bac0b0;
  --stone-200: #d8ddd0;
  --stone-100: #f0f2ec;
  --stone-50:  #f7f8f5;

  /* Aliases kept for backward compat */
  --neutral-950: var(--stone-900);
  --neutral-900: var(--stone-800);
  --neutral-800: var(--stone-700);
  --neutral-700: var(--stone-600);
  --neutral-600: var(--stone-500);
  --neutral-500: var(--stone-400);
  --neutral-400: var(--stone-300);
  --neutral-300: var(--stone-200);
  --neutral-200: var(--stone-200);
  --neutral-100: var(--stone-100);
  --neutral-50:  var(--stone-50);

  /* Semantic */
  --cream:     #f0ece3;
  --parchment: #e6e0d2;
  --success:   #2a7550;
  --warning:   #b87a26;
  --error:     #b03030;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing (8px grid) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.14), 0 1px 2px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 34px rgba(0,0,0,0.22), 0 4px 14px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 64px rgba(0,0,0,0.30), 0 8px 26px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 22px rgba(208,149,53,0.30);
  --shadow-green: 0 4px 22px rgba(52,122,87,0.28);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --container: 1200px;
  --header-h:  72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--stone-800);
  background-color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.05rem; }

p { line-height: 1.7; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--stone-600);
}

/* --- Layout helpers ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section     { padding: var(--sp-12) 0; }
.section--sm { padding: var(--sp-8) 0; }
.section--lg { padding: 6rem 0; }

.section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cedar-500);
  margin-bottom: var(--sp-2);
}

.section__title {
  color: var(--green-900);
  margin-bottom: var(--sp-2);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--stone-600);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--green-900);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(208,149,53,0.42);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-700);
}
.btn--secondary:hover {
  background: var(--green-800);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.btn--outline-gold:hover {
  background: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* --- Header ------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(9, 28, 19, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208,149,53,0.14);
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-logo__mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border: 1px solid rgba(208,149,53,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.site-logo__tag {
  font-size: 0.63rem;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}
.nav-link:hover {
  color: var(--gold-300);
  background: rgba(255,255,255,0.06);
}
.nav-link.active { color: var(--gold-300); }

.nav-cta {
  margin-left: var(--sp-1);
  padding: 0.5rem 1.25rem;
  background: var(--gold-500);
  color: var(--green-900);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--duration-base) var(--ease-out);
}
.nav-cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--green-900);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--green-900);
  border-bottom: 1px solid rgba(208,149,53,0.18);
  padding: var(--sp-3);
  flex-direction: column;
  gap: var(--sp-1);
  z-index: 899;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  padding: 0.75rem var(--sp-2);
  border-radius: var(--radius-md);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-10) 0 0;
  border-top: 1px solid rgba(208,149,53,0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand__logo {
  margin-bottom: var(--sp-3);
}

.footer-brand__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  max-width: 280px;
  margin-bottom: var(--sp-3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--sp-3);
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--duration-fast);
  line-height: 1.5;
}
a.footer-contact__item:hover { color: var(--gold-300); }

.footer-contact__icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cedar-300);
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(208,149,53,0.10);
  border: 1px solid rgba(208,149,53,0.28);
  color: var(--gold-300);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--gold-300); }

.footer-disclaimer {
  margin: var(--sp-6) 0;
  padding: var(--sp-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(208,149,53,0.12);
  border-left: 3px solid var(--cedar-500);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer strong { color: rgba(255,255,255,0.65); }

.footer-disclaimer a {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer a:hover { color: var(--gold-200); }

.footer-bottom {
  padding: var(--sp-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.30);
}

/* --- Age Verification Modal -------------------------------- */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 15, 10, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  opacity: 1;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.age-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-modal {
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
  border: 1px solid rgba(208,149,53,0.22);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transition: transform var(--duration-slow) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.age-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(208,149,53,0.05) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.age-modal__crest {
  width: 76px;
  height: 76px;
  margin: 0 auto var(--sp-3);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border: 2px solid rgba(208,149,53,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.age-modal__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.age-modal__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.age-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(176,40,40,0.15);
  border: 1px solid rgba(176,40,40,0.38);
  color: #f08080;
  border-radius: var(--radius-full);
  padding: 0.4rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.age-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-4);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  position: relative;
  z-index: 1;
}
.age-checkbox-wrap:hover {
  border-color: rgba(208,149,53,0.38);
}

.age-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold-500);
  cursor: pointer;
  margin-top: 2px;
}

.age-checkbox-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.age-confirm-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--gold-500);
  color: var(--green-900);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  border: none;
  opacity: 0.45;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.age-confirm-btn.enabled {
  opacity: 1;
  pointer-events: auto;
}
.age-confirm-btn.enabled:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.age-modal__note {
  margin-top: var(--sp-3);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* --- Cookie Consent ---------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8888;
  background: var(--green-900);
  border-top: 1px solid rgba(208,149,53,0.18);
  padding: var(--sp-3) 0;
  box-shadow: 0 -8px 36px rgba(0,0,0,0.28);
  transform: translateY(0);
  transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- Card Component ---------------------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Game Card --------------------------------------------- */
.game-card {
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(208,149,53,0.14);
  box-shadow: var(--shadow-lg);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(208,149,53,0.32);
}

.game-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card__body {
  padding: var(--sp-4);
}

.game-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.game-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}

.game-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(208,149,53,0.13);
  color: var(--gold-300);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

/* --- Hero -------------------------------------------------- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(170deg, var(--green-950) 0%, var(--green-900) 45%, #183628 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Forest canopy light atmosphere */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(52,122,87,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(208,149,53,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 90%, rgba(176,88,48,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle organic dot pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(208,149,53,0.04) 1px, transparent 0),
    radial-gradient(circle at 20px 20px, rgba(52,122,87,0.04) 1px, transparent 0);
  background-size: 40px 40px, 80px 80px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(208,149,53,0.10);
  border: 1px solid rgba(208,149,53,0.26);
  color: var(--gold-300);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.08;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-300);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: var(--sp-5);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.hero__stats {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.hero-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 580px;
  pointer-events: none;
}

/* --- Section backgrounds ----------------------------------- */
.bg-green-dark  { background: var(--green-900); color: #fff; }
.bg-green-dark  h2, .bg-green-dark h3 { color: #fff; }
.bg-green-dark  .section__subtitle { color: rgba(255,255,255,0.60); }

.bg-cream       { background: var(--cream); }
.bg-white       { background: #fff; }
.bg-parchment   { background: var(--parchment); }
.bg-green-light { background: var(--green-50); }

/* --- Benefit Cards ----------------------------------------- */
.benefit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}
.benefit-card:hover {
  border-color: rgba(52,122,87,0.28);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-3);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border: 1px solid rgba(52,122,87,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform var(--duration-base) var(--ease-spring);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-3deg);
}

.benefit-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.benefit-card__text {
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.65;
}

/* --- Grid helpers ------------------------------------------ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }

/* --- Page header ------------------------------------------- */
.page-hero {
  background: linear-gradient(170deg, var(--green-950) 0%, var(--green-800) 100%);
  padding: calc(var(--header-h) + var(--sp-8)) 0 var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(52,122,87,0.15) 0%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(208,149,53,0.04) 1px, transparent 0);
  background-size: auto, 32px 32px;
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 2; }

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cedar-300);
  margin-bottom: var(--sp-2);
}

.page-hero__title {
  color: #fff;
  margin-bottom: var(--sp-2);
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Content page body ------------------------------------- */
.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-3);
}

.content-body h2 {
  font-size: 1.65rem;
  color: var(--green-800);
  margin: var(--sp-6) 0 var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.content-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.content-body h3 {
  font-size: 1.25rem;
  color: var(--green-700);
  margin: var(--sp-4) 0 var(--sp-2);
}

.content-body p {
  color: var(--stone-700);
  margin-bottom: var(--sp-2);
}

.content-body ul, .content-body ol {
  margin: var(--sp-2) 0 var(--sp-3) var(--sp-4);
  color: var(--stone-700);
}

.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }

.content-body li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.content-body a {
  color: var(--green-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-body a:hover { color: var(--green-500); }

.content-info-box {
  background: var(--green-50);
  border-left: 3px solid var(--green-400);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
  font-size: 0.92rem;
  color: var(--green-800);
}

.content-warning-box {
  background: var(--gold-50);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
  font-size: 0.92rem;
  color: var(--stone-800);
}

/* --- FAQ accordion ----------------------------------------- */
.faq-item {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-2);
  transition: box-shadow var(--duration-fast);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-800);
  transition: background var(--duration-fast);
  gap: var(--sp-2);
}
.faq-question:hover { background: var(--green-50); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-500);
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  background: var(--cream);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out), padding var(--duration-slow) var(--ease-out);
}
.faq-answer.open {
  max-height: 400px;
  padding: var(--sp-3) var(--sp-4);
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--stone-600);
  line-height: 1.7;
}

/* --- Coin Display ------------------------------------------ */
.coin-display {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(208,149,53,0.10);
  border: 1px solid rgba(208,149,53,0.28);
  color: var(--gold-300);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.coin-display__icon { font-size: 1rem; }

/* --- Scroll reveal animation ------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Divider ----------------------------------------------- */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(52,122,87,0.35), transparent);
}
.ornament-divider__symbol {
  color: var(--green-500);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { opacity: 0.15; width: 60%; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: calc(var(--header-h) + var(--sp-8)) 0 var(--sp-8); }
  .hero__visual { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .section { padding: var(--sp-8) 0; }
  .section--lg { padding: var(--sp-10) 0; }

  .cookie-banner__inner { flex-direction: column; gap: var(--sp-2); }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero__stats { gap: var(--sp-4); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .age-modal { padding: var(--sp-4); }
}

/* --- Utilities ---------------------------------------------- */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold-500); }
.text-green   { color: var(--green-600); }
.text-muted   { color: var(--stone-500); }
.mt-auto      { margin-top: auto; }
.hidden       { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Scrollbar --------------------------------------------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--green-950); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }

/* --- Selection --------------------------------------------- */
::selection {
  background: rgba(208,149,53,0.28);
  color: var(--green-900);
}
