@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f3f2ee;
  --color-surface: #e7e8e6;
  --color-surface-strong: #d9dde0;
  --color-text: #10161b;
  --color-text-muted: #5d6872;
  --color-primary: #173a59;
  --color-accent: #7190a7;
  --color-dark: #111a22;
  --color-line: #c5c9cc;
  --color-white: #ffffff;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 112px;
  --text-display: clamp(2.8rem, 7vw, 5.7rem);
  --text-h1: clamp(2.35rem, 5vw, 4.3rem);
  --text-h2: clamp(2rem, 4vw, 3.2rem);
  --text-h3: clamp(1.35rem, 2vw, 1.75rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --radius: 0px;
  --shadow: 0 18px 54px rgba(16, 22, 27, 0.12);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Manrope', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--space-8) 0;
}

.section-compact {
  padding: var(--space-7) 0;
}

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

.section-surface {
  background: var(--color-surface);
}

.section-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  margin-bottom: var(--space-6);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #9fb0bd;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: 'Newsreader', serif;
}

h1 {
  font-size: var(--text-display);
}

h2 {
  font-size: var(--text-h2);
  max-width: 900px;
}

h3 {
  font-size: var(--text-h3);
}

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: var(--color-text-muted);
  max-width: 760px;
}

.section-dark .lede {
  color: #bfc9d0;
}

.muted {
  color: var(--color-text-muted);
}

.route-line {
  position: relative;
}

.route-line::before,
.route-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-line);
}

.route-line::before {
  top: 0;
}

.route-line::after {
  top: 6px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(243, 242, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 22, 27, 0.11);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.84rem;
  font-weight: 600;
}

.header-nav a {
  position: relative;
  padding: 28px 0 25px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.ad-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-light {
  border-color: rgba(255,255,255,0.45);
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-light:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-line);
}

.btn-ghost:hover {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

.hero {
  min-height: 100vh;
  padding-top: 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--color-bg);
}

.hero-copy {
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 112px) clamp(28px, 6vw, 92px) clamp(48px, 7vw, 88px) max(24px, calc((100vw - var(--container)) / 2));
  position: relative;
}

.hero-copy::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 12%;
  bottom: 12%;
  width: 9px;
  border-left: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: 0.75;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: var(--space-4);
}

.hero-sub {
  max-width: 650px;
  color: var(--color-text-muted);
  font-size: 1.08rem;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-5);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  max-width: 660px;
}

.metric {
  padding: 18px 16px 0 0;
}

.metric + .metric {
  border-left: 1px solid var(--color-line);
  padding-left: 18px;
}

.metric strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.metric span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.hero-media {
  min-height: calc(100vh - 78px);
  overflow: hidden;
  position: relative;
  background: var(--color-surface-strong);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,26,34,0.04), rgba(17,26,34,0.26));
}

.hero-media-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  background: rgba(17, 26, 34, 0.88);
  color: var(--color-white);
  padding: 18px 20px;
  max-width: 310px;
  font-size: 0.84rem;
  border-left: 2px solid var(--color-accent);
}

.marquee {
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-white);
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 13px 18px;
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marquee-group span::after {
  content: '／';
  margin-left: 36px;
  opacity: 0.45;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  background: var(--color-surface-strong);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.media-tall {
  aspect-ratio: 4 / 5;
}

.feature-copy h2 {
  margin-bottom: var(--space-3);
}

.feature-copy p {
  color: var(--color-text-muted);
}

.fact-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
}

.fact {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--color-line);
}

.fact:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--color-line);
}

.fact strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.fact span {
  color: var(--color-text-muted);
  font-size: 0.87rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.service-card {
  grid-column: span 4;
  background: var(--color-bg);
  padding: clamp(24px, 3vw, 40px);
  min-height: 310px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card.wide {
  grid-column: span 8;
}

.service-card.dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card:hover {
  transform: translateY(-3px);
  z-index: 2;
}

.service-card:not(.dark):hover {
  background: #fff;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  margin-bottom: auto;
}

.service-card h3 {
  margin: 48px 0 14px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.service-card.dark p {
  color: #d8e3ea;
}

.section-dark .service-card {
  background: #f7f7f3;
}

.section-dark .service-card h3 {
  color: var(--color-dark);
}

.section-dark .service-card p {
  color: #33414b;
}

.section-dark .service-card .service-icon,
.section-dark .service-card .service-index {
  color: var(--color-primary);
}

.section-dark .service-card.dark {
  background: #27445c;
  color: var(--color-white);
}

.section-dark .service-card.dark h3,
.section-dark .service-card.dark .service-icon,
.section-dark .service-card.dark .service-index {
  color: var(--color-white);
}

.section-dark .service-card.dark p {
  color: #e0e8ee;
}

.service-card-media {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  grid-column: span 4;
  grid-row: span 2;
}

.service-card-media img {
  transition: transform 0.45s ease;
}

.service-card-media:hover img {
  transform: scale(1.04);
}

.service-index {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.service-card.dark .service-index {
  color: #9fb0bd;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 480px;
}

.image-band .band-item {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.image-band .band-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,26,34,0.10));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-band .band-item:hover::after {
  opacity: 1;
}

.airport-band .band-item img {
  transition: transform 0.45s ease;
}

.airport-band .band-item:hover img {
  transform: scale(1.035);
}

.fleet-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.fleet-card {
  background: var(--color-bg);
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.fleet-card:nth-child(1),
.fleet-card:nth-child(4),
.fleet-card:nth-child(5) {
  grid-column: span 2;
}

.fleet-card:nth-child(1) .fleet-image,
.fleet-card:nth-child(4) .fleet-image,
.fleet-card:nth-child(5) .fleet-image {
  aspect-ratio: 21 / 9;
}

.mt-3 {
  margin-top: var(--space-3);
}

.fleet-card:hover {
  background: #fff;
}

.fleet-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.fleet-card-body {
  padding: 28px;
}

.fleet-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.fleet-card h3 {
  margin-bottom: 7px;
}

.fleet-desc {
  margin: 0 0 18px;
  color: #3a4650;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.fleet-features span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  font-size: 0.76rem;
  color: var(--color-text);
  background: var(--color-surface);
}

.fleet-class {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-price {
  text-align: right;
  white-space: nowrap;
}

.fleet-price strong {
  font-family: 'Newsreader', serif;
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.fleet-price span {
  color: var(--color-text-muted);
  font-size: 0.74rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.fleet-specs span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.driver-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 660px;
}

.driver-media {
  overflow: hidden;
  background: var(--color-surface-strong);
}

.driver-copy {
  background: var(--color-dark);
  color: var(--color-white);
  padding: clamp(42px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.driver-copy p {
  color: #bac7d0;
}

.process {
  margin-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.18);
}

.process-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.process-row strong {
  font-size: 0.95rem;
}

.process-row span {
  color: #93a6b4;
  font-size: 0.78rem;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--color-line);
  background: var(--color-white);
}

.calc-copy {
  padding: clamp(32px, 5vw, 64px);
  background: var(--color-primary);
  color: var(--color-white);
}

.calc-copy p {
  color: #c8d4dc;
}

.calc-form {
  padding: clamp(32px, 5vw, 64px);
}

.range-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.calc-result {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.calc-result strong {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.calc-result span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  max-width: 300px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-text);
  padding: 12px 0;
  outline: none;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--color-primary);
}

input[type='range'] {
  width: 100%;
  accent-color: var(--color-primary);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.checkbox input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.booking-note {
  position: sticky;
  top: 120px;
}

.booking-note .contact-block {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}

.booking-note .contact-block p {
  margin-bottom: 6px;
}

.booking-form {
  background: var(--color-white);
  border-top: 4px solid var(--color-primary);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.booking-form .btn {
  margin-top: 8px;
  width: 100%;
  max-width: 100%;
}


.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, rgba(23,58,89,0.07), rgba(23,58,89,0.02)),
    var(--color-white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 8px;
  border-left: 1px solid rgba(23,58,89,0.24);
  border-right: 1px solid rgba(23,58,89,0.24);
  opacity: 0.8;
}

.cta-panel::before {
  left: 18px;
}

.cta-panel::after {
  right: 18px;
}

.cta-copy,
.cta-meta {
  position: relative;
  z-index: 1;
}

.cta-copy .lede {
  max-width: 680px;
}

.cta-meta {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.cta-chip {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}

.cta-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-chip span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.cta-meta .btn {
  min-width: 220px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.blog-card {
  grid-column: span 6;
  background: var(--color-bg);
  transition: background 0.25s ease;
}

.blog-card:hover {
  background: var(--color-white);
}

.blog-card:first-child {
  grid-column: span 7;
}

.blog-card:nth-child(2) {
  grid-column: span 5;
}

.blog-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.blog-card:first-child .blog-image {
  aspect-ratio: 16 / 8;
}

.blog-body {
  padding: clamp(22px, 3vw, 34px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-body p {
  color: var(--color-text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.article-hero {
  padding: 150px 0 64px;
}

.article-head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: var(--space-5);
}

.article-head h1 {
  font-size: var(--text-h1);
}

.article-meta {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-cover {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(32px, 7vw, 90px);
}

.article-aside {
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.article-aside .sticky {
  position: sticky;
  top: 110px;
}

.article-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 54px;
  margin-bottom: 20px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  font-size: 1.04rem;
  color: #37424b;
  margin-bottom: 22px;
}

.article-callout {
  margin: 42px 0;
  padding: 30px;
  border-left: 3px solid var(--color-primary);
  background: var(--color-surface);
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.page-hero {
  padding: 156px 0 72px;
  border-bottom: 1px solid var(--color-line);
}

.page-hero .page-kicker {
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: var(--text-h1);
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  gap: clamp(36px, 7vw, 92px);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  border-top: 1px solid var(--color-line);
}

.legal-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.legal-content {
  word-break: break-word;
}

.legal-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 52px;
  margin-bottom: 18px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

.legal-content p {
  color: #3e4851;
  margin-bottom: 18px;
}

.legal-box {
  padding: 24px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  margin: 24px 0;
}

.thanks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.thanks-step {
  background: var(--color-bg);
  padding: clamp(28px, 4vw, 48px);
  min-height: 230px;
}

.thanks-step span {
  display: inline-block;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: var(--space-7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}

.footer-brand h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.footer-brand p {
  color: #aab9c4;
  max-width: 520px;
}

.footer-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #b9c5cd;
  font-size: 0.9rem;
  margin-bottom: 9px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-track {
  height: 10px;
  border-top: 1px solid #466176;
  border-bottom: 1px solid #466176;
  margin-bottom: 32px;
}

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #879ba9;
  font-size: 0.76rem;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #8fa3b1;
  font-size: 0.77rem;
  max-width: 1000px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  border-top: 3px solid var(--color-accent);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cookie-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.cookie-text p {
  color: #b7c4cc;
  font-size: 0.83rem;
  margin-bottom: 0;
  max-width: 820px;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 44px;
  font-size: 0.74rem;
}

.cookie-actions .btn-ghost {
  color: var(--color-white);
  border-color: #607483;
}

.cookie-actions .btn-ghost:hover {
  background: #fff;
  color: var(--color-dark);
}

.cookie-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(10,15,19,0.7);
  padding: 20px;
}

.cookie-modal.open {
  display: grid;
}

.cookie-dialog {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--color-bg);
  color: var(--color-text);
  padding: clamp(24px, 5vw, 42px);
  border-top: 4px solid var(--color-primary);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
}

.cookie-option:last-of-type {
  border-bottom: 1px solid var(--color-line);
}

.cookie-option p {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  margin-bottom: 0;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}

.cookie-dialog-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

@media (max-width: 1100px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--color-bg);
  }

  .header-nav {
    display: none;
    position: fixed;
    z-index: 120;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: 28px 24px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid var(--color-line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 18px 40px rgba(16, 22, 27, 0.08);
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 18px 0; border-bottom: 1px solid var(--color-line); font-size: 1rem; }
  .header-nav a::after { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand {
    justify-self: start;
    width: fit-content;
    max-width: none;
  }
  .header-actions {
    justify-self: end;
    grid-column: 3;
  }
  .header-actions .btn { display: none; }
  body.menu-open .site-header {
    z-index: 121;
  }
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 119;
    pointer-events: none;
  }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding-top: 96px; padding-bottom: 72px; }
  .hero-media { min-height: 56vw; }
  .service-card { grid-column: span 6; }
  .service-card.wide { grid-column: span 6; }
  .service-card-media { grid-column: span 6; grid-row: span 1; min-height: 280px; }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-card:nth-child(1), .fleet-card:nth-child(4), .fleet-card:nth-child(5) { grid-column: span 1; }
  .fleet-card:nth-child(1) .fleet-image, .fleet-card:nth-child(4) .fleet-image, .fleet-card:nth-child(5) .fleet-image { aspect-ratio: 16 / 10; }
  .image-band { grid-template-columns: repeat(2, 1fr); }
  .image-band .band-item { min-height: 420px; }
  .driver-panel { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --space-7: 64px;
    --space-8: 76px;
  }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand span { display: none; }
  .header-nav {
    top: 68px;
  }
  body.menu-open::before {
    top: 68px;
  }
  .site-header .ad-label { min-height: 30px; padding: 0 9px; }
  .hero { padding-top: 68px; }
  .hero-copy { padding: 70px 24px 56px; }
  .hero-copy::after { right: 12px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; padding-left: 0; }
  .metric { border-bottom: 1px solid var(--color-line); padding: 14px 0; }
  .hero-media { min-height: 75vw; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 42px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature .media-frame { order: 2; }
  .service-card,
  .service-card.wide,
  .service-card-media { grid-column: span 12; grid-row: span 1; min-height: 260px; }
  .image-band { grid-template-columns: 1fr; }
  .image-band .band-item { min-height: 68vw; }
  .fleet-toolbar { align-items: start; flex-direction: column; }
  .fleet-grid { grid-template-columns: 1fr; }
  .driver-panel { grid-template-columns: 1fr; }
  .driver-media { min-height: 88vw; }
  .calculator {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .calculator.reveal.visible {
    transform: none;
    opacity: 1;
  }
  .calc-copy,
  .calc-form {
    padding: 24px 20px;
    min-width: 0;
  }
  .calc-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .calc-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .calc-result strong {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }
  .calc-result span {
    max-width: 100%;
  }
  .range-line {
    flex-wrap: wrap;
    gap: 6px 10px;
  }
  .range-line strong {
    flex: 1 1 100%;
    text-align: center;
  }
  .route-line::before,
  .route-line::after {
    display: none;
  }
  .hero-copy::after,
  .cta-panel::before,
  .cta-panel::after {
    display: none;
  }
  .page-hero {
    padding: 120px 0 48px;
  }
  .page-hero h1,
  .page-hero p,
  .page-hero .page-kicker,
  .page-hero .page-kicker span,
  .page-hero .eyebrow {
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-note { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .blog-card,
  .blog-card:first-child,
  .blog-card:nth-child(2) { grid-column: span 12; }
  .article-head { grid-template-columns: 1fr; gap: 20px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside .sticky { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .thanks-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-inner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .btn:first-child { grid-column: 1 / -1; }
  .cookie-modal {
    padding: 12px;
    align-items: end;
  }
  .cookie-dialog {
    width: 100%;
    max-height: min(92dvh, calc(100vh - 24px));
    padding: 20px 16px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .cookie-dialog h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .cookie-dialog .muted,
  .cookie-dialog .eyebrow {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .cookie-dialog .muted {
    font-size: 0.88rem;
  }
  .cookie-option {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    padding: 16px 0;
    align-items: start;
  }
  .cookie-option > div {
    min-width: 0;
  }
  .cookie-option strong {
    display: block;
    margin-bottom: 4px;
  }
  .cookie-option p {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
  }
  .cookie-option input {
    margin-top: 2px;
    flex-shrink: 0;
  }
  .cookie-dialog-actions {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }
  .cookie-dialog-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .article-cover { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    justify-self: end;
  }

  .ad-label {
    word-break: break-all;
  }

  .footer-col {
    word-break: break-all;
  }

  .hero-grid > *,
  .split-feature > *,
  .booking-wrap > *,
  .service-grid > *,
  .fleet-grid > *,
  .blog-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .booking-form {
    padding: 20px 16px;
  }

  .hero-copy {
    padding: 64px 16px 48px;
  }

  .calc-copy,
  .calc-form {
    padding: 20px 16px;
  }

  .calc-result strong {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .page-hero {
    padding: 108px 0 40px;
  }

  .cookie-modal {
    padding: 8px;
  }

  .cookie-dialog {
    max-height: min(94dvh, calc(100vh - 16px));
    padding: 18px 14px 20px;
  }

  .cookie-dialog h2 {
    font-size: clamp(1.3rem, 7vw, 1.75rem);
  }

  .cookie-option {
    padding: 14px 0;
  }

  .btn {
    font-size: 0.88rem;
    padding: 14px 18px;
  }
}

@media (max-width: 420px) {
  .ad-label { font-size: 0.67rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact:nth-child(even) { padding-left: 0; border-left: 0; }
  .fleet-specs { grid-template-columns: 1fr; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-actions .btn:first-child { grid-column: auto; }
}
