/* Dost Go — restrained editorial design system */
:root {
  --bg: #090a0b;
  --surface: #111315;
  --secondary: #17191c;
  --text: #f4f2ed;
  --muted: #a7a8aa;
  --accent: #c4a56a;
  --line: rgba(244,242,237,.14);
  --warm: #e9e5dc;
  --ink: #24272a;
  --container: 1280px;
  --gutter: clamp(24px,5vw,80px);
  --section: 120px;
  --sans: Manrope, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(.22,.68,0,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button,input,select { font: inherit; }
button { cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
button,a,input,select { -webkit-tap-highlight-color: transparent; }
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,[tabindex]:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
button:disabled { opacity: .35; cursor: default; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.icon { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.container { width: min(calc(100% - var(--gutter)*2),var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
h1,h2,h3,h4,p { margin: 0; }
h1,h2 { font-family: var(--serif); font-weight: 500; text-wrap: balance; }
h1 { font-size: clamp(52px,5vw,78px); line-height: 1.03; letter-spacing: -.025em; }
h2 { font-size: clamp(38px,3.5vw,56px); line-height: 1.08; letter-spacing: -.02em; }
h3 { font-family: var(--sans); font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -.02em; text-wrap: balance; }
h4 { font-size: 12px; font-weight: 600; letter-spacing: .12em; }
p { color: var(--muted); max-width: 600px; }
em { font-weight: inherit; }
.eyebrow { font: 600 11px/1.5 var(--sans); letter-spacing: .19em; color: var(--accent); text-transform: uppercase; margin-bottom: 22px; }
.eyebrow>span { display: none; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; margin-bottom: 48px; }
.section-head>p { max-width: 360px; font-size: 18px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn,.outline { min-height: 54px; padding: 0 28px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 25px; border: 1px solid var(--text); background: var(--text); color: var(--bg); font-size: 14px; line-height: 1.4; font-weight: 600; transition: background .3s,border-color .3s,color .3s; }
.btn .icon,.outline .icon { width: 19px; height: 19px; flex-basis: 19px; transition: transform .35s var(--ease); }
.btn:hover { background: #ded9ce; border-color: #ded9ce; }
.btn:hover .icon,.outline:hover .icon { transform: translateX(3px); }
.outline { background: transparent; color: var(--text); border-color: #ffffff69; }
.outline:hover { border-color: var(--text); background: #ffffff0a; }
.text-link,.link,.text-btn { border: 0; background: none; padding: 0; display: inline-flex; gap: 18px; align-items: center; font-size: 14px; font-weight: 500; color: inherit; text-align: left; }
.text-link .icon,.link .icon,.text-btn .icon { width: 18px; height: 18px; flex-basis: 18px; transition: transform .35s var(--ease); }
.text-link:hover .icon,.link:hover .icon,.text-btn:hover .icon { transform: translate(3px,-1px); }
.link { padding-bottom: 8px; border-bottom: 1px solid currentColor; }
.icon-button { width: 48px; height: 48px; display: inline-flex; justify-content: center; align-items: center; border: 1px solid var(--line); border-radius: 4px; background: none; transition: border-color .3s; }
.icon-button:hover:not(:disabled) { border-color: var(--accent); }
.skip-link { position: fixed; top: -100px; left: 24px; padding: 12px 20px; background: var(--text); color: var(--bg); z-index: 100; }
.skip-link:focus { top: 10px; }
/* Header */
header { position: fixed; inset: 0 0 auto; height: 88px; z-index: 30; border-bottom: 1px solid #ffffff14; transition: background .35s,backdrop-filter .35s; }
.header-inner { height: 100%; max-width: 1440px; padding-inline: var(--gutter); margin-inline: auto; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
header.solid { background: #090a0beF; backdrop-filter: blur(12px); height: 78px; }
.brand { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; gap: 6px; width: max-content; }
.brand img { width: 142px; filter: grayscale(1) brightness(0) invert(1); }
.brand span { font-size: 8px; line-height: 1; color: var(--accent); letter-spacing: .29em; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { position: relative; font-size: 15px; font-weight: 400; padding-block: 12px; }
nav a:after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
nav a:hover:after,nav a.active:after { transform: scaleX(1); }
nav a.active { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.header-actions .btn { min-height: 46px; padding-inline: 22px; border-color: #c4a56a8c; color: var(--text); background: transparent; }
.header-actions .btn:hover { background: #c4a56a1c; }
.menu { display: none; background: none; border: 0; padding: 11px; margin-right: -11px; }
/* Cinematic arrival */
.hero { position: relative; min-height: 740px; height: 96svh; max-height: 1080px; isolation: isolate; display: flex; align-items: center; }
.hero video { position: absolute; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: video-in 1.1s ease both; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,#050709b8,#05070935 72%),linear-gradient(0deg,#090a0bb3,transparent 40%,#090a0b33); }
.hero-shade:after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%,transparent 15%,#0006 110%); }
.hero-content { width: min(calc(100% - var(--gutter)*2),var(--container)); margin-inline: auto; padding-top: 90px; padding-bottom: 80px; }
.hero-content h1 { max-width: 760px; }
.hero-content h1 em { color: var(--text); font-style: italic; font-weight: 400; }
.hero-content>p { font-size: 18px; line-height: 1.75; max-width: 515px; margin: 30px 0 34px; color: #dddcd8; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; color: #d2d0cb; font-size: 12px; }
.hero-benefits span { display: inline-flex; align-items: center; gap: 9px; }
.hero-benefits .icon { width: 17px; height: 17px; flex-basis: 17px; color: var(--accent); }
.hero-bottom { position: absolute; left: max(var(--gutter),calc((100% - var(--container))/2)); right: max(var(--gutter),calc((100% - var(--container))/2)); bottom: 30px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.hero-bottom>span { font-size: 10px; letter-spacing: .15em; color: #c4c3c0; }
.hero-bottom>a { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; }
#video-toggle { width: 42px; height: 42px; border: 1px solid #ffffff55; border-radius: 50%; background: #0002; display: grid; place-items: center; }
#video-toggle .icon { width: 16px; height: 16px; }
.hero-content>.eyebrow,.hero-content>h1,.hero-content>p,.hero-content>.actions,.hero-benefits { animation: arrive .85s var(--ease) both; }
.hero-content>.eyebrow { animation-delay: .12s; }
.hero-content>h1 { animation-delay: .23s; }
.hero-content>p { animation-delay: .36s; }
.hero-content>.actions { animation-delay: .47s; }
.hero-benefits { animation-delay: .58s; }
.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-inner { padding-block: 38px; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 50px; align-items: center; }
.trust-inner>span { font-family: var(--serif); font-size: 25px; line-height: 1.2; }
.trust strong { font-weight: 500; }
.trust p { font-size: 14px; max-width: 360px; }
.trust .text-link { white-space: nowrap; }
/* Six service stories, two featured and four supporting */
.services { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 52px 28px; }
.service-card { min-width: 0; display: flex; flex-direction: column; }
.service-card.featured { grid-column: span 2; }
.service-image { flex: 0 0 auto; position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--secondary); }
.featured .service-image { aspect-ratio: 16/10; }
.service-image:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,#090a0b28,transparent 60%); pointer-events: none; }
.service-image img { height: 100%; width: 100%; object-fit: cover; filter: saturate(.78) contrast(1.03); transition: transform .7s var(--ease); }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-index { position: absolute; left: 20px; top: 18px; color: #fff; z-index: 1; font-size: 11px; letter-spacing: .13em; }
.service-content { padding-top: 24px; display: flex; flex-direction: column; flex: 1; }
.service-title { display: flex; align-items: flex-start; gap: 13px; }
.service-title .icon { color: var(--accent); margin-top: 3px; }
.featured h3 { font-size: 24px; }
.compact h3 { font-size: 18px; min-height: 50px; }
.service-content p { font-size: 15px; line-height: 1.75; margin: 15px 0 21px; max-width: 500px; }
.compact p { min-height: 79px; }
.service-content .text-link { margin-top: auto; align-self: flex-start; padding-block: 8px; font-size: 13px; }
/* Original fleet, not illustrative photography */
.fleet { background: var(--bg); }
.fleet-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.filters { display: flex; flex-wrap: wrap; gap: 30px; }
.filters button { border: 0; background: none; padding: 14px 0 17px; color: var(--muted); position: relative; font-size: 14px; }
.filters button:after { content: ''; position: absolute; bottom: -1px; height: 1px; left: 0; right: 0; background: transparent; }
.filters button.selected { color: var(--text); }
.filters button.selected:after { background: var(--accent); }
.fleet-note { color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.fleet-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; scroll-behavior: smooth; }
.fleet-track .fleet-card:only-child { flex-basis: 100%; }
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-card { display: grid; grid-template-columns: 64% 36%; flex: 0 0 100%; min-width: 0; scroll-snap-align: start; background: var(--surface); }
.fleet-image { background: #f4f5f4; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.fleet-image img { width: 100%; height: auto; aspect-ratio: 1.43; object-fit: contain; transition: transform .7s var(--ease); }
.fleet-card:hover .fleet-image img { transform: scale(1.015); }
.fleet-info { padding: clamp(28px,3vw,48px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-width: 0; }
.fleet-class { color: var(--accent); letter-spacing: .14em; font-size: 10px; margin-bottom: 20px; }
.fleet-info h3 { font-family: var(--serif); font-size: 36px; line-height: 1.06; max-width: 300px; letter-spacing: -.015em; }
.fleet-info p { font-size: 15px; margin-block: 22px; line-height: 1.7; }
.fleet-specs { display: flex; flex-direction: column; gap: 10px; padding: 20px 0 28px; margin-top: 0; border-top: 1px solid var(--line); width: 100%; }
.fleet-specs span { display: flex; align-items: center; gap: 12px; color: #babbbd; font-size: 12px; }
.fleet-specs .icon { width: 18px; height: 18px; flex-basis: 18px; }
.fleet-info .text-link { margin-top: 0; font-size: 14px; }
.fleet-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; }
.fleet-count { font-size: 12px; letter-spacing: .13em; min-width: 67px; }
.fleet-bottom>p { font-size: 12px; margin-right: auto; }
.carousel-controls { display: flex; gap: 10px; }
/* A quieter service promise */
.difference { border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { width: 100%; height: 670px; object-fit: cover; object-position: 75% center; }
.split p { margin-top: 25px; }
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 30px; margin-top: 36px; }
.reason>.icon { color: var(--accent); margin-bottom: 13px; }
.reason h3 { font-size: 14px; font-weight: 500; }
.reason p { margin-top: 7px; font-size: 13px; line-height: 1.65; }
/* Process, deliberately compact */
.process { padding-block: 80px; background: var(--surface); border-block: 1px solid var(--line); }
.process>.container { display: grid; grid-template-columns: .9fr 2fr; gap: 70px; align-items: start; }
.process h2 { font-family: var(--sans); font-size: 28px; font-weight: 400; line-height: 1.35; letter-spacing: -.03em; }
.process-intro .eyebrow { margin-bottom: 18px; }
.steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 26px; }
.step-number { color: var(--accent); font-size: 12px; padding-bottom: 25px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.steps h3 { font-size: 15px; min-height: 42px; }
.steps p { font-size: 13px; line-height: 1.7; margin-top: 12px; }
/* Warm brand editorial */
.about { background: var(--warm); color: var(--ink); }
.about .split { grid-template-columns: .9fr 1.1fr; gap: 96px; }
.about-copy { max-width: 465px; }
.about .eyebrow { color: #786139; }
.about h2 em { font-style: normal; }
.about p { color: #595b5c; font-size: 16px; }
.about .link { margin-top: 35px; color: var(--ink); }
.about-image { width: 100%; aspect-ratio: 1.04; object-fit: cover; object-position: 61% center; filter: saturate(.7); }
/* Passenger words: editorial columns rather than cards */
.reviews { padding-block: 96px; background: var(--secondary); }
.reviews h2 { font-family: var(--sans); font-size: 34px; font-weight: 400; max-width: 460px; line-height: 1.3; }
.reviews .section-head>p { font-size: 16px; }
.review-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; }
.review { border-top: 1px solid var(--line); padding-top: 22px; }
.quote-mark { display: block; color: var(--accent); font: 52px/.9 var(--serif); height: 40px; }
.review blockquote { font: 400 28px/1.3 var(--serif); letter-spacing: -.01em; margin: 8px 0 30px; min-height: 74px; }
.review strong { font-size: 13px; font-weight: 500; }
.review small { display: block; margin-top: 5px; font-size: 11px; color: var(--muted); }
.review-note { font-size: 11px; color: var(--muted); margin-top: 38px; }
.review-note a { text-decoration: underline; text-underline-offset: 4px; }
/* Cinematic closing, asymmetrically composed */
.cta { position: relative; isolation: isolate; padding-block: 130px; min-height: 570px; display: flex; align-items: center; }
.cta-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; z-index: -3; filter: saturate(.7); }
.cta:before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,#07090be8,#07090b70 60%,#07090b28); }
.cta-inner h2 { max-width: 650px; }
.cta p { font-size: 17px; max-width: 420px; margin: 27px 0 34px; color: #d0cfcb; }
.site-footer { padding-block: 72px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr 1.1fr 1.4fr; gap: 40px; }
.footer-grid p { font-size: 13px; line-height: 1.85; margin-top: 23px; }
.footer-grid h4 { margin: 0 0 23px; font-size: 10px; letter-spacing: .13em; font-weight: 500; }
.footer-grid a:not(.brand) { display: flex; align-items: center; gap: 8px; width: fit-content; font-size: 13px; line-height: 1.65; color: var(--muted); margin-top: 12px; padding-block: 3px; }
.footer-grid a:hover { color: var(--text); }
.footer-grid .icon { width: 16px; height: 16px; flex-basis: 16px; }
.copyright { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; margin-top: 58px; border-top: 1px solid var(--line); font-size: 10px; color: #929498; }
/* Dialogs */
dialog { width: min(660px,calc(100% - 40px)); max-height: 90svh; padding: 42px; background: var(--surface); color: var(--text); border: 1px solid #ffffff29; border-radius: 5px; overscroll-behavior: contain; }
dialog::backdrop { background: #000b; backdrop-filter: blur(5px); }
dialog .eyebrow { font-size: 10px; margin: 5px 0 20px; }
dialog h2 { font-size: 42px; }
dialog>p { font-size: 15px; margin-top: 16px; }
.close { position: absolute; right: 15px; top: 15px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: none; }
form { display: grid; gap: 18px; margin-top: 27px; }
label { display: grid; gap: 8px; color: #c7c8c9; font-size: 13px; }
input,select { width: 100%; min-width: 0; min-height: 50px; border: 1px solid #ffffff38; border-radius: 3px; padding: 12px; color: var(--text); background: var(--bg); color-scheme: dark; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form small { color: var(--muted); font-size: 11px; }
.summary { white-space: pre-line; background: var(--bg); padding: 22px; font-size: 15px; line-height: 1.9; margin: 25px 0; }
#confirmation>p { margin-bottom: 26px; font-size: 15px; }
#confirmation .link { margin: 24px; }
#vehicle-detail { width: min(780px,calc(100% - 40px)); }
.detail-photo { width: 100%; aspect-ratio: 1.7; object-fit: contain; background: #f5f6f5; margin: 15px 0 25px; }
#vehicle-content>p { margin: 20px 0; font-size: 15px; }
#vehicle-content .fleet-specs { margin-top: 25px; }
/* Shared motion, progressive enhancement */
.reveal { opacity: 1; }
.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease) var(--delay,0ms),transform .75s var(--ease) var(--delay,0ms); }
.motion-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.image-reveal { overflow: hidden; }
.motion-ready .image-reveal>img { transition: transform 1.1s var(--ease); }
.motion-ready .image-reveal:not(.visible)>img { transform: scale(1.05); }
.motion-ready .image-reveal.visible>img { transform: scale(1); }
.motion-ready .service-card:hover .service-image>img { transform: scale(1.04); }
@keyframes arrive { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes video-in { from { opacity: 0; } to { opacity: 1; } }
/* Tablet: recompose, not a reduced desktop */
@media(max-width:1199px) {
  :root { --section: 92px; --gutter: 40px; }
  .header-inner { gap: 25px; }
  .header-actions .text-btn { display: none; }
  nav { gap: 24px; }
  .hero { min-height: 720px; }
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
  .hero-content>p { font-size: 17px; max-width: 470px; }
  .section-head { gap: 40px; }
  .section-head>p { font-size: 17px; max-width: 310px; }
  .service-grid { gap: 42px 24px; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card.featured { grid-column: span 1; }
  .service-image,.featured .service-image { aspect-ratio: 16/10; }
  .compact h3 { min-height: 0; font-size: 21px; }
  .featured h3 { font-size: 21px; }
  .compact p { min-height: 53px; }
  .fleet-card { grid-template-columns: 60% 40%; }
  .fleet-info { padding: 30px; }
  .fleet-info h3 { font-size: 31px; }
  .fleet-info p { font-size: 14px; margin-block: 18px; }
  .fleet-class { margin-bottom: 15px; }
  .fleet-specs { padding: 16px 0 22px; }
  .split { gap: 45px; }
  .story-img { height: 650px; }
  .reasons { gap: 24px; }
  .process>.container { grid-template-columns: 1fr; gap: 35px; }
  .process h2 br { display: none; }
  .steps h3 { min-height: 0; }
  .about .split { gap: 50px; grid-template-columns: 1fr 1fr; }
  .about-image { aspect-ratio: .78; }
  .review-grid { gap: 30px; }
  .review blockquote { font-size: 26px; }
  .footer-grid { grid-template-columns: 1.1fr .8fr 1fr 1.3fr; gap: 25px; }
  .footer-grid h4 { font-size: 9px; }
  .trust-inner { gap: 35px; grid-template-columns: 1fr 1.15fr; }
  .trust .text-link { display: none; }
}
@media(max-width:900px) {
  :root { --gutter: 32px; --section: 84px; }
  header { height: 82px; }
  header.solid { height: 74px; }
  .menu { display: grid; place-items: center; }
  .header-actions { gap: 20px; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 24px var(--gutter) 32px; background: #090a0bfa; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 8px; }
  nav.open { display: flex; }
  nav a { font-size: 16px; padding-block: 12px; }
  nav a:after { right: auto; width: 30px; }
  h1 { font-size: 54px; }
  h2 { font-size: 42px; }
  .hero { min-height: 700px; height: 90svh; }
  .hero-content { padding-top: 95px; }
  .section-head>p { max-width: 280px; font-size: 16px; }
  .fleet-card { grid-template-columns: 56% 44%; }
  .fleet-info { padding: 27px; }
  .fleet-info h3 { font-size: 29px; }
  .fleet-note { display: none; }
  .fleet-bottom>p { max-width: 330px; font-size: 11px; }
  .difference .split { grid-template-columns: .78fr 1fr; gap: 34px; }
  .story-img { height: 700px; object-position: 85% center; }
  .reasons { gap: 24px 18px; }
  .reason h3 { font-size: 13px; }
  .reason p { font-size: 12px; }
  .about .split { gap: 35px; }
  .about p { font-size: 15px; }
  .reviews .section-head { align-items: flex-start; }
  .reviews h2 { font-size: 30px; }
  .reviews .section-head>p { max-width: 230px; font-size: 15px; }
  .review-grid { gap: 26px; }
  .review blockquote { min-height: 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 60px; }
  .footer-grid>div:first-child { grid-column: 1; grid-row: span 2; }
  .footer-grid>div:last-child { grid-column: 1/-1; }
  .footer-grid h4 { font-size: 11px; }
  .cta { min-height: 540px; padding-block: 96px; }
}
/* Mobile */
@media(max-width:600px) {
  :root { --gutter: 24px; --section: 68px; }
  body { font-size: 15px; }
  html { scroll-padding-top: 85px; }
  h1 { font-size: clamp(36px,10.3vw,44px); line-height: 1.07; }
  h2 { font-size: clamp(30px,8.5vw,36px); line-height: 1.1; }
  h3 { font-size: 19px; }
  .eyebrow { font-size: 9px; letter-spacing: .16em; margin-bottom: 18px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 21px; margin-bottom: 32px; }
  .section-head>p { max-width: 340px; font-size: 15px; }
  header { height: 76px; }
  header.solid { height: 68px; }
  .header-inner { gap: 15px; }
  .brand img { width: 116px; }
  .brand span { font-size: 6px; }
  .header-actions { gap: 17px; }
  .header-actions .btn { min-height: 42px; padding-inline: 13px; font-size: 12px; gap: 10px; }
  .header-actions .btn .icon { width: 15px; height: 15px; flex-basis: 15px; }
  .hero { height: 85svh; min-height: 650px; max-height: 850px; align-items: center; }
  .hero video { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg,#050709bc,#05070955),linear-gradient(0deg,#090a0bba,transparent 60%); }
  .hero-content { padding-top: 103px; padding-bottom: 70px; }
  .hero-content>p { font-size: 15px; line-height: 1.7; margin: 24px 0 28px; max-width: 360px; }
  .hero .actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero .actions .btn { width: 100%; justify-content: space-between; }
  .hero .actions .outline { min-height: 44px; padding-inline: 0; border: 0; gap: 20px; }
  .hero-benefits { margin-top: 23px; gap: 14px 20px; font-size: 10px; }
  .hero-benefits span:last-child { display: none; }
  .hero-benefits .icon { width: 15px; height: 15px; flex-basis: 15px; }
  .hero-bottom { bottom: 19px; }
  .hero-bottom>a { display: none; }
  .hero-bottom>span { font-size: 8px; }
  #video-toggle { height: 36px; width: 36px; }
  .trust-inner { padding-block: 29px; grid-template-columns: 1fr; gap: 15px; }
  .trust-inner>span { font-size: 25px; }
  .trust-inner>span br { display: none; }
  .trust p { font-size: 13px; max-width: 340px; }
  .service-grid { grid-template-columns: 1fr; gap: 37px; }
  .service-image,.featured .service-image { aspect-ratio: 16/10; }
  .service-index { left: 16px; top: 13px; font-size: 10px; }
  .service-content { padding-top: 20px; }
  .service-title { gap: 12px; }
  .service-title .icon { width: 21px; height: 21px; flex-basis: 21px; margin-top: 2px; }
  .compact h3,.featured h3 { font-size: 20px; }
  .compact p { min-height: 0; }
  .service-content p { font-size: 15px; margin: 14px 0 12px; }
  .service-content .text-link { min-height: 44px; }
  .fleet-toolbar { margin-bottom: 24px; }
  .filters { gap: 24px; flex-wrap: nowrap; width: 100%; justify-content: space-between; }
  .filters button { font-size: 12px; white-space: nowrap; }
  .fleet-track { gap: 16px; }
  .fleet-card { display: flex; flex-direction: column; flex-basis: 94%; }
  .fleet-image { width: 100%; display: block; }
  .fleet-image img { aspect-ratio: 4/3; object-fit: contain; }
  .fleet-info { padding: 28px 23px; flex: 1; }
  .fleet-class { font-size: 9px; margin-bottom: 12px; }
  .fleet-info h3 { font-size: 30px; max-width: 270px; }
  .fleet-info p { font-size: 15px; margin: 18px 0 21px; }
  .fleet-specs { padding-block: 18px 24px; }
  .fleet-info .text-link { min-height: 44px; }
  .fleet-bottom { flex-wrap: wrap; gap: 20px; }
  .fleet-bottom>p { order: 3; font-size: 11px; max-width: none; width: 100%; }
  .carousel-controls { margin-left: auto; }
  .icon-button { width: 44px; height: 44px; }
  .difference .split { grid-template-columns: 1fr; gap: 35px; }
  .story-img { height: auto; aspect-ratio: 4/3; object-position: center; }
  .split p { margin-top: 21px; }
  .reasons { margin-top: 30px; gap: 29px 24px; }
  .reason h3 { font-size: 14px; }
  .reason p { font-size: 13px; margin-top: 7px; }
  .process { padding-block: 64px; }
  .process h2 { font-size: 27px; }
  .process h2 br { display: block; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .step-number { padding-bottom: 17px; margin-bottom: 18px; }
  .steps h3 { font-size: 15px; min-height: 42px; }
  .steps p { font-size: 13px; }
  .about .split { grid-template-columns: 1fr; gap: 36px; }
  .about-copy { max-width: none; }
  .about p { font-size: 15px; }
  .about .link { margin-top: 27px; }
  .about-image { aspect-ratio: 1.12; }
  .reviews { padding-block: 68px; }
  .reviews h2 { font-size: 29px; max-width: 310px; }
  .reviews .section-head>p { display: none; }
  .review-grid { grid-template-columns: 1fr; gap: 30px; }
  .review blockquote { font-size: 28px; min-height: 0; margin-bottom: 22px; max-width: 315px; }
  .review { padding-top: 20px; }
  .review-note { margin-top: 30px; }
  .cta { min-height: 540px; padding-block: 76px; }
  .cta-image { object-position: 62% center; }
  .cta:before { background: linear-gradient(90deg,#07090bcf,#07090b85); }
  .cta h2 { font-size: 40px; }
  .cta p { font-size: 15px; }
  .cta .actions { flex-direction: column; }
  .cta .btn,.cta .outline { justify-content: space-between; }
  .site-footer { padding-block: 52px 26px; }
  .footer-grid { gap: 35px 24px; }
  .footer-grid>div:first-child { grid-column: 1/-1; grid-row: auto; }
  .footer-grid>div:last-child { grid-column: 1/-1; }
  .footer-grid h4 { font-size: 10px; margin-bottom: 18px; }
  .footer-grid a:not(.brand) { min-height: 32px; font-size: 13px; margin-top: 8px; }
  .footer-grid p { margin-top: 18px; }
  .copyright { flex-direction: column; margin-top: 38px; gap: 15px; font-size: 9px; }
  dialog { padding: 35px 23px 28px; width: calc(100% - 28px); }
  dialog h2 { font-size: 35px; }
  .form-row { grid-template-columns: 1fr; }
  #vehicle-detail { width: calc(100% - 28px); }
  #confirmation .link { margin-left: 0; }
}
@media(prefers-reduced-motion:reduce) {
  html,.fleet-track { scroll-behavior: auto; }
  *,*:before,*:after { animation: none !important; transition: none !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .motion-ready .image-reveal>img { transform: none !important; }
}
