/* ============================================================
   MECCHA CHAMELEON ONLINE — Fan Site Stylesheet
   Warm paper + ink + chameleon-green. Neo-brutalist shell.
   Fonts: Lilita One (display) + Nunito (body) via Google Fonts.
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  /* palette */
  --paper:       oklch(0.972 0.020 95);   /* warm cream ground */
  --paper-deep:  oklch(0.932 0.030 98);   /* slightly deeper cream */
  --paper-card:  oklch(0.985 0.014 95);   /* card surface */
  --ink:         oklch(0.260 0.045 150);  /* green-charcoal text */
  --ink-soft:    oklch(0.420 0.040 150);  /* muted text */
  --ink-faint:   oklch(0.550 0.035 150);  /* faint captions */

  --green:       oklch(0.680 0.170 145);  /* chameleon green */
  --green-deep:  oklch(0.520 0.150 148);  /* deep green (borders) */
  --green-pale:  oklch(0.900 0.070 150);  /* pale green wash */

  --orange:      oklch(0.750 0.160 55);
  --orange-pale: oklch(0.930 0.060 80);
  --pink:        oklch(0.730 0.160 8);
  --pink-pale:   oklch(0.945 0.045 15);
  --blue:        oklch(0.700 0.120 235);
  --blue-pale:   oklch(0.940 0.045 245);
  --yellow:      oklch(0.880 0.150 92);
  --yellow-pale: oklch(0.960 0.060 95);

  --red:         oklch(0.560 0.180 28);
  --red-pale:    oklch(0.940 0.055 25);

  /* geometry */
  --radius:      18px;
  --radius-lg:   26px;
  --border:      3px solid var(--ink);
  --border-soft: 2px solid oklch(0.78 0.04 150);
  --shadow:      6px 6px 0 0 var(--ink);
  --shadow-lg:   9px 9px 0 0 var(--ink);
  --shadow-sm:   4px 4px 0 0 var(--ink);

  /* type */
  --font-display: "Lilita One", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Nunito", -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: var(--green-deep); }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.2px;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: 0.35em; }
table { border-collapse: separate; border-spacing: 0; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ── Layout primitives ─────────────────────────────────── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.section { padding: 72px 0; position: relative; }
.section--alt { background: var(--paper-deep); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pale);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 0.25em;
}
.lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 1.6em;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: var(--paper-card); }
.btn--small { padding: 8px 16px; font-size: 0.9rem; box-shadow: 3px 3px 0 0 var(--ink); }
.btn .icon { font-size: 1.1em; line-height: 1; }

/* ── Header / nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(0.972 0.020 95 / 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  margin-right: auto;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  border: var(--border);
  background: var(--green);
  box-shadow: 3px 3px 0 0 var(--ink);
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 24px; height: 24px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  padding: 7px 13px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}
.nav-links a:hover { background: var(--green-pale); border-color: var(--ink); }
.nav-toggle {
  display: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: #fff;
  border: var(--border);
  border-radius: 10px;
  padding: 4px 12px;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 var(--ink);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 56px 0 72px;
  border-bottom: 3px solid var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin: 0 0 0.35em;
}
.hero h1 .accent { color: var(--green-deep); }
.hero-lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; margin: 0 0 1.5em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.fact-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none; }
.hero-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 8px;
  background: var(--paper-card);
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hero-map:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.hero-map img {
  width: 104px; height: 62px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--ink);
  flex: none;
}
.hero-map-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding-right: 12px;
  white-space: nowrap;
}

/* ── Game shell ────────────────────────────────────────── */
.game-shell {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.game-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper-deep);
}
.game-bar .dots { display: flex; gap: 6px; }
.game-bar .dots span {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--ink);
}
.game-bar .dots span:nth-child(1) { background: var(--pink); }
.game-bar .dots span:nth-child(2) { background: var(--yellow); }
.game-bar .dots span:nth-child(3) { background: var(--green); }
.game-bar .title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin: 0 auto 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-bar .enlarge {
  font-family: var(--font-display);
  font-size: 0.82rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 4px 10px;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 var(--ink);
  color: var(--ink);
}
.game-bar .enlarge:hover { background: var(--green-pale); }
.game-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.game-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.game-caption {
  font-size: 0.86rem;
  color: var(--ink-faint);
  text-align: center;
  padding: 9px 14px;
  margin: 0;
  border-top: 2px dashed oklch(0.78 0.04 150);
}

/* fullscreen state */
.game-shell:fullscreen {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background: #000;
}
.game-shell:fullscreen .game-stage { flex: 1; aspect-ratio: auto; }

/* ── About ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-copy { font-size: 1.03rem; }
.team-stack { display: grid; gap: 18px; }
.team-card {
  background: var(--paper-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.team-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.team-card h3 .emoji {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px; border: 2px solid var(--ink);
  font-size: 1.2rem;
}
.team-card--hide .emoji { background: var(--green-pale); }
.team-card--seek .emoji { background: var(--red-pale); }
.team-card p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }
.about-note {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--yellow-pale);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.about-note p { margin: 0; font-size: 0.94rem; }

/* ── Modes table ───────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: #fff; }
.modes-table { width: 100%; min-width: 640px; }
.modes-table th, .modes-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 2px solid var(--paper-deep);
}
.modes-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  background: var(--ink);
  color: #fff;
}
.modes-table tbody tr:last-child td { border-bottom: 0; }
.modes-table tbody tr:hover td { background: var(--green-pale); }
.modes-table td.mode-name { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.mode-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 10px;
  margin-right: 6px;
}
.mode-badge--hide { background: var(--green-pale); }
.mode-badge--seek { background: var(--red-pale); }
.mode-badge--both { background: var(--yellow-pale); }

/* ── How to play ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.step-card {
  display: flex;
  gap: 16px;
  background: var(--paper-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  color: #fff; background: var(--green-deep);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step-card p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.controls-card {
  margin-top: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
}
.controls-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 14px; }
.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.control {
  background: oklch(0.32 0.04 150);
  border: 2px solid oklch(0.55 0.04 150);
  border-radius: 12px;
  padding: 10px 14px;
}
.control kbd {
  font-family: var(--font-display);
  font-size: 0.82rem;
  display: inline-block;
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  padding: 2px 8px;
  margin-right: 8px;
  box-shadow: 2px 2px 0 0 oklch(0.55 0.04 150);
}
.control span { font-size: 0.92rem; }

/* ── Maps ──────────────────────────────────────────────── */
.maps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.map-card {
  display: flex; flex-direction: column;
  background: var(--paper-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.map-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.map-card .map-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--paper-deep);
}
.map-card .map-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.map-card:hover .map-thumb img { transform: scale(1.05); }
.map-card .map-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.map-card h3 { font-size: 1.12rem; margin: 0; }
.map-card p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ── Gallery (maps / hiding spots) — light orange/white reference style ── */

/* category filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.filter-btn {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  color: oklch(0.48 0.02 70);
  border: 1px solid oklch(0.90 0.05 70);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: oklch(0.72 0.16 300); color: oklch(0.50 0.18 300); }
.filter-btn.is-active {
  background: oklch(0.58 0.21 350);
  color: #fff;
  border-color: oklch(0.58 0.21 350);
}

/* best-spots cheat sheet (boxed) */
.map-tip-box {
  background: oklch(0.97 0.03 70 / 0.6);
  border: 1px solid oklch(0.90 0.05 70);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 8px;
}
.map-tips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.map-tip {
  display: block;
  background: #fff;
  border: 1px solid oklch(0.90 0.05 70);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.05);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.map-tip:hover { border-color: oklch(0.72 0.16 300); background: oklch(0.98 0.02 300); }
.map-tip h3 { font-size: 0.95rem; margin: 0 0 4px; font-weight: 800; color: oklch(0.50 0.18 300); }
.map-tip p { margin: 0; font-size: 0.85rem; color: oklch(0.50 0.02 70); }

/* per-map gallery sections */
.gallery-section { margin-bottom: 42px; }
.gallery-section-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 1.15rem; font-weight: 800;
  margin: 0 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid oklch(0.90 0.05 70);
}
.gallery-section-title .count {
  font-weight: 400; font-size: 0.85rem;
  color: oklch(0.60 0.02 70);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.gallery-item {
  display: flex; flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid oklch(0.90 0.05 70);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.gallery-item:hover { border-color: oklch(0.72 0.16 300); box-shadow: 0 6px 16px oklch(0 0 0 / 0.08); }
.gallery-item .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: oklch(0.95 0.01 70);
  cursor: zoom-in;
}
.gallery-item .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover .thumb img { transform: scale(1.05); }

.gallery-item .card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 0.72rem; font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.chip--map { background: oklch(0.48 0.16 300 / 0.14); color: oklch(0.50 0.18 300); }
.chip--cat { background: oklch(0.94 0.05 70); color: oklch(0.50 0.14 55); }
.chip--diff { color: oklch(0.58 0.02 70); }

.gallery-item h3 { font-size: 1rem; margin: 0; font-weight: 800; }
.gallery-item .card-body p { margin: 0; font-size: 0.88rem; color: oklch(0.52 0.02 70); }

/* lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: oklch(0.16 0.03 150 / 0.92);
  cursor: zoom-out;
}
#lightbox.is-open { display: flex; }
#lightbox img {
  max-width: 100%; max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 12px 40px oklch(0 0 0 / 0.5);
  cursor: default;
}
#lightbox .lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 1px solid oklch(0.90 0.05 70);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
}

/* ── Tips ──────────────────────────────────────────────── */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tip-card {
  background: var(--paper-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.tip-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tip-card p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }
.workflow {
  margin-top: 26px;
  background: var(--green-pale);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.workflow h3 { font-size: 1.2rem; margin-bottom: 12px; }
.workflow ol { display: grid; gap: 8px; margin: 0; }
.workflow li { font-size: 0.98rem; }
.workflow li::marker { font-family: var(--font-display); color: var(--green-deep); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
details.faq-item {
  background: var(--paper-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 16px 18px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .plus {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.15s ease;
  background: #fff;
}
details.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--green); color: #fff; }
details.faq-item .faq-body { padding: 0 18px 18px; font-size: 0.97rem; color: var(--ink-soft); }
details.faq-item .faq-body p { margin: 0; }
details.faq-item .faq-body a { font-weight: 700; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: oklch(0.90 0.03 150);
  padding: 52px 0 28px;
  border-top: 3px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer a { color: var(--yellow); }
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.disclaimer {
  font-size: 0.86rem;
  color: oklch(0.74 0.03 150);
  border-top: 1px solid oklch(0.42 0.03 150);
  padding-top: 20px;
  margin: 0;
}

/* ── Inner pages (shared) ──────────────────────────────── */
.page-hero { padding: 52px 0 40px; border-bottom: 3px solid var(--ink); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 20ch; }
.page-hero .lede { font-size: 1.1rem; }
.page-body { padding: 48px 0 72px; }
.page-body article { max-width: 70ch; }
.page-body h2 { font-size: 1.55rem; margin-top: 1.4em; }
.page-body ul, .page-body ol { padding-left: 1.3em; }
.page-body a { font-weight: 700; }
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* mini game embed on inner pages */
.embed-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin: 24px 0; }
.embed-row .game-shell { position: sticky; top: 90px; }
.embed-row .game-stage { aspect-ratio: 16 / 10; }

/* ── Reveal animation (progressive enhancement) ────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-facts { margin-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .embed-row { grid-template-columns: 1fr; }
  .embed-row .game-shell { position: static; }
  .map-tips { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    padding: 12px 18px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; padding: 12px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .steps { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .maps-grid { grid-template-columns: 1fr; }
  .map-tips { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
