/* MellowPineLand — Main styles */

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-variant-numeric: tabular-nums;
}

main { flex: 1; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  background: var(--pine-900);
  color: var(--white);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-md);
  z-index: var(--z-toast);
  font-weight: 600;
  transition: top var(--d-base) var(--ease-out);
}
.skip-link:focus { top: var(--s-4); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.brand { display: flex; align-items: center; gap: var(--s-2); }
.brand__logo { width: 36px; height: 36px; }
.brand__text { font-weight: 700; font-size: var(--fs-base); color: var(--pine-900); letter-spacing: -0.02em; line-height: 1; }
.brand__sub { font-size: 0.625rem; font-weight: 600; color: var(--pine-500); letter-spacing: 0.12em; line-height: 1; margin-top: 2px; }

.nav-desktop { display: none; }
.nav-desktop__list { display: flex; gap: var(--s-1); }
.nav-desktop__link {
  display: block;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--d-fast), background var(--d-fast);
}
.nav-desktop__link:hover { color: var(--pine-900); background: var(--pine-100); }
.nav-desktop__link.is-active { color: var(--pine-700); background: var(--pine-100); }

.header-actions { display: flex; align-items: center; gap: var(--s-2); }

.balance-pill {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--pine-100);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--pine-900);
}
.balance-pill__coin { width: 18px; height: 18px; }
.balance-pill__value { font-variant-numeric: tabular-nums; min-width: 50px; text-align: right; }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--danger-500);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}
.age-badge--lg { width: 48px; height: 48px; font-size: 0.875rem; border-radius: var(--r-lg); }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  color: var(--color-text);
  transition: background var(--d-fast);
}
.menu-toggle:hover { background: var(--pine-100); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  visibility: hidden;
}
.nav-mobile.is-open { pointer-events: auto; visibility: visible; }
.nav-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 51, 0.5);
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out);
}
.nav-mobile.is-open .nav-mobile__backdrop { opacity: 1; }
.nav-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-surface);
  padding: var(--s-6);
  padding-top: calc(var(--header-h) + var(--s-4));
  transform: translateX(100%);
  transition: transform var(--d-base) var(--ease-out);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.nav-mobile.is-open .nav-mobile__panel { transform: translateX(0); }
.nav-mobile__list { display: flex; flex-direction: column; gap: var(--s-1); }
.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--d-fast);
}
.nav-mobile__link:hover { background: var(--pine-100); }
.nav-mobile__link.is-active { background: var(--pine-100); color: var(--pine-700); font-weight: 600; }
.nav-mobile__divider { height: 1px; background: var(--color-border); margin: var(--s-4) 0; }
.nav-mobile__disclaimer { font-size: var(--fs-xs); color: var(--color-text-subtle); line-height: 1.6; margin-top: var(--s-4); }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background var(--d-fast), color var(--d-fast), transform var(--d-fast), box-shadow var(--d-fast);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--pine-700);
  color: var(--white);
  box-shadow: 0 4px 0 0 var(--pine-900);
}
.btn--primary:hover { background: var(--pine-800); transform: translateY(-1px); box-shadow: 0 5px 0 0 var(--pine-900); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--pine-900); }

.btn--accent {
  background: var(--aurora-500);
  color: var(--white);
  box-shadow: 0 4px 0 0 var(--pine-700);
}
.btn--accent:hover { background: var(--aurora-400); transform: translateY(-1px); box-shadow: 0 5px 0 0 var(--pine-700); }
.btn--accent:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--pine-700); }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}
.btn--ghost:hover { background: var(--snow-100); border-color: var(--pine-500); }

.btn--lg { padding: var(--s-4) var(--s-8); font-size: var(--fs-base); border-radius: var(--r-lg); }
.btn--xl { padding: var(--s-5) var(--s-10); font-size: var(--fs-lg); border-radius: var(--r-lg); }
.btn--block { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: var(--s-12) 0 var(--s-16);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--aurora-200) 0%, transparent 70%);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pine-200) 0%, transparent 70%);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
.hero__inner { display: grid; gap: var(--s-10); align-items: center; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--aurora-100);
  color: var(--pine-800);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--success-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero__title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pine-900);
  line-height: 1.05;
  margin-bottom: var(--s-4);
}
.hero__title-accent { color: var(--aurora-500); }
.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: var(--s-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
}
.hero__trust-item { display: inline-flex; align-items: center; gap: var(--s-1); }
.hero__trust-item svg { width: 14px; height: 14px; color: var(--success-500); }
.hero__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--s-2);
  padding: var(--s-4);
}
.hero__visual-cell {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__visual-cell img { width: 80%; height: 80%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.hero__visual-decor {
  position: absolute;
  bottom: var(--s-4);
  right: var(--s-4);
  background: var(--amber-500);
  color: var(--pine-900);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

@media (min-width: 768px) {
  .hero { padding: var(--s-20) 0; }
  .hero__title { font-size: var(--fs-5xl); }
  .hero__inner { grid-template-columns: 1.1fr 1fr; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: var(--fs-6xl); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ========== DAILY BONUS WIDGET ========== */
.daily-bonus {
  background: linear-gradient(135deg, var(--aurora-400), var(--pine-500));
  color: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--s-6);
  display: grid;
  gap: var(--s-4);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.daily-bonus::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.daily-bonus__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.daily-bonus__icon svg { width: 28px; height: 28px; }
.daily-bonus__title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--s-1); }
.daily-bonus__text { font-size: var(--fs-sm); opacity: 0.9; }
.daily-bonus__cta-wrap { display: flex; flex-direction: column; gap: var(--s-2); }
.daily-bonus__cta {
  background: var(--white);
  color: var(--pine-900);
  font-weight: 700;
}
.daily-bonus__cta:hover { background: var(--amber-400); color: var(--pine-900); }
.daily-bonus__cta:disabled { background: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.daily-bonus__timer { font-size: var(--fs-xs); opacity: 0.85; font-variant-numeric: tabular-nums; }
@media (min-width: 600px) {
  .daily-bonus { grid-template-columns: auto 1fr auto; padding: var(--s-8); }
  .daily-bonus__icon { width: 72px; height: 72px; }
  .daily-bonus__icon svg { width: 36px; height: 36px; }
  .daily-bonus__cta-wrap { align-items: stretch; min-width: 200px; }
}

/* ========== SECTIONS ========== */
.section { padding: var(--s-12) 0; }
.section--alt { background: var(--color-surface-2); }
.section__header { text-align: center; margin-bottom: var(--s-10); max-width: 720px; margin-inline: auto; }
.section__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine-500);
  margin-bottom: var(--s-3);
}
.section__title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pine-900);
  margin-bottom: var(--s-3);
}
.section__subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section { padding: var(--s-20) 0; }
  .section__title { font-size: var(--fs-4xl); }
}

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  transition: transform var(--d-base), box-shadow var(--d-base), border-color var(--d-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aurora-300);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--pine-100);
  color: var(--pine-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title { font-size: var(--fs-lg); font-weight: 700; color: var(--pine-900); margin-bottom: var(--s-2); }
.feature-card__text { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.6; }
@media (min-width: 600px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features { grid-template-columns: repeat(4, 1fr); } }

/* ========== GAME CARD ========== */
.game-showcase {
  display: grid;
  gap: var(--s-8);
  align-items: center;
  background: linear-gradient(135deg, var(--pine-800), var(--pine-900));
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.game-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(79, 195, 197, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.game-showcase__inner { position: relative; display: grid; gap: var(--s-8); align-items: center; }
.game-showcase__badge {
  display: inline-block;
  background: var(--amber-500);
  color: var(--pine-900);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}
.game-showcase__title { font-size: var(--fs-3xl); font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-3); }
.game-showcase__text { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--s-5); line-height: 1.6; }
.game-showcase__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}
.game-showcase__tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 500;
}
.game-showcase__preview {
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--s-2);
  padding: var(--s-6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-showcase__preview-cell {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.game-showcase__preview-cell img { width: 80%; height: 80%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.game-showcase__cta { background: var(--amber-500); color: var(--pine-900); box-shadow: 0 4px 0 0 var(--amber-700); }
.game-showcase__cta:hover { background: var(--amber-400); }
@media (min-width: 768px) {
  .game-showcase { padding: var(--s-12); }
  .game-showcase__title { font-size: var(--fs-4xl); }
  .game-showcase__inner { grid-template-columns: 1.1fr 1fr; }
}

/* ========== FAQ ========== */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-3);
  overflow: hidden;
  transition: border-color var(--d-fast);
}
.faq-item[open] { border-color: var(--aurora-300); }
.faq-item__q {
  padding: var(--s-5);
  font-weight: 600;
  color: var(--pine-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-size: var(--fs-base);
  line-height: 1.4;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '';
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--pine-500);
  border-bottom: 2px solid var(--pine-500);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--d-base) var(--ease-out);
  margin-top: -4px;
}
.faq-item[open] .faq-item__q::after { transform: rotate(-135deg); }
.faq-item__a {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: var(--fs-sm);
}

/* ========== RG TEASER ========== */
.rg-teaser {
  background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rg-teaser__icon {
  width: 56px;
  height: 56px;
  background: var(--aurora-400);
  color: var(--pine-900);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}
.rg-teaser__icon svg { width: 28px; height: 28px; }
.rg-teaser__title { font-size: var(--fs-2xl); font-weight: 700; margin-bottom: var(--s-3); }
.rg-teaser__text { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--s-5); max-width: 56ch; margin-inline: auto; line-height: 1.6; }
.rg-teaser__cta { background: var(--white); color: var(--pine-900); }
.rg-teaser__cta:hover { background: var(--amber-400); }
@media (min-width: 768px) { .rg-teaser { padding: var(--s-12); } }

/* ========== NEWSLETTER ========== */
.newsletter { max-width: 560px; margin-inline: auto; text-align: center; }
.newsletter__form { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }
.newsletter__input {
  flex: 1;
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  background: var(--color-surface);
  transition: border-color var(--d-fast);
  min-width: 0;
}
.newsletter__input:focus { border-color: var(--aurora-500); outline: none; box-shadow: var(--shadow-glow); }
.newsletter__note { font-size: var(--fs-xs); color: var(--color-text-subtle); margin-top: var(--s-3); }
@media (min-width: 480px) {
  .newsletter__form { flex-direction: row; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  z-index: var(--z-overlay);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-3);
  max-width: 480px;
  margin-inline: auto;
  font-size: var(--fs-sm);
  animation: slideUp var(--d-slow) var(--ease-out);
}
.cookie-banner__title { font-weight: 700; color: var(--pine-900); display: flex; align-items: center; gap: var(--s-2); }
.cookie-banner__title svg { width: 20px; height: 20px; color: var(--amber-500); }
.cookie-banner__text { color: var(--color-text-muted); line-height: 1.5; }
.cookie-banner__text a { color: var(--pine-700); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; min-width: 100px; padding: var(--s-2) var(--s-3); font-size: var(--fs-xs); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--pine-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s-12) 0 var(--s-6);
  margin-top: var(--s-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.footer-col__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}
.footer-col__list { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--d-fast);
  display: inline-block;
}
.footer-col__link:hover { color: var(--aurora-400); }
.footer-brand { max-width: 360px; }
.footer-brand__text { font-size: var(--fs-sm); line-height: 1.6; margin-top: var(--s-3); }
.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: var(--s-4);
}
.footer-disclaimer {
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer strong { color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.footer-meta { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: space-between; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.5); }
.footer-meta__links { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
}

/* ========== AGE GATE (modal) ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 59, 46, 0.95);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.age-gate.is-open { display: flex; animation: fadeIn var(--d-base) var(--ease-out); }
.age-gate__panel {
  background: var(--color-surface);
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.age-gate__icon { margin-bottom: var(--s-4); display: flex; justify-content: center; }
.age-gate__title { font-size: var(--fs-2xl); font-weight: 700; color: var(--pine-900); margin-bottom: var(--s-3); }
.age-gate__text { color: var(--color-text-muted); margin-bottom: var(--s-6); line-height: 1.6; font-size: var(--fs-sm); }
.age-gate__actions { display: flex; flex-direction: column; gap: var(--s-2); }
.age-gate__actions .btn { width: 100%; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========== TOAST ========== */
.toast-container {
  position: fixed;
  bottom: var(--s-4);
  right: var(--s-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}
.toast {
  background: var(--pine-900);
  color: var(--white);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  animation: slideInRight var(--d-base) var(--ease-out);
  max-width: 360px;
}
.toast--success { background: var(--success-500); }
.toast--warn { background: var(--amber-600); }
.toast--error { background: var(--danger-500); }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========== UTILITIES ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-6 { margin-bottom: var(--s-6); }

/* ========== PAGE TEMPLATE: GENERIC ========== */
.page-header {
  padding: var(--s-12) 0 var(--s-8);
  background: linear-gradient(180deg, var(--pine-100), var(--snow-50));
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-header__title { font-size: var(--fs-3xl); font-weight: 800; color: var(--pine-900); letter-spacing: -0.02em; margin-bottom: var(--s-3); }
.page-header__subtitle { font-size: var(--fs-base); color: var(--color-text-muted); max-width: 64ch; margin-inline: auto; line-height: 1.6; }
@media (min-width: 768px) {
  .page-header { padding: var(--s-16) 0 var(--s-10); }
  .page-header__title { font-size: var(--fs-4xl); }
}

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: var(--fs-2xl); font-weight: 700; color: var(--pine-900); margin-top: var(--s-10); margin-bottom: var(--s-4); letter-spacing: -0.01em; }
.prose h3 { font-size: var(--fs-xl); font-weight: 600; color: var(--pine-900); margin-top: var(--s-8); margin-bottom: var(--s-3); }
.prose p, .prose li { color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--s-4); }
.prose ul { padding-left: var(--s-6); list-style: disc; }
.prose ol { padding-left: var(--s-6); list-style: decimal; }
.prose strong { color: var(--pine-900); font-weight: 600; }
.prose a { color: var(--pine-700); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--aurora-500); }
.prose hr { border: 0; height: 1px; background: var(--color-border); margin: var(--s-8) 0; }

.callout {
  background: var(--aurora-100);
  border-left: 4px solid var(--aurora-500);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin: var(--s-6) 0;
}
.callout--warn { background: var(--amber-100); border-color: var(--amber-500); }
.callout--danger { background: var(--danger-100); border-color: var(--danger-500); }
.callout__title { font-weight: 700; color: var(--pine-900); margin-bottom: var(--s-2); }
.callout p { margin-bottom: var(--s-2); color: var(--slate-800); }
.callout p:last-child { margin-bottom: 0; }

/* ========== FORMS ========== */
.contact-form { max-width: 560px; margin-inline: auto; display: grid; gap: var(--s-4); }
.form-group { display: grid; gap: var(--s-2); }
.form-group label { font-size: var(--fs-sm); font-weight: 600; color: var(--pine-900); }
.form-group input, .form-group textarea, .form-group select {
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--r-md);
  background: var(--color-surface);
  font-size: var(--fs-base);
  transition: all var(--d-fast);
  width: 100%;
  font-family: inherit;
  color: var(--pine-900);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--aurora-500);
  box-shadow: var(--shadow-glow);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger-500);
}
.form-help { font-size: var(--fs-xs); color: var(--color-text-subtle); }

/* Honeypot — hidden field for bots */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
