/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #080c14;
  --navy2: #0d1526;
  --gold: #d4a843;
  --gold2: #b8902e;
  --terra: #c4683a;
  --cream: #f5ede0;
  --muted: rgba(245,237,224,0.5);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
}
html { scroll-behavior: auto; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Cursor ─────────────────────────────────────────────────── */
.cursor {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, background .2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 70px; height: 70px; background: rgba(212,168,67,.1); }
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(8,12,20,.85);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(212,168,67,.15);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .18em; }
.nav-logo-img { width: 32px; height: 32px; object-fit: contain; filter: invert(1); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 13px; letter-spacing: .1em; opacity: .7; transition: opacity .2s; }
.nav-link:hover { opacity: 1; }
.nav-cta {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; padding: 10px 24px;
  border: 1px solid var(--gold); color: var(--gold);
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
}

/* Real Leaflet map fills background */
#map {
  position: absolute; inset: 0; z-index: 0;
  background: #080c14;
}

/* Gradient overlay for text readability */
.hero-map-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(8,12,20,0.88) 0%, rgba(8,12,20,0.55) 45%, rgba(8,12,20,0.15) 70%, transparent 100%),
    linear-gradient(to top, rgba(8,12,20,0.6) 0%, transparent 40%);
}

/* Leaflet overrides — dark gold theme */
.leaflet-control-attribution {
  background: rgba(8,12,20,0.72) !important;
  color: rgba(245,237,224,0.25) !important;
  font-size: 9px !important;
  backdrop-filter: blur(4px);
}
.leaflet-control-attribution a { color: rgba(212,168,67,0.35) !important; }

.leaflet-control-zoom {
  border: 1px solid rgba(212,168,67,0.3) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.leaflet-control-zoom a {
  background: rgba(8,12,20,0.85) !important;
  color: rgba(212,168,67,0.75) !important;
  border-bottom: 1px solid rgba(212,168,67,0.2) !important;
  backdrop-filter: blur(8px);
  font-size: 16px !important;
  line-height: 28px !important;
  width: 28px !important; height: 28px !important;
}
.leaflet-control-zoom a:hover {
  background: rgba(212,168,67,0.12) !important;
  color: #d4a843 !important;
}
.leaflet-control-zoom-in { border-radius: 0 !important; }
.leaflet-control-zoom-out { border-radius: 0 !important; border-bottom: none !important; }

/* ── Aztec map pins ───────────────────────────────────────────── */
.aztec-marker { background: none !important; border: none !important; }

.aztec-pin {
  position: relative; width: 44px; height: 44px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.aztec-pin-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.07);
  animation: pinPulse 2.4s ease-in-out infinite;
}
.aztec-pin-inner {
  position: absolute; inset: 8px; border-radius: 50%;
  background: rgba(8,12,20,0.92);
  border: 2px solid #d4a843;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: #d4a843;
  box-shadow: 0 0 14px rgba(212,168,67,0.35), inset 0 0 6px rgba(212,168,67,0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.aztec-pin.active .aztec-pin-inner {
  border-color: #f5c842;
  box-shadow: 0 0 22px rgba(245,200,66,0.65), inset 0 0 8px rgba(245,200,66,0.1);
}
.aztec-pin.active {
  transform: scale(1.25);
}
.aztec-pin:hover { transform: scale(1.12); }
.aztec-pin.active:hover { transform: scale(1.28); }

/* Leaflet tooltip override */
.aztec-tooltip {
  background: rgba(8,12,20,0.9) !important;
  border: 1px solid rgba(212,168,67,0.4) !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: .08em !important;
  padding: 6px 12px !important;
  border-radius: 0 !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  white-space: nowrap;
}
.aztec-tooltip::before { display: none !important; }
.leaflet-tooltip-top.aztec-tooltip::before { display: none !important; }

/* hero content */
.hero-content {
  position: relative; z-index: 10;
  max-width: 700px; padding: 0 48px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s .3s forwards;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  line-height: .9; margin-bottom: 24px;
}
.hero-title-line {
  display: block; font-size: clamp(72px, 10vw, 140px);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .7s forwards;
}
.hero-title-line:nth-child(1) { animation-delay: .4s; }
.hero-title-line:nth-child(2) { animation-delay: .55s; color: var(--gold); font-style: italic; font-size: clamp(60px, 8vw, 110px); }
.hero-title-line:nth-child(3) { animation-delay: .7s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 16px; line-height: 1.7; opacity: .7; margin-bottom: 36px;
  animation: fadeUp .7s .85s forwards; opacity: 0; transform: translateY(16px);
}
.hero-stats {
  display: flex; align-items: center; gap: 28px; margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s 1s forwards;
}
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(212,168,67,.25); }
.hero-cta {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 36px; background: var(--gold); color: var(--navy);
  transition: background .25s;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s 1.15s forwards;
}
.hero-cta:hover { background: var(--gold2); }

/* venue panel */
.venue-panel {
  position: fixed; top: 0; right: -500px; bottom: 0; width: 440px;
  background: var(--navy2); z-index: 1000;
  transition: right .5s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(212,168,67,.2);
}
.venue-panel.open { right: 0; }
.panel-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 1px solid rgba(212,168,67,.3); color: var(--cream);
  width: 36px; height: 36px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.panel-close:hover { background: rgba(212,168,67,.1); }
.panel-number {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--font-display); font-size: 72px; font-weight: 700;
  color: rgba(212,168,67,.08); line-height: 1; z-index: 0;
}
.panel-img-wrap { height: 260px; overflow: hidden; flex-shrink: 0; }
.panel-img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.venue-panel.open .panel-img { transform: scale(1.06); }
.panel-content { padding: 28px 24px 24px; position: relative; z-index: 1; flex: 1; }
.panel-tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.panel-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 6px; line-height: 1.1; }
.panel-address { font-size: 13px; opacity: .5; margin-bottom: 16px; }
.panel-desc { font-size: 14px; line-height: 1.7; opacity: .8; margin-bottom: 20px; }
.panel-next { font-size: 12px; color: var(--gold); letter-spacing: .08em; }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 48px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp .7s 1.5s forwards;
}
.scroll-hint span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .5; }
.scroll-line {
  width: 48px; height: 1px; background: var(--gold); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: white; animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── Walk Section (Horizontal Scroll) ───────────────────────── */
.walk-section {
  position: relative; height: 500vh;
}
.walk-pin-wrap {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.walk-track {
  display: flex; height: 100%;
  will-change: transform;
}
.walk-slide {
  min-width: 100vw; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
}
.slide-img-wrap {
  position: relative; overflow: hidden;
}
.slide-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.walk-slide:hover .slide-img { transform: scale(1.04); }
.slide-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.slide-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 64px 60px 48px;
  background: var(--navy);
  position: relative;
}
.slide-num {
  font-family: var(--font-display); font-size: 120px; font-weight: 700;
  color: rgba(212,168,67,.07); line-height: 1;
  position: absolute; top: 20px; right: 32px;
}
.slide-tag {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.slide-name {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px);
  font-weight: 700; line-height: 1.05; margin-bottom: 12px;
}
.slide-address { font-size: 13px; opacity: .45; margin-bottom: 20px; letter-spacing: .06em; }
.slide-desc { font-size: 15px; line-height: 1.75; opacity: .75; margin-bottom: 28px; max-width: 440px; }
.slide-distance {
  font-size: 12px; letter-spacing: .1em; color: var(--gold); opacity: .7;
  padding-top: 20px; border-top: 1px solid rgba(212,168,67,.15);
}

/* triple venue */
.slide-img-wrap--triple { display: flex; flex-direction: column; }
.slide-img--sm { flex: 1; }
.triple-thumbs {
  display: flex; height: 80px; flex-shrink: 0;
}
.thumb-img {
  flex: 1; object-fit: cover; cursor: pointer; opacity: .5;
  transition: opacity .2s; filter: grayscale(.4);
}
.thumb-img.active { opacity: 1; filter: none; }
.thumb-img:hover { opacity: .85; }

/* walk progress */
.walk-progress {
  position: fixed; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(212,168,67,.1); z-index: 50;
}
.walk-progress-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: width .1s;
}
.walk-counter {
  position: fixed; bottom: 20px; right: 32px; z-index: 50;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: .1em; opacity: .5;
  display: none;
}

/* ── Experience Section ──────────────────────────────────────── */
.experience-section {
  padding: 120px 48px;
  background: var(--navy2);
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(42px, 6vw, 80px);
  font-weight: 700; line-height: 1;
}
.experience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1300px; margin: 0 auto;
}
.exp-card {
  background: var(--navy); border: 1px solid rgba(212,168,67,.1);
  overflow: hidden; transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.exp-card:hover { border-color: rgba(212,168,67,.35); }
.exp-card-img { height: 260px; position: relative; overflow: hidden; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.exp-card:hover .exp-card-img img { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}
.exp-card-content { padding: 28px 28px 32px; flex: 1; }
.exp-icon { font-size: 20px; color: var(--gold); display: block; margin-bottom: 12px; }
.exp-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.exp-desc { font-size: 14px; line-height: 1.7; opacity: .7; margin-bottom: 20px; }
.exp-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.exp-perks li {
  font-size: 13px; padding-left: 16px; position: relative; opacity: .7;
}
.exp-perks li::before {
  content: '♦'; position: absolute; left: 0;
  color: var(--gold); font-size: 8px; top: 3px;
}

/* ── Included Section ────────────────────────────────────────── */
.included-section {
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1300px; margin: 0 auto; align-items: center;
  position: relative;
}
.included-text { display: flex; flex-direction: column; gap: 20px; }
.included-sub { font-size: 16px; line-height: 1.75; opacity: .7; }
.btn-gold {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 36px; background: var(--gold); color: var(--navy);
  transition: background .25s; align-self: flex-start;
}
.btn-gold:hover { background: var(--gold2); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.included-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; opacity: .8; line-height: 1.5;
}
.included-icon { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.passport-float {
  position: absolute; right: -40px; bottom: -60px;
  width: 320px; opacity: .9;
  transform: rotate(8deg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
}
@media (max-width: 1200px) { .passport-float { display: none; } }

/* ── Add-ons ─────────────────────────────────────────────────── */
.addons-section {
  padding: 80px 48px 120px;
  background: var(--navy2);
}
.addons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 60px auto 0;
}
.addon-card {
  padding: 32px 28px; border: 1px solid rgba(212,168,67,.15);
  transition: border-color .3s;
}
.addon-card:hover { border-color: rgba(212,168,67,.4); }
.addon-card h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--gold); margin-bottom: 10px;
}
.addon-card p { font-size: 14px; line-height: 1.7; opacity: .7; }

/* ── Book Section ────────────────────────────────────────────── */
.book-section {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.book-bg { position: absolute; inset: 0; }
.book-bg-img { width: 100%; height: 100%; object-fit: cover; }
.book-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(8,12,20,.82);
}
.book-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 60px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.book-title {
  font-family: var(--font-display); font-size: clamp(52px, 8vw, 100px);
  font-weight: 700; line-height: .95;
}
.book-title em { color: var(--gold); font-style: italic; }
.book-sub { font-size: 16px; opacity: .7; line-height: 1.7; }
.book-options { display: flex; gap: 20px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.btn-outline {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 36px; border: 1px solid rgba(245,237,224,.35); color: var(--cream);
  transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,237,224,.05); }
.btn-gold.large { padding: 17px 48px; font-size: 15px; }
.book-note { font-size: 12px; opacity: .4; letter-spacing: .08em; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #050810; padding: 64px 48px 32px;
  border-top: 1px solid rgba(212,168,67,.12);
}
.footer-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 50px; height: 50px; object-fit: contain; filter: invert(1); opacity: .8; }
.footer-tagline { font-size: 13px; line-height: 1.8; opacity: .45; max-width: 220px; }
.divider-img { width: 100%; max-width: 280px; opacity: .4; }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-links a { font-size: 13px; letter-spacing: .08em; opacity: .5; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; opacity: .3;
}

/* ── Noise Grain Overlay ─────────────────────────────────────── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .4;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s, transform .8s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links .nav-link { display: none; }
  .hero-content { padding: 0 24px; }
  .experience-grid { grid-template-columns: 1fr; }
  .included-section { grid-template-columns: 1fr !important; padding: 72px 24px; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* Venue panel: bottom sheet on mobile */
  .venue-panel {
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 88vh;
    max-height: 88vh;
    bottom: -88vh;
    border-left: none !important;
    border-top: 1px solid rgba(212,168,67,.25);
    border-radius: 20px 20px 0 0;
    transition: bottom .5s cubic-bezier(.16,1,.3,1) !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .venue-panel.open { bottom: 0 !important; right: 0 !important; }

  /* panel handle pill */
  .panel-handle {
    width: 40px; height: 4px;
    background: rgba(212,168,67,.35);
    border-radius: 2px;
    margin: 14px auto 0;
  }

  .panel-img-wrap { height: 52vw; min-height: 200px; }

  /* Hero: anchor text to bottom so pins are visible in the map above */
  .hero { align-items: flex-end; }
  .hero-content {
    padding: 0 0 80px !important;
    width: 100%;
    background: linear-gradient(to top, rgba(8,12,20,.95) 0%, rgba(8,12,20,.6) 70%, transparent 100%);
  }
  .hero-content > * { padding-left: 24px; padding-right: 24px; }
  .hero-title { margin-bottom: 14px; }
  .hero-stats { margin-bottom: 28px; }
  .hero-sub { display: none; }
  .scroll-hint { display: none; }

  /* Mobile map overlay: stronger left gradient so text is legible */
  .hero-map-overlay {
    background:
      linear-gradient(to top, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.5) 50%, transparent 80%),
      linear-gradient(to right, rgba(8,12,20,0.5) 0%, transparent 60%) !important;
  }

  /* Walk section: vertical card stack */
  .walk-section { height: auto !important; }
  .walk-pin-wrap { position: static !important; height: auto !important; overflow: visible !important; }
  .walk-track { display: flex !important; flex-direction: column !important; transform: none !important; height: auto !important; }
  .walk-slide {
    min-width: 100% !important; width: 100% !important; height: auto !important;
    display: flex !important; flex-direction: column !important;
  }
  .slide-img-wrap { height: 56vw !important; min-height: 220px; flex-shrink: 0; }
  .slide-img-wrap::after { background: linear-gradient(to bottom, transparent 55%, var(--navy) 100%) !important; }
  .slide-content { padding: 28px 24px 40px !important; }
  .walk-progress { display: none !important; }
  .walk-counter { display: none !important; }

  /* reveal fallback */
  .reveal { opacity: 1 !important; transform: none !important; }

  .addons-section { padding: 72px 24px; }
  .addons-grid { grid-template-columns: 1fr !important; }

  .book-content { padding: 48px 24px; }
  .book-options { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-outline { text-align: center; }

  .footer { padding: 48px 24px 24px; }
  .divider-img { margin: 0 auto; }

  /* Hamburger: show on mobile */
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero-title-line { font-size: clamp(44px, 12vw, 68px) !important; }
  .stat-num { font-size: 30px !important; }
  .hero-stats { gap: 14px; }
  .section-title { font-size: clamp(34px, 9vw, 56px) !important; }
}

/* ── Hamburger + Mobile Nav Drawer ─────────────────────────── */
.nav-toggle-input { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 18px;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-toggle-input:checked ~ .nav .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle-input:checked ~ .nav .hamburger span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle-input:checked ~ .nav .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 85vw);
  background: rgba(8,12,20,.97);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(212,168,67,.18);
  z-index: 1050;
  display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  gap: 4px;
  transition: right .4s cubic-bezier(.16,1,.3,1);
}
.nav-toggle-input:checked ~ .nav-drawer { right: 0; }

.drawer-link {
  display: block; padding: 16px 0;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: .06em; opacity: .6;
  border-bottom: 1px solid rgba(212,168,67,.08);
  transition: opacity .2s, color .2s;
}
.drawer-link:hover { opacity: 1; color: var(--gold); }
.drawer-cta {
  margin-top: 24px; border: 1px solid var(--gold); color: var(--gold);
  text-align: center; padding: 16px; border-bottom: 1px solid var(--gold);
  opacity: 1 !important;
}


/* ── Venue Pin Enhancements ────────────────────────────────── */
.venue-pin {
  transform-box: fill-box;
  transform-origin: center;
  cursor: pointer;
}

/* Invisible large touch hitbox */
.venue-pin .pin-hitbox {
  fill: transparent;
  stroke: none;
}

/* Pulsing outer ring on each pin */
.venue-pin .pin-pulse {
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { opacity: 0.15; r: 20; }
  50%       { opacity: 0.35; r: 26; }
}

/* Active pin state */
.venue-pin.active circle.pin-inner {
  stroke: #f5c842;
  stroke-width: 3;
}
.venue-pin.active text { fill: #f5c842; }

/* Panel handle */
.panel-handle {
  display: none;
  width: 40px; height: 4px;
  background: rgba(212,168,67,.35);
  border-radius: 2px;
  margin: 14px auto 0;
}
@media (max-width: 900px) {
  .panel-handle { display: block; }
}

/* ══════════════════════════════════════════════════════════
   21ST.DEV-STYLE EFFECT LAYER
   ══════════════════════════════════════════════════════════ */

/* ── Particle Canvas ─────────────────────────────────────── */
.particle-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

/* ── Cursor Spotlight ────────────────────────────────────── */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}

/* ── Aurora Background (Experience Section) ──────────────── */
.experience-section { position: relative; overflow: hidden; }
.experience-section::before {
  content: '';
  position: absolute; inset: -60%; width: 220%; height: 220%;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(212,168,67,0.08) 0%, transparent 48%),
    radial-gradient(ellipse at 82% 18%, rgba(196,104,58,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 82%, rgba(212,168,67,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 30%, rgba(184,144,46,0.04) 0%, transparent 40%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.experience-section .section-header,
.experience-section .experience-grid { position: relative; z-index: 1; }
@keyframes auroraShift {
  0%   { transform: translate(0%,   0%)   rotate(0deg)   scale(1); }
  25%  { transform: translate(3%,   2%)   rotate(2deg)   scale(1.04); }
  50%  { transform: translate(-2%,  4%)   rotate(-3deg)  scale(0.97); }
  75%  { transform: translate(4%,  -1%)   rotate(1.5deg) scale(1.06); }
  100% { transform: translate(-1%,  3%)   rotate(-2deg)  scale(1.02); }
}

/* ── Animated Conic Border (Exp Cards) ───────────────────── */
@property --ca { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes caRotate { to { --ca: 360deg; } }

.exp-card { position: relative; isolation: isolate; }
.exp-card::after {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit;
  background: conic-gradient(
    from var(--ca),
    transparent 0%, rgba(212,168,67,0.75) 8%, rgba(245,200,80,0.9) 10%, rgba(212,168,67,0.6) 12%, transparent 22%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  animation: caRotate 3.2s linear infinite paused;
  z-index: -1;
}
.exp-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

/* Mobile: tap also triggers (active state) */
.exp-card.border-active::after {
  opacity: 1;
  animation-play-state: running;
}

/* ── Mobile "Tap a Pin" Hint ─────────────────────────────── */
.pin-hint {
  position: absolute;
  bottom: 175px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.8);
  pointer-events: none;
  white-space: nowrap;
  display: none;
  animation: hintBlink 2.4s ease-in-out infinite;
}
.pin-hint::before { content: '↑  '; }
@media (max-width: 900px) { .pin-hint { display: block; } }
@keyframes hintBlink {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ── Exp Card Touch Active ───────────────────────────────── */
@media (max-width: 900px) {
  .exp-card:active { border-color: rgba(212,168,67,.5); }
}
