/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --midnight: #0a1628;
  --deep-navy: #0f1d32;
  --navy: #162540;
  --charcoal: #1e3250;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: #9a7a30;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd0;
  --text-light: #d4cfc4;
  --text-muted: #8a8478;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --section-gap: clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem var(--pad-x);
  background: linear-gradient(to bottom, rgba(10,22,40,0.95) 0%, transparent 100%);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
}

.logo-mark {
  font-size: 1.1rem;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem var(--pad-x) 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, #1a2744 0%, transparent 70%),
    linear-gradient(160deg, #0a1628 0%, #0d1e36 50%, #0a1628 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  font-weight: 300;
}

.hero-route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.route-pill {
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
  backdrop-filter: blur(4px);
}

.hero-credential {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  padding: 1.5rem 3rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.cred-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.credential-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
}

/* ===== CORRIDORS ===== */
.corridors {
  padding: var(--section-gap) var(--pad-x);
  background: var(--deep-navy);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.corridor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
}

.corridor-card {
  background: var(--deep-navy);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.corridor-card:hover { background: var(--navy); }

.corridor-card--featured {
  background: var(--navy);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.corridor-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.corridor-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.corridor-locations {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.corridor-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FLEET ===== */
.fleet {
  padding: var(--section-gap) var(--pad-x);
  background: var(--midnight);
}

.fleet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}

.fleet-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.fleet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fleet-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.fleet-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}

.fleet-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.fleet-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fleet-card {
  background: var(--deep-navy);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.fleet-card-top {
  padding: 1rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fleet-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
}

.fleet-card-body {
  padding: 1.5rem 1.5rem 2rem;
}

.fleet-silhouette svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.fleet-card-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.stat {
  background: var(--deep-navy);
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat-key {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROMISE ===== */
.promise {
  padding: var(--section-gap) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.promise-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #0d1928 100%);
}

.promise-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.promise-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  text-align: left;
  margin-top: 0;
}

.promise-item {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  background: rgba(10,22,40,0.5);
}

.promise-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(201,168,76,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.promise-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.promise-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-gap) var(--pad-x);
  background: var(--midnight);
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials .section-header { text-align: center; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}

.testimonial-card {
  background: var(--deep-navy);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  position: relative;
}

.testimonial-card--featured {
  border-color: rgba(201,168,76,0.2);
  background: var(--navy);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-gap) var(--pad-x);
  background: var(--deep-navy);
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-detail {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 2rem;
}

.closing-detail p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem var(--pad-x) 4rem;
  background: var(--midnight);
  border-top: 1px solid rgba(201,168,76,0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-divider {
  width: 1px;
  height: 30px;
  background: rgba(201,168,76,0.15);
  margin: 0 auto 2rem;
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .fleet-inner { grid-template-columns: 1fr; gap: 3rem; }
  .corridor-card--featured { border-left: none; border-right: none; border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-credential { flex-direction: column; gap: 1.5rem; padding: 1.5rem 2rem; }
  .credential-divider { width: 40px; height: 1px; }
  .hide-mobile { display: none; }
  .promise-grid { grid-template-columns: 1fr; }
  .fleet-stats { grid-template-columns: 1fr; }
}
