@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --forest:      #1b4332;
  --forest-mid:  #2d6a4f;
  --forest-light:#40916c;
  --maple:       #c53d0c;
  --maple-mid:   #e05a20;
  --amber:       #d4860a;
  --amber-light: #f4a825;
  --mountain:    #4a6c7a;
  --mountain-mid:#6a8fa0;
  --mountain-light:#a8c5d5;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe0;
  --bark:        #5c3d2e;
  --bark-light:  #8b6355;
  --snow:        #f4f8fb;
  --mist:        #e8ede8;
  --text-dark:   #1a2520;
  --text-mid:    #3d4f45;
  --text-light:  #6b7d73;
  --text-muted:  #9aab9e;
  --success:     #2d7a4a;
  --warning:     #c98a00;
  --error:       #b83220;
  --white:       #ffffff;

  --shadow-sm:  0 2px 8px rgba(27,67,50,0.08);
  --shadow-md:  0 4px 20px rgba(27,67,50,0.12);
  --shadow-lg:  0 8px 40px rgba(27,67,50,0.18);
  --shadow-xl:  0 16px 60px rgba(27,67,50,0.22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; outline: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.7; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--maple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(197,61,12,0.3);
}
.btn-primary:hover {
  background: var(--maple-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,61,12,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,134,10,0.3);
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,134,10,0.4);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== PILL / BADGE ===== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-maple  { background: rgba(197,61,12,0.12); color: var(--maple); }
.badge-forest { background: rgba(27,67,50,0.1); color: var(--forest-mid); }
.badge-amber  { background: rgba(212,134,10,0.12); color: var(--amber); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; color: var(--text-dark); }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===== CARD ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(27,67,50,0.06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(27,67,50,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--maple), var(--amber));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(197,61,12,0.3);
}
.logo-text { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-sub  { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; display: block; line-height: 1; }
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.balance-display {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.balance-display .coin-icon { font-size: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: rgba(27,67,50,0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/1266831/pexels-photo-1266831.jpeg?auto=compress&w=1600') center/cover no-repeat;
  opacity: 0.25;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,67,50,0.95) 0%,
    rgba(27,67,50,0.8) 50%,
    rgba(74,108,122,0.7) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.leaf {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(-60px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,61,12,0.2);
  border: 1px solid rgba(197,61,12,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--amber-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
}
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat { color: var(--white); }
.hero-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--cream); }
.game-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid rgba(27,67,50,0.06);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.game-card-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card-thumb.slots-thumb   { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }
.game-card-thumb.bj-thumb      { background: linear-gradient(135deg, #2c3e50 0%, #3a5068 100%); }
.game-card-thumb.dice-thumb    { background: linear-gradient(135deg, #4a3728 0%, #6b5040 100%); }
.game-thumb-art {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.game-card:hover .game-thumb-art { transform: scale(1.1) rotate(-5deg); }
.game-thumb-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.game-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.game-card-body h3 { margin-bottom: 10px; color: var(--text-dark); }
.game-card-body p  { color: var(--text-light); font-size: 0.95rem; flex: 1; margin-bottom: 24px; }
.game-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--mist);
  color: var(--text-mid);
}

/* ===== FEATURES ===== */
.features-section { background: var(--forest); }
.features-section .section-header h2,
.features-section .section-header .badge { color: var(--white); }
.features-section .section-header p { color: rgba(255,255,255,0.65); }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(197,61,12,0.25);
  border-color: rgba(197,61,12,0.4);
  transform: scale(1.05);
}
.feature-content h4 { color: var(--white); margin-bottom: 8px; }
.feature-content p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--mountain) 100%);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,61,12,0.15), transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--amber-light); }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer-disclaimer strong { color: rgba(255,255,255,0.75); }
.footer-disclaimer a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.age-badge-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--maple);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== AGE MODAL ===== */
#age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-modal.hidden { display: none; }
.age-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.age-modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maple), var(--amber));
}
.age-modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.age-modal-box h2 { margin-bottom: 12px; color: var(--text-dark); }
.age-modal-box p  { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }
.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.age-check-label:hover { border-color: var(--forest-mid); background: var(--mist); }
.age-check-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.age-check-label span { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
#age-confirm-btn {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: not-allowed;
  opacity: 0.45;
}
#age-confirm-btn.ready {
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 4px 16px rgba(27,67,50,0.3);
}
#age-confirm-btn.ready:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.4);
}
.age-deny-link {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}
.age-deny-link:hover { color: var(--error); }

/* ===== COOKIE CONSENT ===== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8888;
  background: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  max-width: 680px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-slow);
}
#cookie-banner.hidden { display: none; }
.cookie-text {
  flex: 1;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.cookie-text a { color: var(--amber-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
#cookie-accept { background: var(--forest-light); color: var(--white); }
#cookie-accept:hover { background: var(--forest-mid); }
#cookie-decline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }
#cookie-decline:hover { background: rgba(255,255,255,0.14); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/1266831/pexels-photo-1266831.jpeg?auto=compress&w=1600') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .badge { margin-bottom: 16px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p   { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1.1rem; }

/* ===== PROSE (legal/info content) ===== */
.prose-section { background: var(--cream); }
.prose-wrap { max-width: 800px; margin: 0 auto; }
.prose-wrap h2 { margin: 48px 0 16px; color: var(--forest); }
.prose-wrap h3 { margin: 32px 0 12px; color: var(--text-dark); }
.prose-wrap p  { color: var(--text-mid); margin-bottom: 16px; }
.prose-wrap ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.prose-wrap ul li { color: var(--text-mid); margin-bottom: 8px; }
.prose-wrap ol { padding-left: 24px; list-style: decimal; margin-bottom: 16px; }
.prose-wrap ol li { color: var(--text-mid); margin-bottom: 8px; }
.prose-wrap a  { color: var(--forest-mid); text-decoration: underline; }
.prose-highlight {
  background: linear-gradient(135deg, rgba(27,67,50,0.06), rgba(197,61,12,0.04));
  border-left: 4px solid var(--forest-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.prose-highlight p { margin: 0; }
.last-updated {
  display: inline-block;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-nav, .header-actions .btn { display: none; }
  .hamburger  { display: flex; }
  .hero-content { padding-top: 100px; }
  .hero-stats { gap: 24px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .age-modal-box { padding: 36px 24px; }
  h1 { font-size: 2rem; }
}

/* ===== UTILITY ===== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.color-maple   { color: var(--maple); }
.color-forest  { color: var(--forest); }
.color-amber   { color: var(--amber); }
.color-muted   { color: var(--text-muted); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.serif  { font-family: var(--font-serif); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.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; }
