:root {
  color-scheme: dark;
  --black: #030303;
  --ink: #080806;
  --charcoal: #11110f;
  --panel: #171612;
  --panel-soft: #201e18;
  --gold: #d7a74e;
  --gold-bright: #f1c36a;
  --text: #f8f7f2;
  --muted: #b9b4aa;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --content: min(1180px, calc(100vw - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: #080806;
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-rail {
  position: fixed;
  right: 18px;
  top: 92px;
  z-index: 50;
  display: flex;
  gap: 8px;
}

.contact-rail a {
  display: grid;
  min-width: 46px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 167, 78, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--content);
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #030303;
  box-shadow: 0 0 0 1px rgba(215, 167, 78, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer a:hover,
.booking-contact a:hover,
.text-action:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.nav-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-action,
.button-primary {
  background: var(--gold);
  color: #0b0905;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.18) 0%, transparent 32%),
    linear-gradient(108deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
    linear-gradient(150deg, #050505 0%, #15130f 48%, #030303 100%);
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(0.95) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, #030303 0%, rgba(3, 3, 3, 0.1) 32%, rgba(3, 3, 3, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 56px 0 48px;
}

.hero h1,
.section-heading h2,
.modal-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 8vw, 114px);
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #e6e0d4;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 46px 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 140px;
  border-left: 1px solid rgba(215, 167, 78, 0.55);
  padding-left: 14px;
}

.hero-proof dt {
  color: var(--gold-bright);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.fleet-moments {
  padding: 24px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #030303 0%, #080806 100%);
}

.fleet-moments-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  grid-template-rows: repeat(2, minmax(140px, 1fr));
  gap: 14px;
}

.fleet-moment {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #0b0b09;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 14px;
}

.fleet-moment-large {
  grid-row: 1 / span 2;
}

.fleet-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 54px);
  opacity: 0.62;
}

.fleet-moment > * {
  position: relative;
}

.fleet-moment span,
.experience-photo span,
.fleet-authentic-panel figcaption span,
.fleet-brand-panel span,
.fleet-card-photo figcaption,
.fleet-card-visual span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-moment h2,
.experience-photo h3,
.fleet-authentic-panel strong,
.fleet-brand-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

.fleet-moment h2 {
  max-width: 560px;
  font-size: clamp(28px, 4.2vw, 54px);
}

.fleet-moment p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.experience-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #080806 0%, #11100d 44%, #050505 100%);
}

.experience-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: center;
}

.experience-copy > p {
  max-width: 520px;
  margin: 0;
  color: #dfd6c4;
  font-size: 17px;
  line-height: 1.75;
}

.experience-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.experience-points li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px;
  border-left: 2px solid rgba(215, 167, 78, 0.72);
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(128px, 12vw, 184px);
  gap: 12px;
}

.experience-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #090908;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.experience-photo-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.experience-photo-wide {
  grid-column: span 2;
}

.experience-photo {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 20px;
}

.experience-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(215, 167, 78, 0.16), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 38px);
  pointer-events: none;
}

.experience-photo > * {
  position: relative;
}

.experience-photo h3 {
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 30px);
}

.service-band {
  background: var(--black);
}

.section-heading {
  width: var(--content);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  width: auto;
  margin: 0 0 24px;
  text-align: left;
}

.section-heading p,
.modal-label {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.05;
}

.service-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.section-action {
  width: var(--content);
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

.service-card {
  min-height: 238px;
  display: grid;
  align-content: end;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  color: var(--text);
  padding: 24px;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.service-card:hover,
.service-card.is-selected {
  border-color: rgba(215, 167, 78, 0.7);
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(215, 167, 78, 0.18), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.service-card span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.service-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.service-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fleet-band {
  background: linear-gradient(180deg, #080806 0%, #12110e 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fleet-layout,
.booking-layout,
.footer {
  width: var(--content);
  margin: 0 auto;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 44px;
  align-items: center;
}

.fleet-copy > p,
.booking-intro > p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.fleet-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-page-link {
  margin-top: 24px;
}

.fleet-list article {
  background: rgba(0, 0, 0, 0.42);
  padding: 22px;
}

.fleet-list h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.fleet-list p {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.text-action {
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-image {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fleet-brand-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.2) 0%, transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 52px),
    #090908;
}

.fleet-brand-panel h3 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 56px);
}

.fleet-brand-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.fleet-authentic-panel {
  position: relative;
  min-height: 420px;
  background: #050505;
}

.fleet-authentic-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
}

.fleet-authentic-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 62%);
}

.fleet-authentic-panel figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 10px;
}

.fleet-authentic-panel strong {
  max-width: 520px;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.fleet-authentic-panel small {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.fleet-page-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.fleet-page-hero-media,
.fleet-page-hero-shade {
  position: absolute;
  inset: 0;
}

.fleet-page-hero-media {
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.17) 0%, transparent 34%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
    linear-gradient(155deg, #050505 0%, #171510 52%, #030303 100%);
}

.fleet-page-hero-media-authentic {
  background-image:
    linear-gradient(135deg, rgba(215, 167, 78, 0.12) 0%, transparent 36%),
    url("assets/client-fleet/fareast-alphard-front-lineup.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.06);
}

.fleet-page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.26) 78%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(0deg, #030303 0%, rgba(3, 3, 3, 0.22) 46%, rgba(3, 3, 3, 0.18) 100%);
}

.fleet-page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 54px 0 48px;
}

.fleet-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.6vw, 102px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.fleet-page-hero p {
  max-width: 690px;
  margin: 26px 0 0;
  color: #e6e0d4;
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.55;
}

.fleet-page-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 44px 0 0;
  padding: 0;
}

.fleet-page-proof div {
  min-width: 150px;
  border-left: 1px solid rgba(215, 167, 78, 0.55);
  padding-left: 14px;
}

.fleet-page-proof dt {
  color: var(--gold-bright);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fleet-page-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-authentic-strip {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  background: #060605;
}

.fleet-authentic-strip-heading,
.fleet-authentic-strip-grid {
  width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

.fleet-authentic-strip-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 20px;
}

.fleet-authentic-strip-heading p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-authentic-strip-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.fleet-authentic-strip-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.06fr 0.9fr 0.82fr 0.96fr;
  gap: 14px;
}

.fleet-authentic-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #0b0b09;
}

.fleet-authentic-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.fleet-authentic-strip figure:first-child img {
  object-position: center 44%;
}

.fleet-authentic-strip figure:nth-child(3) img {
  object-position: center 46%;
}

.fleet-authentic-strip figure:nth-child(4) img {
  object-position: center 34%;
}

.fleet-authentic-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.04) 62%);
}

.fleet-authentic-strip figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-cabin-band {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #0a0907 0%, #12110e 46%, #050505 100%);
}

.fleet-cabin-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.fleet-cabin-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-right: 26px;
}

.fleet-cabin-copy p:first-child {
  margin: 0;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-cabin-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.7vw, 64px);
  font-weight: 400;
  line-height: 1.03;
}

.fleet-cabin-copy p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.fleet-cabin-feature,
.fleet-cabin-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #080806;
}

.fleet-cabin-feature {
  min-height: 520px;
  grid-row: span 2;
}

.fleet-cabin-feature img,
.fleet-cabin-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.fleet-cabin-feature img {
  min-height: 520px;
}

.fleet-cabin-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fleet-cabin-grid figure {
  min-height: 220px;
}

.fleet-cabin-grid img {
  min-height: 220px;
}

.fleet-cabin-grid figure:nth-child(2) img {
  object-position: center 44%;
}

.fleet-cabin-feature::after,
.fleet-cabin-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.04) 62%);
}

.fleet-cabin-feature figcaption,
.fleet-cabin-grid figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-catalog-band {
  background:
    linear-gradient(180deg, #080806 0%, #11110f 44%, #060605 100%);
}

.fleet-catalog-heading,
.fleet-toolbar,
.fleet-result-count,
.fleet-catalog,
.fleet-production-note {
  width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

.fleet-catalog-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.fleet-catalog-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.7;
}

.fleet-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.fleet-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-filter {
  min-height: 38px;
  border: 1px solid rgba(215, 167, 78, 0.32);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--muted);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-filter:hover,
.fleet-filter.is-active {
  border-color: rgba(241, 195, 106, 0.84);
  background: rgba(215, 167, 78, 0.18);
  color: var(--gold-bright);
}

.fleet-search {
  min-width: min(340px, 100%);
}

.fleet-search span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet-search input {
  min-height: 42px;
}

.fleet-result-count {
  margin-top: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.fleet-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.fleet-card-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 44px),
    #0b0b09;
}

.fleet-card-visual span {
  min-width: 86px;
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 167, 78, 0.46);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
}

.fleet-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #080806;
}

.fleet-card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.fleet-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.06) 52%, transparent 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 58%);
}

.fleet-card-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(215, 167, 78, 0.38);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.54);
}

.fleet-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.fleet-card-label {
  margin: 0;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.fleet-card p:not(.fleet-card-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.fleet-specs {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.fleet-specs div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  background: rgba(0, 0, 0, 0.28);
  padding: 10px;
}

.fleet-specs dt {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-specs dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.fleet-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fleet-card-actions .button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 10px;
}

.fleet-production-note {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(215, 167, 78, 0.34);
  padding: 42px 0 58px;
}

.fleet-production-note h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
}

.fleet-production-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-page-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.services-page-hero-media,
.services-page-hero-shade {
  position: absolute;
  inset: 0;
}

.services-page-hero-media {
  background-image: url("assets/services/airport-pickups.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.services-page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 46%, rgba(0, 0, 0, 0.28) 82%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, #030303 0%, rgba(3, 3, 3, 0.26) 48%, rgba(3, 3, 3, 0.18) 100%);
}

.services-page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 54px 0 48px;
}

.services-page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7.2vw, 98px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.services-page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #e6e0d4;
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.55;
}

.services-catalog-band {
  background:
    linear-gradient(180deg, #080806 0%, #11110f 48%, #060605 100%);
}

.services-catalog {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-feature-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.service-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: #0b0b09;
}

.service-feature-card div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.service-feature-card span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-feature-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-feature-card .button {
  width: fit-content;
  min-height: 42px;
  padding-inline: 16px;
  font-size: 10px;
}

.content-page-hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.content-page-hero-media,
.content-page-hero-shade {
  position: absolute;
  inset: 0;
}

.content-page-hero-media {
  background:
    linear-gradient(135deg, rgba(215, 167, 78, 0.18) 0%, transparent 34%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px),
    linear-gradient(155deg, #050505 0%, #171510 52%, #030303 100%);
}

.about-page-hero-media {
  background-position: center;
}

.privacy-page-hero-media {
  background-position: center;
}

.complaint-page-hero-media {
  background-position: center;
}

.tracking-page-hero-media {
  background-position: center;
}

.admin-page-hero-media {
  background-position: center;
}

.content-page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 46%, rgba(0, 0, 0, 0.28) 82%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, #030303 0%, rgba(3, 3, 3, 0.22) 46%, rgba(3, 3, 3, 0.18) 100%);
}

.content-page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 54px 0 48px;
}

.content-page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7.2vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.content-page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #e6e0d4;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.policy-effective {
  color: var(--gold-bright) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-story-band,
.policy-band {
  background:
    linear-gradient(180deg, #080806 0%, #11110f 48%, #060605 100%);
}

.about-story-layout,
.standards-layout,
.policy-layout {
  width: var(--content);
  margin: 0 auto;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 46px;
  align-items: start;
}

.about-story-layout p,
.process-grid p,
.standards-list p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.7;
}

.about-story-layout > div > p {
  margin: 0 0 18px;
}

.about-snapshot {
  border: 1px solid rgba(215, 167, 78, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.about-snapshot dl {
  margin: 0;
}

.about-snapshot div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.about-snapshot div:last-child {
  border-bottom: 0;
}

.about-snapshot dt {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-snapshot dd {
  margin: 10px 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

.process-band {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.standards-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  padding: 24px;
}

.process-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-grid h3,
.standards-list h3,
.policy-section h3,
.policy-nav h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.process-grid h3,
.standards-list h3 {
  font-size: 28px;
  line-height: 1.1;
}

.process-grid p,
.standards-list p {
  margin: 14px 0 0;
}

.standards-band {
  background:
    linear-gradient(145deg, rgba(215, 167, 78, 0.08), transparent 42%),
    #050505;
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: start;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 38px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.policy-nav h2 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 22px;
}

.policy-nav a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.policy-nav a:hover,
.policy-content a:hover {
  color: var(--gold-bright);
}

.policy-content {
  min-width: 0;
}

.policy-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
  border-top: 0;
}

.policy-section h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 36px);
}

.policy-section p {
  margin: 0 0 16px;
}

.policy-section ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.policy-content a {
  color: var(--gold-bright);
}

.policy-note {
  border: 1px solid rgba(215, 167, 78, 0.36);
  border-radius: var(--radius);
  background: rgba(215, 167, 78, 0.08);
  padding: 24px;
}

.booking-band {
  background:
    linear-gradient(145deg, rgba(215, 167, 78, 0.08), transparent 40%),
    #050505;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: start;
}

.booking-contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.booking-contact a {
  width: fit-content;
  color: var(--gold-bright);
  font-size: 14px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 28px;
  box-shadow: var(--shadow);
}

.booking-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-actions.full {
  grid-column: 1 / -1;
}

label {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.56);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(241, 195, 106, 0.82);
  box-shadow: 0 0 0 3px rgba(215, 167, 78, 0.14);
}

.form-actions,
.handoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: #e6e0d4;
  font-size: 13px;
  line-height: 1.55;
}

.booking-status:empty {
  display: none;
}

.handoff-panel {
  width: var(--content);
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(215, 167, 78, 0.42);
  border-radius: var(--radius);
  background: rgba(215, 167, 78, 0.1);
  padding: 22px;
}

.handoff-panel[hidden] {
  display: none;
}

.handoff-panel h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

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

.tracking-card {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.tracking-card[hidden] {
  display: none;
}

.tracking-card div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  background: rgba(0, 0, 0, 0.26);
  padding: 12px;
}

.tracking-card dt {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-card dd {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.admin-band {
  background:
    linear-gradient(145deg, rgba(215, 167, 78, 0.08), transparent 42%),
    #050505;
}

.admin-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.admin-login {
  max-width: 620px;
}

.admin-dashboard {
  display: grid;
  gap: 24px;
}

.admin-dashboard[hidden] {
  display: none;
}

.admin-dashboard-head,
.admin-stat-grid,
.admin-table-section {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.admin-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.admin-dashboard-head h2,
.admin-table-section h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.admin-dashboard-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.admin-stat-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.admin-stat-grid article:last-child {
  border-right: 0;
}

.admin-stat-grid span {
  color: var(--gold-bright);
  font-size: 42px;
  font-weight: 700;
}

.admin-stat-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table-section {
  padding: 24px;
}

.admin-table-section h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table-section table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table-section th,
.admin-table-section td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.admin-table-section th {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table-section td {
  color: var(--muted);
  font-size: 14px;
}

.admin-status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(215, 167, 78, 0.42);
  border-radius: 999px;
  color: var(--gold-bright);
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 42px;
  border-top: 1px solid var(--line);
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 16px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.74);
  padding: 18px;
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #080806;
  box-shadow: var(--shadow);
  padding: 28px;
}

.modal-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 8px 10px;
  font-size: 12px;
}

.modal-panel h2 {
  margin-bottom: 14px;
  font-size: 38px;
}

.modal-panel p:not(.modal-label),
.modal-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.modal-panel ul {
  margin: 20px 0 24px;
  padding-left: 20px;
}

@media (max-width: 860px) {
  .contact-rail {
    right: 12px;
    top: 84px;
    bottom: auto;
  }

  .site-header {
    top: 0;
  }

  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-action {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-content {
    padding-top: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-proof {
    gap: 16px;
  }

  .fleet-moments {
    padding: 18px 0 42px;
  }

  .fleet-moments-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .fleet-moment,
  .fleet-moment-large {
    grid-row: auto;
    min-height: 0;
  }

  .fleet-moment img {
    aspect-ratio: 16 / 9;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .experience-copy > p {
    max-width: none;
  }

  .experience-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(148px, 40vw, 260px);
  }

  .experience-photo-feature {
    grid-column: span 2;
    grid-row: span 1;
  }

  .experience-photo-wide {
    grid-column: span 2;
  }

  .service-grid,
  .services-catalog,
  .service-feature-card,
  .fleet-layout,
  .fleet-cabin-layout,
  .fleet-catalog-heading,
  .fleet-authentic-strip-heading,
  .about-story-layout,
  .process-grid,
  .standards-layout,
  .standards-list,
  .policy-layout,
  .booking-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-page-hero,
  .fleet-page-hero,
  .content-page-hero {
    min-height: 64svh;
  }

  .services-page-hero-content,
  .fleet-page-hero-content,
  .content-page-hero-content {
    padding-top: 42px;
  }

  .policy-nav {
    position: static;
  }

  .service-feature-card img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .fleet-toolbar,
  .fleet-production-note {
    align-items: stretch;
    flex-direction: column;
  }

  .fleet-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fleet-cabin-copy {
    padding-right: 0;
  }

  .fleet-cabin-feature,
  .fleet-cabin-grid {
    grid-column: auto;
  }

  .fleet-cabin-feature {
    grid-row: auto;
    min-height: 380px;
  }

  .fleet-cabin-feature img {
    min-height: 380px;
  }

  .fleet-layout {
    gap: 30px;
  }

  .fleet-authentic-panel,
  .fleet-authentic-panel img {
    min-height: 340px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .handoff-panel {
    flex-direction: column;
  }

  .tracking-card div {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-head,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-stat-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-stat-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --content: min(100vw - 22px, 1180px);
  }

  .brand {
    font-size: 15px;
  }

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

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .section {
    padding: 58px 0;
  }

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

  .experience-points li {
    min-height: 42px;
    font-size: 12px;
  }

  .experience-gallery {
    gap: 9px;
    grid-auto-rows: clamp(132px, 46vw, 210px);
  }

  .services-page-hero h1,
  .fleet-page-hero h1,
  .content-page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .service-feature-card div {
    padding: 22px;
  }

  .service-feature-card img {
    min-height: 220px;
  }

  .fleet-authentic-panel,
  .fleet-authentic-panel img {
    min-height: 300px;
  }

  .fleet-authentic-panel figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .form-actions .button,
  .handoff-actions .button,
  .hero-actions .button,
  .fleet-card-actions .button,
  .fleet-production-note .button {
    width: 100%;
  }

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

  .fleet-authentic-strip {
    padding: 38px 0;
  }

  .fleet-authentic-strip figure,
  .fleet-authentic-strip img {
    min-height: 220px;
  }

  .fleet-cabin-band {
    padding: 44px 0;
  }

  .fleet-cabin-feature,
  .fleet-cabin-feature img {
    min-height: 300px;
  }

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

  .fleet-cabin-grid figure,
  .fleet-cabin-grid img {
    min-height: 210px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
