:root {
  --ink: #17231d;
  --paper: #f4f0e7;
  --cream: #fffaf0;
  --lime: #d9f05a;
  --coral: #ef744f;
  --sage: #9ab2a2;
  --line: rgba(23,35,29,.16);
  --shadow: 0 22px 70px rgba(29,39,32,.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.shell.narrow { width: min(820px, calc(100% - 40px)); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.05; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 7.2rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0; }
.muted { color: rgba(23,35,29,.68); }
.lead { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; }
.text-link { font-weight: 700; border-bottom: 2px solid var(--lime); }
.btn {
  border: 1px solid var(--ink); border-radius: 999px; padding: 13px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; transition: .25s ease; background: var(--ink); color: white;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(23,35,29,.18); }
.btn-light { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.5); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; padding: 16px 0;
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(244,240,231,.93); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.logo { display: flex; align-items: center; width: fit-content; }
.logo img { width: 158px; height: auto; }
.site-header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
.logo-footer img { width: 190px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 24px; font-weight: 600; font-size: .9rem; }
.site-header:not(.scrolled) .nav-links a { color: white; }
.nav-links a { padding-bottom: 3px; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-color: var(--lime); }
.nav-links a[aria-current="page"] { border-color: var(--lime); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; font-size: .88rem; }
.site-header:not(.scrolled) .nav-phone { color: white; }
.menu-toggle { display: none; border: 0; background: var(--ink); color: white; width: 42px; height: 42px; border-radius: 50%; }

.hero { min-height: 820px; height: 100vh; max-height: 980px; padding: 130px 0 36px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(17,30,23,.85) 0%, rgba(17,30,23,.58) 42%, rgba(17,30,23,.06) 75%),
    url("images/hero.jpg") center/cover; filter: saturate(.8);
}
.hero::after { content: ""; position: absolute; width: 42vw; height: 42vw; border: 1px solid rgba(217,240,90,.42); border-radius: 50%; top: 16%; right: -8%; }
.hero-grid { position: relative; z-index: 1; height: 100%; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 40px; color: white; }
.hero-copy { align-self: center; max-width: 790px; }
.hero-copy h1 { margin: 18px 0 24px; max-width: 780px; }
.hero-copy h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 590px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero .btn-ghost { color: white; border-color: rgba(255,255,255,.5); }
.booking-card {
  justify-self: end; width: min(100%, 420px); color: var(--ink); padding: 24px;
  background: rgba(255,250,240,.94); backdrop-filter: blur(18px); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 22px; }
.booking-head span { font-size: .75rem; font-weight: 800; padding: 6px 10px; background: var(--lime); border-radius: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.wide { grid-column: 1/-1; }
.field label, .checks legend { font-size: .72rem; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 13px; background: white; padding: 12px 13px; color: var(--ink);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 1px; }
.booking-card .btn { width: 100%; margin-top: 15px; }
.trust-strip { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.2); }
.trust-inner { display: flex; justify-content: space-between; padding: 15px 0; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 600; }

.section { padding: 108px 0; }
.section-alt { background: var(--cream); border-block: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 48px; }
.section-head h2 { max-width: 780px; margin-top: 14px; }
.section-head p { max-width: 360px; }
.section-foot { margin-top: 42px; display: flex; justify-content: center; }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: .8rem; margin-bottom: 26px; color: rgba(255,255,255,.6); }
.crumbs a:hover { color: var(--lime); }
.crumbs strong { color: white; font-weight: 700; }

.page-hero { padding: 168px 0 84px; background: var(--ink); color: white; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--lime); opacity: .08; right: -120px; top: -140px; }
.page-hero.has-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(17,30,23,.96) 8%, rgba(17,30,23,.72) 48%, rgba(17,30,23,.32) 100%), var(--hero-image) center/cover;
}
.page-hero > .shell { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); max-width: 980px; margin: 16px 0 24px; }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero .hero-actions { margin-top: 30px; }
.hero-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 46px 0 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.hero-facts dd { margin: 6px 0 0; font: 800 1.5rem/1.1 "Manrope"; letter-spacing: -.04em; color: var(--lime); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 560px; object-fit: cover; }
.split-media figcaption {
  position: absolute; right: 16px; bottom: 16px; width: 210px; padding: 18px;
  background: var(--lime); border-radius: 18px; font-weight: 700; line-height: 1.3; font-size: .92rem;
}
.split-copy h2 { margin: 15px 0 22px; }
.split-copy p + p { margin-top: 14px; }
.bullets { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.bullets li { padding-left: 30px; position: relative; color: rgba(23,35,29,.78); }
.bullets li::before { content: ""; position: absolute; left: 0; top: 10px; width: 16px; height: 2px; background: var(--coral); }

.stat-band { background: var(--ink); color: white; padding: 60px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat strong { display: block; font: 800 clamp(2.2rem, 4vw, 3.4rem)/1 "Manrope"; letter-spacing: -.05em; color: var(--lime); }
.stat span { font-size: .84rem; color: rgba(255,255,255,.6); }

.fleet-section { background: var(--ink); color: white; overflow: hidden; }
.fleet-section .muted { color: rgba(255,255,255,.58); }
.fleet-track, .fleet-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.car-card { background: #26342d; color: white; border-radius: 24px; overflow: hidden; transition: transform .25s; display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-7px); }
.car-card img { width: 100%; height: 235px; object-fit: cover; filter: saturate(.78); }
.car-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.car-top { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.car-top small { text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; color: rgba(255,255,255,.5); }
.car-top strong { color: var(--lime); font-family: "Manrope"; font-size: 1.35rem; white-space: nowrap; }
.car-top strong em { font-size: .8rem; font-style: normal; opacity: .7; }
.car-intro { color: rgba(255,255,255,.66); font-size: .94rem; margin-bottom: 18px; }
.car-specs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .74rem; color: rgba(255,255,255,.66); margin-top: auto; }
.car-specs span { border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 5px 11px; }
.car-body .btn { margin-top: 20px; border-color: rgba(255,255,255,.28); color: white; }
.car-body .btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data caption { text-align: left; padding: 22px 24px 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: rgba(23,35,29,.5); }
table.data th, table.data td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.data thead th { font-family: "Manrope"; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; background: var(--paper); }
table.data tbody th { font-weight: 700; }
table.data tbody tr:last-child th, table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: rgba(217,240,90,.14); }
.table-note { margin-top: 16px; font-size: .85rem; color: rgba(23,35,29,.6); }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.panel { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.panel h3 { margin-bottom: 20px; }
.panel-yes { background: var(--lime); border-color: var(--lime); }
.panel-no { background: var(--ink); color: white; border-color: var(--ink); }
.ticks, .crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li, .crosses li { padding-left: 30px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.crosses li::before { content: "×"; position: absolute; left: 0; font-weight: 800; color: var(--coral); }
.crosses li { color: rgba(255,255,255,.72); }
.ticks a, .bullets a { border-bottom: 1px solid currentColor; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; display: flex; flex-direction: column; gap: 12px; }
.card h3 { margin: 0; }
.card p { margin: 0; }
.card-tag { align-self: start; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; background: var(--lime); border-radius: 30px; padding: 5px 12px; }
.card .text-link { margin-top: auto; }
.person-card { background: linear-gradient(180deg, #ffffff 0%, #f7f4ea 100%); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; overflow: hidden; }
.timeline li { display: grid; grid-template-columns: 92px 1fr; gap: 24px; padding: 30px 34px; border-bottom: 1px solid var(--line); align-items: start; }
.timeline li:last-child { border-bottom: 0; }
.timeline li:hover { background: var(--cream); }
.tl-num { font: 800 2.4rem/1 "Manrope"; letter-spacing: -.06em; color: var(--coral); }
.timeline h3 { margin-bottom: 8px; }

.accordion { display: grid; gap: 12px; }
.accordion details { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 4px 26px; }
.accordion details[open] { border-color: var(--ink); box-shadow: var(--shadow); }
.accordion summary {
  cursor: pointer; list-style: none; padding: 22px 0; font-family: "Manrope"; font-weight: 700; font-size: 1.06rem;
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.5rem; font-weight: 500; line-height: 1; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { padding: 0 0 24px; color: rgba(23,35,29,.74); max-width: 68ch; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; }
.gallery figcaption { margin-top: 12px; font-size: .86rem; color: rgba(23,35,29,.6); }

.quote-band { background: var(--coral); padding: 90px 0; }
.quote-band blockquote { margin: 0; font: 600 clamp(1.5rem, 3.4vw, 2.8rem)/1.2 "Manrope"; letter-spacing: -.04em; max-width: 1000px; }
.quote-meta { margin-top: 28px; font-size: .9rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px;
  display: flex; flex-direction: column; gap: 12px; transition: .25s ease;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ink); }
.related-card span { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--coral); }
.related-card em { margin-top: auto; font-style: normal; font-weight: 700; }

.offer-layout { display: grid; grid-template-columns: 1.45fr .55fr; gap: 50px; align-items: start; }
.offer-main h2 { margin: 14px 0 22px; }
.offer-main p + p { margin-top: 14px; }
.offer-main .table-wrap { margin-top: 34px; }
.model-note { margin-top: 18px; font-size: .9rem; color: rgba(23,35,29,.6); font-style: italic; }
.offer-side { position: sticky; top: 100px; }
.offer-card { background: var(--ink); color: white; border-radius: var(--radius); padding: 32px; }
.offer-card .eyebrow { color: var(--lime); }
.offer-price { display: block; font: 800 2.8rem/1 "Manrope"; letter-spacing: -.05em; margin: 14px 0 24px; }
.offer-price em { font-size: .9rem; font-style: normal; opacity: .6; }
.offer-tiers { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.offer-tiers li { display: grid; gap: 2px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.14); }
.offer-tiers span { font-size: .84rem; color: rgba(255,255,255,.6); }
.offer-tiers strong { font-family: "Manrope"; font-size: 1.15rem; color: var(--lime); }
.offer-tiers em { font-style: normal; font-size: .78rem; color: rgba(255,255,255,.45); }
.offer-card .btn { width: 100%; }
.offer-card .btn-ghost { color: white; border-color: rgba(255,255,255,.35); margin-top: 10px; }
.offer-note { margin-top: 18px; font-size: .8rem; color: rgba(255,255,255,.55); }

.route-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.route-image { background: url("images/road.jpg") center/cover; }
.route-copy { background: var(--coral); padding: clamp(50px, 8vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.route-copy h2 { margin: 17px 0 23px; }
.route-list { display: grid; gap: 10px; margin: 30px 0; }
.route-list a { padding: 13px 0; border-bottom: 1px solid rgba(23,35,29,.25); display: flex; justify-content: space-between; gap: 18px; font-weight: 700; }
.route-list a:hover { padding-left: 6px; }

.testimonials { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.quote-card { padding: 42px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.quote-card.main { background: var(--lime); border-color: var(--lime); }
.quote { font: 600 clamp(1.3rem, 2.4vw, 2.1rem)/1.25 "Manrope"; letter-spacing: -.035em; margin-bottom: 40px; }
.person { display: flex; justify-content: space-between; gap: 20px; font-size: .85rem; }
.quote-stack { display: grid; gap: 20px; }
.quote-stack .quote-card { padding: 28px; }
.quote-stack .quote { font-size: 1.1rem; margin-bottom: 25px; }

.cta { padding: 0 0 110px; }
.cta-box { background: var(--ink); color: white; border-radius: 34px; padding: clamp(45px, 7vw, 85px); position: relative; overflow: hidden; }
.cta-box::after { content: "→"; position: absolute; right: 5%; top: -25%; font: 500 19rem/1 "Manrope"; color: rgba(217,240,90,.08); }
.cta-box h2 { max-width: 770px; margin: 15px 0 20px; position: relative; z-index: 1; }
.cta-box p { max-width: 620px; color: rgba(255,255,255,.65); position: relative; z-index: 1; }
.cta-box .hero-actions { position: relative; z-index: 1; }
.cta-box .btn-ghost { color: white; border-color: rgba(255,255,255,.4); }

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-cards h3 { font-size: 1.15rem; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.contact-side, .contact-form { border-radius: var(--radius); padding: 38px; }
.contact-side { background: var(--lime); }
.contact-side h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 14px 0 24px; }
.side-note { margin-top: 26px; font-size: .88rem; padding-top: 20px; border-top: 1px solid rgba(23,35,29,.2); }
.contact-form { background: white; border: 1px solid var(--line); }
.contact-form .form-grid { gap: 18px; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.checks { border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px 18px; margin: 0; display: grid; gap: 8px; }
.checks legend { padding: 0 6px; }
.checks label, .consent label { display: flex; gap: 10px; align-items: start; font-size: .9rem; font-weight: 500; text-transform: none; letter-spacing: 0; }
.checks input, .consent input { width: auto; accent-color: var(--ink); margin-top: 3px; }
.consent a { border-bottom: 1px solid var(--ink); }

.legal-layout { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.legal-side { position: sticky; top: 100px; display: grid; gap: 24px; }
.legal-toc, .legal-links { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.legal-toc h2, .legal-links h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 9px; font-size: .88rem; }
.legal-toc a:hover, .legal-links a:hover { color: var(--coral); }
.legal-links a { display: block; padding: 8px 0; font-size: .9rem; border-bottom: 1px solid var(--line); }
.legal-links a:last-child { border-bottom: 0; }
.legal-body section { scroll-margin-top: 110px; }
.legal-body h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 42px 0 14px; }
.legal-body section:first-child h2 { margin-top: 0; }
.legal-body p { color: rgba(23,35,29,.76); max-width: 74ch; }
.legal-body p + p { margin-top: 14px; }
.legal-body a { border-bottom: 1px solid var(--ink); }
.info-card { background: var(--lime); border-radius: 22px; padding: 30px; margin-top: 48px; }
.info-card h3 { margin-bottom: 10px; }

.site-footer { background: #101914; color: white; padding: 74px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, .7fr); gap: 40px; }
.footer-brand p { margin: 22px 0 18px; max-width: 320px; color: rgba(255,255,255,.55); }
.footer-brand address { font-style: normal; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.8; }
.footer-brand a:hover, .footer-col a:hover { color: var(--lime); }
.footer-col h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; color: var(--lime); }
.footer-col a { display: block; color: rgba(255,255,255,.65); margin: 8px 0; font-size: .89rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: .76rem; }

.cookie-banner {
  position: fixed; z-index: 100; inset: auto 18px 18px; max-width: 610px; margin-left: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 21px;
  box-shadow: 0 18px 70px rgba(23,35,29,.22); transform: translateY(140%); transition: .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h3 { margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: rgba(23,35,29,.68); }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 15px; }
.cookie-actions .btn { padding: 10px 15px; font-size: .82rem; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 25px; transform: translate(-50%, 120px); background: var(--ink); color: white; padding: 13px 20px; border-radius: 30px; transition: .3s; }
.toast.show { transform: translate(-50%, 0); }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; font-size: .85rem; }
  .nav-phone { display: none; }
  .offer-layout { grid-template-columns: 1fr; gap: 40px; }
  .offer-side { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-side { position: static; grid-template-columns: 1fr 1fr; }
  .grid-4, .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links {
    position: fixed; inset: 72px 15px auto; background: var(--cream); padding: 24px;
    border-radius: 18px; display: none; flex-direction: column; align-items: start; gap: 14px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .site-header:not(.scrolled) .nav-links a { color: var(--ink); }
  .nav-actions .btn-light { display: none; }
  .menu-toggle { display: block; }
  .hero { height: auto; max-height: none; min-height: 900px; }
  .hero-grid { grid-template-columns: 1fr; align-items: center; }
  .hero-copy { padding-top: 40px; }
  .booking-card { justify-self: start; }
  .trust-strip { display: none; }
  .split, .duo, .grid-3, .related-grid, .fleet-track, .fleet-page-grid, .gallery { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
  .split.reverse .split-media, .split-media { order: 0; }
  .split-media img { height: 440px; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .route-panel, .testimonials, .contact-grid { grid-template-columns: 1fr; }
  .route-image { min-height: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 84px 0; }
}

@media (max-width: 640px) {
  .shell, .shell.narrow { width: min(100% - 28px, 1180px); }
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2rem; }
  .hero { padding-top: 100px; min-height: 820px; }
  .hero-grid { gap: 20px; }
  .hero-copy h1 { margin-block: 12px 16px; }
  .hero-copy > p { font-size: .95rem; }
  .booking-card { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.wide { grid-column: auto; }
  .page-hero { padding: 132px 0 66px; }
  .page-hero p { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
  .hero-facts dd { font-size: 1.25rem; }
  .section { padding: 68px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head p { margin-top: 16px; }
  .split, .duo, .grid-3, .grid-4, .related-grid, .fleet-track, .fleet-page-grid, .gallery, .contact-cards, .legal-side { grid-template-columns: 1fr; }
  .split-media img { height: 340px; }
  .split-media figcaption { position: static; width: auto; margin-top: 12px; border-radius: 14px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .panel, .card, .related-card, .contact-side, .contact-form, .offer-card { padding: 24px; }
  .timeline li { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
  .tl-num { font-size: 1.8rem; }
  .accordion details { padding: 2px 20px; }
  .accordion summary { font-size: .98rem; padding: 18px 0; }
  .gallery img { height: 240px; }
  .quote-band { padding: 62px 0; }
  .route-image { min-height: 320px; }
  .quote-card { padding: 26px; }
  .cta { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 6px; }
  .cookie-banner { inset: auto 10px 10px; }
  table.data th, table.data td { padding: 13px 16px; font-size: .88rem; }
}
