:root {
  --ink: #07111d;
  --ink-soft: #0d1a28;
  --navy: #14283c;
  --gold: #c7a86a;
  --gold-light: #e4d0a4;
  --ivory: #f4f0e8;
  --paper: #fbfaf7;
  --muted: #70767c;
  --line: rgba(10, 24, 38, 0.16);
  --white-line: rgba(255, 255, 255, 0.17);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 150px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--gold); color: var(--ink); padding: 10px 16px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.eyebrow { margin: 0 0 24px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .27em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.025em; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
h1 { font-size: clamp(58px, 7.2vw, 112px); }
h2 { font-size: clamp(46px, 5.3vw, 78px); }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 28px; border: 1px solid transparent; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: background .3s, color .3s, border-color .3s, transform .3s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.35); color: white; }
.button-outline:hover { background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 24px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.text-link::after { content: ""; width: 12px; height: 12px; flex: 0 0 12px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.text-link.light { color: white; }

.page-loader { position: fixed; inset: 0; z-index: 9998; display: grid; place-content: center; gap: 24px; background: var(--ink); transition: opacity .65s, visibility .65s; }
.page-loader img { width: 180px; }
.page-loader span { width: 180px; height: 1px; background: rgba(255,255,255,.16); position: relative; overflow: hidden; }
.page-loader span::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: loadline 1.15s ease forwards; }
body.is-loaded .page-loader { opacity: 0; visibility: hidden; }
@keyframes loadline { to { transform: translateX(0); } }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; color: white; transition: background .35s, border-color .35s, transform .35s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(7,17,29,.94); border-color: var(--white-line); backdrop-filter: blur(18px); }
.header-inner { height: 108px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 196px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a { position: relative; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .3s; }
.desktop-nav a:hover::after, .desktop-nav a.is-current::after { right: 0; }
.nav-cta { padding: 13px 19px; border: 1px solid rgba(255,255,255,.42); transition: background .3s, color .3s; }
.nav-cta:hover { background: white; color: var(--ink); }
.language-switch { display: flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.48); }
.language-switch a { padding: 4px 2px; }
.language-switch a.is-active { color: var(--gold-light); }
.desktop-nav .language-switch a::after { display: none; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display: block; height: 1px; background: white; margin: 6px 0; transition: transform .3s; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; padding: 120px 8vw 60px; background: var(--ink); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-family: var(--serif); font-size: clamp(44px, 10vw, 70px); line-height: 1.25; border-bottom: 1px solid var(--white-line); padding: 8px 0; }
.mobile-menu-meta { display: flex; gap: 28px; margin-top: 44px; color: var(--gold-light); }
.mobile-menu-meta .language-switch { color: rgba(255,255,255,.55); }

.hero { position: relative; height: 100svh; min-height: 720px; background: var(--ink); color: white; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s ease; }
.hero-slide.is-active > img { transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,11,18,.9) 0%, rgba(4,11,18,.56) 43%, rgba(4,11,18,.12) 76%), linear-gradient(0deg, rgba(4,11,18,.53), transparent 45%); }
.hero-shade-right { background: linear-gradient(270deg, rgba(4,11,18,.87), rgba(4,11,18,.2) 65%), linear-gradient(0deg, rgba(4,11,18,.5), transparent 50%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 90px; }
.hero-content.align-right { align-items: flex-end; text-align: right; }
.hero-content h1, .hero-content h2 { max-width: 850px; margin-bottom: 30px; font-size: clamp(62px, 7.5vw, 118px); }
.hero-copy { max-width: 580px; font-size: 18px; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 22px; }
.hero-actions .text-link { margin-top: 0; }
.slider-controls { position: absolute; z-index: 4; left: 50%; bottom: 104px; transform: translateX(-50%); display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.slider-count { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .1em; }
.slider-count i { display: block; width: 40px; height: 1px; background: rgba(255,255,255,.45); }
.slider-buttons { display: flex; }
.slider-buttons button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.28); background: rgba(0,0,0,.15); cursor: pointer; transition: .25s; }
.slider-buttons svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.slider-buttons button:hover { background: white; color: var(--ink); }
.hero-image-disclaimer { position: absolute; z-index: 4; right: calc((100vw - var(--shell)) / 2); bottom: 166px; margin: 0; color: rgba(255,255,255,.66); font-size: 8px; font-weight: 500; line-height: 1.4; letter-spacing: .055em; text-align: right; text-shadow: 0 2px 12px rgba(0,0,0,.78); }
.liquid-section { --liquid-y: 42px; --liquid-tilt: 3.6deg; --liquid-scale: .965; position: relative; z-index: 8; margin-top: -112px; padding-top: 188px; overflow: clip; border: 1px solid rgba(255,255,255,.58); border-bottom: 0; border-radius: 42px 42px 0 0; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(244,240,232,.74) 48%, rgba(232,224,208,.82)); box-shadow: 0 -1px 0 rgba(255,255,255,.92), 0 -26px 90px rgba(3,10,18,.25), inset 0 1px 0 rgba(255,255,255,.9), inset 0 28px 70px rgba(255,255,255,.22); transform: perspective(1200px) translate3d(0, var(--liquid-y), 0) rotateX(var(--liquid-tilt)) scale(var(--liquid-scale)); transform-origin: top center; backdrop-filter: blur(25px) saturate(1.28); -webkit-backdrop-filter: blur(25px) saturate(1.28); will-change: transform; }
.liquid-section::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.88), transparent 28%), radial-gradient(circle at 82% 10%, rgba(199,168,106,.16), transparent 32%), linear-gradient(115deg, transparent 18%, rgba(255,255,255,.28) 42%, transparent 62%); transform: translate3d(var(--liquid-reflection, -12%), 0, 0); }
.liquid-section::after { content: ""; position: absolute; z-index: 0; top: 0; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), var(--gold-light), rgba(255,255,255,.9), transparent); box-shadow: 0 0 26px rgba(255,255,255,.78); }
.liquid-section-handle { position: absolute; z-index: 2; left: 50%; top: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 7px 18px 4px; border: 0; background: transparent; color: #27323c; font-size: 8px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; transform: translateX(-50%); cursor: pointer; }
.liquid-section-handle small { font-size: inherit; font-weight: inherit; letter-spacing: inherit; white-space: nowrap; }
.liquid-handle-line { width: 58px; height: 5px; display: block; border: 1px solid rgba(7,17,29,.14); border-radius: 99px; background: linear-gradient(90deg, rgba(255,255,255,.65), rgba(199,168,106,.68), rgba(255,255,255,.65)); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), 0 4px 18px rgba(7,17,29,.12); transition: width .3s, box-shadow .3s; }
.liquid-section-handle:hover .liquid-handle-line { width: 70px; box-shadow: inset 0 1px 1px rgba(255,255,255,.95), 0 5px 22px rgba(199,168,106,.3); }

.journey-progress { --journey-fill: 0; --journey-y: 0px; position: fixed; z-index: 520; left: 17px; top: 50%; width: 76px; height: 390px; padding: 0; display: flex; flex-direction: column; align-items: center; border: 0; background: transparent; color: white; opacity: 0; visibility: hidden; transform: translate(-18px, -50%); transition: opacity .45s, transform .45s, visibility .45s; pointer-events: none; cursor: pointer; filter: drop-shadow(0 10px 26px rgba(0,0,0,.34)); }
.journey-progress.is-active { opacity: 1; visibility: visible; transform: translate(0, -50%); }
.journey-progress.is-active { pointer-events: auto; }
.journey-progress:hover { transform: translate(3px, -50%); }
.journey-progress:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 6px; border-radius: 28px; }
.journey-progress:hover .journey-rail { border-color: rgba(199,168,106,.5); box-shadow: inset 0 0 24px rgba(255,255,255,.05), 0 8px 38px rgba(0,0,0,.3), 0 0 24px rgba(199,168,106,.15); }
.journey-progress.is-on-light { color: var(--ink); filter: drop-shadow(0 10px 22px rgba(255,255,255,.34)); }
.journey-progress.is-on-light .journey-label { color: rgba(7,17,29,.76); }
.journey-progress.is-on-light .journey-rail { border-color: rgba(7,17,29,.2); background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(232,225,211,.82)); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px rgba(7,17,29,.13); }
.journey-progress.is-on-light .journey-car { border-color: rgba(7,17,29,.25); background: rgba(248,246,240,.84); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(7,17,29,.18); }
.journey-progress.is-on-light .journey-car-body { fill: rgba(7,17,29,.035); stroke: rgba(7,17,29,.7); }
.journey-progress.is-on-light .journey-car-glass { fill: rgba(255,255,255,.78); stroke: rgba(7,17,29,.24); }
.journey-progress.is-on-light .journey-car-line { stroke: rgba(7,17,29,.55); }
.journey-progress.is-on-light .journey-cta { color: #765e2c; }
.journey-label { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.76); font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.journey-rail { position: relative; width: 62px; height: 268px; margin: 13px 0; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: linear-gradient(180deg, rgba(9,22,35,.58), rgba(5,13,22,.88)); box-shadow: inset 0 0 24px rgba(255,255,255,.035), 0 8px 30px rgba(0,0,0,.24); backdrop-filter: blur(13px) saturate(1.2); -webkit-backdrop-filter: blur(13px) saturate(1.2); }
.journey-rail::before, .journey-rail::after { content: ""; position: absolute; left: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); box-shadow: 0 0 12px rgba(199,168,106,.8); }
.journey-rail::before { top: 10px; }
.journey-rail::after { bottom: 10px; }
.journey-rail-fill { position: absolute; left: 50%; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(var(--gold-light), var(--gold)); transform: translateX(-50%) scaleY(var(--journey-fill)); transform-origin: center top; box-shadow: 0 0 10px rgba(199,168,106,.72); }
.journey-car { position: absolute; z-index: 2; left: 50%; top: 13px; width: 39px; height: 86px; padding: 4px; border: 1px solid rgba(255,255,255,.28); border-radius: 18px; background: rgba(6,16,27,.74); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 22px rgba(0,0,0,.35); transform: translate(-50%, var(--journey-y)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.journey-car svg { width: 100%; height: 100%; overflow: visible; }
.journey-car-body { fill: rgba(255,255,255,.045); stroke: rgba(255,255,255,.74); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.journey-car-fill { fill: var(--gold); opacity: .78; transform: scaleY(var(--journey-fill)); transform-origin: center bottom; transform-box: fill-box; }
.journey-car-glass { fill: rgba(7,17,29,.78); stroke: rgba(255,255,255,.27); stroke-width: .8; }
.journey-car-line { fill: none; stroke: rgba(255,255,255,.58); stroke-width: 1; stroke-linecap: round; }
.journey-cta { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-light); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.journey-cta i { width: 8px; height: 12px; display: inline-grid; place-items: center; font-style: normal; animation: journey-invite 1.55s ease-in-out infinite; }
.journey-cta i::after { content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
@keyframes journey-invite { 0%, 100% { transform: translateY(-2px); opacity: .55; } 50% { transform: translateY(3px); opacity: 1; } }
.journey-progress.is-returning .journey-cta i { animation-name: journey-return; }
.journey-progress.is-returning .journey-cta i::after { transform: rotate(225deg); }
@keyframes journey-return { 0%, 100% { transform: translateY(2px); opacity: .55; } 50% { transform: translateY(-3px); opacity: 1; } }

@media (min-width: 1200px) {
  .journey-progress ~ section .shell { width: min(1160px, calc(100vw - 220px)); }
}

@media (max-width: 1199px) {
  .journey-progress { display: none; }
}

.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 120px; align-items: start; }
.split-heading h2 { margin-bottom: 0; }
.intro-copy { padding-top: 50px; }
.intro-copy p { color: #525b63; }
.intro-copy .lead { color: var(--ink); font-size: 20px; }
.trust-strip { margin-top: 120px; padding-top: 36px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip div { padding: 0 30px; border-right: 1px solid var(--line); }
.trust-strip div:first-child { padding-left: 0; }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { display: block; font-family: var(--serif); font-weight: 400; color: var(--gold); font-size: 42px; line-height: 1; }
.trust-strip span { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; }

.dark-section { background: var(--ink); color: white; }
.image-story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(199,168,106,.42); }
.image-frame img { position: relative; width: 100%; min-height: 620px; object-fit: cover; }
.image-story .image-frame { width: min(100%, 560px); justify-self: start; }
.image-story .image-frame img { height: auto; min-height: 0; aspect-ratio: 4 / 3; object-position: center; }
.image-note { position: absolute; z-index: 1; left: 20px; bottom: 18px; background: rgba(7,17,29,.78); padding: 8px 12px; color: rgba(255,255,255,.7); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.story-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 17px; }
.feature-list { list-style: none; padding: 0; margin: 42px 0; border-top: 1px solid var(--white-line); }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--white-line); color: rgba(255,255,255,.82); }
.feature-list span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }

.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 80px; margin-bottom: 70px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 410px; color: var(--muted); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 80px 1fr 1.25fr 48px; align-items: center; gap: 38px; padding: 36px 0; border-bottom: 1px solid var(--line); transition: padding .3s, background .3s; }
.service-row:hover { padding-inline: 22px; background: white; }
.service-row > span { color: var(--gold); font-size: 11px; letter-spacing: .18em; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.service-row p { margin: 0; color: var(--muted); font-size: 14px; }
.service-row > a { width: 46px; height: 46px; display: grid; place-content: center; border: 1px solid var(--line); }
.service-row > a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.fleet-gallery-section { background: #e9e5dc; overflow: hidden; }
.fleet-gallery-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; margin-bottom: 70px; }
.fleet-gallery-heading h2 { margin-bottom: 0; }
.fleet-gallery-heading > p { color: #575f65; font-size: 17px; }
.fleet-gallery { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 430px 280px; gap: 12px; padding: 16px; border: 1px solid rgba(7,17,29,.26); }
.fleet-gallery::before, .fleet-gallery::after { content: ""; position: absolute; z-index: 4; width: 34px; height: 34px; pointer-events: none; }
.fleet-gallery::before { left: -7px; top: -7px; border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); }
.fleet-gallery::after { right: -7px; bottom: -7px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.fleet-gallery-card { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.28); outline: 1px solid rgba(7,17,29,.24); outline-offset: 3px; background: var(--ink); color: white; text-align: left; cursor: zoom-in; }
.fleet-gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,10,17,.82), transparent 58%); transition: background .45s; }
.fleet-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.fleet-gallery-card:hover img { transform: scale(1.035); filter: brightness(.92); }
.fleet-gallery-card > span { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; display: grid; grid-template-columns: 38px 1fr; gap: 2px 10px; align-items: end; }
.fleet-gallery-card i { grid-row: 1 / 3; align-self: center; color: var(--gold-light); font-style: normal; font-size: 10px; letter-spacing: .15em; }
.fleet-gallery-card strong { font-family: var(--serif); font-size: 28px; font-weight: 300; line-height: 1.05; }
.fleet-gallery-card small { color: rgba(255,255,255,.68); font-size: 11px; }
.fleet-gallery-main { grid-column: 1 / -1; grid-row: 1; }
.fleet-gallery-main img { object-fit: contain; }
.fleet-gallery-portrait { grid-column: 1 / 5; grid-row: 2; }
.fleet-gallery-wide { grid-column: 5 / 9; grid-row: 2; }
.fleet-gallery-detail { grid-column: 9 / 13; grid-row: 2; }
.gallery-dialog { width: min(82vw, 900px); max-width: none; padding: 0; border: 1px solid rgba(255,255,255,.15); background: #03080d; box-shadow: 0 30px 120px rgba(0,0,0,.68); }
.gallery-dialog::backdrop { background: rgba(3,8,13,.88); backdrop-filter: blur(8px); }
.gallery-dialog figure { margin: 0; }
.gallery-dialog img { display: block; width: auto; max-width: 100%; height: auto; max-height: 56svh; margin: 0 auto; object-fit: contain; background: #03080d; }
.gallery-dialog[data-crop="front-detail"] img { width: min(100%, 440px); height: min(56svh, 560px); max-height: none; object-fit: cover; object-position: center 43%; }
.gallery-dialog figcaption { min-height: 104px; display: grid; grid-template-columns: 55px 1fr; gap: 22px; align-items: center; padding: 22px 32px; border-top: 1px solid rgba(255,255,255,.16); color: white; }
.gallery-dialog figcaption > span { color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.gallery-dialog figcaption strong { font-family: var(--serif); font-size: 27px; font-weight: 300; }
.gallery-dialog figcaption p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: 12px; }
.gallery-dialog button { position: absolute; z-index: 2; right: 13px; top: 13px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(3,8,13,.72); color: white; font-size: 25px; cursor: pointer; }

.payment-section { background: var(--ivory); padding: 110px 0; }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 130px; align-items: center; }
.payment-grid > div { min-width: 0; }
.payment-grid h2 { margin-bottom: 0; }
.payment-grid > div:last-child > p { font-size: 18px; color: #4f565c; }
.payment-methods { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 8px; }
.payment-methods span { border: 1px solid var(--line); padding: 10px 11px; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.payment-acceptance { margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.payment-provider { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.payment-provider > span, .payment-cards-label { color: #596168; font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.payment-provider a { color: var(--navy); text-decoration: none; }
.payment-provider-wordmark { display: inline-flex; align-items: flex-start; font-family: Arial, Helvetica, sans-serif; font-size: 25px; font-weight: 800; letter-spacing: -.07em; line-height: 1; text-transform: lowercase; }
.payment-provider-wordmark sup { margin: 1px 0 0 3px; font-size: 7px; letter-spacing: 0; }
.payment-cards-label { margin: 24px 0 10px; }
.payment-card-carousel { width: 100%; max-width: 100%; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: none; }
.payment-card-carousel::-webkit-scrollbar { display: none; }
.payment-card-carousel.is-animated { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.payment-card-track { width: max-content; display: flex; gap: 9px; }
.payment-card-track.is-animated { animation: payment-cards-scroll 28s linear infinite; }
.payment-card-carousel:hover .payment-card-track { animation-play-state: paused; }
.payment-card-logo { position: relative; width: 88px; height: 56px; display: inline-flex; flex: 0 0 88px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #d9d9d4; border-radius: 5px; background: #fff; box-shadow: 0 5px 18px rgba(6, 18, 29, .045); font-family: Arial, Helvetica, sans-serif; }
.payment-card-logo svg { display: block; width: 50px; height: 33px; }
.payment-card-logo-visa svg { width: 54px; fill: #1434cb; }
.payment-card-logo-visa-electron { flex-direction: column; color: #17226d; font-style: italic; line-height: .8; }
.payment-card-logo-visa-electron::after { content: ""; position: absolute; right: 13px; bottom: 9px; width: 36px; height: 3px; background: #f7b600; }
.payment-card-logo-visa-electron strong { font-size: 19px; letter-spacing: -.05em; }
.payment-card-logo-visa-electron small { margin-left: 19px; font-size: 7px; font-weight: 700; }
.payment-card-logo-vpay { border-color: #282762; background: linear-gradient(#fff 0 64%, #282762 64%); color: #282762; }
.payment-card-logo-vpay strong { position: absolute; top: 3px; font-size: 27px; font-style: italic; line-height: 1; }
.payment-card-logo-vpay small { position: absolute; bottom: 3px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .16em; line-height: 1; }
.payment-card-logo-amex { background: #006fcf; color: #fff; }
.payment-card-logo-amex span { font-family: Arial, Helvetica, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: -.02em; line-height: .9; text-align: center; }
.payment-card-logo-discover strong { color: #1d2024; font-size: 11px; letter-spacing: -.05em; }
.payment-card-logo-discover strong span { display: inline-flex; align-items: center; justify-content: center; width: 12px; height: 12px; border-radius: 50%; background: #f58220; color: #fff; }
.payment-card-logo-unionpay { gap: 2px; border: 0; background: linear-gradient(105deg, #df143b 0 28%, #0877b9 28% 68%, #069b83 68%); color: #fff; transform: skew(-5deg); }
.payment-card-logo-unionpay > * { transform: skew(5deg); }
.payment-card-logo-unionpay strong { font-size: 11px; letter-spacing: -.05em; }
.payment-card-logo-unionpay small { font-size: 8px; }
.payment-card-logo-maestro i { position: absolute; top: 9px; width: 25px; height: 25px; border-radius: 50%; opacity: .92; }
.payment-card-logo-maestro i:first-child { left: 22px; background: #ed1b2f; }
.payment-card-logo-maestro i:nth-child(2) { right: 22px; background: #0099df; }
.payment-card-logo-maestro small { position: absolute; bottom: 3px; color: #111; font-size: 8px; }
.payment-card-logo-jcb { gap: 2px; }
.payment-card-logo-jcb i { width: 18px; height: 31px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px 4px 7px 4px; color: #fff; font-size: 15px; font-style: normal; font-weight: 800; }
.payment-card-logo-jcb i:nth-child(1) { background: #0868af; }
.payment-card-logo-jcb i:nth-child(2) { background: #c81f42; }
.payment-card-logo-jcb i:nth-child(3) { background: #15955c; }
.payment-card-logo-samsung { flex-direction: column; align-items: flex-start; padding-left: 12px; color: #050505; line-height: .85; }
.payment-card-logo-samsung strong { font-size: 9px; letter-spacing: .02em; }
.payment-card-logo-samsung small { font-size: 17px; }
.payment-card-logo-google strong { color: #4a4d52; font-size: 17px; font-weight: 500; }
.payment-card-logo-google i { color: #4285f4; font-size: 23px; font-style: normal; font-weight: 700; }
.payment-card-logo-apple strong { color: #050505; font-size: 16px; font-weight: 600; letter-spacing: -.04em; }
.payment-trademark-note { margin: 10px 0 0 !important; color: #70767c !important; font-size: 11px !important; line-height: 1.5; }
@keyframes payment-cards-scroll { to { transform: translateX(calc(-50% - 4.5px)); } }

.cta-band { padding: 120px 0; background: var(--navy); color: white; }
.cta-band-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.cta-band h2 { margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer { background: #050d16; color: rgba(255,255,255,.7); padding-top: 85px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 80px; padding-bottom: 70px; }
.footer-brand img { width: 150px; height: auto; aspect-ratio: 531 / 266; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { max-width: 330px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-col a:hover { color: var(--gold); }
.footer-label { color: white; margin-bottom: 11px; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.footer-col address { font-style: normal; }
.footer-col p { margin-bottom: 0; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--white-line); font-size: 10px; letter-spacing: .05em; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { color: var(--gold-light); }
.whatsapp-fab { position: fixed; z-index: 300; bottom: 20px; right: 20px; display: flex; align-items: center; gap: 11px; padding: 12px 16px; background: #153c31; color: white; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 8px 30px rgba(0,0,0,.24); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: transform .3s; }
.whatsapp-fab:hover { transform: translateY(-3px); }
.whatsapp-fab svg { width: 21px; height: 21px; fill: white; }
.cookie-notice[hidden] { display: none; }
.cookie-notice { position: fixed; z-index: 1200; left: 24px; bottom: 24px; width: min(520px, calc(100vw - 48px)); padding: 22px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; color: rgba(255,255,255,.76); background: rgba(7,17,29,.94); border: 1px solid rgba(228,208,164,.3); box-shadow: 0 24px 70px rgba(0,0,0,.3); backdrop-filter: blur(22px); opacity: 0; transform: translateY(18px); transition: opacity .3s ease, transform .3s ease; }
.cookie-notice.is-visible { opacity: 1; transform: none; }
.cookie-notice p { margin: 0; font-size: 12px; line-height: 1.6; }
.cookie-notice .cookie-notice-label { margin-bottom: 7px; color: var(--gold-light); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.cookie-notice-actions { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.cookie-notice-actions a, .cookie-notice-actions button { min-width: 108px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.22); background: transparent; color: white; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-align: center; text-transform: uppercase; cursor: pointer; }
.cookie-notice-actions button { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.inner-hero { padding: 250px 0 115px; background: var(--ink); color: white; }
.inner-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.inner-hero h1 { margin-bottom: 0; font-size: clamp(60px, 7vw, 102px); }
.inner-lead { margin: 0 0 10px; color: rgba(255,255,255,.68); font-size: 18px; }
.service-detail-list { border-top: 1px solid var(--line); }
.service-detail { display: grid; grid-template-columns: 120px 1fr; padding: 75px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--gold); font-size: 12px; letter-spacing: .16em; }
.service-detail > div { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 100px; }
.service-detail h2 { font-size: 50px; margin-bottom: 0; }
.service-detail p, .service-detail ul { color: var(--muted); }
.service-detail ul { list-style: none; margin: 0; padding: 0; }
.service-detail li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.image-banner { height: 80svh; min-height: 620px; position: relative; color: white; }
.image-banner > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58); }
.image-banner-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; }
.image-banner-copy h2 { margin: 0; }

.fleet-hero, .landing-hero { min-height: 86svh; position: relative; color: white; background: var(--ink); }
.fleet-hero > img, .landing-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet-hero-copy, .landing-hero-copy { position: relative; z-index: 2; min-height: 86svh; display: flex; justify-content: center; flex-direction: column; padding-top: 100px; }
.fleet-hero-copy h1, .landing-hero-copy h1 { max-width: 950px; margin-bottom: 25px; }
.fleet-hero-copy > p:last-child, .landing-hero-copy > p { max-width: 610px; color: rgba(255,255,255,.75); font-size: 18px; }
.interior-full { position: relative; background: var(--ink); padding-bottom: 80px; }
.interior-full > img { width: 100%; height: 72svh; min-height: 600px; object-fit: cover; }
.interior-cards { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: -110px; position: relative; }
.interior-cards article { min-height: 250px; padding: 36px; background: rgba(7,17,29,.94); color: white; border-right: 1px solid var(--white-line); backdrop-filter: blur(16px); }
.interior-cards span { color: var(--gold); font-size: 10px; }
.interior-cards h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 25px 0 8px; }
.interior-cards p { color: rgba(255,255,255,.6); }
.fleet-care { text-align: center; }
.narrow-copy { max-width: 850px; margin-inline: auto; }
.narrow-copy > p:not(.eyebrow) { max-width: 670px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.narrow-copy .button { margin-top: 22px; }

.business-hero { background: linear-gradient(120deg, var(--ink), #142b41); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { padding: 45px 38px 55px; border: 1px solid var(--line); background: white; }
.info-card span { color: var(--gold); font-size: 11px; }
.info-card h2, .info-card h3 { margin: 60px 0 22px; font-family: var(--serif); font-size: 42px; font-weight: 300; line-height: 1.05; }
.info-card p { color: var(--muted); }
.process-section .section-heading > p { color: rgba(255,255,255,.58); }
.process-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--white-line); }
.process-list li { min-height: 280px; padding: 28px; border-right: 1px solid var(--white-line); }
.process-list li:first-child { padding-left: 0; }
.process-list span { color: var(--gold); font-size: 10px; }
.process-list h3 { margin: 80px 0 10px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.process-list p { color: rgba(255,255,255,.58); }
.light-payment { background: var(--paper); }

.contact-hero { min-height: 100svh; padding: 190px 0 110px; background: var(--ink); color: white; }
.mono-contact { padding-top: 145px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy { position: sticky; top: 160px; }
.contact-copy h1 { font-size: clamp(65px, 7vw, 106px); margin-bottom: 28px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); max-width: 450px; }
.contact-direct { margin-top: 50px; border-top: 1px solid var(--white-line); }
.contact-direct a { display: flex; flex-direction: column; padding: 17px 0; border-bottom: 1px solid var(--white-line); }
.contact-direct span { color: var(--gold); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.contact-direct strong { font-weight: 400; }
.form-panel { background: white; color: var(--ink); padding: 52px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label > span { font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); outline: 0; transition: border-color .25s; }
.form-grid textarea { resize: vertical; min-height: 120px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold); }
.form-full { grid-column: 1 / -1; }
.checkbox { flex-direction: row !important; align-items: flex-start; gap: 12px !important; }
.checkbox input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--gold); }
.checkbox span { font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--muted); }
.checkbox a { color: var(--ink); border-bottom: 1px solid; }
.honey { position: absolute; left: -9999px; }
.captcha-dev { padding: 12px 15px; border: 1px dashed var(--line); background: var(--ivory); color: var(--muted); font-size: 12px; }
.form-action { display: flex; flex-direction: row !important; align-items: center; justify-content: space-between; gap: 20px !important; }
.form-action .button svg { width: 22px; fill: none; stroke: currentColor; }
.form-action p { margin: 0; color: var(--muted); font-size: 11px; }
.form-status { display: none; margin-top: 24px; padding: 14px 16px; border: 1px solid var(--line); font-size: 13px; }
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: #4d7b66; background: #edf5f0; color: #245840; }
.form-status.is-error { border-color: #a75c54; background: #fbefed; color: #7d312b; }

.landing-hero-copy h1 { max-width: 900px; font-size: clamp(58px, 7vw, 104px); }
.landing-highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 48px; }
.landing-highlight-grid article { min-height: 200px; padding: 24px; border-right: 1px solid var(--line); }
.landing-highlight-grid article:first-child { padding-left: 0; }
.landing-highlight-grid span { color: var(--gold); font-size: 10px; }
.landing-highlight-grid h2 { margin-top: 55px; font-family: var(--sans); font-size: 18px; line-height: 1.3; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 120px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 26px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-item button span { font-family: var(--serif); font-size: 25px; }
.accordion-item button i { font-style: normal; color: var(--gold); font-size: 26px; transition: transform .3s; }
.accordion-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s; }
.accordion-item > div > p { min-height: 0; overflow: hidden; color: var(--muted); margin-bottom: 0; }
.accordion-item.is-open > div { grid-template-rows: 1fr; }
.accordion-item.is-open > div > p { padding-bottom: 28px; }
.accordion-item.is-open button i { transform: rotate(45deg); }

.vcard-page { min-height: 100svh; padding: 50px 20px; display: grid; place-items: center; position: relative; background: var(--ink); }
.vcard-backdrop { position: fixed; inset: 0; background: linear-gradient(rgba(7,17,29,.9), rgba(7,17,29,.97)), url('/assets/img/audi-a8l-interior.jpg') center/cover; filter: blur(10px); transform: scale(1.05); }
.vcard-shell { position: relative; width: min(100%, 520px); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.42); }
.vcard-logo { display: flex; justify-content: center; height: 110px; align-items: center; background: var(--ink); }
.vcard-logo img { width: 170px; }
.vcard-photo { height: 190px; overflow: hidden; }
.vcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.vcard-content { padding: 42px 46px; }
.vcard-content h1 { font-size: 48px; margin-bottom: 4px; }
.vcard-role { color: var(--muted); }
.vcard-actions { border-top: 1px solid var(--line); margin-top: 28px; }
.vcard-actions a { display: flex; flex-direction: column; padding: 13px 0; border-bottom: 1px solid var(--line); }
.vcard-actions span { color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.vcard-actions strong { font-weight: 400; }
.vcard-save { width: 100%; margin-top: 28px; }
.vcard-content > .text-link { width: 100%; justify-content: space-between; }
.vcard-footer { padding: 18px 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.vcard-footer p { margin: 2px 0; }

.legal-hero { padding: 240px 0 100px; background: var(--ink); color: white; }
.legal-hero h1 { font-size: clamp(60px, 7vw, 100px); margin-bottom: 24px; }
.legal-hero .narrow-copy > p:last-child { color: rgba(255,255,255,.55); margin: 0; }
.legal-content { background: white; }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 100px; max-width: 1080px; }
.legal-grid aside { position: sticky; top: 145px; align-self: start; display: flex; flex-direction: column; gap: 7px; font-size: 12px; }
.legal-grid aside p { color: var(--gold); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.legal-grid aside a { color: var(--muted); }
.legal-grid article { max-width: 750px; color: #505860; }
.legal-grid article h2 { color: var(--ink); font-family: var(--sans); font-size: 25px; line-height: 1.3; letter-spacing: 0; margin: 55px 0 15px; scroll-margin-top: 140px; }
.legal-grid article h3 { color: var(--ink); margin-top: 28px; }
.legal-grid article a { color: var(--ink); text-decoration: underline; }
.cookie-table-wrap { width: 100%; margin: 28px 0; overflow-x: auto; }
.cookie-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 13px; }
.cookie-table th, .cookie-table td { padding: 15px 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.cookie-table th { color: var(--ink); background: var(--ivory); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.cookie-table code { white-space: nowrap; color: var(--ink); }
.not-found { min-height: 100svh; display: grid; place-content: center; background: var(--ink); color: white; padding: 150px 0; }
.not-found h1 { margin-bottom: 25px; }
.not-found p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.not-found .button { margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .page-loader { display: none; }
}

@media (max-width: 1024px) {
  :root { --shell: min(100% - 48px, 880px); }
  .section-pad { padding: 110px 0; }
  .desktop-nav { display: none; }
  .journey-progress { display: none; }
  .menu-toggle { display: block; }
  .header-inner { height: 88px; }
  .brand img { width: 165px; }
  .split-heading, .image-story-grid, .inner-hero-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .intro-copy { padding-top: 0; max-width: 700px; }
  .image-story-grid { gap: 85px; }
  .image-frame img { min-height: 520px; }
  .service-row { grid-template-columns: 55px 1fr 1.2fr 46px; gap: 22px; }
  .payment-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .contact-copy { position: static; }
  .landing-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-highlight-grid article:nth-child(2) { border-right: 0; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { gap: 50px; }
  .fleet-gallery-heading { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 36px); }
  body { line-height: 1.58; }
  .section-pad { padding: 84px 0; }
  .eyebrow { margin-bottom: 17px; }
  h1 { font-size: clamp(50px, 15vw, 70px); }
  h2 { font-size: clamp(42px, 12vw, 58px); }
  .header-inner { height: 78px; }
  .brand img { width: 145px; }
  .hero { min-height: 680px; }
  .hero-content { justify-content: flex-end; padding: 130px 0 135px; }
  .hero-content.align-right { align-items: flex-start; text-align: left; }
  .hero-content h1, .hero-content h2 { font-size: clamp(53px, 16vw, 76px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .slider-controls { bottom: 82px; justify-content: space-between; }
  .hero-image-disclaimer { right: 18px; bottom: 145px; max-width: calc(100vw - 36px); font-size: 7px; }
  .liquid-section { margin-top: -70px; padding-top: 128px; border-radius: 26px 26px 0 0; }
  .hero-shade, .hero-shade-right { background: linear-gradient(0deg, rgba(4,11,18,.94) 8%, rgba(4,11,18,.46) 75%, rgba(4,11,18,.54)); }
  .mobile-menu { padding-inline: 24px; }
  .mobile-menu-meta { flex-direction: column; gap: 6px; }
  .mobile-menu-meta .language-switch { flex-direction: row; }
  .split-heading, .image-story-grid, .section-heading, .cta-band-inner, .contact-grid, .faq-grid { gap: 44px; }
  .trust-strip { grid-template-columns: 1fr 1fr; margin-top: 70px; row-gap: 32px; }
  .trust-strip div { padding: 0 16px; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(3) { padding-left: 0; }
  .trust-strip strong { font-size: 34px; }
  .image-frame::before { inset: 10px -8px -10px 8px; }
  .image-frame img { min-height: 380px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 45px; }
  .service-row { grid-template-columns: 36px 1fr 42px; padding: 27px 0; }
  .service-row h3 { font-size: 27px; }
  .service-row p { grid-column: 2 / -1; }
  .service-row > a { grid-column: 3; grid-row: 1; }
  .fleet-gallery { width: calc(100% - 18px); margin-left: 18px; grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; padding: 12px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .fleet-gallery::-webkit-scrollbar { display: none; }
  .fleet-gallery-card, .fleet-gallery-main, .fleet-gallery-portrait, .fleet-gallery-wide, .fleet-gallery-detail { display: block; flex: 0 0 82vw; height: auto; aspect-ratio: 4 / 3; grid-column: auto; grid-row: auto; scroll-snap-align: center; }
  .fleet-gallery-main img { object-fit: contain; }
  .fleet-gallery-heading { margin-bottom: 42px; }
  .gallery-dialog figcaption { grid-template-columns: 34px 1fr; padding: 18px; }
  .payment-grid { grid-template-columns: 1fr; gap: 35px; }
  .payment-section { padding: 82px 0; }
  .payment-provider { align-items: flex-start; flex-direction: column; gap: 12px; }
  .payment-card-carousel, .payment-card-carousel.is-animated { overflow-x: auto; padding-bottom: 12px; mask-image: none; -webkit-mask-image: none; scroll-snap-type: x proximity; }
  .payment-card-track.is-animated { animation: none; }
  .payment-card-track [data-payment-clone] { display: none; }
  .payment-card-logo { scroll-snap-align: start; }
  .cta-band { padding: 85px 0; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 22px 0 95px; }
  .whatsapp-fab { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .whatsapp-fab span { display: none; }
  .cookie-notice { left: 18px; bottom: 86px; width: calc(100vw - 36px); grid-template-columns: 1fr; gap: 16px; padding: 19px; }
  .cookie-notice-actions { flex-direction: row; }
  .cookie-notice-actions a, .cookie-notice-actions button { flex: 1; }
  .inner-hero { padding: 180px 0 80px; }
  .inner-hero h1 { font-size: 52px; }
  .service-detail { grid-template-columns: 38px 1fr; padding: 48px 0; }
  .service-detail > div { grid-template-columns: 1fr; gap: 15px; }
  .service-detail h2 { font-size: 39px; }
  .image-banner { min-height: 520px; }
  .fleet-hero, .landing-hero, .fleet-hero-copy, .landing-hero-copy { min-height: 760px; }
  .fleet-hero-copy, .landing-hero-copy { justify-content: flex-end; padding-bottom: 90px; }
  .interior-full > img { min-height: 460px; }
  .interior-cards { grid-template-columns: 1fr; margin-top: -55px; }
  .interior-cards article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .interior-cards h3 { margin-top: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .info-card h2 { margin-top: 35px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .process-list h3 { margin-top: 28px; }
  .contact-hero { padding: 150px 0 80px; }
  .form-panel { margin-inline: -18px; padding: 32px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-action { align-items: flex-start; flex-direction: column !important; }
  .form-action .button { width: 100%; }
  .landing-highlight-grid { grid-template-columns: 1fr; }
  .landing-highlight-grid article { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .landing-highlight-grid h2 { margin-top: 35px; }
  .faq-grid { gap: 25px; }
  .accordion-item button span { font-size: 21px; padding-right: 20px; }
  .vcard-page { padding: 16px; }
  .vcard-content { padding: 34px 25px; }
  .vcard-content h1 { font-size: 39px; }
  .vcard-footer { padding: 16px 25px; }
  .legal-hero { padding: 180px 0 70px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-grid aside { display: none; }
  .cookie-table-wrap { max-width: calc(100vw - 36px); }
}
