/* 藝饗台南趣 — 共用樣式 v2 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600;700&family=Noto+Sans+TC:wght@300;400;500&display=swap');

:root {
  --cream:       oklch(97% 0.012 80);
  --cream-dark:  oklch(93% 0.018 75);
  --cream-mid:   oklch(89% 0.022 70);
  --ink:         oklch(18% 0.015 50);
  --ink-soft:    oklch(38% 0.018 55);
  --red:         oklch(36% 0.13 22);
  --red-light:   oklch(48% 0.13 22);
  --brown:       oklch(48% 0.09 55);
  --gold:        oklch(68% 0.10 75);
  --gold-light:  oklch(82% 0.09 82);
  --border:      oklch(82% 0.025 70);
  --green:       oklch(45% 0.12 145);
  --green-light: oklch(92% 0.04 145);
  --font-serif:  'Noto Serif TC', 'Georgia', serif;
  --font-sans:   'Noto Sans TC', 'Helvetica Neue', sans-serif;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px oklch(18% 0.01 55 / 0.10);
  --shadow-md:   0 4px 16px oklch(18% 0.01 55 / 0.13);
  --shadow-lg:   0 8px 32px oklch(18% 0.01 55 / 0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97% 0.012 80 / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: var(--red); text-decoration: none; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px; height: 32px; border: 2px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--red);
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); border-bottom: 2px solid var(--red); }
.nav-points {
  font-size: 13px; font-weight: 500; color: var(--red);
  background: oklch(97% 0.01 22); border: 1px solid var(--red);
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.nav-cta {
  font-size: 13px; font-weight: 500; color: var(--cream); background: var(--red);
  border: none; padding: 8px 20px; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-light); }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; }

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: oklch(0% 0 0 / 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 300px;
  background: white; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: white; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 16px 0; }
.mobile-menu-group { padding: 8px 20px; }
.mobile-menu-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 8px; font-weight: 500;
}
.mobile-menu-group a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 15px; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid oklch(92% 0.01 70);
}
.mobile-menu-group a:last-child { border-bottom: none; }
.mobile-menu-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-menu-points {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--ink);
}
.mobile-menu-points strong { font-size: 20px; color: var(--red); font-family: var(--font-serif); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em; padding: 12px 28px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { opacity: 0.9; }
.btn-sm { font-size: 12px; padding: 8px 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 80px 48px; }
.section-sm { padding: 48px 48px; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--ink); letter-spacing: 0.04em; margin-bottom: 8px;
}
.section-subtitle { font-size: 15px; color: var(--ink-soft); margin-bottom: 40px; letter-spacing: 0.04em; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px;
}
.container { max-width: 1240px; margin: 0 auto; }
.section-alt { background: white; }
.section-tinted { background: oklch(95% 0.018 72); }

/* ── PAGE HEADER ──────────────────────────────────── */
.page-header {
  background: var(--cream-dark); padding: 48px 48px 40px; border-bottom: 1px solid var(--border);
}
.page-header .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.page-eyebrow {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.page-title {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 8px;
}
.page-desc { font-size: 15px; color: var(--ink-soft); max-width: 520px; }

/* ── CARDS ────────────────────────────────────────── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img {
  height: 180px; position: relative; overflow: hidden; background: var(--cream-mid);
}
.card-img .placeholder-stripes { position: absolute; inset: 0; }
.card-body { padding: 20px; }
.card-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--brown); margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.card-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--ink-soft);
}
.card-link { font-size: 13px; color: var(--red); font-weight: 500; }

/* ── SPOT CARDS ────────────────────────────────────── */
.spot-card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot-card-img {
  width: 100%; aspect-ratio: 4/3; background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.spot-card-img .placeholder-stripes { position: absolute; inset: 0; }
.spot-card-img .placeholder-label {
  position: relative; z-index: 1; background: oklch(100% 0 0 / 0.7);
  padding: 4px 10px; border-radius: 3px;
  font-size: 11px; font-family: monospace; color: var(--ink-soft);
}
.spot-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.spot-card-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--brown); margin-bottom: 6px; }
.spot-card-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.spot-card-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.spot-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--ink-soft);
}

/* ── TAGS / BADGES ────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid var(--border); background: white; color: var(--ink-soft);
  cursor: pointer; transition: all 0.18s;
}
.tag:hover, .tag.active { border-color: var(--red); color: var(--red); background: oklch(97% 0.01 22); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.badge { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.badge-hot { background: var(--red); color: white; }
.badge-new { background: var(--gold); color: var(--ink); }
.badge-night { background: var(--ink); color: var(--gold-light); }
.badge-done { background: var(--green); color: white; }

/* ── MISSION CARD ─────────────────────────────────── */
.mission-card {
  background: white; border-radius: var(--radius-md); padding: 20px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}
.mission-card:hover { box-shadow: var(--shadow-md); }
.mission-card.completed { border-left-color: var(--green); opacity: 0.7; }
.mission-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mission-card-type { font-size: 11px; color: var(--brown); letter-spacing: 0.08em; }
.mission-card-points { font-size: 12px; font-weight: 700; color: var(--gold); }
.mission-card-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mission-card-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }

/* ── NPC CARD ─────────────────────────────────────── */
.npc-card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.npc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.npc-card.locked { filter: grayscale(0.5); opacity: 0.7; }
.npc-avatar {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 72px; font-family: var(--font-serif); color: white; font-weight: 700;
  position: relative;
}
.npc-avatar .lock-overlay {
  position: absolute; inset: 0; background: oklch(0% 0 0 / 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.npc-body { padding: 20px; }
.npc-era { font-size: 11px; letter-spacing: 0.1em; color: var(--brown); margin-bottom: 4px; }
.npc-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.npc-title { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.npc-story { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

/* ── QUIZ ─────────────────────────────────────────── */
.quiz-box {
  background: white; border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-md); max-width: 640px; margin: 0 auto;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.quiz-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: background 0.3s;
}
.quiz-dot.active { background: var(--red); }
.quiz-dot.done { background: var(--green); }
.quiz-question {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  margin-bottom: 24px; line-height: 1.5;
}
.quiz-spot { font-size: 12px; color: var(--brown); letter-spacing: 0.1em; margin-bottom: 8px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; font-size: 15px;
}
.quiz-option:hover { border-color: var(--red); background: oklch(97% 0.01 22); }
.quiz-option.correct { border-color: var(--green); background: var(--green-light); }
.quiz-option.wrong { border-color: oklch(50% 0.15 25); background: oklch(95% 0.02 25); }
.quiz-option.disabled { pointer-events: none; }
.quiz-result {
  text-align: center; padding: 40px 20px;
}
.quiz-score { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--red); }

/* ── POINTS / PROGRESS ────────────────────────────── */
.points-hero {
  background: var(--red); color: white; border-radius: var(--radius-lg);
  padding: 32px; text-align: center; margin-bottom: 32px;
}
.points-big { font-family: var(--font-serif); font-size: 56px; font-weight: 700; }
.points-label { font-size: 13px; opacity: 0.8; margin-top: 4px; }
.progress-bar {
  height: 8px; background: oklch(100% 0 0 / 0.2); border-radius: 4px;
  overflow: hidden; margin: 16px auto; max-width: 300px;
}
.progress-fill { height: 100%; background: var(--gold); border-radius: 4px; transition: width 0.5s; }
.history-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.history-item:last-child { border-bottom: none; }
.history-pts { font-weight: 700; font-family: var(--font-serif); }
.history-pts.positive { color: var(--green); }
.history-pts.negative { color: var(--red); }

/* ── VOUCHER ──────────────────────────────────────── */
.voucher-card {
  background: white; border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: center;
  border: 1.5px dashed var(--border); transition: box-shadow 0.2s;
}
.voucher-card:hover { box-shadow: var(--shadow-md); }
.voucher-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.voucher-info { flex: 1; }
.voucher-name { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.voucher-desc { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.voucher-cost { font-size: 13px; color: var(--red); font-weight: 600; }

/* ── DIY BOOKING ──────────────────────────────────── */
.diy-card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
}
.diy-card:hover { box-shadow: var(--shadow-md); }
.diy-card-img { height: 160px; position: relative; overflow: hidden; }
.diy-card-img .placeholder-stripes { position: absolute; inset: 0; }
.diy-card-body { padding: 20px; }
.diy-card-meta { display: flex; gap: 16px; font-size: 12px; color: var(--ink-soft); margin: 10px 0 16px; flex-wrap: wrap; }
.diy-card-meta span { display: flex; align-items: center; gap: 4px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.form-select, .form-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-sans);
  font-size: 14px; background: white; color: var(--ink);
}
.form-select:focus, .form-input:focus { outline: none; border-color: var(--red); }

/* ── SHARE ────────────────────────────────────────── */
.share-card {
  background: white; border-radius: var(--radius-md); padding: 20px;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.share-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.share-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--brown);
}
.share-meta { font-size: 12px; color: var(--ink-soft); }
.share-text { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.share-img-placeholder {
  height: 200px; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; background: var(--cream-mid);
}

/* ── TIMELINE ─────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: white; border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--red);
}
.timeline-dot.completed { background: var(--green); border-color: var(--green); color: white; }
.timeline-content {
  background: white; border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-sm); font-size: 14px;
}
.timeline-content strong { font-family: var(--font-serif); }

/* ── MAP ──────────────────────────────────────────── */
.map-block { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
#home-map, #full-map { width: 100%; }

/* ── MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: oklch(0% 0 0 / 0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg); max-width: 500px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: white; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 12px; justify-content: flex-end; }

/* ── TOAST ────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--ink); color: white; padding: 12px 28px;
  border-radius: var(--radius-md); font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 400;
  opacity: 0; transition: all 0.4s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── STATS ROW ────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: white; border-radius: var(--radius-md); padding: 20px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--red); }
.stat-label { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--ink); color: oklch(75% 0.01 70); padding: 48px 48px 32px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.8; }
.footer-col h4 { font-family: var(--font-serif); font-size: 14px; font-weight: 600; color: var(--gold-light); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: oklch(70% 0.01 70); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid oklch(28% 0.01 55);
  font-size: 12px; color: oklch(50% 0.01 55);
  display: flex; justify-content: space-between;
}

/* ── EMPTY STATE ──────────────────────────────────── */
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--ink-soft);
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.empty-state-desc { font-size: 14px; margin-bottom: 20px; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 16px; gap: 12px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 48px 20px; }
  .section-sm { padding: 32px 20px; }
  .page-header { padding: 32px 20px; }
  .page-header .container { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .mobile-menu-panel { width: 100%; }
}

/* Leaflet overrides */
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm) !important; font-family: var(--font-sans) !important; box-shadow: var(--shadow-md) !important; }
.leaflet-popup-content { font-size: 13px !important; margin: 8px 12px !important; }
.leaflet-popup-tip { background: white !important; }
