:root {
  --black: #000;
  --obsidian: #080808;
  --graphite: #111113;
  --paper: #f5f5f7;
  --white: #fff;
  --ink: #111113;
  --muted: #6e6e73;
  --line: rgba(17, 17, 19, .14);
  --line-light: rgba(255, 255, 255, .16);
  --champagne: #bfa26a;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
  --radius: 20px;
  --shell: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.2, .65, .2, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.45; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-is-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
picture, img { display: block; }
img { max-width: 100%; }
::selection { color: var(--white); background: var(--ink); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }

.shell { width: var(--shell); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; left: 20px; top: -60px; padding: 11px 16px; border-radius: 8px; color: var(--white); background: var(--ink); font-weight: 650; transition: top .2s var(--ease); }
.skip-link:focus { top: 18px; }
.icon { width: 18px; height: 18px; flex: 0 0 18px; }
.media-object { width: 100%; height: 100%; object-fit: cover; }
.section-label { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1; text-transform: uppercase; color: var(--muted); }
.section-label::before { width: 20px; height: 1px; background: currentColor; content: ""; }
.section-label--light { color: rgba(255,255,255,.58); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 650; letter-spacing: -.065em; text-wrap: balance; }
h1 { margin-bottom: 25px; font-size: clamp(4.2rem, 9vw, 7.2rem); line-height: .9; }
h2 { margin-bottom: 22px; font-size: clamp(3rem, 5.5vw, 5.4rem); line-height: .94; }
h3 { font-size: clamp(1.5rem, 2vw, 2.2rem); line-height: 1; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 19px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 650; letter-spacing: -.01em; transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: var(--paper); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(0,0,0,.08); backdrop-filter: blur(8px); }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; font-size: 14px; font-weight: 650; transition: gap .35s var(--ease), color .35s var(--ease); }
.text-link:hover { gap: 12px; color: var(--champagne); }

.site-header { position: sticky; z-index: 50; top: 0; height: 0; color: var(--white); transition: color .35s var(--ease); }
.nav-shell { position: relative; top: 18px; min-height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 0 8px; transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease); }
.site-header.is-scrolled .nav-shell { padding: 0 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(10,10,11,.72); box-shadow: 0 12px 38px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; font-size: 19px; font-weight: 680; letter-spacing: -.06em; }
.brand-dot { width: 12px; height: 12px; display: inline-block; border: 3px solid var(--white); border-radius: 50%; box-shadow: inset 0 0 0 2px var(--obsidian); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 25px; font-size: 13px; font-weight: 530; color: rgba(255,255,255,.78); }
.nav-links a { transition: color .25s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-utility { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language { display: inline-flex; gap: 2px; padding: 3px; border-radius: 99px; background: rgba(255,255,255,.1); }
.language a { min-width: 31px; padding: 5px 7px; border-radius: 99px; color: rgba(255,255,255,.6); text-align: center; font-size: 11px; font-weight: 700; line-height: 1; }
.language a.active { color: var(--ink); background: var(--white); }
.header-book { min-height: 36px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 99px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 650; transition: transform .3s var(--ease), background .3s var(--ease); }
.header-book:hover { background: var(--paper); transform: translateY(-1px); }
.menu-button { display: none; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--obsidian); isolation: isolate; }
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media img { animation: hero-breathe 14s ease-out both; object-position: center; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.53) 37%, rgba(0,0,0,.08) 73%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 45%); }
.hero-content { padding: 180px 0 9.5vh; }
.hero-content .section-label { margin-bottom: 25px; }
.hero-content h1 { max-width: 760px; }
.hero-lead { max-width: 410px; margin-bottom: 33px; font-size: clamp(18px, 1.55vw, 21px); line-height: 1.35; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-scroll { position: absolute; right: max(38px, calc((100vw - 1240px) / 2)); bottom: 38px; margin: 0; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll::after { width: 1px; height: 34px; display: inline-block; margin-top: 10px; background: rgba(255,255,255,.55); content: ""; }

.promise { padding: clamp(104px, 13vw, 190px) 0; background: var(--paper); }
.promise-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(48px, 10vw, 150px); align-items: start; }
.promise-intro { position: sticky; top: 110px; }
.promise-intro h2 { max-width: 620px; }
.promise-intro > p:last-child { max-width: 400px; margin-bottom: 0; color: var(--muted); font-size: 19px; line-height: 1.45; }
.promise-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.promise-statement { padding: 33px 0 36px; border-bottom: 1px solid var(--line); }
.promise-statement span, .why-line > span { display: block; margin-bottom: 14px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.promise-statement h3 { margin-bottom: 10px; font-size: clamp(2rem, 3vw, 3.2rem); }
.promise-statement p { max-width: 380px; margin: 0; color: var(--muted); font-size: 17px; }

.fleet-section { padding: clamp(100px, 12vw, 170px) 0; color: var(--white); background: var(--obsidian); }
.section-intro { margin-bottom: clamp(42px, 7vw, 80px); }
.section-intro > p:last-child { max-width: 500px; margin: 0; color: var(--muted); font-size: 18px; }
.section-intro--dark > p:last-child { color: rgba(255,255,255,.62); }
.signature-vehicle { position: relative; min-height: min(72vw, 780px); overflow: hidden; border-radius: var(--radius); background: #151515; }
.signature-vehicle figure { position: absolute; inset: 0; margin: 0; }
.signature-vehicle figure::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.25) 56%, transparent 100%), linear-gradient(0deg, rgba(0,0,0,.52), transparent 50%); content: ""; }
.signature-vehicle img { object-position: center; }
.signature-overlay { position: relative; z-index: 1; max-width: 480px; padding: clamp(30px, 5vw, 76px); }
.signature-overlay > p { margin-bottom: 11px; color: rgba(255,255,255,.68); font-size: 14px; font-weight: 650; }
.signature-overlay h3 { margin-bottom: 38px; font-size: clamp(2.3rem, 4vw, 4.5rem); }
.signature-meta { display: grid; gap: 18px; margin-bottom: 38px; }
.signature-meta div { display: grid; gap: 3px; }
.signature-meta strong { font-size: 15px; }
.signature-meta span { color: rgba(255,255,255,.62); font-size: 13px; }
.fleet-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.fleet-product { overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius); background: #101010; }
.fleet-product figure { aspect-ratio: 1.26; margin: 0; overflow: hidden; }
.fleet-product figure img { transition: transform .7s var(--ease); }
.fleet-product:hover figure img { transform: scale(1.025); }
.fleet-product-copy { padding: 24px; }
.fleet-product h3 { margin-bottom: 9px; font-size: clamp(1.5rem, 2vw, 2rem); }
.fleet-product p { min-height: 47px; margin-bottom: 24px; color: rgba(255,255,255,.6); font-size: 14px; }

.services-section { padding: clamp(100px, 13vw, 190px) 0; background: var(--white); }
.service-story { display: grid; gap: clamp(60px, 10vw, 150px); }
.service-scene { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(30px, 7vw, 105px); align-items: center; }
.service-scene--reverse { grid-template-columns: .82fr 1.18fr; }
.service-scene--reverse figure { order: 2; }
.service-scene figure { aspect-ratio: .84; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--graphite); }
.service-scene img { transition: transform .8s var(--ease); }
.service-scene:hover img { transform: scale(1.02); }
.service-copy { max-width: 400px; }
.service-copy h3 { margin-bottom: 15px; font-size: clamp(3rem, 4vw, 4.8rem); }
.service-copy > p:not(.section-label) { margin-bottom: 28px; color: var(--muted); font-size: clamp(18px, 2vw, 24px); line-height: 1.25; }

.driver-section { padding: clamp(80px, 10vw, 150px) 0; color: var(--white); background: var(--graphite); }
.driver-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 9vw, 140px); align-items: center; }
.driver-image { margin: 0; aspect-ratio: .85; overflow: hidden; border-radius: var(--radius); }
.driver-copy h2 { max-width: 650px; }
.driver-scenarios { max-width: 460px; margin-bottom: 12px; color: rgba(255,255,255,.62); font-size: clamp(20px, 2.4vw, 32px); font-weight: 500; line-height: 1.2; }
.driver-end { max-width: 410px; margin-bottom: 32px; color: var(--white); font-size: 18px; }

.pricing-section { padding: clamp(100px, 12vw, 180px) 0; background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.price-panel { min-height: 342px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); }
.price-panel h3 { margin-bottom: 24px; font-size: 20px; letter-spacing: -.04em; }
.price { margin-bottom: 25px; font-size: clamp(1.65rem, 2.4vw, 2.3rem); font-weight: 650; letter-spacing: -.055em; }
.price-panel ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.price-panel li { display: flex; gap: 8px; align-items: center; }
.price-panel li .icon { width: 15px; height: 15px; flex-basis: 15px; color: var(--ink); }
.price-panel .text-link { margin-top: auto; }

.why-section { padding: clamp(100px, 12vw, 170px) 0; color: var(--white); background: var(--black); }
.why-list { border-top: 1px solid var(--line-light); }
.why-line { display: grid; grid-template-columns: 84px minmax(180px, .8fr) 1.2fr; gap: 30px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--line-light); }
.why-line > span { margin: 0; color: rgba(255,255,255,.42); }
.why-line h3 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 3.5rem); }
.why-line p { max-width: 460px; margin: 0; color: rgba(255,255,255,.62); font-size: 17px; }

.testimonial-section { padding: clamp(100px, 12vw, 175px) 0; background: var(--white); overflow: hidden; }
.placeholder-note { max-width: 520px !important; color: #9a7b43 !important; font-size: 12px !important; font-weight: 650; line-height: 1.4; }
.quote-track { display: grid; grid-template-columns: .78fr 1.3fr .78fr; gap: 18px; align-items: center; }
.quote { min-height: 290px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); opacity: .45; }
.quote--main { min-height: 370px; padding: clamp(32px, 5vw, 70px); opacity: 1; background: var(--paper); }
.quote p { margin-bottom: 28px; font-size: clamp(19px, 2vw, 28px); line-height: 1.25; letter-spacing: -.035em; }
.quote:not(.quote--main) p { font-size: 17px; }
.quote small { color: var(--muted); font-size: 12px; font-weight: 650; }

.faq-section { padding: clamp(100px, 12vw, 170px) 0; background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(45px, 10vw, 160px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; font-size: 18px; font-weight: 620; letter-spacing: -.025em; }
.faq-item button .icon { transition: transform .4s var(--ease); }
.faq-item.open button .icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .45s var(--ease); }
.faq-answer > div { min-height: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { max-width: 550px; padding: 0 44px 23px 0; margin: 0; color: var(--muted); font-size: 16px; }

.final-cta { position: relative; min-height: min(66vw, 820px); display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--black); isolation: isolate; }
.final-media, .final-shade { position: absolute; inset: 0; z-index: -2; }
.final-media img { object-position: center; }
.final-shade { z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 47%, transparent 85%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 54%); }
.final-copy { padding: 10vw 0; }
.final-copy h2 { max-width: 650px; }
.final-copy p { max-width: 420px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 19px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 17px; align-items: center; }
.phone-link { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 620; }

.footer { padding: 38px 0; color: rgba(255,255,255,.65); background: var(--black); border-top: 1px solid var(--line-light); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 17px 35px; align-items: center; }
.footer p { margin: 0; font-size: 13px; }
.footer nav, .footer-contact { display: flex; flex-wrap: wrap; gap: 17px; font-size: 13px; }
.footer-contact { grid-column: 2 / 3; }
.footer-contact a { display: inline-flex; align-items: center; gap: 7px; }
.footer-contact .icon { width: 15px; height: 15px; flex-basis: 15px; }
.footer-language { grid-column: 3 / 4; grid-row: 1 / 3; display: flex; gap: 6px; align-items: center; font-size: 13px; }
.footer a { transition: color .25s var(--ease); }
.footer a:hover { color: var(--white); }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-breathe { from { transform: scale(1); } to { transform: scale(1.03); } }

@media (max-width: 1050px) {
  :root { --shell: min(100vw - 52px, 980px); }
  .nav-links { gap: 16px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-scene, .service-scene--reverse { gap: 45px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 34px); --radius: 17px; }
  h1 { font-size: clamp(3.5rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .site-header { height: 0; }
  .nav-shell { top: 12px; grid-template-columns: 1fr auto; gap: 12px; padding: 0 1px; }
  .site-header.is-scrolled .nav-shell { padding: 0 9px; border-radius: 12px; }
  .nav-links { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px max(24px, calc((100vw - 360px)/2)); background: rgba(8,8,8,.98); opacity: 0; pointer-events: none; transform: translateX(3%); transition: opacity .4s var(--ease), transform .4s var(--ease); }
  .nav-shell.menu-open .nav-links { opacity: 1; pointer-events: auto; transform: translateX(0); }
  .nav-links a { font-size: clamp(2rem, 9vw, 3rem); color: var(--white); letter-spacing: -.06em; }
  .nav-utility { position: relative; z-index: 2; gap: 7px; }
  .header-book { display: none; }
  .menu-button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); background: rgba(0,0,0,.24); }
  .menu-button .icon { width: 18px; height: 18px; }
  .menu-button span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); white-space: nowrap; }
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.28)), linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.06) 75%); }
  .hero-content { padding: 152px 0 72px; }
  .hero-content .section-label { margin-bottom: 18px; }
  .hero-lead { max-width: 320px; margin-bottom: 27px; font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-scroll { display: none; }
  .promise, .fleet-section, .services-section, .pricing-section, .why-section, .testimonial-section, .faq-section { padding: 94px 0; }
  .promise-grid, .driver-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .promise-intro { position: static; }
  .promise-intro > p:last-child, .section-intro > p:last-child { font-size: 17px; }
  .promise-statement { padding: 27px 0 31px; }
  .signature-vehicle { min-height: 610px; }
  .signature-vehicle img { object-position: 62% center; }
  .signature-vehicle figure::after { background: linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.16) 72%); }
  .signature-overlay { position: absolute; inset: auto 0 0; max-width: none; padding: 30px; }
  .signature-overlay h3 { margin-bottom: 24px; }
  .signature-meta { grid-template-columns: repeat(3, 1fr); gap: 11px; margin-bottom: 24px; }
  .signature-meta strong { font-size: 12px; }
  .signature-meta span { font-size: 10px; }
  .fleet-rail { display: flex; width: calc(100% + 34px); gap: 12px; margin-right: -17px; overflow-x: auto; padding-right: 17px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .fleet-rail::-webkit-scrollbar { display: none; }
  .fleet-product { min-width: min(82vw, 330px); scroll-snap-align: start; }
  .fleet-product-copy { padding: 21px; }
  .service-story { gap: 60px; }
  .service-scene, .service-scene--reverse { display: flex; flex-direction: column; gap: 25px; align-items: stretch; }
  .service-scene--reverse figure { order: 0; }
  .service-scene figure { aspect-ratio: .91; }
  .service-copy { max-width: none; }
  .service-copy h3 { font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .driver-section { padding: 80px 0; }
  .driver-image { aspect-ratio: .9; }
  .driver-copy h2 { font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .pricing-grid { grid-template-columns: 1fr; gap: 10px; }
  .price-panel { min-height: 0; padding: 25px; }
  .price-panel ul { margin-bottom: 23px; }
  .why-line { grid-template-columns: 42px 1fr; gap: 12px; padding: 25px 0; }
  .why-line p { grid-column: 2; font-size: 16px; }
  .quote-track { display: flex; width: calc(100% + 34px); margin-right: -17px; gap: 12px; overflow-x: auto; padding-right: 17px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .quote-track::-webkit-scrollbar { display: none; }
  .quote { min-width: min(82vw, 330px); min-height: 310px; scroll-snap-align: start; opacity: 1; }
  .quote--main { min-height: 310px; padding: 27px; }
  .faq-item button { padding: 22px 0; font-size: 17px; }
  .faq-answer p { padding-right: 5px; }
  .final-cta { min-height: 640px; }
  .final-media img { object-position: 62% center; }
  .final-copy { padding: 90px 0 60px; }
  .final-copy h2 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .footer { padding: 31px 0; }
  .footer-grid { grid-template-columns: 1fr auto; gap: 23px 12px; }
  .footer p { grid-column: 1 / -1; }
  .footer nav { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-language { grid-column: 2; grid-row: 1; }
}

@media (max-width: 390px) {
  .brand { font-size: 18px; }
  .language a { min-width: 28px; padding: 5px; }
  .signature-vehicle { min-height: 600px; }
  .signature-meta { gap: 8px; }
}

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