/* ╔════════════════════════════════════════════════════════════════╗
   ║  Camino Frances 2026 – Stylesheet                             ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --bg:          #FBF8F3;
  --bg-alt:      #F5EDE3;
  --card:        #FFFFFF;
  --card-alt:    #FBF8F3;
  --border:      #E8D8CC;

  --primary:     #C4735A;     /* terracotta */
  --primary-lt:  #EDD5CA;
  --secondary:   #7BA87D;     /* sage green */
  --secondary-lt:#D4EAD5;
  --accent:      #C9A05A;     /* warm gold */
  --lilac:       #9E8EB3;     /* dusty lilac */

  --text:        #3A3028;
  --text-muted:  #7A6A5E;
  --text-dim:    #A89488;

  --author1-bg:  #F5EDE3;
  --author1-dot: #C4735A;
  --author2-bg:  #EBF3EC;
  --author2-dot: #7BA87D;

  --nav-h:       64px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 2px 16px rgba(60,40,24,.08);
  --shadow-md:   0 6px 28px rgba(60,40,24,.12);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-top: var(--nav-h);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Nav ────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(251,248,243,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  flex-shrink: 0;
}
.brand-icon { font-size: 22px; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; letter-spacing: .04em;
  color: var(--text);
}
.brand-sub { font-size: 12px; font-weight: 400; color: var(--text-muted); }

.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap;
}
.nav-item {
  position: relative; padding: 6px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  color: var(--text-muted); transition: color .2s, background .2s;
}
.nav-item:hover, .nav-item.active { color: var(--primary); background: var(--primary-lt); }
.nav-subscribe-btn { color: var(--secondary); }
.nav-subscribe-btn:hover { background: var(--secondary-lt); }
.nav-admin-btn { opacity: .4; font-size: 12px; }
.nav-admin-btn:hover { opacity: 1; }
.nav-hamburger { display: none; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text); }

.new-badge {
  display: none; position: absolute; top: 4px; right: 4px;
  background: var(--primary); color: #fff;
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 6px;
  letter-spacing: .05em;
}
.new-badge.visible { display: block; }

@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--border);
    padding: 12px 16px; gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-item { padding: 10px 16px; border-radius: var(--radius); }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-alt);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(196,115,90,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(123,168,125,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(201,160,90,.08) 0%, transparent 70%);
}

/* Decorative path lines */
.hero-path {
  position: absolute; inset: 0; pointer-events: none; opacity: .18;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 720px; width: 100%; padding: 40px 24px;
  text-align: center;
}
.hero-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 30px; padding: 6px 18px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  margin-bottom: 28px; box-shadow: var(--shadow);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 700; line-height: 1.05;
  color: var(--text); margin-bottom: 20px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-muted); margin-bottom: 36px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.hero-stats {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 22px;
  min-width: 90px; box-shadow: var(--shadow);
}
.stat-num { font-size: 28px; font-weight: 700; color: var(--primary); display: block; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* countdown */
.countdown-bar {
  display: flex; justify-content: center; align-items: center; gap: 4px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  box-shadow: var(--shadow); max-width: 400px; margin: 0 auto;
}
.countdown-unit { text-align: center; min-width: 52px; }
.countdown-num { font-size: 30px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--primary); }
.countdown-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.countdown-sep { font-size: 24px; font-weight: 300; color: var(--border); padding: 0 2px; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--text);
  margin: 40px 0 20px; padding: 0 24px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}

/* ─── Pilgrims' Corner ──────────────────────────────────────────────────── */
.riders-corner {
  max-width: 900px; margin: 0 auto 0; padding: 0 24px;
}
.thoughts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .thoughts-grid { grid-template-columns: 1fr; } }
.thought-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow);
}
.thought-card.thought-stefan, .thought-card.author-1 {
  border-left: 4px solid var(--author1-dot);
  background: var(--author1-bg);
}
.thought-card.thought-jan, .thought-card.author-2 {
  border-left: 4px solid var(--author2-dot);
  background: var(--author2-bg);
}
.thought-author { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.thought-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-orange { background: var(--author1-dot); }
.dot-cyan { background: var(--author2-dot); }
.thought-body { font-size: 14px; line-height: 1.65; color: var(--text); }
.thought-date { font-size: 11px; color: var(--text-dim); margin-top: 12px; }
.thought-loading { opacity: .4; min-height: 80px; display: flex; align-items: center; justify-content: center; }
.thought-empty { grid-column: 1/-1; color: var(--text-muted); font-style: italic; font-size: 14px; padding: 20px; text-align: center; }

/* ─── Stage Timeline ─────────────────────────────────────────────────────── */
.stage-timeline {
  max-width: 900px; margin: 0 auto; padding: 0 24px 60px;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--text);
  margin: 40px 0 20px;
}
.timeline-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 640px) { .timeline-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px)  { .timeline-grid { grid-template-columns: 1fr; } }
.timeline-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow);
}
.timeline-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.tc-tag { font-size: 11px; color: var(--text-dim); letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
.tc-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.tc-date { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.tc-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.tc-stat span {
  display: inline-block; background: var(--primary-lt); color: var(--primary);
  font-size: 12px; font-weight: 600; border-radius: 20px; padding: 3px 10px;
}
.tc-stat.green span { background: var(--secondary-lt); color: var(--secondary); }

/* ─── Stage Page ─────────────────────────────────────────────────────────── */
.stage-page { max-width: 900px; margin: 0 auto; padding: 24px 24px 80px; }

.stage-header {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 28px 24px;
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.stage-header-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.stage-tag { font-size: 12px; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.stage-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text); }
.stage-status-badge {
  border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; flex-shrink: 0; margin-top: 4px;
}
.status-future { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.status-live { background: #FDECEA; color: #C0392B; border: 1px solid #F5B7B1; animation: pulse 2s infinite; }
.status-done { background: var(--secondary-lt); color: var(--secondary); border: 1px solid #A8D5AB; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.7} }

.stage-kpis { display: flex; gap: 16px; flex-wrap: wrap; }
.kpi {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px; min-width: 100px;
}
.kpi-val { font-size: 24px; font-weight: 700; color: var(--primary); }
.kpi-unit { font-size: 14px; font-weight: 400; color: var(--text-muted); margin-left: 2px; }
.kpi-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Hotel card */
.hotel-card {
  background: linear-gradient(135deg, var(--primary-lt) 0%, var(--card) 100%);
  border: 1px solid var(--primary-lt);
  border-radius: var(--radius-lg); padding: 20px 24px;
  margin-bottom: 24px; box-shadow: var(--shadow);
}
.hotel-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); font-weight: 600;
}
.hotel-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.hotel-addr { font-size: 13px; color: var(--text-muted); }

/* ─── Map ────────────────────────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.map-label {
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
#stage-map { height: 340px; z-index: 0; }

/* ─── Elevation Profile ──────────────────────────────────────────────────── */
.elevation-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow); margin-bottom: 24px; overflow: hidden;
}
.elevation-label {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.elev-svg { width: 100%; display: block; }

/* ─── Stage Description ──────────────────────────────────────────────────── */
.stage-description {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  font-size: 15px; line-height: 1.75; color: var(--text);
  box-shadow: var(--shadow); margin-bottom: 24px;
  font-family: 'Playfair Display', serif; font-style: italic;
}

/* ─── Posts ──────────────────────────────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 640px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow);
}
.post-card.author-1 { border-top: 4px solid var(--author1-dot); }
.post-card.author-2 { border-top: 4px solid var(--author2-dot); }
.post-card.empty { opacity: .6; }
.post-author {
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 12px; color: var(--text);
}
.post-content { font-size: 14px; line-height: 1.75; white-space: pre-wrap; color: var(--text); }
.post-date { font-size: 11px; color: var(--text-dim); margin-top: 14px; }

/* ─── Photo Gallery ──────────────────────────────────────────────────────── */
.photo-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  margin-bottom: 24px;
}
.photo-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.photo-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-empty {
  background: var(--bg-alt); border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  text-align: center; color: var(--text-dim); font-size: 14px;
  margin-bottom: 24px;
}

/* ─── Comments ───────────────────────────────────────────────────────────── */
.comments-section {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); margin-top: 24px;
}
.comments-list { margin-bottom: 24px; }
.comment {
  border-bottom: 1px solid var(--border); padding: 14px 0;
}
.comment:last-child { border-bottom: none; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.comment-name { font-weight: 600; font-size: 14px; }
.comment-date { font-size: 11px; color: var(--text-dim); }
.comment-body { font-size: 14px; line-height: 1.65; color: var(--text); }
.no-comments { color: var(--text-muted); font-size: 14px; font-style: italic; padding: 10px 0; }
.comment-form-title { font-weight: 600; font-size: 15px; margin-bottom: 14px; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-input, .form-textarea {
  width: 100%; border: 1px solid var(--border); background: var(--bg-alt);
  border-radius: var(--radius); padding: 12px 14px;
  font-family: inherit; font-size: 14px; color: var(--text);
  transition: border-color .2s;
  margin-bottom: 10px; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); background: var(--card); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-msg { font-size: 13px; padding: 4px 0; }
.form-msg.ok { color: var(--secondary); }
.form-msg.err { color: #C0392B; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; cursor: pointer; border: none; transition: all .2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { background: #B3604A; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Admin Page ─────────────────────────────────────────────────────────── */
.admin-page { max-width: 860px; margin: 0 auto; padding: 24px 24px 80px; }
.admin-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.admin-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.admin-select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; background: var(--bg-alt); margin-bottom: 10px; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.admin-tab {
  padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); background: var(--card); color: var(--text-muted);
}
.admin-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .admin-grid{grid-template-columns:1fr;} }

/* ─── Retro Page ─────────────────────────────────────────────────────────── */
.retro-page { max-width: 900px; margin: 0 auto; padding: 24px 24px 80px; }
.retro-hero {
  background: linear-gradient(135deg, var(--primary-lt), var(--secondary-lt));
  border-radius: var(--radius-lg); padding: 48px 32px; text-align: center;
  margin-bottom: 32px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.retro-hero h1 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; margin-bottom: 8px; }
.retro-hero p { font-size: 17px; color: var(--text-muted); font-style: italic; }
.retro-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 28px; }
@media(max-width:480px){ .retro-stats{grid-template-columns:1fr;} }
.retro-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  text-align: center; box-shadow: var(--shadow);
}
.retro-stat-num { font-size: 34px; font-weight: 700; color: var(--primary); }
.retro-stat-lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ─── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(20,14,10,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; flex-direction: column; }
.lightbox img { max-height: 80vh; max-width: 90vw; border-radius: var(--radius); object-fit: contain; }
.lightbox p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 12px; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff; font-size: 28px; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 32px; width: 48px; height: 64px; cursor: pointer;
  border-radius: 8px; transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 1500;
  background: rgba(30,20,14,.5); align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-box {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 32px; max-width: 460px; width: 90%; position: relative;
  box-shadow: var(--shadow-md);
}
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted);
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--text); color: #fff; border-radius: var(--radius);
  padding: 12px 24px; font-size: 14px; font-weight: 500;
  z-index: 3000; opacity: 0; transition: all .3s; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Live Tracker ───────────────────────────────────────────────────────── */
.live-tracker-banner {
  max-width: 900px; margin: 0 auto 24px; padding: 0 24px;
}
.live-tracker-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
}
.live-badge { background: #C0392B; color: #fff; border-radius: 4px; padding: 2px 8px; font-size: 12px; }
.live-tracker-frame { width: 100%; height: 400px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }

/* ─── Animations ─────────────────────────────────────────────────────────── */
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-d1 { animation-delay: .08s; }
.fade-up-d2 { animation-delay: .16s; }
.fade-up-d3 { animation-delay: .24s; }
.fade-up-d4 { animation-delay: .32s; }
.fade-up-d5 { animation-delay: .40s; }
.fade-up-d6 { animation-delay: .48s; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── Leaflet overrides ──────────────────────────────────────────────────── */
.leaflet-container { font-family: 'Inter', sans-serif !important; }
.leaflet-popup-content-wrapper { border-radius: var(--radius) !important; box-shadow: var(--shadow-md) !important; }
