/* ============ Tokens ============ */
:root {
  --navy: #0a0f1c;
  --navy-alt: #0c1424;
  --navy-footer: #070b14;
  --gold: #d4af37;
  --gold-hover: #e8c65a;
  --white: #ffffff;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --border-soft: rgba(255,255,255,0.1);
  --card-tint: rgba(255,255,255,0.03);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --max-wide: 90rem;
  --max-narrow: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 600; }
p { margin: 0; }
.container {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow { max-width: var(--max-narrow); }
@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

.gold { color: var(--gold); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow-line { height: 1px; width: 2rem; background: var(--gold); display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  transition: background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border: 1px solid var(--slate-500); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1rem 2rem; }
.arrow { display: inline-block; }
.phone-inline { width: 1rem; height: 1rem; }

/* ============ Header ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color .3s, border-color .3s;
  background: transparent;
}
#site-header.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { padding: 0 2.5rem; } }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo-full {
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .brand-logo-full { height: 2.75rem; }
}

.nav-desktop { display: none; gap: 2.25rem; }
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-200);
  letter-spacing: 0.02em;
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--gold); }

.nav-cta { display: none; }

.menu-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--gold);
  width: 2.25rem; height: 2.25rem;
  position: relative;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 1.5rem; height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .2s, opacity .2s;
}
.menu-icon::before { transform: translate(-50%, -0.5rem); }
.menu-icon::after { transform: translate(-50%, 0.5rem); }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 1rem 1.25rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--slate-200); font-weight: 500; padding: 0.35rem 0; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta { justify-content: center; margin-top: 0.5rem; }

/* Language switcher */
.lang-switcher { display: inline-flex; align-items: center; gap: 0.15rem; }
.nav-desktop .lang-link,
.nav-mobile .lang-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  padding: 0;
}
.nav-desktop .lang-link:hover,
.nav-mobile .lang-link:hover,
.lang-link.lang-active { color: var(--gold); }
.lang-sep { color: var(--slate-600); font-size: 0.75rem; margin: 0 0.05rem; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.6; background: var(--navy); }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, rgba(10,15,28,0.85) 45%, rgba(10,15,28,0.4) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 0%, transparent 40%, rgba(10,15,28,0.6) 100%); }

.hero-inner {
  position: relative;
  max-width: var(--max-wide);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding: 7rem 2.5rem 4rem; } }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; } }

.hero-copy h1 {
  font-size: 2.75rem;
  line-height: 1.08;
  color: var(--white);
}
@media (min-width: 768px) { .hero-copy h1 { font-size: 3.6rem; } }
@media (min-width: 1280px) { .hero-copy h1 { font-size: 4.4rem; } }

.hero-lede {
  display: block;
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.1rem;
  color: var(--slate-300);
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-fleet { display: none; }
@media (min-width: 1024px) { .hero-fleet { display: block; } }
.fleet-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 25px 50px -12px rgba(0,0,0,0.5);
}
.fleet-card img { width: 100%; height: 420px; object-fit: cover; }
.fleet-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,28,0.7), transparent); }
.fleet-card-caption {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.fleet-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin: 0; }
.fleet-sub { font-size: 0.85rem; color: var(--slate-300); margin: 0.25rem 0 0; }
.fleet-icon { width: 2.25rem; height: 2.25rem; color: var(--gold); }

/* ============ Marquee ============ */
.marquee { background: var(--gold); padding: 0.75rem 0; overflow: hidden; }
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  margin: 0 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.dot { color: rgba(10,15,28,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============ Sections ============ */
.section { padding: 5.5rem 0; background: var(--navy); }
@media (min-width: 768px) { .section { padding: 7.5rem 0; } }
.section-alt { background: var(--navy-alt); }

.section-head h2 {
  font-size: 2.25rem;
  color: var(--white);
  line-height: 1.15;
}
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head.center { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.section-head:not(.center) { max-width: 42rem; margin-bottom: 3.5rem; }
.section-sub { margin-top: 1rem; color: var(--slate-400); }

.card-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
.card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  border: 1px solid var(--border-soft);
  background: var(--card-tint);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.feature-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-4px); }
.feature-icon {
  height: 3.5rem; width: 3.5rem;
  border-radius: 6px;
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.feature-icon svg { width: 1.75rem; height: 1.75rem; }
.feature-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.feature-card p { color: var(--slate-400); line-height: 1.6; }

/* Routes */
.route-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border-soft);
}
.route-card img { width: 100%; height: 20rem; object-fit: cover; transition: transform .7s; }
.route-card:hover img { transform: scale(1.05); }
.route-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 0%, rgba(10,15,28,0.3) 40%, transparent 100%); }
.route-caption { position: absolute; bottom: 0; padding: 1.75rem; }
.route-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.route-tag svg { width: 0.9rem; height: 0.9rem; }
.route-caption h3 { font-size: 1.85rem; color: var(--white); }
.route-caption p { margin-top: 0.5rem; color: var(--slate-300); max-width: 26rem; }

/* About */
.about-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.2);
}
.about-image img { width: 100%; height: 27.5rem; object-fit: cover; }
.about-copy h2 { font-size: 2.25rem; color: var(--white); line-height: 1.15; }
@media (min-width: 768px) { .about-copy h2 { font-size: 3rem; } }
.body-text { display: block; margin-top: 1.25rem; color: var(--slate-400); line-height: 1.7; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2rem; }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { border: 1px solid var(--border-soft); background: var(--card-tint); border-radius: 6px; padding: 1.25rem; }
.stat-card svg { width: 1.5rem; height: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.stat-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.stat-label { font-size: 0.85rem; color: var(--slate-400); margin-top: 0.25rem; }

/* Contact */
.contact-section { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; opacity: 0.1; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-section .container { position: relative; }
.contact-card {
  border: 1px solid var(--border-soft);
  background: rgba(12,20,36,0.8);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: block;
  transition: border-color .3s, transform .3s;
}
.contact-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-4px); }
.contact-icon {
  margin: 0 auto 1.25rem;
  height: 3.5rem; width: 3.5rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 1.5rem; height: 1.5rem; }
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--slate-500); margin-bottom: 0.5rem; }
.contact-value { color: var(--white); font-weight: 500; word-break: break-word; transition: color .2s; }
.contact-card:hover .contact-value { color: var(--gold); }

/* Quote request form */
.quote-form-card {
  background: var(--card-tint);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .quote-form-card { padding: 2.75rem; } }
.quote-form-title { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .quote-form-title { font-size: 2.1rem; } }
.quote-form-sub { color: var(--slate-400); margin-bottom: 2rem; max-width: 40rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-row[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--slate-300); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .2s, background-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
  padding-right: 2.2rem;
}
.form-field textarea { resize: vertical; min-height: 6rem; }
.field-help { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.15rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.quote-form > .btn { margin-top: 0.5rem; }

.quote-form-success { text-align: center; padding: 1.5rem 0; }
.quote-form-success svg { width: 3rem; height: 3rem; color: var(--gold); margin: 0 auto 1rem; }
.quote-form-success h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 0.5rem; }
.quote-form-success p { color: var(--slate-400); }
.contact-cta-wrap { text-align: center; margin-top: 3rem; }

/* Footer */
.site-footer { background: var(--navy-footer); border-top: 1px solid rgba(212,175,55,0.15); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-mid { font-size: 0.9rem; color: var(--slate-500); }
.footer-copy { font-size: 0.9rem; color: var(--slate-600); }

/* ============ Reveal-on-scroll ============ */
.reveal, .reveal-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.in-view, .reveal-child.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger .reveal-child:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal-child:nth-child(2) { transition-delay: .12s; }
.reveal-stagger .reveal-child:nth-child(3) { transition-delay: .24s; }
.reveal-stagger .reveal-child:nth-child(4) { transition-delay: .36s; }
.card-grid-3 .feature-card:nth-child(1), .card-grid-3 .contact-card:nth-child(1) { transition-delay: 0s; }
.card-grid-3 .feature-card:nth-child(2), .card-grid-3 .contact-card:nth-child(2) { transition-delay: .1s; }
.card-grid-3 .feature-card:nth-child(3), .card-grid-3 .contact-card:nth-child(3) { transition-delay: .2s; }
.card-grid-2 .route-card:nth-child(2) { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { opacity: 1; transform: none; transition: none; }
}
