/* ============================================================
   BLUEGRASS SPRING — Falling Rock Park
   Design system: quarry water, limestone sand, Kentucky navy
   ============================================================ */

:root {
  --navy: #16324f;
  --navy-deep: #0d2236;
  --navy-ink: #0a1a2a;
  --teal: #0f9ba8;
  --teal-deep: #0b7280;
  --teal-bright: #23b8c4;
  --sand: #f3ede2;
  --sand-deep: #e5dac5;
  --cream: #fbf8f2;
  --gold: #e9b949;
  --gold-deep: #d4a531;
  --white: #ffffff;
  --ink: #14242f;
  --muted: #5b6b78;
  --line: rgba(22, 50, 79, 0.12);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Helvetica Neue", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(13, 34, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 34, 54, 0.14);
  --shadow-lg: 0 24px 64px rgba(13, 34, 54, 0.22);

  --wrap: 1200px;
  --wrap-wide: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.section-title { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 20px; }
.section-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 640px; }

section { padding: 104px 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(233, 185, 73, 0.35);
}
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 14px 34px rgba(233, 185, 73, 0.45); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--white); }

.btn-ghost-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- Announcement bar ---------- */

.announce {
  position: relative;
  z-index: 60;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 500;
}
@media (max-width: 700px) { .announce { font-size: 11px; } }
.announce strong { color: var(--gold); font-weight: 700; }

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.solid {
  position: fixed;
  top: 0;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand-name {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
  color: var(--white);
  transition: color 0.35s ease;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.35s ease;
}
.site-header.solid .brand-name { color: var(--navy); }
.site-header.solid .brand-name small { color: var(--teal-deep); }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-header.solid .nav-links a { color: var(--navy); }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 24px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 70;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.site-header.solid .nav-toggle span,
.site-header.solid .nav-toggle span::before,
.site-header.solid .nav-toggle span::after { background: var(--navy); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }
body.nav-open .nav-toggle span { background: transparent !important; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: var(--white); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: var(--white); }

/* Mobile nav overlay */
@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    gap: 8vh;
    background: linear-gradient(160deg, var(--navy-deep), var(--teal-deep));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-links a { color: var(--white) !important; font-size: 20px; }
  body.nav-open .nav-links { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero video, .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(10, 26, 42, 0.5), rgba(10, 26, 42, 0) 75%),
    linear-gradient(180deg, rgba(10, 26, 42, 0.68) 0%, rgba(10, 26, 42, 0.42) 40%, rgba(10, 26, 42, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 140px 24px 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 12px #4ade80; }

.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 22px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 8px 44px rgba(0, 0, 0, 0.5);
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 4px 22px rgba(0, 0, 0, 0.45);
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1.5px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 2s ease-in-out infinite;
}
@keyframes drip { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Info ticker ---------- */

.ticker {
  background: var(--teal-deep);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker-track span::after { content: "◆"; color: var(--gold); font-size: 10px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(30px, 3vw, 44px); color: var(--teal-deep); font-weight: 600; }
.stat span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img, .split-media video {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media .accent-card {
  position: absolute;
  bottom: -26px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.accent-card b { font-family: var(--font-display); font-size: 26px; color: var(--gold); display: block; margin-bottom: 4px; }
.accent-card span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .accent-card { right: 12px; bottom: -20px; }
}

/* ---------- Feature checklist ---------- */

.feature-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--ink); }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 155, 168, 0.12);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- Activity cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.act-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  cursor: default;
}
.act-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.act-card:hover img { transform: scale(1.06); }
.act-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 42, 0.88) 100%);
}
.act-card-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}
.act-card-label h3 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
.act-card-label p { font-size: 14px; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }

/* ---------- Ticket cards ---------- */

.tickets-band {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, var(--teal-deep) 130%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tickets-band .section-title, .tickets-band h3 { color: var(--white); }
.tickets-band .section-lead { color: rgba(255, 255, 255, 0.78); }
.tickets-band .eyebrow { color: var(--gold); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.1); border-color: rgba(233, 185, 73, 0.5); }
.price-card.featured { background: rgba(233, 185, 73, 0.12); border-color: var(--gold); position: relative; }
.price-card .tag {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 21px; }
.price-card .price { font-family: var(--font-display); font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1; }
.price-card .price small { font-size: 16px; font-family: var(--font-body); font-weight: 500; color: rgba(255, 255, 255, 0.7); }
.price-card p { font-size: 14.5px; color: rgba(255, 255, 255, 0.78); flex-grow: 1; }
.price-card .btn { margin-top: 20px; width: 100%; }

/* ---------- Video feature ---------- */

.video-feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 56px; }
.video-feature video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Gallery ---------- */

.masonry { columns: 3; column-gap: 20px; margin-top: 56px; }
.masonry a { display: block; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.masonry img { width: 100%; transition: transform 0.5s ease; }
.masonry a:hover img { transform: scale(1.04); }
@media (max-width: 980px) { .masonry { columns: 2; } }
@media (max-width: 600px) { .masonry { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 26, 42, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

/* ---------- FAQ accordion ---------- */

.faq-list { margin-top: 48px; display: grid; gap: 16px; max-width: 860px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 28px 26px; color: var(--muted); font-size: 16px; }
.faq-item .faq-body p + p { margin-top: 10px; }

/* ---------- Rules grid ---------- */

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.rule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rule-card img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 16px; }
.rule-card b { display: block; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }

/* ---------- Pack list ---------- */

.pack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.pack-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--teal);
}
.pack-col.required { border-top-color: var(--gold); }
.pack-col h3 { font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 26px; color: var(--teal-deep); }
.pack-col.required h3 { color: var(--gold-deep); }
.pack-item { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.pack-item:first-of-type { border-top: 0; }
.pack-item .ico { font-size: 28px; flex-shrink: 0; }
.pack-item b { display: block; font-size: 17px; color: var(--navy); margin-bottom: 2px; }
.pack-item p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .pack-grid { grid-template-columns: 1fr; } }

/* ---------- Rentals ---------- */

.rental-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 56px; }
.rental-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rental-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rental-card .ico { font-size: 34px; margin-bottom: 8px; }
.rental-card b { font-family: var(--font-display); font-size: 20px; color: var(--navy); }
.rental-card .price { font-size: 24px; font-weight: 700; color: var(--teal-deep); }
.rental-card p { font-size: 14px; color: var(--muted); }

/* ---------- Map section ---------- */

.map-frame {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  padding: 16px;
}
.map-frame img { border-radius: var(--radius); width: 100%; }

/* Interactive map board */
.map-board { position: relative; }
.map-board img { border-radius: var(--radius); width: 100%; display: block; }

.poi {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(24px, 3vw, 38px);
  height: clamp(24px, 3vw, 38px);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-body);
  font-size: clamp(11px, 1.3vw, 15px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 34, 54, 0.4);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.poi:hover { transform: translate(-50%, -50%) scale(1.18); }
.poi.active {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translate(-50%, -50%) scale(1.25);
  z-index: 2;
}
.poi.active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: poi-ring 1.6s ease-out infinite;
}
@keyframes poi-ring {
  0% { transform: scale(0.75); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.map-layout {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 18px;
  align-items: stretch;
  text-align: left;
}
.map-side { display: flex; flex-direction: column; gap: 14px; min-width: 0; }

.map-detail {
  background: linear-gradient(140deg, var(--navy-deep), var(--navy) 70%, var(--teal-deep) 160%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.map-list {
  list-style: none;
  display: grid;
  gap: 5px;
  flex: 1;
  overflow: auto;
  padding-right: 2px;
}
.map-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 7px 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.map-list button:hover { background: var(--sand); }
.map-list button.active { background: rgba(233, 185, 73, 0.18); border-color: var(--gold); }
.map-list .n {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.map-list button.active .n { background: var(--gold); color: var(--navy-deep); }

@media (max-width: 940px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-list { grid-template-columns: 1fr 1fr; }
}
.map-detail .num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-detail h3 { color: var(--white); font-size: 21px; margin-bottom: 6px; }
.map-detail p { color: rgba(255, 255, 255, 0.82); font-size: 14.5px; }
.map-detail .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: block;
  margin-bottom: 4px;
}
.map-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.map-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}
.map-progress.run span { animation: map-fill 5s linear forwards; }
@keyframes map-fill { from { width: 0; } to { width: 100%; } }
.map-detail .pause-note { position: absolute; top: 14px; right: 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 640px) {
  .map-detail { flex-direction: column; gap: 14px; padding: 24px 22px 22px; }
}

/* ---------- Ticket date store ---------- */

.month-label {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 44px 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.month-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.date-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.date-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.date-card .dow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-deep); }
.date-card .day { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--navy); line-height: 1.1; }
.date-card .price { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.date-card .btn { padding: 9px 10px; font-size: 12px; width: 100%; }
.date-card.last-day { border-color: var(--gold); background: rgba(233, 185, 73, 0.07); }
.date-card .flag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }

.store-note {
  margin-top: 34px;
  background: var(--sand);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.store-note b { color: var(--navy); }

.seg-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.seg-tab {
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.seg-tab.active, .seg-tab:hover { background: var(--navy); color: var(--white); }
.store-panel { display: none; }
.store-panel.active { display: block; }

/* ---------- Terms page ---------- */

.legal { max-width: 820px; }
.legal h2 { font-size: 26px; margin: 44px 0 14px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal ul { padding-left: 22px; margin-top: 8px; display: grid; gap: 8px; }
.legal .updated { font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; }

/* ---------- Interior page hero ---------- */

.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 42, 0.5), rgba(10, 26, 42, 0.75));
}
.page-hero-content { position: relative; z-index: 2; padding: 160px 0 64px; width: 100%; }
.page-hero h1 { color: var(--white); font-size: clamp(40px, 6vw, 76px); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.88); font-size: clamp(16px, 1.8vw, 20px); max-width: 620px; font-weight: 300; }
.page-hero .eyebrow { color: var(--gold); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.cta-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 114, 128, 0.85), rgba(13, 34, 54, 0.92)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(34px, 4.6vw, 60px); margin-bottom: 18px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 36px; font-size: 18px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-ink); color: rgba(255, 255, 255, 0.8); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; }
.footer-brand img { width: 84px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 300px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; }
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a { font-size: 15px; color: rgba(255, 255, 255, 0.72); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 14px; font-size: 15px; }
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact b { color: var(--white); font-weight: 600; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Offer modal ---------- */

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 26, 42, 0.7);
  backdrop-filter: blur(6px);
}
.offer-modal.open { display: flex; }

.offer-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  animation: offer-pop 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes offer-pop { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: none; } }

.offer-media { position: relative; height: 190px; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 26, 42, 0.15), rgba(10, 26, 42, 0.55)); }
.offer-media .offer-pill {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}

.offer-body { padding: 32px 36px 36px; text-align: center; }
.offer-body h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.offer-body p { color: var(--muted); font-size: 16px; max-width: 420px; margin: 0 auto 26px; }
.offer-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.offer-actions .btn { width: min(320px, 100%); }
.offer-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px;
}
.offer-dismiss:hover { color: var(--navy); }

.offer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(10, 26, 42, 0.55);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease;
}
.offer-close:hover { background: rgba(10, 26, 42, 0.8); }

.offer-step { display: none; }
.offer-step.active { display: block; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.band-sand { background: var(--sand); }
.band-white { background: var(--white); }
