/* ============================================================
   EXECUTIVE LUXURY RIDE
   Silver & Black theme — modern, cinematic, conversion-focused
   ============================================================ */

:root {
  /* Brand palette */
  --jet:        #0A0A0A;
  --onyx:       #141414;
  --graphite:   #1F1F1F;
  --steel:      #2A2A2A;
  --line:       #2E2E2E;
  --platinum:   #C7CACE;
  --silver:     #9DA1A6;
  --chrome:     #E8EAED;
  --pearl:      #F4F4F2;
  --ivory:      #FAFAF8;
  --fog:        #8A8D91;
  --muted:      #6E7178;

  /* Type */
  --font-sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--jet);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.01em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
  border-bottom: 1px solid var(--steel);
  color: var(--platinum);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.announce-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--gutter);
  gap: 16px;
}
.announce strong { color: var(--chrome); letter-spacing: 0.12em; }
.announce a {
  color: var(--platinum);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.announce a:hover { color: var(--chrome); border-color: var(--platinum); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--steel);
  color: var(--chrome);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(199, 202, 206, 0.15));
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--chrome);
}
.brand-tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--silver);
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a {
  color: var(--silver);
  position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--platinum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--chrome); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--chrome);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 18px 34px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-center { display: inline-flex; margin: 40px auto 0; }

.btn-primary {
  background: linear-gradient(180deg, #E8EAED 0%, #C7CACE 100%);
  color: var(--jet);
  border: 1px solid var(--platinum);
  box-shadow: 0 6px 24px rgba(199, 202, 206, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #E8EAED 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(199, 202, 206, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border: 1px solid var(--steel);
}
.btn-ghost:hover {
  background: rgba(199, 202, 206, 0.08);
  border-color: var(--platinum);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--jet);
  color: var(--chrome);
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at left center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 20px;
  font-weight: 500;
}
.eyebrow.light { color: var(--platinum); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--chrome);
  margin: 0 0 24px;
  max-width: 18ch;
}
.hero-title .accent {
  background: linear-gradient(135deg, #FFFFFF 0%, #C7CACE 50%, #9DA1A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  max-width: 58ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--silver);
  margin: 0 0 36px;
}

/* ============ BOOKING WIDGET ============ */
.book-widget {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(199, 202, 206, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 0 0 36px;
  max-width: 1080px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.bw-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr 0.9fr 0.7fr 0.5fr auto;
  gap: 10px;
  align-items: end;
}
.bw-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.bw-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}
.bw-field input,
.bw-field select {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(199, 202, 206, 0.22);
  color: var(--chrome);
  padding: 12px 12px;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.bw-field input:focus,
.bw-field select:focus {
  outline: none;
  border-color: var(--platinum);
  background: rgba(10,10,10,0.85);
}
.bw-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23C7CACE' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.bw-field select option { background: var(--jet); color: var(--chrome); }
.bw-field input::placeholder { color: var(--muted); }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.05);
  cursor: pointer;
}
.bw-cta {
  background: linear-gradient(180deg, #E8EAED 0%, #C7CACE 100%);
  color: var(--jet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid var(--platinum);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.bw-cta:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #E8EAED 100%);
  box-shadow: 0 8px 24px rgba(199,202,206,0.25);
  transform: translateY(-1px);
}
.bw-note {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.04em;
  margin: 14px 0 0;
}
.bw-note a { color: var(--chrome); border-bottom: 1px solid var(--steel); }
.bw-note a:hover { border-color: var(--platinum); }

/* ============ HERO STRIP ============ */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(199, 202, 206, 0.15);
  padding-top: 28px;
  max-width: 720px;
}
.hero-strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--chrome);
}
.hero-strip span {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 48px;
  background: rgba(199,202,206,0.2);
  overflow: hidden;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--platinum);
  animation: scroll-down 2.4s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--jet);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  padding: 28px 0;
  color: var(--silver);
}
.trust-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--platinum);
  margin: 0 0 16px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--chrome);
}

/* ============ SECTION ============ */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section-dark { background: var(--jet); color: var(--chrome); }
.section-quiet { background: var(--pearl); }
.section-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--chrome);
}
@media (max-width: 900px) {
  .section-image { background-attachment: scroll; }
}

.section-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.015em;
  color: var(--jet);
  margin: 0 0 18px;
}
.section-dark h2, .section-image h2, h2.light { color: var(--chrome); }
.section-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}
.section-dark .section-lede,
.section-image .section-lede,
.section-lede.light { color: var(--silver); }

/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  display: block;
  padding: 38px 30px;
  background: var(--ivory);
  transition: background .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.service-card:hover {
  background: #fff;
  transform: translateY(-2px);
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--silver);
  margin: 0 0 28px;
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--jet);
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}
.service-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jet);
  border-bottom: 1px solid var(--jet);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover .service-link {
  color: var(--steel);
  border-color: var(--platinum);
}

/* ============ SPLIT (Airport / Napa) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text h2 { color: var(--chrome); }
.split-text.light h2 { color: var(--chrome); }
.split-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  margin: 18px 0 26px;
}
.split-spacer { min-height: 320px; }

.split-media {
  position: relative;
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--platinum);
  padding: 14px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.split-badge strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--chrome);
  font-weight: 500;
}
.split-badge span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--silver);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--platinum);
}
.check-list.light li { color: var(--platinum); }

/* ============ FLEET ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.fleet-card {
  background: #fff;
  border: 1px solid #E5E5E1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10,10,10,0.10);
}
.fleet-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.fleet-body {
  padding: 24px;
}
.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--jet);
}
.fleet-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 14px;
}
.fleet-card p:not(.fleet-meta) {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============ CORPORATE ============ */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.corp-card {
  padding: 32px 28px;
  background: var(--ivory);
  border: 1px solid #E5E5E1;
  border-left: 3px solid var(--jet);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: border-left-color .3s var(--ease);
}
.corp-card:hover {
  border-left-color: var(--silver);
}
.corp-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--jet);
}
.corp-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============ GLOBAL ============ */
.global-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  margin: 0 0 56px;
}
.global-stats > div {
  background: var(--jet);
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.global-stats strong {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--chrome);
  background: linear-gradient(135deg, #FFFFFF 0%, #C7CACE 60%, #9DA1A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.global-stats span {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.global-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--silver);
}
.global-cities li {
  position: relative;
}
.global-cities li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -16px; top: 0;
  color: var(--steel);
}

/* ============ TESTIMONIALS ============ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.quote {
  margin: 0;
  background: #fff;
  padding: 32px 28px;
  border: 1px solid #E5E5E1;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  color: var(--jet);
  letter-spacing: 0.12em;
  font-size: 14px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--jet);
  font-weight: 400;
  font-style: italic;
}
.quote figcaption {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ============ BOOK CTA CARD ============ */
.book-section { background: var(--jet); }
.book-cta-card {
  background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.book-cta-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(199,202,206,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.book-cta-text { position: relative; }
.book-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--chrome);
  margin: 0 0 14px;
}
.book-cta-text p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.book-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid #E5E5E1;
}
.faq-list details {
  border-bottom: 1px solid #E5E5E1;
  padding: 24px 0;
}
.faq-list summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--jet);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--silver);
  transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--steel); }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 75ch;
}
.faq-list details p a { color: var(--jet); border-bottom: 1px solid var(--silver); }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--jet);
  border-top: 1px solid var(--steel);
  padding: 80px 0;
  text-align: center;
  color: var(--chrome);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 28px;
  color: var(--chrome);
  background: linear-gradient(135deg, #FFFFFF 0%, #C7CACE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #060606;
  color: var(--silver);
  padding: 80px 0 30px;
  border-top: 1px solid var(--steel);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(199, 202, 206, 0.15));
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 36ch;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--platinum);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--silver);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--chrome); }
.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--silver);
  transition: all .25s var(--ease);
}
.socials a:hover {
  border-color: var(--platinum);
  color: var(--chrome);
}
.footer-base {
  border-top: 1px solid var(--steel);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
.footer-base a { color: var(--silver); }
.footer-base a:hover { color: var(--chrome); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .bw-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .bw-cta { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner > .btn { display: none; }
  .nav-toggle { margin-left: auto; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-spacer { display: none; }

  .book-cta-card { grid-template-columns: 1fr; padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .announce-inner { flex-direction: column; gap: 4px; padding: 8px var(--gutter); }
}
@media (max-width: 720px) {
  .bw-row { grid-template-columns: 1fr 1fr; }
  .bw-field:first-child { grid-column: 1 / -1; }
  .bw-cta { grid-column: 1 / -1; }

  .hero { min-height: 78vh; padding: 60px 0 40px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .brand-tag { display: none; }
  .brand-name { font-size: 11px; }
  .brand-logo { width: 44px; height: 44px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; }
}
@media (max-width: 480px) {
  .bw-row { grid-template-columns: 1fr; }
  .global-stats { grid-template-columns: 1fr 1fr; }
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ABOUT / OUR STORY
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink, #2A2A2A);
  margin-bottom: 1.25rem;
}
.about-text p strong {
  color: #0A0A0A;
  font-weight: 600;
}
.about-text a {
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-color: #9DA1A6;
  text-underline-offset: 3px;
}

/* Quick Facts panel — designed for LLM lift + visual scan */
.quick-facts {
  background: linear-gradient(180deg, #0A0A0A 0%, #1F1F1F 100%);
  color: #F4F4F2;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(199, 202, 206, 0.18);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.45);
  position: sticky;
  top: 6rem;
}
.quick-facts h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(199, 202, 206, 0.22);
  letter-spacing: 0.01em;
  color: #FAFAF8;
}
.quick-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-facts li {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(199, 202, 206, 0.10);
  font-size: 0.875rem;
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts li span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6875rem;
  color: #8A8D91;
  margin-bottom: 0.2rem;
}
.quick-facts li strong {
  color: #FAFAF8;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.quick-facts li a {
  color: #FAFAF8;
  text-decoration: none;
  border-bottom: 1px dotted rgba(199, 202, 206, 0.4);
}
.quick-facts li a:hover { border-bottom-color: #FAFAF8; }

/* ============================================================
   NATIONWIDE + WORLDWIDE cities block
   ============================================================ */
.cities-block { margin-top: 2.5rem; }
.cities-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 244, 242, 0.95);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(199, 202, 206, 0.18);
}
.cities-block h3:first-child { margin-top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quick-facts {
    position: static;
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================================
   FLOATING BOOK NOW BUTTON
   ============================================================ */
.float-book {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem 0.85rem 0.95rem;
  background: linear-gradient(135deg, #C7CACE 0%, #E8EAED 50%, #9DA1A6 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow:
    0 12px 28px -8px rgba(0, 0, 0, 0.55),
    0 4px 10px -2px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1), box-shadow 0.25s, filter 0.25s;
  animation: floatPulse 4.5s ease-in-out infinite;
}
.float-book:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    0 18px 34px -8px rgba(0, 0, 0, 0.6),
    0 6px 14px -2px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.float-book:focus-visible {
  outline: 2px solid #0A0A0A;
  outline-offset: 3px;
}
.float-book-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0A0A0A;
  color: #FAFAF8;
  flex-shrink: 0;
}
.float-book-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.float-book-label strong {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.float-book-label small {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 1px;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(0,0,0,0.55), 0 4px 10px -2px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.55), 0 0 0 0 rgba(199,202,206,0.55); }
  50%      { box-shadow: 0 12px 28px -8px rgba(0,0,0,0.55), 0 4px 10px -2px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.55), 0 0 0 14px rgba(199,202,206,0); }
}

@media (max-width: 640px) {
  .float-book {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.7rem 1rem 0.7rem 0.75rem;
    gap: 0.6rem;
  }
  .float-book-icon { width: 34px; height: 34px; }
  .float-book-label strong { font-size: 0.85rem; }
  .float-book-label small { font-size: 0.625rem; }
}

@media (prefers-reduced-motion: reduce) {
  .float-book { animation: none; }
}

/* ============================================
   MULTI-PAGE: PAGE HERO + WIDGET + PROSE
   ============================================ */

.page-hero {
  position: relative;
  padding: 7rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.78) 100%),
    radial-gradient(ellipse at top, rgba(199,202,206,0.10), transparent 60%),
    #0b0b0c;
  border-bottom: 1px solid rgba(199,202,206,0.12);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(199,202,206,0.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(199,202,206,0.06), transparent 40%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero .crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.page-hero .crumbs a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { margin: 0 0.5rem; color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
}
.page-hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin: 0;
}
.page-hero .hero-cta {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Widget section directly under hero */
.widget-section {
  background: #f7f5f1;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.widget-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.widget-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #0b0b0c;
}
.widget-head p {
  color: #4a4a4a;
  font-size: 0.98rem;
  margin: 0;
}
.book-widget-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.book-widget-wrap.inline .book-widget {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.12);
}

/* Prose grid: main content + aside */
.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (max-width: 900px) {
  .prose-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
}
.prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2a2a2a;
}
.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b0b0c;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b0b0c;
  margin: 1.75rem 0 0.6rem;
}
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: #0b0b0c; font-weight: 600; }
.prose a {
  color: #0b0b0c;
  text-decoration: underline;
  text-decoration-color: rgba(199,202,206,0.6);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: #0b0b0c; }

/* Airport / route / fleet grids */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.airport-grid a {
  display: block;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  text-decoration: none;
  color: #0b0b0c;
  transition: all 0.2s;
}
.airport-grid a:hover {
  border-color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.18);
}
.airport-grid strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}
.airport-grid small {
  font-size: 0.82rem;
  color: #6a6a6a;
  letter-spacing: 0.04em;
}
.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 2rem;
  list-style: none;
  padding: 0;
}
.route-list li {
  padding: 0.85rem 1rem;
  background: #fff;
  border-left: 3px solid #c7cace;
  font-size: 0.95rem;
  color: #2a2a2a;
}
.route-list li strong { color: #0b0b0c; }

/* Fleet spec list */
.fleet-spec {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1.5rem;
}
.fleet-spec li {
  font-size: 0.92rem;
  color: #4a4a4a;
  padding-left: 1.1rem;
  position: relative;
}
.fleet-spec li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c7cace;
  font-weight: 600;
}

/* Contact channels */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-channel {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.75rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.contact-channel .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 0.5rem;
}
.contact-big {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b0b0c;
  text-decoration: none;
  margin: 0.25rem 0;
}
.contact-big:hover { text-decoration: underline; text-decoration-color: #c7cace; }
.contact-note {
  font-size: 0.85rem;
  color: #6a6a6a;
  margin-top: 0.3rem;
}

/* ============================================
   MULTI-PAGE: PATCHES (nav fit, hero accent, lede)
   ============================================ */

/* Tighter nav so all items + Book Now fit on 1280px */
@media (min-width: 1024px) {
  .nav { gap: 20px; font-size: 12px; }
}
@media (min-width: 1280px) {
  .nav { gap: 24px; font-size: 12.5px; }
}

/* Shorter brand tag at smaller desktop widths */
@media (max-width: 1180px) {
  .brand-tag { display: none; }
}

/* Page-hero accent span (italic tagline below main headline) */
.page-hero h1 .accent {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #C7CACE 50%, #9DA1A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alias .lede for .lead (build.py uses .lede) */
.page-hero .lede,
.page-hero p.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin: 0;
}

/* Eyebrow on dark page-hero */
.page-hero .eyebrow.light,
.page-hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199, 202, 206, 0.85);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* Ensure Book Now button in header doesn't shrink/wrap */
.site-header .btn-sm { flex-shrink: 0; }
.header-inner { flex-wrap: nowrap; }

/* ============================================
   BOOKING WIDGET — 2-ROW LAYOUT FIX
   ============================================ */
.book-widget .bw-row {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.book-widget .bw-row:last-of-type { margin-bottom: 0; }

.book-widget .bw-row-top .bw-field { min-width: 0; }
.book-widget .bw-row-top .bw-service { flex: 0 1 200px; }
.book-widget .bw-row-top .bw-grow { flex: 1 1 240px; }

.book-widget .bw-row-bottom .bw-narrow { flex: 0 1 130px; min-width: 110px; }
.book-widget .bw-row-bottom .bw-cta-fill {
  flex: 1 1 200px;
  min-width: 160px;
  align-self: stretch;
}

/* Make inputs/selects breathe inside their fields */
.book-widget .bw-field input,
.book-widget .bw-field select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
}
.book-widget .bw-field select { padding-right: 2rem; }

/* Mobile: each row stacks one column */
@media (max-width: 640px) {
  .book-widget .bw-row { flex-direction: column; gap: 0.7rem; }
  .book-widget .bw-row-top .bw-service,
  .book-widget .bw-row-top .bw-grow,
  .book-widget .bw-row-bottom .bw-narrow,
  .book-widget .bw-row-bottom .bw-cta-fill { flex: 1 1 auto; width: 100%; }
}

/* ============================================
   FIX: nav whitespace + floating button overlap
   ============================================ */

/* Keep multi-word nav items on one line */
.site-header nav.nav a { white-space: nowrap; }

/* Hide floating "Book Now" while the in-page booking widget is visible.
   Uses Intersection Observer hook via .float-book[data-hide] (set in script.js).
   CSS fallback: smaller offset on smaller heights so it doesn't overlap widget. */
@media (max-height: 900px) {
  .float-book {
    /* Slightly tighter positioning */
  }
}

/* When the widget section is in viewport, float-book fades out */
.float-book.is-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-book {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   HERO CTA ROW + CTA STRIP (replaces booking widget)
   ============================================================ */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.hero-cta-row .btn { white-space: nowrap; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--chrome, #C7CACE);
  border: 1px solid currentColor;
}
.btn-outline:hover {
  background: rgba(199, 202, 206, 0.08);
}

.btn-phone-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color .25s ease;
}
.btn-phone-light::before {
  content: "📞";
  font-size: 14px;
}
.btn-phone-light:hover { border-bottom-color: #fff; }

.cta-strip {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-strip-text h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: #fff;
}
.cta-strip-text p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero-cta-row { gap: 10px; }
  .btn-phone-light { font-size: 13px; }
  .cta-strip { padding: 36px 0; }
  .cta-strip-text h2 { font-size: 22px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions .btn { flex: 1; }
}
