/* ══════════════════════════════════════════════════════════
   MAIN.CSS — Shared tokens, reset, nav, footer
   Used by index.html and games.html
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --amber:  #E8AA3D;
  --teal:   #4D696D;
  --cream:  #EAE5D0;
  --rust:   #AF4F37;
  --ink:    #1A1A1A;
  --bg:     #F5F2EB;
  --white:  #ffffff;
  --green:  #2E7D5A;
  --mid:    #555;
  --muted:  rgba(234,229,208,.48);
  --faint:  rgba(234,229,208,.18);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.07);
  height: 52px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-word {
  font-family: 'EB Garamond', serif; font-size: 20px; color: var(--amber);
  text-decoration: none;
}
.nav-word em { font-style: italic; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); text-decoration: none; transition: color .14s;
}
.nav-link:hover  { color: var(--amber); }
.nav-link.active { color: var(--amber); }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.05);
  padding: 52px 80px 40px;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px;
}
.f-word { font-family: 'EB Garamond', serif; font-size: 22px; color: var(--amber); margin-bottom: 8px; }
.f-word em { font-style: italic; }
.f-tag { font-family: 'EB Garamond', serif; font-style: italic; font-size: 13px; color: rgba(234,229,208,.3); max-width: 320px; line-height: 1.6; }
.f-links { display: flex; gap: 22px; flex-wrap: wrap; }
.f-link { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(234,229,208,.25); text-decoration: none; transition: color .14s; }
.f-link:hover { color: var(--amber); }
.f-giz { font-size: 9px; color: rgba(234,229,208,.18); letter-spacing: .06em; margin-top: 6px; }
.f-giz strong { color: rgba(232,170,61,.45); }

/* ── RESPONSIVE — shared ─────────────────────────────── */
@media (max-width: 800px) {
  footer { padding: 40px 24px 32px; flex-direction: column; align-items: flex-start; }
}
