/* =========================================================================
   BLUE BIRD CABS MALTA — Design System
   Brand: #3954A5 (bird blue) · #F8BC13 (gold) — sampled from the logo
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --blue:        #3954A5;
  --blue-lift:   #5471C9;
  --blue-deep:   #2A3F7E;
  --blue-tint:   #EDF1FA;
  --gold:        #F8BC13;
  --gold-lift:   #FFD24D;
  --gold-deep:   #C08C05;

  /* Neutrals */
  --ink:         #080C18;
  --navy:        #0C1225;
  --navy-2:      #121A35;
  --navy-3:      #1B2647;
  --paper:       #FFFFFF;
  --bone:        #F6F4EF;
  --bone-2:      #EDEAE2;
  --muted:       #6B7385;
  --muted-dark:  rgba(255, 255, 255, .62);

  /* Lines */
  --line-light:  rgba(255, 255, 255, .12);
  --line-dark:   rgba(8, 12, 24, .10);

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --maxw: 1280px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(8, 12, 24, .05), 0 4px 12px rgba(8, 12, 24, .05);
  --shadow-md: 0 4px 12px rgba(8, 12, 24, .06), 0 18px 40px rgba(8, 12, 24, .09);
  --shadow-lg: 0 8px 24px rgba(8, 12, 24, .08), 0 32px 72px rgba(8, 12, 24, .16);
  --shadow-gold: 0 10px 30px rgba(248, 188, 19, .28);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--ink); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.022em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

.d1 { font-size: clamp(2.75rem, 7.2vw, 5.6rem); line-height: 1.02; letter-spacing: -.032em; }
.d2 { font-size: clamp(2.15rem, 4.6vw, 3.75rem); letter-spacing: -.028em; }
.d3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); letter-spacing: -.022em; }
.d4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -.016em; }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}
.on-dark .lede, .dark .lede { color: var(--muted-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.dark .eyebrow { color: var(--gold); }
.eyebrow.no-rule::before { display: none; }

.serif-italic { font-style: italic; font-variation-settings: "SOFT" 20, "WONK" 1; }
.gold-text { color: var(--gold); }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 940px; }

section { position: relative; }
.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

.dark { background: var(--navy); color: #fff; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.bone { background: var(--bone); }

/* Grain overlay for dark panels */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .d2 { margin-top: 1.1rem; }
.section-head .lede { margin-top: 1.25rem; }

.section-head.split {
  max-width: none;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section-head.split { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
  .section-head.split .lede { margin-top: 0; padding-bottom: .4rem; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.75rem;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .3s var(--ease-soft), color .3s var(--ease-soft), border-color .3s var(--ease-soft);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover { box-shadow: none; border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}
.btn-ghost-light:hover { box-shadow: none; background: #fff; color: var(--ink); border-color: #fff; }

.btn-ink { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn-ink:hover { box-shadow: 0 12px 32px rgba(8, 12, 24, .28); }

.btn-sm { padding: .72rem 1.25rem; font-size: .74rem; }
.btn-block { width: 100%; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size .5s var(--ease), color .3s;
}
.arrow-link:hover { background-size: 100% 2px; }
.arrow-link svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.dark .arrow-link { color: #fff; }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 12, 24, .62), rgba(8, 12, 24, 0));
  opacity: 1;
  transition: opacity .5s var(--ease-soft);
  pointer-events: none;
}
.site-header.is-stuck {
  background: rgba(8, 12, 24, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-light);
}
.site-header.is-stuck::before { opacity: 0; }

/* Solid header variant for interior pages without a dark hero */
.site-header.solid {
  position: sticky;
  background: rgba(8, 12, 24, .92);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
}

.topbar {
  display: none;
  border-bottom: 1px solid var(--line-light);
  font-size: .76rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .74);
}
@media (min-width: 1060px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 42px;
}
.topbar a { transition: color .3s; }
.topbar a:hover { color: var(--gold); }
.topbar-set { display: flex; align-items: center; gap: 1.6rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .5rem; }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold); flex: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}
@media (min-width: 1060px) { .nav { height: 84px; } }

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 38px; width: auto; }
@media (min-width: 1060px) { .brand img { height: 46px; } }

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.1rem);
}
@media (min-width: 1060px) { .nav-links { display: flex; } }
.nav-links a {
  position: relative;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .86);
  padding-block: .4rem;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .btn { display: none; }
@media (min-width: 720px) { .nav-actions .btn { display: inline-flex; } }

/* Burger */
.burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  flex: none;
}
@media (min-width: 1060px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  padding: 120px var(--gutter) 3rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .55s var(--ease), visibility .45s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer ul { display: grid; gap: .25rem; }
.drawer li { border-bottom: 1px solid var(--line-light); }
.drawer a {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: 1rem 0;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -.02em;
  color: #fff;
}
.drawer a .idx {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
}
.drawer-foot { margin-top: 2.5rem; display: grid; gap: .9rem; }
.drawer-foot .btn { width: 100%; }
.drawer-contact { display: grid; gap: .5rem; margin-top: 1.75rem; font-size: .9rem; color: rgba(255, 255, 255, .7); }
.drawer-contact a:hover { color: var(--gold); }

body.nav-open { overflow: hidden; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  animation: heroDrift 22s var(--ease-soft) forwards;
}
@keyframes heroDrift {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 12, 24, .96) 2%, rgba(8, 12, 24, .72) 32%, rgba(8, 12, 24, .28) 62%, rgba(8, 12, 24, .55) 100%),
    linear-gradient(to right, rgba(8, 12, 24, .78), rgba(8, 12, 24, .12) 62%);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); }
}

.hero-copy { color: #fff; max-width: 42ch; }
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy .d1 { margin-top: 1.4rem; color: #fff; }
.hero-copy p {
  margin-top: 1.5rem;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 48ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }

/* Quote card */
.quote-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-radius: 20px;
  padding: 1.6rem;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.quote-card h2 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-card .qc-sub { font-size: .84rem; color: rgba(255, 255, 255, .62); margin-top: .35rem; }
.qc-form { display: grid; gap: .7rem; margin-top: 1.25rem; }
.qc-row { display: grid; gap: .7rem; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .35rem; }
.field label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 12, 24, .45);
  color: #fff;
  font-size: .9rem;
  transition: border-color .3s, background-color .3s;
}
.field input::placeholder { color: rgba(255, 255, 255, .38); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(8, 12, 24, .68);
}
.field select option { background: var(--navy); color: #fff; }
.qc-note { font-size: .72rem; color: rgba(255, 255, 255, .48); margin-top: .3rem; text-align: center; }

/* Hero stats strip */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 760px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -.02em;
}
.stat .num em { font-style: normal; color: var(--gold); }
.stat .lbl {
  margin-top: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ---------- 8. Marquee ---------- */
.marquee {
  background: var(--gold);
  color: var(--ink);
  padding-block: .95rem;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding-inline: 1.6rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(8, 12, 24, .45);
  margin-left: .8rem;
}

/* ---------- 9. Service cards ---------- */
.svc-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding: 1.75rem;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-img { position: absolute; inset: 0; z-index: -2; }
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc:hover .svc-img img { transform: scale(1.07); }
.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 24, .95) 8%, rgba(8, 12, 24, .62) 45%, rgba(8, 12, 24, .18) 100%);
  transition: opacity .6s;
}
.svc-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
}
.svc-body { margin-top: auto; }
.svc-body h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); color: #fff; }
.svc-body p {
  margin-top: .75rem;
  font-size: .93rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .74);
  max-width: 34ch;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }
.tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .34rem .7rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .8);
}
.svc .arrow-link { margin-top: 1.4rem; }

/* ---------- 10. Feature split ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split.reverse > *:first-child { order: 2; }
}

.figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.figure.tall img { aspect-ratio: 3 / 4; }
.figure.wide img { aspect-ratio: 16 / 10; }

.figure-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  background: rgba(8, 12, 24, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}
.figure-badge .fb-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  flex: none;
}
.figure-badge .fb-icon svg { width: 18px; height: 18px; }
.figure-badge strong { display: block; font-size: .92rem; font-weight: 700; }
.figure-badge span { font-size: .78rem; color: rgba(255, 255, 255, .66); }

/* Checklist */
.checks { display: grid; gap: 1.1rem; margin-top: 2rem; }
.check { display: flex; gap: .9rem; align-items: flex-start; }
.check-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  flex: none;
  margin-top: 2px;
}
.dark .check-mark { background: rgba(84, 113, 201, .22); color: var(--gold); }
.check-mark svg { width: 13px; height: 13px; }
.check strong { display: block; font-size: .98rem; font-weight: 700; }
.check p { font-size: .9rem; color: var(--muted); margin-top: .2rem; }
.dark .check p { color: var(--muted-dark); }

/* ---------- 11. Fleet ---------- */
.fleet-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.fleet-tab {
  padding: .62rem 1.15rem;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  transition: all .35s var(--ease-soft);
}
.fleet-tab:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
.fleet-tab.is-active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.fleet-panel { display: none; }
.fleet-panel.is-active { display: block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.fleet-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .fleet-layout { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); } }

.fleet-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--navy-2);
}
.fleet-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.spec-list {
  display: grid;
  gap: 0;
  margin-top: 1.75rem;
  border-top: 1px solid var(--line-light);
}
.spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-light);
}
.spec dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .52);
}
.spec dd { font-size: .96rem; font-weight: 600; color: #fff; text-align: right; }
.spec dd .gold-text { font-family: var(--display); font-size: 1.15rem; }

/* ---------- 12. Destinations ---------- */
.dest-grid {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }

.dest {
  background: var(--paper);
  padding: 1.5rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background-color .4s var(--ease-soft);
}
.dest:hover { background: var(--bone); }
.dest-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.dest h3 { font-size: 1.22rem; }
.dest .time {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.dest p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ---------- 13. Steps ---------- */
.steps { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 2.5rem; border-top: 1px solid var(--line-light); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.1rem;
  left: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
}
.step h3 { font-size: 1.35rem; color: #fff; }
.step p { margin-top: .65rem; font-size: .92rem; color: rgba(255, 255, 255, .66); line-height: 1.6; }

/* ---------- 14. Standards / values ---------- */
.value-grid { display: grid; gap: 1px; background: var(--line-dark); grid-template-columns: 1fr; }
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }
.value { background: var(--bone); padding: 2rem 1.6rem; }
.value-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--blue);
  border: 1px solid var(--line-dark);
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 20px; height: 20px; }
.value h3 { font-size: 1.18rem; }
.value p { margin-top: .55rem; font-size: .89rem; color: var(--muted); line-height: 1.6; }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 45%, #43619B 100%);
  color: #fff;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 188, 19, .35), transparent 62%);
  z-index: -1;
}
.cta-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: minmax(0, 1fr) auto; } }
.cta-inner .d2 { color: #fff; }
.cta-inner p { margin-top: 1rem; color: rgba(255, 255, 255, .82); max-width: 50ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- 16. FAQ ---------- */
.faq { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 500;
  letter-spacing: -.015em;
  transition: color .3s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  flex: none;
  transition: background-color .4s var(--ease-soft), border-color .4s, transform .5s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% 7px auto 7px;
  height: 1.5px;
  background: currentColor;
  transition: transform .45s var(--ease), opacity .3s;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.faq-item.is-open .faq-icon::after { opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding-bottom: 1.6rem;
  max-width: 66ch;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.68;
}

/* ---------- 17. Page hero (interior) ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(9rem, 16vw, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 4%, rgba(12, 18, 37, .75) 55%, rgba(12, 18, 37, .8) 100%);
}
.page-hero .d1 { margin-top: 1.2rem; }
.page-hero .lede { margin-top: 1.35rem; color: rgba(255, 255, 255, .76); }

.crumbs {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: .5; }

/* ---------- 18. Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } }

.contact-card {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.contact-list { display: grid; gap: 1.5rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row .ci {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  flex: none;
}
.contact-row .ci svg { width: 18px; height: 18px; }
.contact-row .cl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row .cv { margin-top: .2rem; font-size: 1.02rem; font-weight: 600; }
.contact-row .cv a { transition: color .3s; }
.contact-row .cv a:hover { color: var(--blue); }
.contact-row .cv span { display: block; }

/* Light form */
.form-light .field label { color: var(--muted); }
.form-light .field input,
.form-light .field select,
.form-light .field textarea {
  background: var(--bone);
  border-color: var(--line-dark);
  color: var(--ink);
}
.form-light .field input::placeholder, .form-light .field textarea::placeholder { color: #9AA0AE; }
.form-light .field input:focus,
.form-light .field select:focus,
.form-light .field textarea:focus { background: var(--paper); border-color: var(--blue); }
.form-light .field select option { background: #fff; color: var(--ink); }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
textarea { resize: vertical; min-height: 140px; }

.form-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .66); position: relative; }
.footer-top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-brand img { height: 46px; width: auto; }
.footer-brand p { margin-top: 1.25rem; font-size: .92rem; line-height: 1.65; max-width: 34ch; }
.footer-h {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}
.footer-links { display: grid; gap: .7rem; }
.footer-links a { font-size: .92rem; transition: color .3s, padding-left .35s var(--ease); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { display: grid; gap: .9rem; font-size: .92rem; }
.footer-contact a { transition: color .3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .fc-row { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- 20. Floating call button (mobile) ---------- */
.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.15rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(8, 12, 24, .35);
  transition: transform .4s var(--ease);
}
.call-fab:hover { transform: translateY(-3px); }
.call-fab svg { width: 16px; height: 16px; }
@media (min-width: 720px) { .call-fab { display: none; } }

/* ---------- 21. Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 22. Utilities ---------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.center { text-align: center; }
.center .lede, .center .section-head { margin-inline: auto; }
.rule { height: 1px; background: var(--line-dark); border: 0; }
.dark .rule { background: var(--line-light); }
.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;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: .75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: .82rem;
  font-weight: 700;
  transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ---------- 23. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-media img { animation: none; }
}
