/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── Tokens ─── */
:root {
  --navy: #2E3F5C;
  --navy-light: #C8D8F0;
  --bg: #0A0E14;
  --bg2: #111722;
  --text: #F5F7FA;
  --muted: #8A9AB5;
  --card: #151D2B;
  --border: rgba(200, 216, 240, 0.12);
  --border-featured: rgba(200, 216, 240, 0.35);
  --check: #C8D8F0;
  --highlight-bg: rgba(200, 216, 240, 0.06);
  --highlight-border: rgba(200, 216, 240, 0.12);
  --highlight-text: #C8D8F0;
  --tag-prem-bg: rgba(200, 216, 240, 0.15);
  --tag-prem-text: #C8D8F0;
  --tag-min-bg: rgba(200, 216, 240, 0.08);
  --footer-brand-accent: #C8D8F0;
}

body.day-mode {
  --bg: #F0F4FA;
  --bg2: #E4EBF5;
  --text: #0A0E14;
  --muted: #5A6A80;
  --card: #FFFFFF;
  --border: rgba(46, 63, 92, 0.12);
  --border-featured: rgba(46, 63, 92, 0.35);
  --check: #2E3F5C;
  --highlight-bg: rgba(46, 63, 92, 0.06);
  --highlight-border: rgba(46, 63, 92, 0.15);
  --highlight-text: #2E3F5C;
  --tag-prem-bg: rgba(46, 63, 92, 0.1);
  --tag-prem-text: #2E3F5C;
  --tag-min-bg: rgba(46, 63, 92, 0.06);
  --footer-brand-accent: #2E3F5C;
}

/* ─── Base ─── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ─── Nav ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: background 0.4s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.4s;
}

.wordmark span {
  color: var(--footer-brand-accent);
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  padding: 0.5rem 0.8rem;
}

.nav-links a:hover { color: var(--text); }

.cta-nav {
  background: var(--navy) !important;
  color: #F5F7FA !important;
  border-radius: 6px;
  padding: 0.45rem 1rem !important;
  transition: background 0.2s !important;
}

.cta-nav:hover { background: #3A5070 !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: border-color 0.2s;
}

.lang-toggle:hover { border-color: var(--muted); }
.lang-sep { color: var(--border); }
.lang-option { transition: color 0.2s; }
.lang-active { color: var(--text); font-weight: 600; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.3s;
}

/* ─── Mobile menu ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg);
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text); }

.cta-mobile {
  background: var(--navy) !important;
  color: #F5F7FA !important;
  border-radius: 7px;
  padding: 0.8rem 1rem !important;
  text-align: center;
  border-bottom: none !important;
  margin-top: 0.4rem;
}

/* ─── Hero ─── */
.hero {
  padding: 4.5rem 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--border);
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  color: var(--text);
  transition: color 0.4s;
}

h1 em {
  font-style: normal;
  color: var(--navy-light);
}

body.day-mode h1 em { color: var(--navy); }

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #F5F7FA;
  border: none;
  border-radius: 7px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover { background: #3A5070; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover { border-color: var(--navy-light); color: var(--navy-light); }
body.day-mode .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ─── Car stage ─── */
.car-stage {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  height: 220px;
}

#car-svg {
  width: 100%;
  height: 100%;
  transform: translateX(120%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

#car-svg.driven-in { transform: translateX(0); }

.shine-line {
  position: absolute;
  top: 50%;
  left: -40%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 216, 240, 0.6), transparent);
  transform: translateY(-50%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

body.day-mode .shine-line {
  background: linear-gradient(90deg, transparent, rgba(46, 63, 92, 0.4), transparent);
}

.ground-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin-top: 0.5rem;
}

/* ─── Packages ─── */
.packages {
  background: var(--bg2);
  padding: 5rem 2.5rem;
  transition: background 0.4s;
}

.packages-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
  transition: color 0.4s;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.4s;
}

.pkg-card.featured {
  border-color: var(--border-featured);
  border-width: 1.5px;
}

.pkg-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.tag-min {
  background: var(--tag-min-bg);
  color: var(--muted);
}

.tag-prem {
  background: var(--tag-prem-bg);
  color: var(--tag-prem-text);
}

.pkg-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  color: var(--text);
  transition: color 0.4s;
}

.pkg-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

.pkg-price-starting {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.pkg-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--text);
  transition: color 0.4s;
}

.price-plus {
  font-size: 1.2rem;
  font-weight: 500;
}

.pkg-price-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.6rem;
}

.pkg-includes {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.4s;
}

.pkg-list li::before {
  content: '✓';
  color: var(--check);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pkg-highlight {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  background: var(--highlight-bg);
  border: 1px solid var(--highlight-border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--highlight-text);
  line-height: 1.5;
}

.pkg-cta {
  display: block;
  margin-top: 1.8rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.cta-min {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cta-min:hover { border-color: var(--muted); }

.cta-prem {
  background: var(--navy);
  color: #F5F7FA;
  border: none;
}

.cta-prem:hover { background: #3A5070; }

/* ─── Location ─── */
.location {
  padding: 4rem 2.5rem;
}

.location-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.zone-text { flex: 1; min-width: 260px; }

.zone-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  line-height: 1.05;
  color: var(--text);
  transition: color 0.4s;
}

.zone-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 340px;
}

.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.pill {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  color: var(--muted);
}

.zone-visual {
  flex: 0 0 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.4s;
}

.zone-pin { font-size: 2rem; margin-bottom: 0.6rem; }

.zone-visual h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  color: var(--text);
  transition: color 0.4s;
}

.zone-visual p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Book CTA ─── */
.book-cta {
  background: var(--bg2);
  padding: 5rem 2.5rem;
  text-align: center;
  transition: background 0.4s;
}

.book-inner {
  max-width: 540px;
  margin: 0 auto;
}

.book-inner .section-label { margin-bottom: 0.6rem; }

.book-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--text);
  transition: color 0.4s;
}

.book-inner p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.book-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.book-inner.has-calendar { max-width: 720px; }

.calendar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 1.8rem;
  text-align: left;
  transition: border-color 0.2s, background 0.4s;
}

.calendar-card iframe {
  display: block;
  min-height: 720px;
}

.book-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.8rem;
}

.book-divider::before,
.book-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 680px) {
  .calendar-card iframe { min-height: 850px; }
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.4s;
}

.footer-brand span { color: var(--footer-brand-accent); }

/* ─── Responsive ─── */
@media (max-width: 680px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .packages { padding: 3.5rem 1.5rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .location { padding: 3rem 1.5rem; }
  .book-cta { padding: 3.5rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-mid { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  .car-stage { height: 160px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  #car-svg { transition: none; transform: translateX(0); }
  .shine-line { display: none; }
}
