:root {
  --ivory: #f4f6f2;
  --stone: #e5e9e3;
  --paper: #ffffff;
  --ink: #101310;
  --graphite: #222824;
  --oak: #132019;
  --champagne: #a88f59;
  --champagne-ink: #7d6839;
  --sage: #dce4dc;
  --muted: #626963;
  --muted-light: #a0a7a0;
  --line: rgba(16, 19, 16, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 70px rgba(20, 29, 23, 0.1);
  --radius: 16px;
  --shell: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fafbf9 0%, var(--ivory) 38%, #f7f8f5 100%);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--champagne-ink);
  outline-offset: 2px;
}

.button:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.menu-toggle:focus-visible,
.tel-link:focus-visible,
.booking-tab:focus-visible,
.journey-tab:focus-visible,
.carousel-button:focus-visible,
.sheet-close:focus-visible,
.faq-question:focus-visible,
.standard-item button:focus-visible,
.back-button:focus-visible {
  outline: 2px solid var(--champagne-ink);
  outline-offset: 2px;
}

.site-header .brand:focus-visible,
.site-header .menu-toggle:focus-visible,
.site-header .nav-links:not(.open) > a:focus-visible,
.home-page .hero-booking :focus-visible,
.section.dark :focus-visible,
.event-band :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible,
.page-hero :focus-visible,
.fleet-page-hero :focus-visible,
.fleet-card :focus-visible,
.fleet-sourcing-panel :focus-visible,
.fifa-panel :focus-visible,
.itinerary-rail :focus-visible,
.confirmation :focus-visible {
  outline-color: var(--champagne);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.58);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.1vw, 7.2rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.section-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--graphite);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: white;
}

.button.light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.button.light:hover {
  border-color: var(--stone);
  background: var(--stone);
}

.button.ghost-light {
  border-color: var(--line-light);
  background: transparent;
  color: white;
}

.button.ghost-light:hover {
  border-color: white;
}

.text-link {
  justify-content: flex-start;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.arrow {
  transition: transform 180ms ease;
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(4px);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  color: white;
}

.site-header.light-header {
  position: relative;
  border-color: transparent;
  color: white;
}

.nav-wrap {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 8, 8, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.site-header:not(.light-header) .brand-logo,
.site-header.light-header .brand-logo,
.site-footer .brand-logo,
.sheet-head .brand-logo {
  filter: none;
  opacity: 1;
}

.brand small {
  display: block;
  margin-top: -2px;
  opacity: 0.58;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 0.83rem;
}

.nav-links > a:not(.button) {
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.nav-links > a:hover {
  opacity: 1;
}

.nav-links .mobile-dispatch-link {
  display: none;
}

.nav-links .mobile-dispatch-link::before {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  content: "Call dispatch";
}

.nav-links .button {
  min-height: 42px;
  border-color: white;
  background: white;
  color: var(--ink);
}

.light-header .nav-links .button {
  border-color: white;
  background: white;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.hero {
  --hero-scroll: 0px;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--oak);
  color: white;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 14, 12, 0.94) 0%, rgba(9, 14, 12, 0.72) 37%, rgba(9, 14, 12, 0.15) 68%, rgba(9, 14, 12, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.1), rgba(5, 8, 7, 0.42));
  content: "";
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-scroll), 0) scale(1.045);
  transform-origin: 62% 48%;
}

.hero-ambient {
  position: absolute;
  z-index: 2;
  inset: -15%;
  background:
    radial-gradient(circle at 78% 46%, rgba(210, 185, 126, 0.18), transparent 24%),
    linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.07) 51%, transparent 60%);
  opacity: 0.42;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 680px;
  padding: 120px 0 105px;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  max-width: 790px;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
}

.hero-note {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 168px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-scroll-cue span {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-scroll-cue span::after {
  position: absolute;
  inset: 0 42% 0 0;
  background: white;
  content: "";
}

.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero .hero-copy,
.motion-ready .hero .hero-note,
.motion-ready .hero .hero-scroll-cue {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease-out, transform 620ms var(--ease);
}

.motion-ready .hero.hero-ready .eyebrow,
.motion-ready .hero.hero-ready h1,
.motion-ready .hero.hero-ready .hero-copy,
.motion-ready .hero.hero-ready .hero-note,
.motion-ready .hero.hero-ready .hero-scroll-cue {
  opacity: 1;
  transform: none;
}

.motion-ready .hero.hero-ready h1 {
  transition-delay: 90ms;
}

.motion-ready .hero.hero-ready .hero-copy {
  transition-delay: 180ms;
}

.motion-ready .hero.hero-ready .hero-note {
  transition-delay: 260ms;
}

.motion-ready .hero.hero-ready .hero-scroll-cue {
  transition-delay: 360ms;
}

.booking-wrap {
  position: relative;
  z-index: 10;
  margin-top: -142px;
}

.quick-booking {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  animation: booking-rise 780ms 360ms var(--ease) forwards;
}

@keyframes booking-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.booking-tabs {
  display: flex;
  margin-bottom: 24px;
  gap: 32px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.booking-tabs::-webkit-scrollbar {
  display: none;
}

.booking-tab {
  position: relative;
  padding: 0 1px 13px;
  flex: 0 0 auto;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.booking-tab.active {
  color: var(--ink);
}

.booking-tab.active::after {
  transform: scaleX(1);
}

.quick-fields {
  display: grid;
  grid-template-columns: 1.45fr 1.45fr 0.8fr 0.7fr auto;
  align-items: end;
  gap: 12px;
}

.quick-field,
.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.quick-field label,
.form-field label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-field input,
.quick-field select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 120px;
  padding-block: 13px;
  resize: vertical;
}

.quick-field input:focus,
.quick-field select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(185, 161, 107, 0.14);
}

.quick-field input:focus-visible,
.quick-field select:focus-visible,
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline-color: var(--champagne-ink);
}

.quick-submit {
  min-width: 150px;
}

.quick-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.trust-strip {
  padding: 52px 0 40px;
  background: rgba(255, 255, 255, 0.58);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-align: center;
}

.trust-list li {
  padding: 8px 12px;
  border-right: 1px solid var(--line);
}

.trust-list li:last-child {
  border-right: 0;
}

.section {
  padding: 118px 0;
}

.section.stone {
  background: linear-gradient(135deg, #edf0eb 0%, var(--stone) 100%);
}

.section.dark {
  background: var(--oak);
  color: white;
}

.section-heading {
  display: flex;
  margin-bottom: 56px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div:first-child {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.motion-ready [data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 640ms ease-out, transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-motion="rise"] {
  transform: translateY(24px);
}

.motion-ready [data-motion="slide-left"] {
  transform: translateX(-38px);
}

.motion-ready [data-motion="slide-right"] {
  transform: translateX(38px);
}

.motion-ready [data-motion="image-left"] {
  opacity: 0.12;
  transform: translateX(-26px);
}

.motion-ready [data-motion="image-right"] {
  opacity: 0.12;
  transform: translateX(26px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.motion-ready [data-motion^="image"] img {
  transform: scale(1.055);
  transition: transform 1150ms var(--ease);
}

.motion-ready [data-motion^="image"].is-visible img {
  transform: scale(1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 34px rgba(20, 29, 23, 0.035);
  transition: background 230ms ease, border-color 230ms ease, box-shadow 230ms ease, transform 230ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(16, 19, 16, 0.2);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(20, 29, 23, 0.09);
  transform: translateY(-5px);
}

.service-number {
  display: block;
  margin-bottom: 96px;
  color: var(--muted);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.9rem;
}

.service-card h3 {
  max-width: 230px;
  margin-bottom: 14px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.service-card p {
  min-height: 72px;
  color: var(--muted);
  font-size: 0.92rem;
}

.aviation-section {
  padding-top: 24px;
}

.private-flight-panel {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 16, 0.08);
  border-radius: 24px;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.private-flight-copy {
  display: flex;
  padding: clamp(42px, 6vw, 80px);
  flex-direction: column;
  justify-content: center;
}

.private-flight-copy h2 {
  max-width: 540px;
}

.private-flight-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.aviation-points {
  display: grid;
  margin: 30px 0 4px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  list-style: none;
}

.aviation-points li {
  padding: 15px 12px 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.aviation-points li:nth-child(even) {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.private-flight-copy .hero-actions {
  align-items: center;
}

.private-flight-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #dce3e5;
}

.private-flight-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 19, 16, 0.12), transparent 30%);
  content: "";
  pointer-events: none;
}

.private-flight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1);
}

.flight-status {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  min-width: 190px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(16, 19, 16, 0.92);
  color: white;
}

.flight-status span,
.flight-status strong {
  display: block;
}

.flight-status span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flight-status strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.fleet-carousel {
  position: relative;
}

.fleet-viewport {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 64px rgba(20, 29, 23, 0.1);
  touch-action: pan-y;
}

.fleet-track {
  display: flex;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
}

.fleet-track.is-animating {
  transition: transform 680ms var(--ease);
}

.operator-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 16, 0.08);
  border-radius: 24px;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  box-shadow: 0 20px 70px rgba(20, 18, 15, 0.07);
}

.operator-image {
  min-height: 560px;
}

.operator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.operator-copy {
  display: flex;
  padding: clamp(40px, 7vw, 86px);
  flex-direction: column;
  justify-content: center;
}

.operator-copy h2 {
  max-width: 560px;
}

.operator-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.operator-points {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  list-style: none;
}

.operator-points li {
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.operator-points li:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.fleet-card {
  display: grid;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  flex: 0 0 100%;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  background: var(--graphite);
  color: white;
}

.fleet-image {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.fleet-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, rgba(20, 20, 20, 0.12));
  content: "";
  pointer-events: none;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 8.5s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.fleet-card.is-active .fleet-image img {
  transform: scale(1.045);
}

.fleet-copy {
  display: flex;
  padding: clamp(32px, 4.5vw, 64px);
  flex-direction: column;
}

.fleet-copy h3 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.fleet-index {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fleet-copy-main {
  margin-top: 70px;
}

.fleet-use {
  color: var(--champagne) !important;
  font-size: 0.71rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-description {
  max-width: 360px;
  margin: 25px 0 34px !important;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem !important;
}

.fleet-meta {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.fleet-copy .text-link {
  color: white;
}

.fleet-controls,
.review-controls {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.carousel-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.review-pause-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.carousel-progress {
  display: grid;
  width: min(420px, 55vw);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.carousel-progress-rail {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.18);
}

.carousel-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.carousel-progress-fill.is-running {
  animation: carousel-progress 8.5s linear forwards;
}

@keyframes carousel-progress {
  to {
    transform: scaleX(1);
  }
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.experience-copy {
  position: sticky;
  top: 60px;
}

.experience-copy h2 {
  max-width: 500px;
}

.experience-copy p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.6);
}

.experience-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.experience-list li {
  display: grid;
  padding: 29px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: baseline;
}

.experience-list span {
  color: var(--champagne);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.8rem;
}

.experience-list strong {
  font-size: clamp(1.3rem, 2.4vw, 2.15rem);
  font-weight: 400;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-link {
  display: flex;
  min-height: 110px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ivory);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.area-link:hover {
  border-color: rgba(16, 19, 16, 0.2);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(20, 29, 23, 0.07);
  transform: translateY(-3px);
}

.area-link strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.area-link small {
  color: var(--muted);
}

.fifa-feature {
  background: linear-gradient(180deg, var(--paper), #f0f3ee);
}

.fifa-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border-radius: 24px;
  background: var(--oak);
  color: white;
}

.fifa-panel::before {
  position: absolute;
  top: -180px;
  right: -70px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(185, 161, 107, 0.28);
  border-radius: 44% 56% 51% 49%;
  content: "";
}

.fifa-panel::after {
  position: absolute;
  top: -110px;
  right: 0;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(185, 161, 107, 0.16);
  border-radius: 53% 47% 44% 56%;
  content: "";
}

.fifa-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.fifa-content h2 {
  max-width: 740px;
}

.fifa-content > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
}

.fifa-actions,
.hero-actions,
.cta-actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.date-row {
  display: flex;
  margin: 42px 0 28px;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.date-row::-webkit-scrollbar {
  display: none;
}

.date-chip {
  min-width: 118px;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  flex: 0 0 auto;
  font-size: 0.76rem;
}

.date-chip strong {
  display: block;
  margin-bottom: 2px;
  color: white;
}

.date-chip span {
  color: rgba(255, 255, 255, 0.55);
}

.legal-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.72rem;
}

.review-stage {
  position: relative;
  padding: 0 clamp(22px, 4vw, 48px) 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 60px rgba(20, 29, 23, 0.06);
}

.reviews {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review {
  position: absolute;
  inset: 0;
  display: grid;
  padding: clamp(34px, 5vw, 66px) 0;
  grid-template-columns: 80px minmax(0, 1fr);
  opacity: 0;
  pointer-events: none;
  transition: opacity 460ms ease-in-out;
}

.review.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.review-number {
  grid-row: 1 / span 3;
  color: var(--muted);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.85rem;
}

.review-stars {
  color: var(--champagne-ink);
  letter-spacing: 0.2em;
}

.review blockquote {
  max-width: 950px;
  margin: 58px 0 36px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(2rem, 5.2vw, 5.1rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.review cite {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.review-position {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.review-controls > div:last-child {
  display: flex;
  gap: 9px;
}

.final-cta {
  padding: 105px 0;
  background:
    radial-gradient(circle at 50% -60%, rgba(220, 228, 220, 0.16), transparent 46%),
    var(--graphite);
  color: white;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 720px;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.62);
}

.final-cta .cta-actions {
  justify-content: center;
}

.partner-section {
  padding: 82px 0 88px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.partner-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.partner-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.3vw, 4.4rem);
}

.partner-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.partner-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.partner-links a {
  display: flex;
  min-height: 164px;
  padding: 26px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #fbfcfa;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.partner-links a:hover {
  border-color: rgba(16, 19, 16, 0.24);
  box-shadow: 0 16px 40px rgba(20, 29, 23, 0.08);
  transform: translateY(-4px);
}

.partner-links span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.partner-logo {
  width: 100%;
  max-width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.chartright-logo {
  max-width: 190px;
}

.nla-logo {
  max-width: 205px;
}

.barakah-logo {
  max-width: 177px;
}

.site-footer {
  padding: 72px 0 34px;
  background: var(--ink);
  color: white;
}

.footer-top {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.8fr;
  gap: 45px;
}

.footer-intro p {
  max-width: 350px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-column h3 {
  margin-bottom: 19px;
  color: var(--muted-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: grid;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--muted-light);
  font-size: 0.72rem;
}

.footer-bottom > :last-child {
  text-align: right;
}

.redact-badge {
  display: inline-flex;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.redact-badge:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.mobile-book {
  display: none;
}

.booking-sheet {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  background: var(--paper);
}

.booking-sheet.open {
  display: block;
}

.sheet-head {
  display: flex;
  height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.sheet-close {
  width: 40px;
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}

.sheet-body {
  height: calc(100% - 70px);
  padding: 24px 20px 40px;
  overflow-y: auto;
}

.sheet-body .quick-fields {
  display: grid;
  grid-template-columns: 1fr;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  background: var(--oak);
  color: white;
}

.page-hero::before {
  position: absolute;
  top: -60%;
  right: -12%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(185, 161, 107, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 161, 107, 0.1), transparent 62%);
  content: "";
}

.page-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow,
.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

.page-hero .section-lead {
  max-width: 760px;
}

.breadcrumb {
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.breadcrumb a {
  color: white;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.match-card {
  min-height: 180px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.match-card time {
  display: block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card strong {
  display: block;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.match-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.match-card.is-played time {
  margin-bottom: 16px;
}

.match-card .match-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 32, 25, 0.16);
  border-radius: 999px;
  color: var(--oak);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.detail-card:hover {
  background: var(--paper);
  box-shadow: 0 15px 38px rgba(20, 29, 23, 0.07);
  transform: translateY(-4px);
}

.detail-card .service-number {
  margin-bottom: 68px;
}

.detail-card h3 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.detail-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.planning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.planning-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.planning-points li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.planning-points strong {
  display: block;
  margin-bottom: 5px;
}

.planning-points span {
  color: var(--muted);
  font-size: 0.9rem;
}

.corporate-hero h1 {
  max-width: 930px;
}

.corporate-hero {
  display: flex;
  min-height: 680px;
  padding: 108px 0;
  align-items: center;
  background: #0d1110;
}

.corporate-hero::before {
  display: none;
}

.corporate-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.96) 0%, rgba(8, 11, 10, 0.83) 39%, rgba(8, 11, 10, 0.26) 70%, rgba(8, 11, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.08), rgba(8, 11, 10, 0.42));
  content: "";
}

.corporate-hero .section-lead {
  max-width: 700px;
}

.corporate-signup-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(220, 228, 220, 0.7), transparent 36%),
    #f5f7f3;
}

.corporate-signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.corporate-signup-copy {
  position: sticky;
  top: 48px;
  padding-top: 20px;
}

.corporate-signup-copy h2 {
  max-width: 620px;
}

.corporate-signup-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.signup-benefits {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.signup-benefits li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.signup-benefits span {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.8rem;
}

.business-signup-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(16, 19, 16, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 80px rgba(20, 29, 23, 0.11);
}

.signup-card-head {
  display: flex;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 14px;
}

.signup-card-head strong,
.signup-card-head small {
  display: block;
}

.signup-card-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.signup-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5d8568;
  box-shadow: 0 0 0 6px rgba(93, 133, 104, 0.12);
}

.business-signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
}

.business-signup-fields .full {
  grid-column: 1 / -1;
}

.signup-submit {
  width: 100%;
  margin-top: 26px;
}

.signup-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

/* Cloudflare Turnstile verification slot (booking + corporate forms). */
.booking-turnstile,
.signup-turnstile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 18px;
}

.signup-turnstile {
  align-items: center;
  margin: 22px 0 0;
}

.booking-error {
  margin: 0;
  padding: 11px 14px;
  border-left: 2px solid #8d4f43;
  background: #f6ece9;
  color: #6e3d35;
  font-size: 0.76rem;
}

.booking-error[hidden] {
  display: none;
}

/* Corporate signup: make a recoverable verification/field error read as one. */
[data-submit-state="error"] .signup-note {
  color: #6e3d35;
  font-weight: 500;
}

.corporate-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.corporate-timeline li {
  display: grid;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px 1fr;
  gap: 20px;
}

.corporate-timeline > li > span {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.9rem;
}

.corporate-timeline strong {
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}

.corporate-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.corporate-fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.corporate-fleet a {
  display: grid;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 1fr auto;
  align-content: space-between;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.corporate-fleet a:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: 0 15px 38px rgba(20, 29, 23, 0.07);
  transform: translateY(-4px);
}

.corporate-fleet span {
  color: var(--muted);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.78rem;
}

.corporate-fleet strong {
  grid-column: 1 / -1;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.corporate-fleet small {
  color: var(--muted);
}

.corporate-fleet i {
  font-style: normal;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.22rem;
  text-align: left;
}

.faq-question span:last-child {
  transition: transform 200ms ease;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  max-width: 770px;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows 260ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 24px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.booking-page {
  min-height: 100vh;
  background: var(--paper);
}

.booking-main {
  padding: 70px 0 110px;
}

.booking-title {
  display: grid;
  margin-bottom: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  background: #f5f7f3;
  box-shadow: 0 20px 65px rgba(20, 29, 23, 0.07);
}

.booking-title-copy {
  display: flex;
  padding: clamp(34px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.booking-title h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}

.booking-title p {
  max-width: 630px;
  color: var(--muted);
}

.booking-title-image {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.booking-title-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(13, 18, 15, 0.72));
  content: "";
  pointer-events: none;
}

.booking-title-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-image-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.booking-image-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-image-caption strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.booking-assurance {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-assurance span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.stepper {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.step-indicator {
  position: relative;
  padding: 0 6px 15px;
  color: #8c8983;
  font-size: 0.72rem;
  font-weight: 700;
}

.step-indicator::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.step-indicator.active {
  color: var(--ink);
}

.step-indicator.active::after,
.step-indicator.complete::after {
  transform: scaleX(1);
}

.booking-panel {
  min-height: 480px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 70px rgba(20, 18, 15, 0.07);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: step-in 400ms var(--ease);
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
}

.booking-step h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.step-intro {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--muted);
}

.ride-type-grid,
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ride-choice {
  display: block;
}

.ride-choice input,
.vehicle-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ride-choice-inner {
  display: flex;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ride-choice-inner span {
  color: var(--muted);
  font-size: 0.82rem;
}

.ride-choice-inner strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.ride-choice input:checked + .ride-choice-inner {
  border-color: var(--ink);
  background: var(--ivory);
  transform: translateY(-3px);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.booking-fields .full {
  grid-column: 1 / -1;
}

.vehicle-grid {
  grid-template-columns: repeat(2, 1fr);
}

.vehicle-choice {
  display: block;
}

.vehicle-choice-inner {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
  background: #fafbf9;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vehicle-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stone);
}

.vehicle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  transition: transform 700ms var(--ease);
}

.vehicle-choice:hover .vehicle-image-wrap img {
  transform: scale(1.025);
}

.vehicle-select-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  place-items: center;
  background: rgba(16, 19, 16, 0.82);
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.vehicle-choice-copy {
  display: block;
  padding: 20px;
  flex: 1;
}

.vehicle-choice-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.vehicle-choice-copy span,
.vehicle-choice-copy small {
  display: block;
  color: var(--muted);
}

.vehicle-choice-copy span {
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.vehicle-choice-copy small {
  font-size: 0.72rem;
}

.vehicle-choice input:checked + .vehicle-choice-inner {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 18px 42px rgba(20, 29, 23, 0.1);
  transform: translateY(-3px);
}

.vehicle-choice input:checked + .vehicle-choice-inner .vehicle-select-mark {
  opacity: 1;
  transform: scale(1);
}

.ride-choice input:focus-visible + .ride-choice-inner,
.vehicle-choice input:focus-visible + .vehicle-choice-inner {
  outline: 2px solid var(--champagne-ink);
  outline-offset: 2px;
}

.route-preview {
  display: grid;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  background: #f7f9f5;
  animation: route-card-in 560ms var(--ease);
}

.route-preview[hidden] {
  display: none;
}

@keyframes route-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.route-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #e7ece5;
}

/* Live Google static route map (proxied via /api/route as a data: URI).
   Sits above the stylised fallback; the fallback is hidden once it loads. */
.route-map-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #f4f0e7, #d5ded5);
}

.route-map-image[hidden] {
  display: none;
}

.osm-route-map {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.route-embed-map {
  position: absolute;
  z-index: 1;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 0;
  filter: grayscale(0.18) saturate(0.72) sepia(0.08) contrast(0.98);
}

.route-embed-map[hidden] {
  display: none;
}

.has-location-suggest {
  position: relative;
}

.location-suggest {
  position: fixed;
  z-index: 5000;
  overflow: auto;
  border: 1px solid rgba(19, 26, 21, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 24px 60px rgba(10, 16, 13, 0.14);
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.location-suggest[hidden] {
  display: none;
}

.location-suggest button {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(19, 26, 21, 0.08);
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.location-suggest button:last-child {
  border-bottom: 0;
}

.location-suggest button:hover,
.location-suggest button.is-active {
  background: rgba(19, 26, 21, 0.06);
}

.location-suggest button:focus-visible {
  outline: 2px solid var(--champagne-ink);
  outline-offset: 2px;
  background: rgba(19, 26, 21, 0.06);
}

.route-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.82), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(184, 154, 89, 0.15), transparent 32%),
    linear-gradient(135deg, #f3efe6, #dfe7df);
}

.route-fallback[hidden] {
  display: none;
}

.route-fallback-card {
  max-width: 360px;
  padding: 28px;
  border: 1px solid rgba(16, 19, 16, 0.12);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 24px 70px rgba(16, 19, 16, 0.12);
  backdrop-filter: blur(16px);
}

.route-fallback-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--champagne-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.route-fallback-card strong {
  display: block;
  color: var(--oak);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.route-fallback-card small {
  display: block;
  max-width: 24rem;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.progressive-map-blur {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  backdrop-filter: blur(9px);
  background: linear-gradient(180deg, transparent, rgba(242, 246, 240, 0.48));
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 72%);
  mask-image: linear-gradient(180deg, transparent, #000 72%);
  pointer-events: none;
}

.route-map-state {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(16, 19, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(20, 29, 23, 0.1);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.route-summary {
  display: flex;
  padding: 28px;
  flex-direction: column;
  justify-content: center;
}

.route-points {
  position: relative;
  display: grid;
  gap: 24px;
}

.route-points::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 6px;
  border-left: 1px dashed rgba(16, 19, 16, 0.25);
  content: "";
}

.route-points > div {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 13px;
}

.route-dot {
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.route-dot.start {
  background: var(--oak);
}

.route-dot.end {
  background: var(--champagne);
}

.route-points p {
  margin: 0;
}

.route-points small,
.route-points strong {
  display: block;
}

.route-points small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-points strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.route-meta {
  display: flex;
  margin: 27px 0 22px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.pac-container {
  z-index: 2000;
  margin-top: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 22px 60px rgba(20, 29, 23, 0.16);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pac-item {
  padding: 10px 14px;
  border-top-color: var(--line);
  color: var(--muted);
}

.pac-item:hover {
  background: var(--ivory);
}

.pac-item-query {
  color: var(--ink);
}

.booking-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-actions .button {
  min-width: 140px;
}

.back-button {
  background: transparent;
  color: var(--muted);
}

.back-button[hidden] {
  display: none;
}

.review-summary {
  border-top: 1px solid var(--line);
}

.summary-row {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  gap: 20px;
}

.summary-row dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-row dd {
  margin: 0;
}

.confirmation {
  display: none;
  min-height: 590px;
  padding: clamp(40px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--oak);
  color: white;
  text-align: center;
}

.confirmation.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkmark {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: check-pop 600ms var(--ease);
}

.checkmark::after {
  position: absolute;
  top: 21px;
  left: 18px;
  width: 27px;
  height: 13px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  transform: rotate(-45deg);
}

@keyframes check-pop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
}

.confirmation h2 {
  max-width: 650px;
}

.confirmation p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.64);
}

.confirmation .confirmation-small {
  max-width: 480px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 36px, 900px);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .quick-fields {
    grid-template-columns: 1fr 1fr;
  }

  .quick-submit {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-list li:nth-child(3) {
    border-right: 0;
  }

  .partner-links {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .detail-list {
    grid-template-columns: 1fr 1fr;
  }

  .private-flight-panel {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

  .ride-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .corporate-signup-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .corporate-signup-copy {
    position: static;
    padding-top: 0;
  }

  .route-preview {
    grid-template-columns: 1fr;
  }

  .route-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 22px;
  }

  .route-summary .text-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .site-header {
    height: 70px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    padding: 24px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links.open a:not(.button) {
    display: block;
    padding: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 740px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(9, 14, 12, 0.62), rgba(9, 14, 12, 0.85) 62%, rgba(9, 14, 12, 0.97));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-content {
    padding: 140px 0 140px;
    justify-content: flex-end;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .booking-wrap {
    display: none;
  }

  .trust-strip {
    display: none;
  }

  .partner-section {
    padding: 66px 0 72px;
  }

  .partner-heading {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .partner-links {
    grid-template-columns: 1fr;
  }

  .partner-links a {
    min-height: 142px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid,
  .areas-grid,
  .experience-layout,
  .planning-layout,
  .operator-panel {
    grid-template-columns: 1fr;
  }

  .private-flight-panel {
    grid-template-columns: 1fr;
  }

  .private-flight-copy {
    padding: 42px 26px 48px;
  }

  .private-flight-image {
    min-height: 410px;
  }

  .private-flight-image img {
    object-position: 64% center;
  }

  .operator-image {
    min-height: 390px;
  }

  .service-card {
    min-height: 315px;
  }

  .service-number {
    margin-bottom: 68px;
  }

  .fleet-track {
    margin: 0;
    gap: 0;
    overflow: visible;
    padding: 0;
  }

  .fleet-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fleet-image {
    aspect-ratio: 4 / 2.8;
  }

  .fleet-copy {
    min-height: 340px;
    padding: 30px 26px;
  }

  .fleet-copy-main {
    margin-top: 36px;
  }

  .fleet-controls {
    margin-right: 0;
  }

  .carousel-progress {
    width: min(210px, 50vw);
  }

  .experience-copy {
    position: static;
  }

  .experience-list {
    margin-top: 30px;
  }

  .fifa-panel {
    margin-inline: 0;
  }

  .reviews {
    min-height: 310px;
  }

  .review {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .review blockquote {
    margin: 38px 0 28px;
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .motion-ready [data-motion="rise"] {
    transform: translateY(18px);
  }

  .motion-ready [data-motion="slide-left"] {
    transform: translateX(-22px);
  }

  .motion-ready [data-motion="slide-right"] {
    transform: translateX(22px);
  }

  .motion-ready [data-motion="image-left"] {
    transform: translateX(-16px);
  }

  .motion-ready [data-motion="image-right"] {
    transform: translateX(16px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > :last-child {
    text-align: left;
  }

  .mobile-book {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 68px;
    padding: 9px 14px;
    background: var(--paper);
    box-shadow: 0 -5px 24px rgba(17, 17, 17, 0.12);
  }

  .mobile-book .button {
    width: 100%;
  }

  .page-hero {
    padding: 66px 0 72px;
  }

  .corporate-hero {
    min-height: 650px;
    padding: 90px 0 80px;
  }

  .corporate-hero .page-hero-image {
    object-position: 68% center;
  }

  .corporate-hero::after {
    background: linear-gradient(180deg, rgba(8, 11, 10, 0.32), rgba(8, 11, 10, 0.92) 68%, rgba(8, 11, 10, 0.98));
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .corporate-signup-section {
    padding: 72px 0;
  }

  .business-signup-card {
    padding: 26px 20px;
  }

  .business-signup-fields {
    grid-template-columns: 1fr;
  }

  .business-signup-fields .full {
    grid-column: auto;
  }

  .match-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .match-card {
    min-height: 150px;
  }

  .detail-card {
    min-height: 250px;
  }

  .corporate-fleet {
    grid-template-columns: 1fr;
  }

  .corporate-fleet a {
    min-height: 180px;
  }

  .corporate-timeline li {
    grid-template-columns: 58px 1fr;
  }

  .stepper {
    grid-template-columns: repeat(5, 1fr);
  }

  .step-indicator {
    font-size: 0;
  }

  .step-indicator::before {
    font-size: 0.7rem;
    content: attr(data-short);
  }

  .booking-main {
    padding-top: 48px;
  }

  .booking-title {
    grid-template-columns: 1fr;
  }

  .booking-title-copy {
    padding: 34px 24px;
  }

  .booking-title-image {
    min-height: 280px;
  }

  .booking-image-caption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .booking-panel {
    min-height: 0;
    padding: 26px 20px;
  }

  .ride-type-grid,
  .vehicle-grid,
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-fields .full {
    grid-column: auto;
  }

  .ride-choice-inner {
    min-height: 130px;
  }

  .route-map {
    min-height: 275px;
  }

  .route-summary {
    display: flex;
    padding: 24px 20px;
    align-items: stretch;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .booking-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .booking-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium editorial system */
:root {
  --ivory: #f2f1ec;
  --stone: #e6e8e2;
  --paper: #fcfcf9;
  --ink: #0c110e;
  --graphite: #1b221e;
  --oak: #0d1913;
  --champagne: #ad9766;
  --sage: #dbe2da;
  --muted: #626963;
  --muted-light: #a0a7a0;
  --line: rgba(12, 17, 14, 0.12);
  --shadow: 0 30px 90px rgba(13, 25, 19, 0.11);
  --radius: 22px;
  --shell: min(1360px, calc(100% - 64px));
}

body {
  background: var(--paper);
  font-family: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Arial, sans-serif;
  letter-spacing: -0.012em;
}

h1,
h2 {
  text-wrap: balance;
}

.site-header {
  height: 92px;
  transition: height 260ms var(--ease), background 260ms ease, border-color 260ms ease, color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled:not(.light-header) {
  position: fixed;
  height: 72px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 13, 0.82);
  backdrop-filter: blur(18px) saturate(1.15);
}

.site-header.light-header {
  position: sticky;
  z-index: 60;
  top: 0;
  height: 78px;
  background: rgba(252, 252, 249, 0.9);
  backdrop-filter: blur(18px) saturate(1.1);
}

.brand {
  gap: 13px;
  letter-spacing: 0.07em;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.nav-links {
  font-size: 0.76rem;
  letter-spacing: 0.015em;
}

.nav-links .button {
  min-height: 44px;
  padding-inline: 25px;
}

.hero {
  min-height: min(900px, 96vh);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(6, 11, 9, 0.96) 0%, rgba(6, 11, 9, 0.8) 38%, rgba(6, 11, 9, 0.22) 69%, rgba(6, 11, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.06), rgba(5, 8, 7, 0.5));
}

.hero-content {
  min-height: min(900px, 96vh);
  padding: 150px 0 190px;
}

.hero-content h1 {
  max-width: 1020px;
  margin-bottom: 30px;
  font-size: clamp(4.15rem, 7.5vw, 8.25rem);
  line-height: 0.88;
  letter-spacing: -0.052em;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.65;
}

.hero-primary-actions {
  margin-top: 34px;
  align-items: center;
}

.hero-secondary-link {
  padding: 12px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-service-ledger {
  display: flex;
  width: min(720px, 100%);
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.hero-service-ledger > span {
  display: grid;
  min-width: 0;
  padding: 17px 28px 0 0;
  flex: 1;
  grid-template-columns: 28px 1fr;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-service-ledger small {
  color: var(--champagne);
  font-size: 0.62rem;
}

.booking-wrap {
  margin-top: -112px;
}

.quick-booking {
  padding: 32px 34px 28px;
  border-color: rgba(12, 17, 14, 0.1);
  border-radius: 26px;
  box-shadow: 0 38px 100px rgba(13, 25, 19, 0.16);
}

.quick-booking-head {
  display: flex;
  margin-bottom: 25px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.quick-booking-head span,
.quick-booking-head strong {
  display: block;
}

.quick-booking-head span {
  margin-bottom: 4px;
  color: var(--champagne-ink);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-booking-head strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.quick-booking-head p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

.booking-tabs {
  margin-bottom: 20px;
}

.quick-field input,
.quick-field select,
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 12px;
  background: #fdfdfb;
}

.trust-strip {
  padding: 58px 0 42px;
  background: var(--paper);
}

.trust-list {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-intro {
  padding: 150px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(219, 226, 218, 0.7), transparent 31%),
    var(--paper);
}

.editorial-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 70px 11vw;
}

.editorial-intro-copy h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.5rem, 6.6vw, 7.25rem);
  line-height: 0.91;
}

.editorial-intro-body {
  align-self: end;
  padding-bottom: 12px;
}

.editorial-intro-body p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.7;
}

.service-proof {
  display: grid;
  padding-top: 54px;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.service-proof > div {
  display: grid;
  min-height: 125px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
}

.service-proof > div:first-child {
  padding-left: 0;
}

.service-proof > div:last-child {
  border-right: 0;
}

.service-proof strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.service-proof span {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.services-section {
  padding-top: 135px;
  background: #eceee8;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  grid-template-rows: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.premium-services-grid .service-card {
  display: flex;
  min-height: 0;
  padding: 30px;
  border-radius: 26px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(252, 252, 249, 0.82);
}

.premium-services-grid .service-card-featured {
  position: relative;
  min-height: 720px;
  padding: 38px;
  grid-row: 1 / 4;
  color: white;
}

.service-card-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.service-card-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 10, 0.14), rgba(8, 12, 10, 0.88));
  content: "";
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.premium-services-grid .service-number,
.service-card-content {
  position: relative;
  z-index: 1;
}

.premium-services-grid .service-number {
  margin: 0;
}

.service-card-content {
  margin-top: auto;
}

.premium-services-grid .service-card h3 {
  max-width: 460px;
  font-size: clamp(1.7rem, 2.7vw, 3.35rem);
  line-height: 1;
}

.premium-services-grid .service-card p {
  min-height: 0;
  max-width: 480px;
}

.service-kicker {
  margin-bottom: 14px !important;
  color: var(--champagne-ink) !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-featured .service-number,
.service-card-featured .service-card-content > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.service-card-featured .text-link {
  color: white;
}

.premium-services-grid .service-card-dark {
  border-color: transparent;
  background: var(--oak);
  color: white;
}

.service-card-dark .service-number,
.service-card-dark .service-card-content > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.58);
}

.service-card-dark .text-link {
  color: white;
}

.private-flight-panel,
.operator-panel,
.fleet-viewport,
.fifa-panel,
.review-stage {
  border-radius: 32px;
}

.private-flight-panel,
.operator-panel {
  box-shadow: 0 36px 100px rgba(13, 25, 19, 0.1);
}

.fleet-card {
  min-height: 640px;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.5fr);
}

.fleet-copy {
  padding: clamp(38px, 5vw, 72px);
}

.fleet-copy h3 {
  font-size: clamp(2.4rem, 4vw, 4.35rem);
}

.operator-panel {
  grid-template-columns: 1.12fr 0.88fr;
}

.experience-list li {
  padding: 35px 0;
}

.section.dark .experience-layout + .trust-strip {
  display: flex;
  margin-top: clamp(34px, 5vw, 62px);
  padding: 24px 0 0;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
  gap: 0;
  background: transparent;
  color: white;
}

.section.dark .trust-strip-item {
  display: grid;
  min-width: min(230px, 100%);
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  flex: 1 1 0;
  gap: 3px;
}

.section.dark .trust-strip-item:first-child {
  padding-left: 0;
}

.section.dark .trust-strip-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.section.dark .trust-strip-item strong {
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section.dark .trust-strip-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

@media (max-width: 720px) {
  .section.dark .experience-layout + .trust-strip {
    margin-top: 30px;
    padding-top: 8px;
  }

  .section.dark .trust-strip-item {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    flex-basis: 100%;
  }

  .section.dark .trust-strip-item:last-child {
    border-bottom: 0;
  }
}

.proof-ledger-section {
  padding: 130px 0;
  background: #e8ebe5;
}

.proof-ledger {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
}

.proof-ledger-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.proof-ledger-heading h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
}

.proof-ledger-items {
  border-top: 1px solid var(--line);
}

.proof-ledger-items > div {
  display: grid;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px minmax(180px, 0.8fr) minmax(220px, 1fr);
  align-items: baseline;
  gap: 20px;
}

.proof-ledger-items span {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.8rem;
}

.proof-ledger-items strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.proof-ledger-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.partner-links a {
  border-radius: 20px;
  background: var(--paper);
}

.site-footer {
  padding-top: 92px;
  background: #09100c;
}

/* Refined reveal language */
.motion-ready [data-reveal] {
  transition:
    opacity 700ms ease-out,
    transform 850ms var(--ease),
    clip-path 900ms var(--ease),
    filter 900ms var(--ease);
}

.motion-ready [data-motion="soft-rise"] {
  transform: translateY(18px);
}

.motion-ready [data-motion="mask"] {
  clip-path: inset(0 0 12% 0);
  filter: blur(4px);
  opacity: 0;
  transform: translateY(16px);
}

.motion-ready [data-motion="image-reveal"] {
  clip-path: inset(0 8% 0 0);
  filter: saturate(0.7);
  opacity: 0.35;
  transform: scale(0.985);
}

.motion-ready [data-motion="line-reveal"] {
  opacity: 0.25;
  transform: translateY(9px);
}

.motion-ready [data-reveal].is-visible {
  clip-path: inset(0);
  filter: none;
}

/* Premium booking workspace */
.booking-page {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(219, 226, 218, 0.78), transparent 30%),
    #f4f3ee;
}

.booking-main {
  padding: 54px 0 125px;
}

.booking-title {
  min-height: 520px;
  margin-bottom: 76px;
  border: 0;
  border-radius: 32px;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  background: var(--oak);
  box-shadow: 0 38px 110px rgba(13, 25, 19, 0.16);
  color: white;
}

.booking-title-copy {
  padding: clamp(44px, 6vw, 82px);
}

.booking-title h1 {
  max-width: 520px;
  margin-bottom: 23px;
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: 0.92;
}

.booking-title p {
  color: rgba(255, 255, 255, 0.64);
}

.booking-assurance span {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
}

.booking-title-image {
  min-height: 520px;
}

.booking-title-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 25, 19, 0.32), transparent 28%);
  content: "";
  pointer-events: none;
}

.booking-title-image img {
  object-position: center 66%;
}

.booking-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 24px;
}

.booking-workspace {
  min-width: 0;
}

.stepper {
  margin-bottom: 24px;
  padding: 0 10px;
}

.step-indicator {
  padding-bottom: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.booking-panel {
  min-height: 620px;
  padding: clamp(34px, 5vw, 68px);
  border: 0;
  border-radius: 30px;
  box-shadow: 0 26px 80px rgba(13, 25, 19, 0.08);
}

.booking-step h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
}

.ride-type-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ride-choice-inner {
  position: relative;
  min-height: 205px;
  padding: 28px;
  border-radius: 22px;
  background: #fafaf7;
}

.ride-choice-top {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
}

.ride-choice-top small {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.72rem;
}

.ride-choice-inner strong {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.ride-choice-inner i {
  position: absolute;
  right: 26px;
  bottom: 25px;
  font-style: normal;
  opacity: 0.35;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.ride-choice:hover .ride-choice-inner i,
.ride-choice input:checked + .ride-choice-inner i {
  opacity: 1;
  transform: translateX(4px);
}

.ride-choice input:checked + .ride-choice-inner {
  background: #eef1eb;
  box-shadow: 0 18px 42px rgba(13, 25, 19, 0.08);
}

.vehicle-grid {
  gap: 16px;
}

.vehicle-choice-inner {
  border-radius: 22px;
  background: #fafaf7;
}

.vehicle-choice-copy {
  padding: 23px 24px 25px;
}

.vehicle-choice-copy strong {
  font-size: 1.48rem;
}

.booking-actions {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-actions .button {
  min-width: 180px;
  min-height: 56px;
}

.itinerary-rail {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--oak);
  box-shadow: 0 28px 80px rgba(13, 25, 19, 0.18);
  color: white;
}

.itinerary-rail-head {
  display: flex;
  padding: 25px 25px 17px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.itinerary-rail-head span {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.2rem;
}

.itinerary-rail-head strong {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.itinerary-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 480ms var(--ease);
}

.itinerary-vehicle {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.itinerary-vehicle::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 14, 11, 0.9));
  content: "";
}

.itinerary-vehicle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transition: opacity 220ms ease, transform 900ms var(--ease);
}

.itinerary-vehicle img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.itinerary-vehicle > span,
.itinerary-vehicle > strong {
  position: absolute;
  z-index: 1;
  right: 23px;
  left: 23px;
}

.itinerary-vehicle > span {
  bottom: 48px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.itinerary-vehicle > strong {
  bottom: 21px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.itinerary-details {
  margin: 0;
  padding: 12px 25px 5px;
}

.itinerary-details > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 82px 1fr;
  gap: 12px;
}

.itinerary-details dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-details dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.itinerary-assurance {
  display: grid;
  margin: 19px 20px 20px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  grid-template-columns: 12px 1fr;
  align-items: start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.itinerary-assurance .signup-status-dot {
  margin-top: 4px;
}

.itinerary-assurance p,
.itinerary-assurance strong {
  display: block;
}

.itinerary-assurance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
}

.itinerary-assurance strong {
  margin-bottom: 3px;
  color: white;
  font-size: 0.75rem;
}

.itinerary-trust {
  display: grid;
  margin: -4px 20px 18px;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.itinerary-trust li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
  line-height: 1.45;
}

.itinerary-trust li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5d8568;
  box-shadow: 0 0 0 4px rgba(93, 133, 104, 0.12);
  content: "";
}

.itinerary-phone {
  margin: -4px 20px 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.itinerary-phone span {
  display: block;
  margin-bottom: 4px;
}

.itinerary-phone .tel-link {
  color: white;
  font-weight: 750;
}

.route-preview {
  border-radius: 24px;
}

.confirmation {
  border-radius: 32px;
}

/* Corporate alignment */
.corporate-page {
  background: var(--paper);
}

.corporate-hero {
  min-height: 760px;
  padding-block: 130px;
}

.corporate-hero h1 {
  max-width: 960px;
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  line-height: 0.9;
}

.corporate-signup-section {
  padding: 130px 0;
}

.business-signup-card {
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(13, 25, 19, 0.12);
}

.detail-card,
.corporate-fleet a {
  border-radius: 22px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .editorial-intro-grid,
  .proof-ledger {
    gap: 60px;
  }

  .premium-services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .premium-services-grid .service-card-featured {
    min-height: 620px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .premium-services-grid .service-card {
    min-height: 300px;
  }

  .premium-services-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

  .booking-title {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .booking-experience {
    grid-template-columns: 1fr;
  }

  .itinerary-rail {
    position: static;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .itinerary-rail-head,
  .itinerary-progress {
    grid-column: 1 / -1;
  }

  .itinerary-vehicle {
    height: 100%;
    min-height: 280px;
  }

  .itinerary-assurance {
    align-self: end;
  }

  .itinerary-trust {
    grid-column: 1;
  }

  .itinerary-phone {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
  }
}

@media (min-width: 721px) and (max-width: 1020px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 18px;
    left: auto;
    width: min(360px, calc(100vw - 36px));
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    box-shadow: 0 24px 60px rgba(20, 24, 21, 0.12);
    color: var(--ink);
    backdrop-filter: blur(22px);
  }

  .nav-links.open {
    display: grid;
    gap: 0;
  }

  .nav-links.open a:not(.button) {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links.open .button {
    margin-top: 12px;
  }

  .menu-toggle {
    display: block;
    width: auto;
    min-width: 76px;
    height: 40px;
    padding: 0 16px;
    border-color: color-mix(in srgb, currentColor 24%, transparent);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--oak);
    background: var(--oak);
    color: white;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header,
  .site-header.light-header,
  .site-header.is-scrolled:not(.light-header) {
    height: 70px;
  }

  .menu-toggle {
    width: auto;
    min-width: 76px;
    height: 40px;
    padding: 0 16px;
    border-color: color-mix(in srgb, currentColor 24%, transparent);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
  }

  .light-header .menu-toggle {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.7);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--oak);
    background: var(--oak);
    color: white;
  }

  .nav-links.open {
    gap: 2px;
    padding: 18px 14px 24px;
    border-bottom-color: var(--line-strong);
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    box-shadow: 0 24px 50px rgba(20, 24, 21, 0.1);
    backdrop-filter: blur(22px);
  }

  .nav-links.open a:not(.button) {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 0.73rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links.open .button {
    margin-top: 10px;
  }

  .hero,
  .hero-content {
    min-height: 800px;
  }

  .hero-content {
    padding: 130px 0 70px;
  }

  .hero-content h1 {
    font-size: clamp(3.55rem, 16.8vw, 5.2rem);
    line-height: 0.9;
  }

  .hero-content h1 span {
    display: inline;
  }

  .hero-content h1 span:last-child {
    display: block;
    margin-top: 8px;
  }

  .hero-primary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-primary-actions .button {
    width: 100%;
  }

  .hero-secondary-link {
    width: fit-content;
  }

  .hero-service-ledger {
    margin-top: 38px;
  }

  .hero-service-ledger > span {
    display: block;
    padding: 14px 10px 0 0;
    font-size: 0.62rem;
  }

  .hero-service-ledger small {
    display: block;
    margin-bottom: 4px;
  }

  .editorial-intro {
    padding: 92px 0 82px;
  }

  .editorial-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .editorial-intro-copy h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .service-proof {
    padding-top: 30px;
    grid-template-columns: 1fr;
  }

  .service-proof > div,
  .service-proof > div:first-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-section {
    padding-top: 82px;
  }

  .premium-services-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .premium-services-grid .service-card,
  .premium-services-grid .service-card:last-child {
    min-height: 320px;
    grid-column: auto;
  }

  .premium-services-grid .service-card-featured {
    min-height: 540px;
  }

  .fleet-card {
    min-height: 0;
  }

  .proof-ledger-section {
    padding: 88px 0;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .proof-ledger-heading {
    position: static;
  }

  .proof-ledger-items > div {
    grid-template-columns: 42px 1fr;
  }

  .proof-ledger-items p {
    grid-column: 2;
  }

  .booking-main {
    padding: 24px 0 80px;
  }

  .booking-title {
    min-height: 0;
    margin-bottom: 46px;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .booking-title-copy {
    padding: 42px 25px;
  }

  .booking-title h1 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .booking-title-image {
    min-height: 300px;
  }

  .booking-panel {
    min-height: 0;
    padding: 32px 20px;
    border-radius: 24px;
  }

  .step-indicator {
    font-size: 0;
  }

  .step-indicator::before {
    font-size: 0.66rem;
    content: attr(data-short);
  }

  .booking-step h2 {
    font-size: clamp(2.5rem, 12vw, 3.75rem);
  }

  .ride-type-grid {
    grid-template-columns: 1fr;
  }

  .ride-choice-inner {
    min-height: 160px;
  }

  .itinerary-rail {
    display: block;
    border-radius: 24px;
    order: -1;
  }

  .itinerary-vehicle {
    display: none;
  }

  .itinerary-details {
    display: grid;
    padding: 10px 20px 17px;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }

  .itinerary-details > div {
    display: block;
    padding: 12px 0;
  }

  .itinerary-details dt {
    margin-bottom: 4px;
  }

  .itinerary-assurance {
    display: none;
  }

  .itinerary-trust {
    margin: 0 20px 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .corporate-hero {
    min-height: 700px;
    padding-block: 100px 80px;
  }
}

/* Compact homepage architecture */
.editorial-intro {
  padding-block: 105px 90px;
}

.service-proof {
  padding-top: 40px;
}

.service-proof > div {
  min-height: 92px;
}

.journey-section {
  padding-block: 115px;
  background: #eceee8;
}

.compact-heading {
  margin-bottom: 48px;
}

.journey-selector {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(13, 25, 19, 0.09);
}

.journey-tabs {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  background: var(--oak);
}

.journey-tab {
  display: grid;
  min-height: 92px;
  padding: 22px 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 38px 1fr;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: 650 0.75rem/1.2 var(--sans);
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    padding 280ms var(--ease);
}

.journey-tab span {
  color: var(--champagne);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 400;
}

.journey-tab:hover,
.journey-tab:focus-visible {
  color: white;
}

.journey-tab.is-active {
  padding-left: 36px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
}

.journey-panels,
.journey-panel {
  min-width: 0;
  min-height: 610px;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  animation: journey-panel-in 480ms var(--ease) both;
}

.journey-panel[hidden] {
  display: none !important;
}

@keyframes journey-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-visual {
  min-height: 610px;
  overflow: hidden;
  background: var(--stone);
}

.journey-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.journey-panel.is-active .journey-visual img {
  transform: scale(1.018);
}

.journey-copy {
  display: flex;
  padding: clamp(42px, 5vw, 72px);
  flex-direction: column;
  justify-content: center;
}

.journey-copy h3 {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 4.3vw, 5rem);
  line-height: 0.94;
}

.journey-copy > p:not(.service-kicker) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.journey-copy ul {
  display: grid;
  margin: 0 0 36px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.journey-copy .button {
  width: fit-content;
}

.services-coverage-link {
  display: flex;
  padding: 26px 6px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.8rem;
}

.fleet-availability-note {
  display: flex;
  padding: 24px 4px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.76rem;
}

.standard-section {
  padding-block: 118px;
}

.standard-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(65px, 10vw, 150px);
}

.standard-intro h2 {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 5.7vw, 6.5rem);
  line-height: 0.9;
}

.standard-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.7;
}

.standard-intro img {
  width: 100%;
  max-height: 300px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.8);
}

.standard-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.standard-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.standard-item button {
  display: grid;
  width: 100%;
  min-height: 96px;
  padding: 22px 0;
  border: 0;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  background: transparent;
  color: white;
  text-align: left;
}

.standard-item button span {
  color: var(--champagne);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.75rem;
}

.standard-item button strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  font-weight: 400;
}

.standard-item button i {
  color: rgba(255, 255, 255, 0.56);
  font: 400 1.25rem/1 var(--sans);
  text-align: right;
}

.standard-answer {
  padding: 0 35px 26px 52px;
}

.standard-answer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted-light);
  line-height: 1.7;
}

.event-band {
  padding-block: 65px;
  background: #1b2821;
  color: white;
}

.event-band-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.event-band h2 {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.event-band p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.event-band-actions {
  display: grid;
  min-width: 250px;
  justify-items: end;
  gap: 18px;
}

.event-band-actions > span {
  color: var(--champagne);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-proof-section {
  padding-block: 105px;
  background: var(--stone);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  gap: 20px;
}

.compact-areas {
  display: grid;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: 1fr 1fr;
}

.compact-areas a {
  display: flex;
  min-height: 102px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.25rem;
  transition:
    background 180ms ease,
    padding 240ms var(--ease);
}

.compact-areas a:nth-child(even) {
  border-right: 0;
}

.compact-areas a:hover {
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.42);
}

.compact-areas i {
  font: 400 0.8rem/1 var(--sans);
}

.compact-review-stage {
  min-height: 328px;
  padding: 36px;
  border-radius: 26px;
  background: var(--paper);
}

.compact-review-stage .review {
  min-height: 180px;
  padding: 0;
}

.compact-review-stage blockquote {
  max-width: 700px;
  margin-block: 24px;
  font-size: clamp(2.2rem, 3.6vw, 4.25rem);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal a {
  color: inherit;
}

/* Supporting content pages */
.content-page {
  background: var(--paper);
}

.content-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding-block: 150px 100px;
  background-color: var(--oak);
  color: white;
}

.content-hero::before,
.content-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.content-hero::before {
  background: var(--content-hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.content-hero::after {
  background: linear-gradient(90deg, rgba(8, 14, 11, 0.94), rgba(8, 14, 11, 0.52));
}

.content-hero-services {
  --content-hero-image: url("assets/images/toronto-arrival.jpg");
}

.content-hero-about {
  --content-hero-image: url("assets/images/chauffeur-arrival-campaign.jpg");
}

.content-hero .shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: flex-end;
}

.content-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: 0.88;
}

.content-hero .section-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}

.service-hub {
  padding-block: 110px;
}

.service-hub-intro {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.service-hub-intro h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  line-height: 0.9;
}

.service-hub-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.service-index {
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: 70px minmax(230px, 0.72fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.service-row > span {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 0.8rem;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.occasion-section,
.coverage-section {
  padding-block: 105px;
}

.occasion-section {
  background: var(--stone);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.occasion-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.occasion-card span {
  color: var(--champagne-ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.occasion-card h3 {
  margin: 65px 0 16px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.occasion-card p {
  color: var(--muted);
  line-height: 1.65;
}

.coverage-cloud {
  display: flex;
  margin-top: 45px;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-cloud span {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
}

.about-story {
  display: grid;
  padding-block: 110px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  gap: 90px;
}

.about-story h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.9;
}

.about-story-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  padding-block: 100px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-value {
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
}

.about-value span {
  color: var(--champagne-ink);
  font-family: "Iowan Old Style", Georgia, serif;
}

.about-value h3 {
  margin: 42px 0 16px;
  font-size: 2rem;
}

.about-value p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.65;
}

.trust-block {
  display: grid;
  padding-block: 96px 112px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
}

.trust-block h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-item h3 {
  margin-bottom: 15px;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.05;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  display: grid;
  padding-block: 140px 110px;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.75fr);
  gap: 90px;
}

.legal-content h1 {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

.legal-copy section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-size: 1.55rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .journey-selector {
    grid-template-columns: 190px 1fr;
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }

  .journey-visual {
    min-height: 360px;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 55px minmax(210px, 0.7fr) 1fr;
  }

  .service-row .text-link {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .editorial-intro {
    padding-block: 80px 70px;
  }

  .journey-section,
  .standard-section,
  .home-proof-section {
    padding-block: 78px;
  }

  .journey-selector {
    display: block;
    min-height: 0;
    border-radius: 24px;
  }

  .journey-tabs {
    overflow-x: auto;
    padding: 0;
    flex-direction: row;
    scrollbar-width: none;
  }

  .journey-tab {
    min-width: max-content;
    min-height: 70px;
    padding: 18px 20px;
    grid-template-columns: 28px auto;
  }

  .journey-tab.is-active {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.1);
  }

  .journey-panels,
  .journey-panel {
    min-height: 0;
  }

  .journey-visual {
    min-height: 280px;
  }

  .journey-copy {
    padding: 34px 24px 38px;
  }

  .journey-copy h3 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .journey-copy .button {
    width: 100%;
  }

  .services-coverage-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .fleet-availability-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .standard-showcase,
  .service-hub-intro,
  .about-story,
  .legal-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .standard-intro img {
    max-height: 240px;
  }

  .standard-item button {
    min-height: 82px;
    grid-template-columns: 38px 1fr 24px;
  }

  .standard-answer {
    padding-left: 38px;
  }

  .event-band-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .event-band-actions {
    width: 100%;
    justify-items: start;
  }

  .event-band-actions .button {
    width: 100%;
  }

  .compact-areas {
    grid-template-columns: 1fr;
  }

  .compact-areas a,
  .compact-areas a:nth-child(even) {
    min-height: 78px;
    border-right: 0;
  }

  .compact-review-stage {
    min-height: 310px;
    padding: 28px 22px;
  }

  .content-hero {
    min-height: 620px;
    padding-block: 120px 70px;
  }

  .content-hero h1 {
    font-size: clamp(3.55rem, 15vw, 5rem);
  }

  .service-hub,
  .occasion-section,
  .coverage-section {
    padding-block: 78px;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 12px 16px;
  }

  .service-row p,
  .service-row .text-link {
    grid-column: 2;
  }

  .occasion-grid,
  .about-values,
  .trust-block,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .occasion-card {
    min-height: 250px;
  }

  .about-story {
    padding-block: 78px;
  }

  .about-values,
  .trust-block {
    padding-block: 70px;
  }

  .legal-content {
    padding-block: 110px 75px;
  }

  .legal-content h1 {
    position: static;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

/* GSAP progressive enhancement */
.page-scroll-progress {
  position: fixed;
  z-index: 140;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left center;
}

.gsap-ready [data-reveal],
.gsap-ready .hero .eyebrow,
.gsap-ready .hero h1,
.gsap-ready .hero .hero-copy,
.gsap-ready .hero .hero-note,
.gsap-ready .hero .hero-scroll-cue {
  transition: none !important;
}

.gsap-ready [data-reveal] {
  opacity: 1;
  transform: none;
  clip-path: none;
  filter: none;
}

.gsap-ready .hero .eyebrow,
.gsap-ready .hero h1,
.gsap-ready .hero .hero-copy,
.gsap-ready .hero .hero-note,
.gsap-ready .hero .hero-scroll-cue {
  opacity: 1;
  transform: none;
}

.gsap-ready .journey-panel {
  animation: none;
}

.gsap-ready .hero-image,
.gsap-ready .hero-content,
.gsap-ready .journey-visual img,
.gsap-ready .fleet-image img,
.gsap-ready .standard-intro img,
.page-scroll-progress {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .page-scroll-progress {
    display: none;
  }
}

/* Fleet copy alignment and long-name protection */
.fleet-card {
  min-height: 640px;
  grid-template-columns: minmax(0, 1.32fr) minmax(430px, 0.68fr);
}

.fleet-copy {
  display: grid;
  min-width: 0;
  padding: clamp(38px, 4vw, 60px);
  grid-template-rows: auto 1fr auto;
  container-type: inline-size;
}

.fleet-index {
  margin: 0;
}

.fleet-copy-main {
  min-width: 0;
  margin: 0;
  align-self: center;
}

.fleet-copy h3 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 3vw, 3.75rem);
  font-size: clamp(2.4rem, 12cqi, 3.75rem);
  line-height: 0.94;
  overflow-wrap: normal;
  text-wrap: balance;
  white-space: normal;
}

.fleet-use {
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1.45;
}

.fleet-description {
  max-width: 32rem;
  margin: 24px 0 30px !important;
  line-height: 1.65;
}

.fleet-meta {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.55;
}

.fleet-copy .text-link {
  width: fit-content;
}

.fleet-card-long-title .fleet-copy h3 {
  font-size: clamp(2.05rem, 9.5cqi, 3.1rem);
  line-height: 0.98;
}

@media (max-width: 1100px) {
  .fleet-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  }

  .fleet-copy {
    padding: 38px;
  }

  .fleet-copy h3 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-size: clamp(2.25rem, 11cqi, 3.25rem);
  }
}

@media (max-width: 720px) {
  .fleet-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fleet-image {
    min-height: 0;
    aspect-ratio: 4 / 2.8;
  }

  .fleet-copy {
    min-height: 0;
    padding: 30px 25px;
    gap: 30px;
  }

  .fleet-copy-main {
    align-self: start;
  }

  .fleet-copy h3 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
    font-size: clamp(2.45rem, 13cqi, 3.4rem);
  }

  .fleet-description {
    margin-bottom: 26px !important;
  }
}

/* Refined booking, fleet matching, and page motion */
.booking-wrap {
  margin-top: -92px;
}

.booking-wrap > .quick-booking {
  padding: 25px 30px 23px;
  border-color: rgba(16, 19, 16, 0.16);
  border-radius: 6px;
  box-shadow: 0 24px 68px rgba(10, 18, 14, 0.14);
  opacity: 1;
  animation-name: booking-settle;
}

@keyframes booking-settle {
  from {
    transform: translateY(16px);
  }

  to {
    transform: none;
  }
}

.booking-wrap .quick-booking-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.booking-wrap .quick-booking-head span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.booking-wrap .quick-booking-head strong {
  font-size: clamp(1.3rem, 1.75vw, 1.7rem);
  letter-spacing: -0.02em;
}

.booking-wrap .quick-booking-head p {
  color: #727772;
  font-size: 0.7rem;
}

.booking-wrap .booking-tabs {
  margin-bottom: 18px;
  gap: 28px;
}

.booking-wrap .booking-tab {
  padding-bottom: 11px;
  font-size: 0.75rem;
}

.booking-wrap .quick-field input,
.booking-wrap .quick-field select {
  min-height: 54px;
  border-color: rgba(16, 19, 16, 0.16);
  border-radius: 2px;
  background: #fff;
}

.booking-wrap .quick-submit {
  min-height: 54px;
  border-radius: 2px;
}

.booking-wrap .quick-note {
  margin-top: 13px;
  font-size: 0.69rem;
}

#booking-flow {
  scroll-margin-top: 92px;
}

.booking-step.active {
  animation-name: step-settle;
}

@keyframes step-settle {
  from {
    clip-path: inset(0 0 18px 0);
    transform: translateY(14px);
  }

  to {
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

.vehicle-match-summary {
  min-height: 40px;
  margin: -16px 0 26px;
  padding: 11px 14px;
  border-left: 2px solid var(--champagne);
  background: #f4f1e9;
  color: var(--muted);
  font-size: 0.76rem;
}

.vehicle-match-summary.is-alert {
  border-left-color: #8d4f43;
  background: #f6ece9;
  color: #6e3d35;
}

.vehicle-choice {
  transition: order 260ms var(--ease);
}

.vehicle-capacity-note {
  display: block;
  margin-top: 14px;
  color: #55705d;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-choice.is-unavailable {
  order: 2;
}

.vehicle-choice.is-unavailable .vehicle-choice-inner {
  border-color: rgba(16, 19, 16, 0.08);
  box-shadow: none;
  background: #f0f0ed;
  color: #858984;
  transform: none;
}

.vehicle-choice.is-unavailable .vehicle-image-wrap img {
  filter: grayscale(1) contrast(0.86);
  opacity: 0.42;
  transform: none;
}

.vehicle-choice.is-unavailable .vehicle-capacity-note {
  color: #8d4f43;
}

.vehicle-choice.is-unavailable:hover .vehicle-image-wrap img {
  transform: none;
}

.match-card {
  min-height: 215px;
}

.match-card strong {
  max-width: 320px;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.18;
}

.corporate-fleet {
  grid-template-columns: repeat(3, 1fr);
}

.gsap-ready .page-hero-image,
.gsap-ready .content-hero,
.gsap-ready .match-card,
.gsap-ready .detail-card,
.gsap-ready .about-value,
.gsap-ready .corporate-timeline li,
.gsap-ready .planning-points li {
  will-change: transform, clip-path;
}

@media (max-width: 900px) {
  .booking-wrap > .quick-booking {
    padding: 24px;
    border-radius: 5px;
  }

  .booking-wrap .quick-booking-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .booking-wrap .quick-booking-head p {
    text-align: left;
  }

  .corporate-fleet {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .booking-wrap {
    margin-top: -36px;
  }

  .booking-wrap > .quick-booking {
    padding: 22px 18px;
    border-radius: 4px;
  }

  .booking-wrap .quick-fields {
    grid-template-columns: 1fr;
  }

  .booking-wrap .quick-submit {
    width: 100%;
  }

  .vehicle-match-summary {
    margin-top: -10px;
  }

  .corporate-fleet {
    grid-template-columns: 1fr;
  }
}

/* Immersive interaction layer */
.site-header,
.site-header.light-header,
.site-header.is-scrolled:not(.light-header) {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom-color: transparent;
  background: transparent;
  pointer-events: none;
}

.site-header.light-header + main {
  padding-top: 78px;
}

.site-header .nav-wrap {
  height: 100%;
  padding-inline: 0;
  pointer-events: auto;
  transition:
    width 420ms var(--ease),
    height 420ms var(--ease),
    margin 420ms var(--ease),
    padding 420ms var(--ease),
    border-color 300ms ease,
    border-radius 420ms var(--ease),
    background 300ms ease,
    box-shadow 300ms ease,
    color 300ms ease;
}

.site-header.light-header .nav-wrap {
  width: min(1180px, calc(100% - 30px));
  height: 58px;
  margin-top: 13px;
  padding-inline: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 16, 13, 0.9);
  box-shadow: 0 18px 55px rgba(7, 12, 9, 0.16);
  color: white;
  backdrop-filter: blur(22px) saturate(1.18);
}

.site-header.is-morphed {
  height: 72px;
}

.site-header.is-morphed .nav-wrap {
  width: min(1180px, calc(100% - 30px));
  height: 58px;
  margin-top: 7px;
  padding-inline: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 16, 13, 0.84);
  box-shadow: 0 18px 55px rgba(7, 12, 9, 0.16);
  color: white;
  backdrop-filter: blur(22px) saturate(1.18);
}

.site-header.light-header.is-morphed .nav-wrap {
  margin-top: 7px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 13, 0.84);
  box-shadow: 0 18px 55px rgba(7, 12, 9, 0.16);
  color: white;
}

.site-header.is-morphed .brand-logo {
  width: 44px;
  height: 44px;
}

.site-header.is-morphed:not(.light-header) .brand-logo,
.site-header.light-header.is-morphed .brand-logo {
  filter: none;
}

.site-header.is-morphed:not(.light-header) .nav-links .button,
.site-header.light-header.is-morphed .nav-links .button {
  border-color: white;
  background: white;
  color: var(--ink);
}

.hero-content h1 {
  max-width: min(970px, 78vw);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.91;
}

.audio-toggle {
  display: inline-flex;
  min-height: 36px;
  padding: 0 3px;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: inherit;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audio-bars {
  display: flex;
  width: 17px;
  height: 13px;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.audio-bars i {
  display: block;
  width: 2px;
  height: 4px;
  background: currentColor;
  opacity: 0.62;
  transform-origin: center;
}

.audio-toggle.is-playing .audio-bars i {
  animation: audio-bar 820ms ease-in-out infinite alternate;
}

.audio-toggle.is-playing .audio-bars i:nth-child(2) {
  animation-delay: -310ms;
}

.audio-toggle.is-playing .audio-bars i:nth-child(3) {
  animation-delay: -570ms;
}

@keyframes audio-bar {
  to {
    height: 13px;
    opacity: 1;
  }
}

.fleet-image > img,
.fleet-image > picture > img {
  position: relative;
  z-index: 0;
}

.fleet-image::after {
  z-index: 2;
}

.fleet-shader-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.fleet-shader-canvas.is-active {
  opacity: 1;
}

.kinetic-ready {
  overflow: visible;
}

.kinetic-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.kinetic-word > span {
  display: inline-block;
  will-change: transform;
}

.magnetic-cursor {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.magnetic-cursor span {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(185, 161, 107, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  transform: translate(-50%, -50%) scale(0.82);
  backdrop-filter: blur(3px);
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease),
    background 220ms ease,
    transform 220ms var(--ease);
}

.magnetic-cursor.is-visible {
  opacity: 1;
}

.magnetic-cursor.is-active span {
  width: 42px;
  height: 42px;
  background: rgba(185, 161, 107, 0.1);
  transform: translate(-50%, -50%) scale(1);
}

.has-magnetic-cursor [data-magnetic="true"] {
  cursor: none;
}

@media (min-width: 1100px) {
  #fleet.fleet-pin-enabled {
    display: flex;
    min-height: 100vh;
    padding: 86px 0 42px;
    align-items: center;
    overflow: hidden;
  }

  #fleet.fleet-pin-enabled > .shell {
    width: min(1380px, calc(100% - 46px));
  }

  #fleet.fleet-pin-enabled .section-heading {
    margin-bottom: 22px;
  }

  #fleet.fleet-pin-enabled .section-heading h2 {
    font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  }

  #fleet.fleet-pin-enabled .fleet-card {
    min-height: min(60vh, 610px);
    height: clamp(490px, 60vh, 610px);
  }

  #fleet.fleet-pin-enabled .fleet-controls {
    margin-top: 13px;
  }

  #fleet.fleet-pin-enabled .fleet-availability-note {
    padding-top: 13px;
  }
}

@media (max-width: 1020px) {
  .site-header.is-morphed .nav-wrap {
    width: calc(100% - 22px);
  }

  .audio-toggle {
    width: 100%;
    min-height: 42px;
    padding: 8px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-header.light-header,
  .site-header.is-scrolled:not(.light-header),
  .site-header.is-morphed {
    height: 70px;
  }

  .site-header.light-header + main {
    padding-top: 70px;
  }

  .site-header.light-header .nav-wrap,
  .site-header.is-morphed .nav-wrap {
    width: calc(100% - 18px);
    height: 54px;
    margin-top: 8px;
    padding-inline: 10px;
    border-radius: 12px;
  }

  .site-header.is-morphed .brand-logo {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .magnetic-cursor,
  .fleet-shader-canvas {
    display: none !important;
  }

  .has-magnetic-cursor [data-magnetic="true"] {
    cursor: pointer;
  }

  .audio-toggle.is-playing .audio-bars i {
    animation: none;
  }
}

/* Cinematic homepage hero */
.home-page .hero {
  min-height: max(720px, 100svh);
}

.home-page .hero::after {
  background:
    radial-gradient(circle at 50% 38%, rgba(8, 11, 9, 0.08) 0%, rgba(6, 9, 7, 0.2) 42%, rgba(4, 7, 5, 0.68) 100%),
    linear-gradient(180deg, rgba(3, 6, 4, 0.48) 0%, rgba(5, 8, 6, 0.18) 40%, rgba(4, 7, 5, 0.84) 100%);
}

.home-page .hero-image {
  object-position: center 47%;
  filter: saturate(0.86) contrast(1.04);
}

.hero-sparkles {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparkles canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-page .hero-ambient {
  z-index: 2;
  background:
    radial-gradient(circle at 54% 36%, rgba(220, 194, 132, 0.14), transparent 30%),
    linear-gradient(112deg, transparent 41%, rgba(255, 255, 255, 0.055) 51%, transparent 61%);
  opacity: 0.5;
}

.home-page .hero-content {
  min-height: max(720px, 100svh);
  padding: 108px 0 250px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-page .hero-content .eyebrow {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.72);
}

.home-page .hero-content h1 {
  max-width: 1100px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
}

.home-page .hero-content h1 span:last-child {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
}

.home-page .hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.home-page .hero-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.home-page .hero-booking {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  margin-top: 0;
}

.home-page .hero-booking > .quick-booking {
  padding: 21px 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(8, 12, 10, 0.7);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.32);
  color: white;
  backdrop-filter: blur(22px) saturate(1.08);
}

.home-page .hero-booking .booking-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 4px;
  gap: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.home-page .hero-booking .booking-tab {
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.home-page .hero-booking .booking-tab::after {
  display: none;
}

.home-page .hero-booking .booking-tab:hover {
  color: white;
}

.home-page .hero-booking .booking-tab.active {
  background: #f5f3ee;
  color: #101310;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.16);
}

.home-page .hero-booking .quick-field label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.home-page .hero-booking .quick-field input,
.home-page .hero-booking .quick-field select {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(5, 8, 6, 0.44);
  color: white;
  color-scheme: dark;
}

.home-page .hero-booking .quick-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.home-page .hero-booking .quick-field input:focus,
.home-page .hero-booking .quick-field select:focus {
  border-color: rgba(232, 211, 160, 0.8);
  box-shadow: 0 0 0 3px rgba(185, 161, 107, 0.12);
}

.home-page .hero-booking .quick-field input:focus-visible,
.home-page .hero-booking .quick-field select:focus-visible {
  outline-color: var(--champagne);
}

.home-page .hero-booking .quick-submit {
  min-height: 52px;
  border-color: #f5f3ee;
  border-radius: 999px;
  background: #f5f3ee;
  color: #101310;
}

.hero-booking-meta {
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-page .hero-booking .quick-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
}

.hero-booking-meta a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
}

.home-page .hero-scroll-cue {
  display: none;
}

@media (max-width: 1020px) and (min-width: 721px) {
  .home-page .hero,
  .home-page .hero-content {
    min-height: max(940px, 100svh);
  }

  .home-page .hero-content {
    padding-bottom: 405px;
  }

  .home-page .hero-booking {
    bottom: 24px;
  }

  .home-page .hero-booking .quick-fields {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .hero-scroll-cue {
    bottom: 382px;
  }
}

@media (max-width: 720px) {
  .home-page .hero,
  .home-page .hero-content {
    min-height: max(720px, 100svh);
  }

  .home-page .hero-content {
    padding: 118px 0 98px;
    justify-content: center;
  }

  .home-page .hero-content .eyebrow {
    margin-bottom: 20px;
  }

  .home-page .hero-content h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
    line-height: 0.92;
  }

  .home-page .hero-copy {
    font-size: 0.96rem;
  }

  .home-page .hero-note {
    margin-top: 17px;
  }

  .home-page .hero-booking {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-sparkles {
    display: none;
  }
}

/* Mobile booking and fleet gestures */
@media (max-width: 720px) {
  .home-page .hero {
    min-height: 1340px;
  }

  .home-page .hero-content {
    min-height: 720px;
    padding: 118px 0 70px;
  }

  .home-page .hero-booking {
    display: block;
    bottom: 18px;
  }

  .home-page .hero-booking > .quick-booking {
    padding: 16px;
    border-radius: 16px;
    background: rgba(7, 11, 9, 0.82);
    backdrop-filter: blur(22px) saturate(1.08);
  }

  .home-page .hero-booking .booking-tabs {
    width: 100%;
    margin-bottom: 16px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .home-page .hero-booking .booking-tab {
    min-height: 40px;
    padding: 0 18px;
  }

  .home-page .hero-booking .quick-fields {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .home-page .hero-booking .quick-field input,
  .home-page .hero-booking .quick-field select,
  .home-page .hero-booking .quick-submit {
    min-height: 50px;
  }

  .home-page .hero-booking .quick-submit {
    width: 100%;
    margin-top: 2px;
  }

  .hero-booking-meta {
    margin-top: 12px;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
  }

  .hero-booking-meta a {
    display: inline-block;
  }

  .home-page .mobile-book {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 360ms var(--ease);
  }

  .home-page .mobile-book.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fleet-viewport {
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
  }

  .fleet-viewport.is-dragging {
    cursor: grabbing;
  }

  .fleet-viewport.is-dragging .fleet-track {
    pointer-events: none;
  }

  .fleet-image img {
    pointer-events: none;
    -webkit-user-drag: none;
  }
}

@media (max-width: 390px) {
  .home-page .hero {
    min-height: 1360px;
  }

  .home-page .hero-booking .booking-tab {
    padding-inline: 15px;
  }
}

/* Dedicated fleet catalogue */
.fleet-page-hero {
  position: relative;
  display: flex;
  min-height: min(810px, calc(100svh - 78px));
  overflow: hidden;
  align-items: flex-end;
  background: var(--oak);
  color: white;
}

.fleet-page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 7, 0.88) 0%, rgba(5, 9, 7, 0.58) 43%, rgba(5, 9, 7, 0.08) 76%),
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.72));
  content: "";
}

.fleet-page-hero-image {
  position: absolute;
  inset: 0;
}

.fleet-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 66%;
  filter: saturate(0.86) contrast(1.03);
}

.fleet-page-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(70px, 10vh, 118px);
}

.fleet-page-hero-copy .breadcrumb {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
}

.fleet-page-hero-copy h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.fleet-page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.fleet-intro {
  padding: 110px 0 105px;
}

.fleet-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  align-items: start;
  justify-content: space-between;
  gap: clamp(70px, 12vw, 190px);
}

.fleet-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.fleet-intro-copy {
  padding-top: 41px;
}

.fleet-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.fleet-intro-copy p + p {
  margin-top: 22px;
}

.fleet-detail-list {
  display: grid;
  gap: 24px;
}

.fleet-detail-card {
  min-height: 610px;
  border-radius: 24px;
  box-shadow: 0 20px 65px rgba(13, 25, 19, 0.09);
}

.fleet-detail-card:nth-child(even) {
  grid-template-columns: minmax(430px, 0.68fr) minmax(0, 1.32fr);
}

.fleet-detail-card:nth-child(even) .fleet-image {
  order: 2;
}

.fleet-detail-card .fleet-copy {
  padding: clamp(38px, 4.5vw, 68px);
}

.fleet-detail-card .fleet-copy-main {
  align-self: center;
}

.fleet-detail-card .fleet-description {
  margin-bottom: 25px !important;
}

.fleet-specs {
  display: grid;
  max-width: 420px;
  margin: 0 0 22px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.fleet-specs > div {
  padding: 16px 0;
}

.fleet-specs > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fleet-specs dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-specs dd {
  margin: 0;
  color: white;
  font-size: 0.88rem;
}

.fleet-detail-note {
  max-width: 430px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  line-height: 1.65;
}

.fleet-sourcing {
  padding: 28px 0 120px;
  background: var(--stone);
}

.fleet-sourcing-panel {
  display: grid;
  padding: clamp(45px, 7vw, 100px);
  border-radius: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.65fr);
  gap: clamp(60px, 11vw, 170px);
  background: var(--oak);
  color: white;
}

.fleet-sourcing-panel h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.fleet-sourcing-panel > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.fleet-sourcing-panel > div:last-child > p + p {
  margin-top: 18px;
}

.fleet-request-tags {
  display: flex;
  margin: 34px 0 38px;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-request-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
}

.fleet-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.fleet-assurance-grid article {
  min-height: 270px;
  padding: 30px 28px 30px 0;
  border-bottom: 1px solid var(--line);
}

.fleet-assurance-grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.fleet-assurance-grid span {
  color: var(--champagne-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fleet-assurance-grid h3 {
  margin: 72px 0 14px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 400;
}

.fleet-assurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .fleet-intro-grid,
  .fleet-sourcing-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .fleet-intro-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .fleet-detail-card,
  .fleet-detail-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  }

  .fleet-detail-card:nth-child(even) .fleet-image {
    order: 0;
  }

  .fleet-assurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-assurance-grid article:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .fleet-page-hero {
    min-height: 760px;
  }

  .fleet-page-hero::after {
    background: linear-gradient(180deg, rgba(5, 9, 7, 0.24), rgba(5, 9, 7, 0.92) 68%);
  }

  .fleet-page-hero-image img {
    object-position: 50% 54%;
  }

  .fleet-page-hero-copy {
    padding-bottom: 62px;
  }

  .fleet-page-hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 4.75rem);
  }

  .fleet-intro {
    padding: 78px 0 72px;
  }

  .fleet-detail-list {
    gap: 16px;
  }

  .fleet-detail-card,
  .fleet-detail-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fleet-detail-card .fleet-copy {
    padding: 30px 24px 34px;
  }

  .fleet-detail-card .fleet-copy-main {
    align-self: start;
  }

  .fleet-sourcing {
    padding: 16px 0 82px;
  }

  .fleet-sourcing-panel {
    padding: 38px 24px 42px;
    border-radius: 22px;
  }

  .fleet-assurance-grid {
    grid-template-columns: 1fr;
  }

  .fleet-assurance-grid article,
  .fleet-assurance-grid article + article {
    min-height: 0;
    padding: 25px 0 28px;
    border-left: 0;
  }

  .fleet-assurance-grid h3 {
    margin-top: 34px;
  }
}

/* Awwwards pass: premium surface system */
.home-page .hero-booking > .quick-booking,
.journey-panel,
.fleet-viewport,
.dispatch-manifest,
.proof-ledger-items > div,
.partner-links a {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --spotlight-alpha: 0;
}

.home-page .hero-booking > .quick-booking {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(20, 25, 21, 0.82), rgba(6, 9, 7, 0.78)),
    rgba(8, 12, 10, 0.72);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.home-page .hero-booking > .quick-booking::before,
.journey-panel::before,
.fleet-viewport::before,
.dispatch-manifest::before,
.partner-links a::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(236, 219, 174, calc(var(--spotlight-alpha) * 0.2)), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, calc(var(--spotlight-alpha) * 0.08)), transparent 46%);
  content: "";
  pointer-events: none;
}

.home-page .hero-booking > .quick-booking > *,
.journey-panel > *,
.dispatch-manifest > *,
.partner-links a > * {
  position: relative;
  z-index: 1;
}

.home-page .hero-booking .quick-booking-head {
  margin-bottom: 18px;
  padding-bottom: 17px;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.home-page .hero-booking .quick-booking-head span {
  color: rgba(231, 210, 161, 0.88);
}

.home-page .hero-booking .quick-booking-head strong {
  color: #fffdf8;
}

.home-page .hero-booking .quick-booking-head p {
  color: rgba(255, 255, 255, 0.58);
}

.home-page .hero-booking .quick-fields {
  position: relative;
  z-index: 1;
}

.home-page .hero-booking .quick-field input,
.home-page .hero-booking .quick-field select {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.home-page .hero-booking .quick-field select option {
  background: #101310;
  color: white;
}

.home-page .hero-booking .quick-submit {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.home-page .hero-booking .quick-submit:hover {
  background: #ffffff;
  color: #080c0a;
}

.journey-panel,
.fleet-viewport,
.partner-links a {
  position: relative;
  isolation: isolate;
}

.journey-panel {
  box-shadow:
    0 26px 80px rgba(13, 25, 19, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.fleet-viewport::before {
  z-index: 5;
  mix-blend-mode: screen;
}

.fleet-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.2) 18%, transparent 33%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.26), transparent 23%);
  opacity: 0.32;
  content: "";
  pointer-events: none;
}

.fleet-card.is-active .fleet-image::before {
  animation: fleet-light-breathe 7.5s ease-in-out infinite alternate;
}

@keyframes fleet-light-breathe {
  from {
    opacity: 0.24;
    transform: translateX(-1.5%);
  }

  to {
    opacity: 0.39;
    transform: translateX(1.5%);
  }
}

.proof-ledger-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(135deg, #f1f3ef 0%, #e4e8e1 52%, #dfe5dc 100%);
}

.proof-ledger-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 16, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 19, 16, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.proof-ledger {
  position: relative;
  z-index: 1;
}

.dispatch-manifest {
  position: relative;
  isolation: isolate;
  max-width: 390px;
  margin-top: 38px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 16, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(247, 248, 244, 0.56));
  box-shadow:
    0 24px 70px rgba(22, 31, 25, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(12px);
}

.dispatch-manifest > span {
  display: block;
  margin-bottom: 16px;
  color: var(--champagne-ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dispatch-manifest dl {
  margin: 0;
}

.dispatch-manifest dl > div {
  display: grid;
  padding: 11px 0;
  border-top: 1px solid rgba(16, 19, 16, 0.09);
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
}

.dispatch-manifest dt,
.dispatch-manifest dd {
  margin: 0;
}

.dispatch-manifest dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispatch-manifest dd {
  color: var(--ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.08rem;
}

.proof-ledger-items > div {
  position: relative;
  overflow: hidden;
  transition: padding-left 260ms var(--ease), background 260ms ease;
}

.proof-ledger-items > div::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(168, 143, 89, calc(var(--spotlight-alpha) * 0.16)), transparent 36%);
  content: "";
  pointer-events: none;
}

.proof-ledger-items > div:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.proof-ledger-items > div > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .dispatch-manifest {
    max-width: none;
  }

  .proof-ledger-items > div:hover {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .home-page .hero-booking .quick-booking-head {
    display: none;
  }

  .proof-ledger-section {
    padding: 86px 0;
  }

  .dispatch-manifest {
    margin-top: 26px;
    padding: 18px;
    border-radius: 16px;
  }
}

/* Journey selector fit pass */
@media (min-width: 1101px) {
  .journey-selector {
    grid-template-columns: minmax(176px, 0.2fr) minmax(0, 1fr);
  }

  .journey-tab {
    min-height: 86px;
    padding-inline: 24px;
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 0.68rem;
  }

  .journey-tab.is-active {
    padding-left: 30px;
  }

  .journey-panel {
    grid-template-columns: minmax(0, 1.28fr) minmax(390px, 0.72fr);
  }

  .journey-copy {
    min-width: 0;
    padding: clamp(38px, 3.9vw, 58px);
    overflow: hidden;
  }

  .journey-copy h3 {
    max-width: 100%;
    font-size: clamp(2.45rem, 3.05vw, 3.65rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .journey-copy > p:not(.service-kicker) {
    max-width: 440px;
  }

  .journey-visual img {
    object-position: center center;
  }

  #journey-airport .journey-visual img,
  #journey-corporate .journey-visual img {
    object-position: 68% center;
  }

  #journey-hourly .journey-visual img {
    object-position: 52% center;
  }

  #journey-aviation .journey-visual img {
    object-position: 74% center;
  }

  #journey-city .journey-visual img {
    object-position: 62% center;
  }
}

@media (min-width: 1500px) {
  .journey-copy h3 {
    font-size: clamp(2.55rem, 2.55vw, 3.35rem);
  }
}

.bo-picker-wrap { position: relative; }

.bo-picker-input {
  color: transparent !important;
  caret-color: transparent;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
}

.bo-picker-input::-webkit-datetime-edit,
.bo-picker-input::-webkit-datetime-edit-fields-wrapper,
.bo-picker-input::-webkit-datetime-edit-text,
.bo-picker-input::-webkit-datetime-edit-month-field,
.bo-picker-input::-webkit-datetime-edit-day-field,
.bo-picker-input::-webkit-datetime-edit-year-field,
.bo-picker-input::-webkit-datetime-edit-hour-field,
.bo-picker-input::-webkit-datetime-edit-minute-field,
.bo-picker-input::-webkit-datetime-edit-ampm-field { color: transparent; }

.bo-picker-input::-webkit-calendar-picker-indicator,
.bo-picker-input::-webkit-clear-button { display: none; }

.bo-picker-input::selection { background: transparent; }

.bo-picker-display {
  position: absolute; right: 13px; bottom: 0; left: 13px;
  display: flex; height: 52px; align-items: center; overflow: hidden;
  color: var(--ink); font-size: 0.94rem; line-height: 1;
  pointer-events: none; white-space: nowrap;
}

.bo-picker-display.is-empty { color: var(--muted); }
.booking-wrap .bo-picker-display { height: 54px; }
.home-page .hero-booking .bo-picker-display { height: 52px; color: white; }
.home-page .hero-booking .bo-picker-display.is-empty { color: rgba(255, 255, 255, 0.48); }

.bo-picker,
.bo-picker-scrim { z-index: 160; }

.bo-picker[hidden],
.bo-picker-scrim[hidden] { display: none !important; }

.bo-picker {
  position: absolute; width: min(336px, calc(100vw - 24px)); padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px;
  background: #101310; color: #f8f5ec; animation: bo-picker-in 160ms var(--ease);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.bo-picker-head {
  display: flex; min-height: 34px; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 10px;
}

.bo-picker-head strong,
.bo-picker-time-head {
  color: #f7edd3; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
}

.bo-picker-nav,
.bo-picker-day,
.bo-time-option {
  border: 1px solid transparent; background: transparent; color: inherit;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.bo-picker-nav {
  min-width: 54px; min-height: 32px; border-color: rgba(255, 255, 255, 0.13);
  border-radius: 999px; color: rgba(255, 255, 255, 0.76); font-size: 0.62rem;
  font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase;
}

.bo-picker-week,
.bo-picker-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}

.bo-picker-week {
  margin-bottom: 6px; color: rgba(255, 255, 255, 0.46); font-size: 0.58rem;
  font-weight: 800; letter-spacing: 0.1em; text-align: center; text-transform: uppercase;
}

.bo-picker-grid { display: grid; gap: 4px; }

.bo-picker-day,
.bo-time-option {
  min-height: 38px; border-radius: 8px; color: rgba(255, 255, 255, 0.84);
}

.bo-picker-day { font-size: 0.85rem; }

.bo-time-option {
  padding-inline: 12px; font-size: 0.88rem; text-align: left;
}

.bo-picker-day:hover:not(:disabled),
.bo-picker-nav:hover,
.bo-time-option:hover {
  border-color: rgba(232, 211, 160, 0.38); background: rgba(255, 255, 255, 0.08);
}

.bo-picker-day.is-today:not(.is-selected) { border-color: rgba(232, 211, 160, 0.72); }

.bo-picker-day.is-selected,
.bo-time-option[aria-selected="true"] {
  border-color: var(--champagne); background: var(--champagne); color: #101310;
}

.bo-picker-day:disabled { color: rgba(255, 255, 255, 0.22); cursor: default; }
.bo-picker-day.is-blank { opacity: 0; }

.bo-picker-day:focus-visible,
.bo-picker-nav:focus-visible,
.bo-time-option:focus-visible {
  outline: 2px solid var(--champagne); outline-offset: 2px;
}

.bo-time-list {
  display: grid; max-height: 310px; gap: 4px; overflow-y: auto; padding-right: 3px;
  scrollbar-color: rgba(232, 211, 160, 0.5) rgba(255, 255, 255, 0.08);
}

@keyframes bo-picker-in {
  from { opacity: 0; transform: translateY(6px); }
}

@media (max-width: 720px) {
  .home-page .hero-booking .bo-picker-display { height: 50px; }

  .bo-picker-scrim.is-sheet {
    position: fixed; inset: 0; display: block; background: rgba(5, 8, 6, 0.56);
  }

  .bo-picker.is-sheet {
    position: fixed; right: 0; bottom: 0; left: 0; width: auto; max-height: min(78svh, 640px);
    overflow: auto; padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    border-width: 1px 0 0; border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  }

  .bo-picker-day,
  .bo-time-option { min-height: 42px; }

  .bo-time-list { max-height: 54svh; }
}

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

  .bo-picker-nav,
  .bo-picker-day,
  .bo-time-option { transition: none; }
}
