:root {
  --cream: #F4E8D4;
  --cream-dark: #E8D9BE;
  --ink: #14110F;
  --ink-soft: #2A2520;
  --red: #C8202E;
  --red-dark: #A01825;
  --blue: #1E4F7A;
  --blue-dark: #163C5C;
  --mustard: #E5A545;
  --sand: #C9A876;
  --route-green: #2D5F3F;
  --shadow: 0 4px 0 var(--ink);
  --shadow-hover: 0 6px 0 var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BUSCADOR GLOBAL ── */
.global-search {
  position: sticky;
  top: 56px;
  z-index: 480;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding: 10px 16px;
}
.search-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
#searchInput {
  width: 100%;
  padding: 10px 36px 10px 14px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  border: 3px solid var(--ink);
  background: var(--cream-dark);
  color: var(--ink);
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
}
#searchInput:focus {
  background: #fff;
  box-shadow: 4px 4px 0 var(--red);
}
.search-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-clear:hover { background: var(--red); }
.search-results {
  max-width: 640px;
  margin: 6px auto 0;
  background: var(--cream-dark);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  max-height: 60vh;
  overflow-y: auto;
}
.search-result {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px dashed var(--ink);
  text-decoration: none;
  color: var(--ink);
  align-items: center;
  cursor: pointer;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result.active {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}
.search-result:hover .sr-meta, .search-result.active .sr-meta { color: var(--mustard); }
.sr-icon {
  font-size: 22px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.sr-body { flex: 1; min-width: 0; }
.sr-name {
  font-family: 'Bungee', system-ui;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-meta {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.search-empty {
  padding: 18px 14px;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
}

/* Card hover indica clickable */
.poi-card[data-poi]:hover, .stop-block[data-poi]:hover {
  background: var(--cream);
  transform: translateY(-2px);
  transition: all 0.15s ease;
}
.poi-card[data-poi], .stop-block[data-poi] {
  transition: all 0.15s ease;
}

@media (max-width: 768px) {
  .global-search { padding: 8px 10px; top: 50px; }
  #searchInput { font-size: 15px; padding: 9px 32px 9px 12px; }
  .sr-icon { font-size: 18px; width: 26px; }
  .sr-name { font-size: 13px; }
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 25% 10%, rgba(229, 165, 69, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 75% 90%, rgba(30, 79, 122, 0.08) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 4px solid var(--mustard);
}
.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topnav .brand {
  font-family: 'Bungee', system-ui;
  font-size: 18px;
  color: var(--mustard);
  text-decoration: none;
}
.topnav .brand:hover { text-decoration: none; color: var(--cream); }
.topnav .nav-meta {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}
.topnav .nav-prev-next {
  display: flex;
  gap: 8px;
}
.topnav .nav-btn {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Bungee', system-ui;
  font-size: 11px;
  padding: 6px 12px;
  border: 2px solid var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.topnav .nav-btn:hover {
  background: var(--mustard);
  border-color: var(--mustard);
  text-decoration: none;
}
.topnav .nav-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ── HERO (index) ── */
.hero {
  padding: 60px 0 40px;
  border-bottom: 4px solid var(--ink);
}
.hero-tag {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transform: rotate(-1.5deg);
}
.hero-title {
  font-family: 'Bungee Shade', system-ui;
  font-size: clamp(60px, 14vw, 200px);
  line-height: 0.85;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-family: 'Bungee', system-ui;
  font-size: clamp(20px, 4vw, 42px);
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-route {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Bungee', system-ui;
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 40px;
}
.hero-route .city {
  background: var(--ink);
  color: var(--cream);
  padding: 8px 18px;
}
.hero-route .arrow { color: var(--red); font-size: 1.5em; }
.dates-notice {
  background: var(--mustard);
  border: 4px solid var(--ink);
  padding: 16px 22px;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.5;
  box-shadow: var(--shadow);
  max-width: 760px;
}
.dates-notice strong { color: var(--ink); }

.hero-meta {
  font-style: italic;
  font-size: 22px;
  max-width: 700px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  border: 4px solid var(--ink);
  background: var(--cream-dark);
  margin-bottom: 24px;
}
.stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 4px solid var(--ink);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bungee', system-ui;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

/* ── SECTIONS ── */
section { padding: 60px 0; }

.section-tag {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: 'Bungee', system-ui;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.section-intro {
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 40px;
  color: var(--ink-soft);
}

/* ── DAYS GRID (index) ── */
.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  border-top: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
}
.day-card {
  background: var(--cream-dark);
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
  display: block;
  position: relative;
}
.day-card:hover {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}
.day-card:hover .day-num { color: var(--mustard); }
.day-card:hover .day-route { color: var(--mustard); }
.day-card:hover .day-stat {
  background: var(--ink-soft);
  border-color: var(--mustard);
  color: var(--cream);
}
.day-num {
  font-family: 'Bungee Shade', system-ui;
  font-size: 56px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.day-date {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}
.day-title {
  font-family: 'Bungee', system-ui;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  min-height: 44px;
}
.day-route {
  font-style: italic;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 600;
}
.day-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.day-stat {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 4px 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.day-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  font-family: 'Bungee', system-ui;
  font-size: 16px;
  transition: all 0.2s ease;
}
.day-card:hover .day-arrow {
  background: var(--mustard);
  color: var(--ink);
  transform: translateX(4px);
}

/* ── DAY PAGE ── */
.day-page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0;
  border-bottom: 4px solid var(--mustard);
}
.day-page-hero .day-num {
  font-family: 'Bungee Shade', system-ui;
  font-size: clamp(80px, 14vw, 160px);
  color: var(--mustard);
  line-height: 0.9;
}
.day-page-hero .day-date-tag {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.day-page-hero .day-title {
  font-family: 'Bungee', system-ui;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--cream);
  min-height: 0;
}
.day-page-hero .day-route {
  font-family: 'Bungee', system-ui;
  font-style: normal;
  font-size: 18px;
  color: var(--mustard);
  margin-bottom: 24px;
}
.day-page-hero .day-summary {
  font-style: italic;
  font-size: 20px;
  max-width: 800px;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 24px;
}
.day-page-hero .day-meta-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.day-meta-pill {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Bungee', system-ui;
  font-size: 13px;
  padding: 8px 16px;
  text-transform: uppercase;
}

/* ── DAY MAP ── */
.day-map-wrap {
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  margin-bottom: 32px;
  overflow: hidden;
}
#dayMap {
  width: 100%;
  height: 460px;
  background: var(--cream-dark);
}

.day-map-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream-dark);
  border: 3px solid var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  align-items: center;
}
.day-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.day-legend-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', system-ui;
  font-size: 12px;
  color: var(--cream);
}

/* ── TIMELINE / STOPS ── */
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
}
.stop-block {
  background: var(--cream-dark);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  margin-bottom: 20px;
  position: relative;
}
.stop-block .stop-tag {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-weight: 700;
}
.stop-block .stop-name {
  font-family: 'Bungee', system-ui;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.stop-block .stop-text {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.stop-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stop-actions a {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  transition: all 0.15s ease;
}
.stop-actions a:hover {
  background: var(--red);
  border-color: var(--red);
  text-decoration: none;
}
.stop-actions a.web-link {
  background: var(--cream);
  color: var(--ink);
}
.stop-actions a.web-link:hover {
  background: var(--mustard);
  border-color: var(--mustard);
}

/* ── CARDS GRID (eat / see) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.poi-card {
  background: var(--cream-dark);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.poi-card .poi-name {
  font-family: 'Bungee', system-ui;
  font-size: 17px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.poi-card .poi-desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  flex: 1;
}
.poi-card .poi-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 700;
}
.poi-card .poi-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.poi-card .poi-actions a {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  text-decoration: none;
}
.poi-card .poi-actions a:hover { background: var(--red); border-color: var(--red); text-decoration: none; }
.poi-card .poi-actions a.web { background: var(--cream); color: var(--ink); }
.poi-card .poi-actions a.web:hover { background: var(--mustard); border-color: var(--mustard); }

/* ── CULTURE CARDS ── */
.culture-card {
  background: var(--ink);
  color: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 20px 22px;
}
.culture-ref {
  font-family: 'Bungee', system-ui;
  font-size: 16px;
  line-height: 1.2;
  color: var(--mustard);
  margin-bottom: 8px;
}
.culture-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.95;
}

/* ── TIPS ── */
.tips-list {
  list-style: none;
  padding: 0;
}
.tips-list li {
  background: var(--mustard);
  border: 4px solid var(--ink);
  padding: 16px 20px 16px 56px;
  margin-bottom: 12px;
  font-size: 17px;
  position: relative;
  box-shadow: var(--shadow);
}
.tips-list li::before {
  content: '💡';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

/* ── DAY FOOTER NAV ── */
.day-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 4px solid var(--ink);
  margin: 60px 0 0;
  box-shadow: var(--shadow);
}
.day-nav-link {
  background: var(--cream-dark);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--ink);
  border-right: 4px solid var(--ink);
  transition: background 0.15s ease;
}
.day-nav-link:last-child { border-right: none; }
.day-nav-link:hover { background: var(--ink); color: var(--cream); text-decoration: none; }
.day-nav-link:hover .dnl-title { color: var(--mustard); }
.day-nav-link.next { text-align: right; }
.day-nav-link .dnl-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.day-nav-link .dnl-title {
  font-family: 'Bungee', system-ui;
  font-size: 18px;
  line-height: 1.1;
}
.day-nav-link.disabled {
  opacity: 0.4;
  pointer-events: none;
  background: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 40px;
  border-top: 4px solid var(--mustard);
  margin-top: 80px;
}
.footer-title {
  font-family: 'Bungee Shade', system-ui;
  font-size: clamp(32px, 6vw, 64px);
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 12px;
}
.footer-text { color: var(--cream); margin-bottom: 24px; max-width: 600px; }
.footer-meta {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-top: 1px dashed var(--sand);
  padding-top: 20px;
}

/* ── LEAFLET MARKERS ── */
.map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--ink);
  font-family: 'Bungee', system-ui;
  box-shadow: 0 2px 0 var(--ink);
  color: var(--cream);
  background: var(--red);
  width: 32px;
  height: 32px;
  font-size: 13px;
}
.map-marker.eat { background: var(--blue); }
.map-marker.see { background: var(--mustard); color: var(--ink); }

.leaflet-popup-content-wrapper {
  background: var(--cream) !important;
  border: 3px solid var(--ink) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--ink) !important;
}
.leaflet-popup-content {
  font-family: 'EB Garamond', serif !important;
  font-size: 14px !important;
  margin: 12px 14px !important;
}
.leaflet-popup-content strong {
  font-family: 'Bungee', system-ui;
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}
.leaflet-popup-tip { background: var(--cream) !important; border: 3px solid var(--ink) !important; }

/* ── OVERVIEW MAP (index) ── */
#overviewMap {
  width: 100%;
  height: 640px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
}

.map-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}
.map-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Bungee', system-ui;
  font-size: 14px;
  padding: 12px 20px;
  border: 3px solid var(--mustard);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
  text-align: center;
  line-height: 1.25;
}
.map-cta-btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  text-decoration: none;
}
.map-cta-hint {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  flex: 1;
  min-width: 200px;
}

.map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
.map-filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.map-filter-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-right: 4px;
}
.map-filter-btn {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 8px 14px;
  font-family: 'Bungee', system-ui;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink);
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.map-filter-btn:hover { background: var(--mustard); }
.map-filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.map-day-select {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 8px 12px;
  font-family: 'Bungee', system-ui;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

.map-legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--cream-dark);
  border: 3px solid var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: inline-block;
}
.map-legend-shape {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: var(--cream);
}
.map-legend-shape.circle { border-radius: 50%; background: var(--red); }
.map-legend-shape.square { background: var(--blue); }
.map-legend-shape.star { background: var(--mustard); border: none; font-size: 16px; line-height: 1; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--ink);
  color: var(--cream);
  padding: 48px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '★ ★ ★';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 16px;
  color: var(--mustard);
  letter-spacing: 8px;
}
.highlight-tag {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  padding: 6px 14px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-weight: 700;
}
.highlight-title {
  font-family: 'Bungee', system-ui;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: var(--mustard);
  margin-bottom: 20px;
}
.highlight-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 700px;
}
.highlight-link {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Bungee', system-ui;
  font-size: 14px;
  padding: 12px 20px;
  border: 3px solid var(--mustard);
  text-decoration: none;
}
.highlight-link:hover { background: var(--cream); border-color: var(--cream); text-decoration: none; }

/* ── WEATHER TABLE ── */
.weather-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-dark);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}
.weather-table th, .weather-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--ink);
}
.weather-table th {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Bungee', system-ui;
  font-size: 13px;
  text-transform: uppercase;
}
.weather-table tr:last-child td { border-bottom: none; }
.weather-table tr:hover td { background: var(--cream); }
.temp-hot { color: var(--red); font-weight: 700; }
.temp-mild { color: var(--blue); font-weight: 700; }
.temp-cold { color: var(--blue-dark); font-weight: 700; }

/* ── WARNING ── */
.warning {
  background: var(--mustard);
  border: 4px solid var(--ink);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.warning-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--mustard);
  padding: 4px 10px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-weight: 700;
}
.warning h3 {
  font-family: 'Bungee', system-ui;
  font-size: 20px;
  margin-bottom: 8px;
}
.warning p { font-size: 16px; line-height: 1.6; }

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border-top: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
}
.info-card {
  background: var(--cream-dark);
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 28px 24px;
}
.info-card-icon {
  font-family: 'Bungee Shade', system-ui;
  font-size: 48px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.info-card-title {
  font-family: 'Bungee', system-ui;
  font-size: 18px;
  margin-bottom: 12px;
}
.info-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.info-card-text strong { color: var(--ink); }
.info-card-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.info-card-link:hover { background: var(--red); text-decoration: none; }

/* ── RESERVATIONS LIST ── */
.res-list {
  list-style: none;
  counter-reset: res;
}
.res-item {
  counter-increment: res;
  background: var(--cream-dark);
  border: 4px solid var(--ink);
  padding: 24px 28px 24px 90px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: var(--shadow);
}
.res-item::before {
  content: counter(res, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bungee Shade', system-ui;
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}
.res-item h3 {
  font-family: 'Bungee', system-ui;
  font-size: 18px;
  margin-bottom: 6px;
}
.res-item p { font-size: 16px; margin-bottom: 8px; color: var(--ink-soft); }
.res-link {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-right: 6px;
}
.res-link:hover { background: var(--red); text-decoration: none; }

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  columns: 2;
  column-gap: 32px;
}
@media (max-width: 600px) { .checklist { columns: 1; } }
.checklist li {
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--ink);
  position: relative;
  font-size: 17px;
  break-inside: avoid;
}
.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 22px;
  color: var(--red);
  font-weight: bold;
}
.checklist li.checked::before { content: '☑'; }
.checklist li { cursor: pointer; user-select: none; }
.checklist li.checked { opacity: 0.55; text-decoration: line-through; }

/* ── SECTION VARIANTS ── */
.section-cream-dark {
  background: var(--cream-dark);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  section { padding: 40px 0; }
  .hero { padding: 40px 0 30px; }
  .day-footer-nav { grid-template-columns: 1fr; }
  .day-nav-link { border-right: none; border-bottom: 4px solid var(--ink); }
  .day-nav-link:last-child { border-bottom: none; }
  .day-nav-link.next { text-align: left; }
  #dayMap { height: 360px; }
  #overviewMap { height: 420px; }
  .topnav .container { gap: 8px; }
  .topnav .nav-meta { display: none; }

  /* Map CTA stacked on mobile */
  .map-cta-row {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 10px;
  }
  .map-cta-btn {
    font-size: 13px;
    padding: 14px 16px;
    width: 100%;
  }
  .map-cta-hint {
    font-size: 13px;
    text-align: center;
    min-width: 0;
    line-height: 1.4;
  }

  /* Map filter controls stack tidily */
  .map-controls {
    gap: 14px;
  }
  .map-filter-group {
    width: 100%;
  }
  .map-filter-btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
  }
  .map-day-select {
    width: 100%;
    padding: 10px 12px;
  }

  /* Day map legend more compact */
  .day-map-legend {
    gap: 10px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .day-legend-dot { width: 24px; height: 24px; font-size: 11px; }
}

@media (max-width: 480px) {
  .map-cta-btn { font-size: 12px; }
  .map-cta-hint { font-size: 12px; }
  .map-filter-btn { font-size: 10px; padding: 9px 6px; }
}
