/* =========================================================================
   LAX LUXURY RIDE — Editorial Luxury Style System
   ========================================================================= */

:root {
  /* Color tokens */
  --ink-900: #0F0F10;
  --ink-700: #2A2A2C;
  --ink-500: #56565A;
  --ink-300: #8B8B90;
  --gold-500: #C9A876;
  --gold-300: #DBC195;
  --gold-700: #A88758;
  --ivory-100: #FAF7F0;
  --paper: #FFFFFF;
  --mist-200: #ECE9E1;
  --mist-300: #DAD5C8;

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1280px;
  --container-narrow: 1080px;
  --section-y: clamp(80px, 10vw, 160px);
  --section-y-sm: clamp(56px, 7vw, 100px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -.005em; }

p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 1.2rem;
  display: inline-block;
}

.eyebrow-light { color: var(--gold-300); }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* Gold divider */
.divider-gold {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin: 0 14px;
}
.divider-gold-block {
  width: 64px;
  height: 1px;
  background: var(--gold-500);
  margin: 0 0 28px;
}
.divider-gold-block.center { margin-left: auto; margin-right: auto; }

/* =========================================================================
   ANNOUNCEMENT BAR + HEADER
   ========================================================================= */

.announce-bar {
  background: var(--ink-900);
  color: var(--ivory-100);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 0;
  text-align: center;
}
.announce-bar a { color: var(--gold-300); }
.announce-bar a:hover { color: var(--gold-500); }
.announce-bar .sep { color: var(--ink-500); margin: 0 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--mist-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 52px; width: auto; max-width: 320px; display: block; }

.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; }
.primary-nav > ul > li { position: relative; }
.primary-nav a, .primary-nav .nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  background: none;
  border: 0;
  cursor: pointer;
}
.primary-nav a:hover, .primary-nav .nav-toggle:hover { color: var(--gold-700); }
.nav-toggle .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .3s var(--ease); }
.primary-nav .has-dropdown:hover .caret, .primary-nav .has-dropdown:focus-within .caret { transform: rotate(225deg); margin-top: 3px; }

.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--mist-200);
  box-shadow: 0 18px 40px rgba(15,15,16,.08);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
  color: var(--ink-700);
  white-space: nowrap;
}
.dropdown li a:hover { background: var(--ivory-100); color: var(--ink-900); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-900);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold-700); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink-900);
  color: var(--ivory-100);
  border-color: var(--ink-900);
}
.btn-primary:hover { background: var(--gold-700); border-color: var(--gold-700); }
.btn-gold {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-500); color: var(--ink-900); }
.btn-ghost {
  background: transparent;
  color: var(--ivory-100);
  border-color: rgba(250,247,240,.4);
}
.btn-ghost:hover { background: var(--ivory-100); color: var(--ink-900); border-color: var(--ivory-100); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-900);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
  transition: all .3s var(--ease);
}
.btn-link:hover { color: var(--gold-700); padding-left: 6px; }
.btn-sm { padding: 11px 22px; font-size: .78rem; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink-900); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100vw);
  background: var(--paper);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  padding: 24px;
  box-shadow: -20px 0 40px rgba(0,0,0,.12);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-drawer-close { background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink-900); padding: 8px; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer > ul > li { border-bottom: 1px solid var(--mist-200); }
.mobile-drawer > ul > li > a, .mobile-drawer-section-title {
  display: block;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-900);
}
.mobile-drawer .submenu { margin-bottom: 12px; padding-left: 4px; }
.mobile-drawer .submenu li a {
  display: block;
  padding: 8px 4px;
  font-size: 0.92rem;
  color: var(--ink-500);
}
.mobile-drawer .drawer-cta { margin-top: 24px; display: grid; gap: 12px; }
.scrim {
  position: fixed; inset: 0;
  background: rgba(15,15,16,.5);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease);
}
.scrim.open { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--ivory-100);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,16,.15) 0%, rgba(15,15,16,.45) 55%, rgba(15,15,16,.78) 100%);
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 88px;
}
.hero h1 { color: var(--ivory-100); max-width: 16ch; }
.hero .eyebrow { color: var(--gold-300); margin-bottom: 20px; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  max-width: 56ch;
  color: rgba(250,247,240,.88);
  margin: 18px 0 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-gold { background: var(--gold-500); color: var(--ink-900); border-color: var(--gold-500); }
.hero .btn-gold:hover { background: var(--ivory-100); border-color: var(--ivory-100); color: var(--ink-900); }

.hero-sm { min-height: clamp(380px, 56vh, 540px); }
.hero-sm h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }

/* =========================================================================
   SECTIONS
   ========================================================================= */

section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }
.bg-ivory { background: var(--ivory-100); }
.bg-paper { background: var(--paper); }
.bg-ink {
  background: var(--ink-900);
  color: var(--ivory-100);
}
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--ivory-100); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: 1.05rem; color: var(--ink-500); }

/* Two-col split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split-image { position: relative; }
.split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-content h2 { margin-bottom: .5em; }

/* =========================================================================
   CARD GRIDS
   ========================================================================= */

.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.persona-card {
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--mist-200);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(15,15,16,.18);
  border-color: var(--gold-500);
}
.persona-card .icon {
  width: 36px; height: 36px;
  color: var(--gold-700);
  margin-bottom: 22px;
}
.persona-card h3 { font-size: 1.18rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -.005em; }
.persona-card p { font-size: 0.95rem; color: var(--ink-500); margin-bottom: 20px; }

/* Service cards (image-driven) */
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--ivory-100);
  isolation: isolate;
  aspect-ratio: 4/5;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: brightness(.7);
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.service-card:hover img { transform: scale(1.06); filter: brightness(.6); }
.service-card .card-content {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 32px 28px;
}
.service-card .eyebrow { color: var(--gold-300); margin-bottom: 8px; font-size: 0.7rem; }
.service-card h3 { color: var(--ivory-100); font-size: 1.6rem; margin-bottom: 8px; }
.service-card p { color: rgba(250,247,240,.84); font-size: 0.92rem; margin-bottom: 16px; }
.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
}

/* City cards */
.city-card {
  display: block;
  position: relative;
  overflow: hidden;
}
.city-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--mist-200);
}
.city-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.city-card:hover img { transform: scale(1.05); }
.city-card .city-body { padding: 22px 0 8px; }
.city-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.city-card .city-meta { font-size: 0.78rem; color: var(--gold-700); letter-spacing: 0.15em; text-transform: uppercase; }

/* Editorial split for cities */
.city-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.city-grid .city-card.feature {
  grid-row: span 2;
}
.city-grid .city-card.feature .img-wrap { aspect-ratio: 3/4.5; height: 100%; }

/* Route cards */
.routes-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.route-card {
  background: var(--paper);
  border: 1px solid var(--mist-200);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.route-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: 0 30px 60px -25px rgba(15,15,16,.18);
}
.route-card .route-from-to {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.2;
  margin-bottom: 12px;
}
.route-card .route-arrow { color: var(--gold-700); margin: 0 6px; }
.route-card .route-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.route-card .route-meta span strong { color: var(--ink-900); display: block; font-size: 0.95rem; font-weight: 600; }
.route-card .route-rate { margin-top: auto; font-size: 0.85rem; color: var(--ink-500); margin-bottom: 18px; }
.route-card .route-rate strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-900); font-weight: 500; display: block; letter-spacing: -.01em; }

/* Why-us / values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-item .icon {
  width: 32px; height: 32px;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.value-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.value-item p { font-size: 0.9rem; color: var(--ink-500); margin: 0; }

/* Fleet preview */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fleet-card {
  background: var(--paper);
}
.fleet-card .img-wrap {
  aspect-ratio: 4/3;
  background: var(--ivory-100);
  overflow: hidden;
}
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.fleet-card:hover img { transform: scale(1.03); }
.fleet-card .body { padding: 24px 4px; }
.fleet-card h3 { font-size: 1.45rem; margin-bottom: 4px; }
.fleet-card .capacity { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 14px; }
.fleet-card p { font-size: 0.92rem; color: var(--ink-500); margin-bottom: 18px; }

/* Trust marks */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--mist-200);
  border-bottom: 1px solid var(--mist-200);
}
.trust-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item .badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-700);
}

/* =========================================================================
   MAP
   ========================================================================= */

.map-section { padding: var(--section-y) 0; }
.map-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  background: #0a0a0c;
  margin-top: 40px;
}
#service-map { width: 100%; height: 100%; }
.leaflet-container { background: #0a0a0c !important; font-family: var(--font-body); }
.leaflet-popup-content-wrapper {
  background: var(--ink-900);
  color: var(--ivory-100);
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.leaflet-popup-tip { background: var(--ink-900); }
.leaflet-popup-content {
  margin: 14px 18px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-300);
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.leaflet-popup-content a {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-700);
  padding-bottom: 2px;
}
.map-pin {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--ivory-100);
  box-shadow: 0 0 0 3px rgba(201,168,118,.25), 0 4px 10px rgba(0,0,0,.4);
}
.map-pin.lax { background: var(--ivory-100); border-color: var(--gold-500); width: 16px; height: 16px; }

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--mist-200);
}
.faq-item:last-of-type { border-bottom: 1px solid var(--mist-200); }
.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 500;
  color: var(--ink-900);
  gap: 24px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mist-300);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all .3s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink-900);
  transition: transform .3s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item[open] .faq-toggle { background: var(--gold-500); border-color: var(--gold-500); }
.faq-item[open] .faq-toggle::after { transform: scaleY(0); }
.faq-answer {
  padding: 0 0 28px;
  font-size: 0.98rem;
  color: var(--ink-500);
  max-width: 70ch;
}

/* =========================================================================
   CTA BANNER
   ========================================================================= */

.cta-banner {
  position: relative;
  isolation: isolate;
  color: var(--ivory-100);
  padding: clamp(96px, 12vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,16,.6) 0%, rgba(15,15,16,.85) 100%);
  z-index: 1;
}
.cta-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--ivory-100); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 24px; }
.cta-banner p { color: rgba(250,247,240,.85); max-width: 56ch; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 24px 0 0;
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li::after { content: "/"; margin: 0 8px; color: var(--mist-300); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--gold-700); }
.breadcrumb a:hover { color: var(--ink-900); }

/* =========================================================================
   RICH CONTENT BLOCKS
   ========================================================================= */

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-700);
  font-weight: 400;
  max-width: 64ch;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold-700);
  border-bottom: 1.5px solid var(--gold-700);
  transform: rotate(-45deg);
}

.entity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
}
.entity-list li {
  font-size: 0.95rem;
  border-left: 1px solid var(--gold-500);
  padding: 4px 0 4px 16px;
}
.entity-list li strong { display: block; font-weight: 600; color: var(--ink-900); }
.entity-list li span { font-size: 0.82rem; color: var(--ink-500); }

.fbo-card {
  border: 1px solid var(--mist-200);
  padding: 24px 28px;
  background: var(--paper);
  margin-bottom: 16px;
}
.fbo-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.fbo-card p { margin: 0; font-size: 0.92rem; color: var(--ink-500); }
.fbo-card a { color: var(--gold-700); }

/* Two-column richtext layout */
.content-wrap { max-width: 820px; margin: 0 auto; }
.content-wrap p { font-size: 1.02rem; }

/* Inline stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px 0;
  padding: 36px 0;
  border-top: 1px solid var(--mist-200);
  border-bottom: 1px solid var(--mist-200);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -.02em;
}
.stat-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
  background: var(--ink-900);
  color: rgba(250,247,240,.7);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250,247,240,.1);
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: rgba(250,247,240,.7); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,247,240,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold-500); background: var(--gold-500); color: var(--ink-900); }
.footer-social svg { width: 14px; height: 14px; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-contact-line svg { width: 14px; height: 14px; color: var(--gold-500); flex-shrink: 0; }
.footer-247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.footer-247::before {
  content: "";
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(74,222,128,.6);
}

.footer-trust {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250,247,240,.1);
  align-items: center;
  justify-content: center;
}
.footer-trust .badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(250,247,240,.6);
  display: flex; align-items: center; gap: 10px;
}
.footer-trust .badge::before {
  content: "";
  width: 18px; height: 18px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(250,247,240,.5);
}
.footer-bottom a { color: rgba(250,247,240,.7); margin-left: 24px; }
.footer-bottom a:first-child { margin-left: 0; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */

.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: .12s; }
.fade-in.delay-2 { transition-delay: .24s; }
.fade-in.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .primary-nav, .header-cta .header-phone, .header-cta .btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: block; }
  .header-cta { gap: 8px; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .city-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .city-grid .city-card.feature { grid-column: 1 / -1; grid-row: auto; }
  .city-grid .city-card.feature .img-wrap { aspect-ratio: 16/9; }
  .fleet-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .entity-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-5, .grid-4, .grid-2, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 72px 24px 60px; }
  .announce-bar { font-size: 0.7rem; }
  .announce-bar .sep-mobile-hide { display: none; }
  .header-inner { padding: 12px 18px; }
  .logo-link img { height: 40px; max-width: 230px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 18px; }
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-banner, .map-wrap { display: none; }
}
