:root {
  --ink: #252120;
  --ink-soft: #3b3533;
  --blue: #48a6db;
  --blue-deep: #1880b0;
  --mist: #f1f5f7;
  --sand: #fbfbfa;
  --text: #252120;
  --muted: #696563;
  --font-display: Manrope, Arial, sans-serif;
  --hero-zoom-duration: 15s;
  --reveal-distance: 18px;
  --reveal-duration: 700ms;
  --stagger: 80ms;
  --container: min(1180px, calc(100vw - 72px));
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--sand); color: var(--text); font-family: var(--font-display); -webkit-font-smoothing: antialiased; }
body::selection { color: var(--ink); background: var(--blue); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 100; padding: 12px 16px; border-radius: 10px; background: var(--blue); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 18px; }
.icon { width: 19px; height: 19px; flex: 0 0 auto; }

.site-header { position: fixed; z-index: 20; top: 18px; left: 50%; width: var(--container); transform: translateX(-50%); transition: top .35s ease, width .35s ease; }
.header-bar { min-height: 76px; display: grid; grid-template-columns: 152px 1fr auto auto; align-items: center; gap: 28px; padding: 12px 14px 12px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 22px; background: rgba(255,255,255,.97); box-shadow: 0 18px 45px rgba(37,33,32,.10); transition: min-height .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { top: 10px; }
.site-header.is-scrolled .header-bar { min-height: 66px; box-shadow: 0 14px 35px rgba(37,33,32,.16); }
.header-brand { display: flex; align-items: center; }
.brand-logo { display: flex; width: 142px; height: 46px; align-items: center; transform: translateY(-2px); }
.brand-logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.7vw, 42px); }
.main-nav a { position: relative; padding: 8px 0; color: var(--text); font-size: 13px; font-weight: 700; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; border-radius: 2px; background: var(--blue); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-phone { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 12px; font-weight: 800; white-space: nowrap; }
.header-phone .icon { width: 18px; color: var(--ink); }
.header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 14px 21px; border-radius: 999px; background: var(--ink); color: white; font-size: 13px; font-weight: 800; transition: transform .25s ease, background .25s ease; white-space: nowrap; }
.header-cta:hover { transform: translateY(-2px); background: var(--blue-deep); }
.mobile-nav, .menu-button { display: none; }

.hero { position: relative; min-height: min(810px, 100svh); display: grid; overflow: hidden; background: var(--ink); isolation: isolate; }
.hero__photo { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(90deg, rgba(37,33,32,.97) 0%, rgba(37,33,32,.91) 37%, rgba(37,33,32,.48) 56%, rgba(37,33,32,.06) 76%), var(--hero-image); background-size: cover; background-position: left center; animation: hero-zoom var(--hero-zoom-duration) ease-out infinite alternate; }
.hero::after { content: ''; position: absolute; z-index: -1; right: -15%; bottom: -40%; width: 70vw; height: 70vw; border: 1px solid rgba(72,166,219,.24); border-radius: 50%; box-shadow: 0 0 0 70px rgba(72,166,219,.05), 0 0 0 140px rgba(72,166,219,.035); pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; background: var(--blue); opacity: .7; filter: blur(1px); pointer-events: none; }
.hero__orb--one { top: 28%; right: 27%; width: 9px; height: 9px; animation: float 5s ease-in-out infinite; }
.hero__orb--two { right: 12%; bottom: 24%; width: 6px; height: 6px; animation: float 6s 1.2s ease-in-out infinite; }
.hero__inner { position: relative; z-index: 1; width: var(--container); align-self: center; margin: 78px auto 0; padding: 130px 0 112px; }
.hero__kicker { margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 680px; margin-bottom: 25px; color: white; font-size: clamp(48px, 7vw, 100px); font-weight: 700; letter-spacing: -.07em; line-height: .94; word-spacing: .06em; }
.hero-word { display: block; opacity: 0; transform: translateY(32px); animation: word-in .75s calc(.22s + var(--word) * .13s) cubic-bezier(.18,.84,.31,1) forwards; }
.hero__lead { max-width: 570px; margin-bottom: 32px; color: rgba(239,247,247,.82); font-size: clamp(16px, 1.5vw, 19px); font-weight: 500; line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--blue); color: var(--ink); }
.button--primary:hover { background: #79bee7; }
.button--ghost { border-color: rgba(255,255,255,.45); color: white; background: rgba(18,49,54,.22); }
.button--ghost:hover { border-color: var(--blue); background: rgba(72,166,219,.12); }
.button--line { border-color: rgba(255,255,255,.35); color: white; }
.button--line:hover { border-color: var(--blue); background: rgba(255,255,255,.08); }
.hero-load { opacity: 0; transform: translateY(14px); animation: load-in .6s .6s ease forwards; }

.section { width: var(--container); margin: 0 auto; }
.services { padding: 145px 0 126px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 70px; margin-bottom: 58px; }
.section-heading > * { max-width: 600px; }
.section-heading--split > div:last-child { display: flex; align-items: center; justify-content: flex-end; gap: 26px; max-width: 350px; }
.eyebrow { margin-bottom: 16px; color: var(--blue-deep); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
h2 { margin-bottom: 0; color: var(--ink); font-size: clamp(34px, 4.2vw, 58px); font-weight: 700; letter-spacing: -.065em; line-height: .98; }
.section-lead { margin: 0; color: var(--muted); font-size: 15px; font-weight: 600; line-height: 1.5; }
.round-link { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--ink); color: white; transition: transform .25s ease, background .25s ease; }
.round-link:hover { transform: rotate(-40deg); background: var(--blue); color: var(--ink); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { display: flex; min-height: 330px; flex-direction: column; padding: 26px; border: 1px solid #dce6e7; border-radius: 18px; background: white; transition: transform .55s cubic-bezier(.2,.8,.2,1), background 2s ease, border-color 2s ease, box-shadow 2s ease; }
.service-card:hover { transform: translateY(-8px); border-color: transparent; background: var(--ink); box-shadow: 0 24px 45px rgba(37,33,32,.13); }
.service-card__top { display: flex; justify-content: space-between; align-items: center; color: var(--blue-deep); }
.service-icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue-deep); transition: color 2s ease, transform .55s ease; }
.service-icon .icon { width: 25px; height: 25px; }
.service-card__number { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-card h3 { max-width: 260px; margin: auto 0 15px; color: var(--ink); font-size: clamp(20px, 2vw, 27px); letter-spacing: -.055em; line-height: 1.08; transition: color 2s ease; }
.service-card p { min-height: 62px; margin-bottom: 21px; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.58; transition: color 2s ease; }
.text-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: var(--ink); font-size: 12px; font-weight: 800; transition: color 2s ease, gap .55s ease; }
.text-link .icon { width: 15px; height: 15px; }
.text-link:hover { gap: 12px; }
.service-card:hover h3, .service-card:hover .text-link { color: white; }
.service-card:hover p, .service-card:hover .service-card__number { color: rgba(255,255,255,.68); }
.service-card:hover .service-card__top { color: var(--blue); }
.service-card:hover .service-icon { color: var(--blue); transform: translateY(-2px); }

.vehicle-accent { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); align-items: center; gap: clamp(42px, 8vw, 116px); padding: 0 0 145px; }
.vehicle-accent__copy > p:not(.eyebrow) { max-width: 370px; margin: 25px 0 0; color: var(--muted); font-size: 16px; font-weight: 500; line-height: 1.62; }
.vehicle-accent__photo { position: relative; aspect-ratio: 2 / 1; margin: 0; overflow: hidden; border-radius: 18px; background: var(--ink); box-shadow: 0 26px 60px rgba(37,33,32,.13); }
.vehicle-accent__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,33,32,.10), transparent 40%); pointer-events: none; }
.vehicle-accent__photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.vehicle-accent__photo:hover img { transform: scale(1.035); }

.trust { display: grid; grid-template-columns: minmax(300px, .83fr) minmax(340px, 1.17fr); gap: clamp(45px, 8vw, 122px); align-items: center; padding: 35px 0 145px; }
.trust-photo { position: relative; min-height: 545px; overflow: hidden; border-radius: 18px; background: var(--ink); }
.trust-photo::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(37,33,32,.03), rgba(37,33,32,.58)); pointer-events: none; }
.trust-photo img { width: 100%; height: 100%; min-height: 545px; object-fit: cover; object-position: center; transition: transform .8s ease; }
.trust-photo:hover img { transform: scale(1.04); }
.trust-content > .reveal > p:not(.eyebrow) { max-width: 530px; margin: 29px 0 0; color: var(--muted); font-size: 17px; font-weight: 500; line-height: 1.65; }
.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 38px; }
.fact { min-height: 114px; padding: 17px 13px; border-radius: 13px; background: var(--mist); }
.fact strong { display: block; margin-bottom: 9px; color: var(--ink); font-size: 20px; letter-spacing: -.06em; line-height: 1; }
.fact span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.35; }

.process { padding-bottom: 145px; }
.process__intro { display: grid; grid-template-columns: minmax(270px, .78fr) minmax(340px, 1.22fr); align-items: end; gap: clamp(38px, 7vw, 104px); margin-bottom: 49px; }
.process__heading { max-width: 570px; }
.process__visual { min-width: 0; }
.process__photo { position: relative; min-height: 250px; margin: 0; overflow: hidden; border-radius: 18px; background: var(--ink); }
.process__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,33,32,.30), transparent 56%); pointer-events: none; }
.process__photo img { display: block; width: 100%; height: 250px; object-fit: cover; object-position: center 48%; transition: transform .8s ease; }
.process__photo:hover img { transform: scale(1.04); }
.process__photo figcaption { position: absolute; z-index: 1; left: 19px; bottom: 17px; color: white; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding-top: 25px; border-top: 1px solid #cfdcdf; }
.step > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: var(--blue); color: var(--ink); font-size: 10px; font-weight: 800; }
.step h3 { margin-bottom: 9px; color: var(--ink); font-size: 17px; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }

.reviews { padding-bottom: 145px; }
.reviews__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 72px; margin-bottom: 53px; }
.reviews__heading > * { max-width: 585px; }
.reviews__heading > div:last-child p { max-width: 400px; margin: 0; color: var(--muted); font-size: 15px; font-weight: 500; line-height: 1.62; }
.reviews__content { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: start; gap: clamp(30px, 5vw, 72px); }
.review-feed { display: grid; gap: 17px; }
.review-summary { --review-tint-position: 0%; display: flex; align-items: center; gap: 20px; min-height: 108px; padding: 19px 22px; border: 1px solid #dce6e7; border-radius: 18px; background: linear-gradient(90deg, var(--mist) 0%, #fff 24%, #fff 76%, var(--mist) 100%); background-size: 200% 100%; background-position: var(--review-tint-position) 50%; transition: background-position .14s linear; }
.review-summary > strong { color: var(--ink); font-size: clamp(52px, 5.5vw, 76px); font-weight: 800; letter-spacing: -.09em; line-height: .8; }
.review-summary__meta { display: grid; gap: 9px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.35; }
.review-summary__meta b { color: var(--ink); }
.review-summary__stars .review-stars { gap: 4px; }
.review-summary__stars .review-star { width: 25px; height: 25px; color: var(--blue-deep); }
.review-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.review-card { display: flex; min-height: 266px; flex-direction: column; padding: 21px; border: 1px solid #dce6e7; border-radius: 18px; background: white; transition: transform .7s cubic-bezier(.2,.8,.2,1), border-color .7s ease, box-shadow .7s ease; }
.review-card.is-featured { transform: translateY(-7px); border-color: rgba(72,166,219,.78); box-shadow: 0 20px 45px rgba(37,33,32,.10); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-stars { display: inline-flex; gap: 2px; color: #c7d5da; }
.review-star { display: grid; width: 14px; height: 14px; }
.review-star.is-filled { color: var(--blue-deep); }
.review-star .icon, .rating-star .icon { width: 100%; height: 100%; fill: currentColor; stroke: currentColor; stroke-width: 1.4; }
.review-badge { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.review-card > p { margin: 30px 0 auto; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.55; }
.review-card footer { display: flex; flex-direction: column; gap: 3px; padding-top: 21px; border-top: 1px solid #e5edef; }
.review-card footer strong { color: var(--ink); font-size: 11px; }
.review-card footer span { color: var(--muted); font-size: 10px; font-weight: 600; }
.review-pagination { display: flex; align-items: center; gap: 13px; min-height: 40px; }
.review-load-more { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 15px; border: 1px solid #cfdcdf; border-radius: 999px; background: white; color: var(--ink); font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; transition: border-color .25s ease, color .25s ease, transform .25s ease; }
.review-load-more:hover:not(:disabled) { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }
.review-load-more:disabled { cursor: wait; opacity: .62; }
.review-load-more .icon { width: 15px; height: 15px; }
.review-pagination > p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; }
.review-form { padding: 30px; border-radius: 18px; background: var(--mist); }
.review-form h3 { margin: 0; color: var(--ink); font-size: 28px; letter-spacing: -.06em; line-height: 1.04; }
.review-form > p:not(.eyebrow) { margin: 13px 0 24px; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.55; }
.review-rating { margin: 0 0 18px; padding: 0; border: 0; }
.review-rating legend, .review-form label { display: block; margin-bottom: 9px; color: var(--ink); font-size: 11px; font-weight: 800; }
.review-rating > div { display: flex; gap: 5px; }
.rating-star { display: grid; width: 32px; height: 32px; place-items: center; padding: 7px; border: 0; background: transparent; color: #b9c9ce; cursor: pointer; transition: color .25s ease, transform .25s ease; }
.rating-star:hover, .rating-star:focus-visible, .rating-star.is-selected { color: var(--blue-deep); transform: translateY(-2px) scale(1.08); outline: none; }
.review-form label { margin-top: 15px; }
.review-form input, .review-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid #d4e0e3; border-radius: 10px; outline: 0; background: rgba(255,255,255,.72); color: var(--ink); font: inherit; font-size: 13px; font-weight: 600; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; resize: vertical; }
.review-form input:focus, .review-form textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(72,166,219,.18); }
.review-form textarea { min-height: 95px; }
.review-submit { display: inline-flex; align-items: center; gap: 9px; min-height: 47px; margin-top: 21px; padding: 0 17px; border: 0; border-radius: 999px; background: var(--ink); color: white; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.review-submit:hover { transform: translateY(-2px); background: var(--ink-soft); }
.review-submit .icon { width: 16px; }
.review-form__status { min-height: 18px; margin: 11px 0 0; color: var(--blue-deep); font-size: 11px; font-weight: 700; line-height: 1.45; }
.review-form__status.is-error { color: #a64035; }
.review-form__privacy { margin: 14px 0 0; color: var(--muted); font-size: 10px; font-weight: 600; line-height: 1.5; }
.review-submit:disabled { cursor: wait; opacity: .68; }

.contact { position: relative; padding: 112px max(36px, calc((100vw - 1180px) / 2)) 0; border-top: 1px solid rgba(72,166,219,.32); background: #24201f; color: white; }
.contact__inner, .contact-details { max-width: 1180px; margin-inline: auto; }
.contact__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 45px; padding-bottom: 108px; }
.contact h2 { color: white; }
.eyebrow--light { color: var(--blue); }
.contact__inner p:not(.eyebrow) { max-width: 580px; margin: 26px 0 0; color: rgba(255,255,255,.70); font-size: 16px; line-height: 1.62; }
.contact__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; max-width: 430px; }
.contact-details { display: grid; grid-template-columns: 1.25fr 1.55fr 1fr .75fr; gap: 16px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-details > * { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700; }
.contact-details a { transition: color .25s ease; }
.contact-details a:hover { color: var(--blue); }
.contact-details .icon { width: 17px; color: var(--blue); }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; padding: 22px max(36px, calc((100vw - 1180px) / 2)); border-top: 1px solid rgba(255,255,255,.11); background: #191615; color: rgba(255,255,255,.48); font-size: 11px; font-weight: 700; }
.footer-logo { width: 142px; height: 36px; transform: none; }
.footer-logo img { filter: brightness(0) invert(1); opacity: .92; }
.mobile-dock { display: none; }
.scroll-progress { --dark-clip-top: 100%; --dark-clip-bottom: 0px; position: fixed; z-index: 19; right: max(22px, calc((100vw - 1280px) / 2)); bottom: 30px; display: grid; padding: 0; border: 0; background: transparent; cursor: default; }
.scroll-progress__layer { grid-area: 1 / 1; display: grid; grid-template-columns: auto 2px auto; align-items: center; gap: 9px; color: var(--ink); }
.scroll-progress__layer--light { color: white; clip-path: inset(var(--dark-clip-top) 0 var(--dark-clip-bottom) 0); pointer-events: none; }
.scroll-progress__label { min-width: 78px; color: currentColor; text-align: right; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.scroll-progress__track { position: relative; display: block; width: 2px; height: 78px; overflow: hidden; background: transparent; }
.scroll-progress__track::before { content: ''; position: absolute; inset: 0; background: currentColor; opacity: .22; }
.scroll-progress__track > span { position: relative; z-index: 1; display: block; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; background: var(--blue); transition: transform .12s linear; }
.scroll-progress__arrow { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: currentColor; font-size: 16px; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.scroll-progress__arrow-glyph { display: block; line-height: 1; transition: transform .48s cubic-bezier(.2,.85,.22,1); }
.scroll-progress.is-actionable { cursor: pointer; }
.scroll-progress.is-pointing-up .scroll-progress__arrow-glyph { transform: rotate(180deg); }
.scroll-progress.is-flipping .scroll-progress__arrow, .scroll-progress.is-complete .scroll-progress__arrow { border-color: var(--blue); background: var(--blue); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(var(--reveal-distance)); transition: opacity var(--reveal-duration) ease, transform var(--reveal-duration) cubic-bezier(.2,.75,.25,1); transition-delay: calc(var(--delay, 0) * var(--stagger)); }
.reveal--left { transform: translateX(calc(var(--reveal-distance) * -1)); }
.reveal--right { transform: translateX(var(--reveal-distance)); }
.reveal.is-visible { opacity: 1; transform: translate(0); }

@keyframes hero-zoom { to { transform: scale(1.055); } }
@keyframes float { 50% { transform: translateY(-17px); opacity: .28; } }
@keyframes word-in { to { opacity: 1; transform: translateY(0); } }
@keyframes load-in { to { opacity: 1; transform: translateY(0); } }
@keyframes scan { 0% { transform: translateX(-110%); } 100% { transform: translateX(190%); } }

@media (max-width: 880px) {
  :root { --container: min(100% - 36px, 620px); }
  .site-header { top: 10px; }
  .header-bar { min-height: 64px; grid-template-columns: 1fr auto; padding: 9px 12px 9px 16px; border-radius: 17px; }
  .brand-logo { width: 129px; height: 41px; }
  .main-nav, .header-phone, .header-cta { display: none; }
  .menu-button { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; }
  .menu-button span { display: block; width: 17px; height: 1.5px; background: white; transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-nav { display: grid; gap: 2px; max-height: 0; margin-top: 6px; padding: 0 18px; overflow: hidden; border-radius: 16px; background: white; opacity: 0; box-shadow: 0 16px 30px rgba(8,35,40,.10); transition: max-height .3s ease, padding .3s ease, opacity .3s ease; }
  .mobile-nav.is-open { max-height: 200px; padding: 12px 18px; opacity: 1; }
  .mobile-nav a { padding: 13px 2px; border-bottom: 1px solid #edf1f2; font-size: 14px; font-weight: 800; }
  .mobile-nav a:last-child { border: 0; }
  .hero { min-height: 760px; }
  .hero__photo { background-image: linear-gradient(90deg, rgba(37,33,32,.95) 0%, rgba(37,33,32,.78) 60%, rgba(37,33,32,.34) 100%), var(--hero-image); background-position: 62% center; }
  .hero__inner { margin: 22px auto 0; padding: 150px 0 102px; }
  .hero__inner { text-align: center; }
  .hero__kicker, .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  h1 { max-width: 600px; font-size: clamp(47px, 13vw, 75px); }
  .scroll-progress { right: 13px; bottom: 84px; }
  .scroll-progress__label { min-width: 63px; font-size: 8px; }
  .scroll-progress__track { height: 50px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .section-heading--split > div:last-child { justify-content: flex-start; }
  .services { padding: 96px 0; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; }
  .vehicle-accent { grid-template-columns: 1fr; gap: 31px; padding-bottom: 96px; }
  .trust { grid-template-columns: 1fr; gap: 45px; padding: 0 0 96px; }
  .trust-photo, .trust-photo img { min-height: 420px; }
  .process { padding-bottom: 95px; }
  .process__intro { grid-template-columns: 1fr; gap: 30px; margin-bottom: 38px; }
  .process__photo, .process__photo img { min-height: 290px; height: 290px; }
  .reviews { padding-bottom: 96px; }
  .reviews__heading { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 38px; }
  .reviews__content { grid-template-columns: 1fr; gap: 28px; }
  .review-summary { max-width: 540px; }
  .review-list { grid-template-columns: repeat(3, minmax(220px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .review-card { scroll-snap-align: start; }
  .contact { padding: 82px 18px 85px; }
  .contact__inner { align-items: flex-start; flex-direction: column; padding-bottom: 62px; }
  .contact__actions { justify-content: flex-start; }
  .contact-details { grid-template-columns: 1fr 1fr; row-gap: 21px; }
}

@media (max-width: 540px) {
  :root { --container: calc(100% - 32px); }
  .hero { min-height: 700px; }
  .hero__inner { padding-top: 138px; }
  .hero__kicker { font-size: 11px; }
  .hero__lead { max-width: 340px; font-size: 15px; }
  .hero__actions { display: grid; width: 100%; max-width: 340px; }
  .hero__actions { margin-inline: auto; }
  .button { min-height: 50px; }
  .section-heading { margin-bottom: 35px; }
  h2 { font-size: clamp(33px, 10vw, 47px); }
  .services-grid { gap: 10px; }
  .service-card { min-height: 240px; padding: 22px; }
  .service-card h3 { font-size: 23px; }
  .trust-photo, .trust-photo img { min-height: 370px; }
  .fact-grid { grid-template-columns: 1fr; gap: 8px; }
  .fact { min-height: 0; display: grid; grid-template-columns: 90px 1fr; align-items: center; }
  .fact strong { margin: 0; font-size: 18px; }
  .process__intro { margin-bottom: 32px; }
  .process__photo, .process__photo img { min-height: 245px; height: 245px; }
  .review-list { grid-template-columns: repeat(3, minmax(255px, 1fr)); }
  .review-summary { gap: 15px; padding: 17px; }
  .review-summary > strong { font-size: 56px; }
  .review-summary__stars .review-star { width: 21px; height: 21px; }
  .review-form { padding: 24px 20px; }
  .steps { gap: 14px; }
  .step { padding-top: 19px; }
  .contact__actions { position: relative; width: 100%; overflow: visible; }
  .contact__actions .button { width: 100%; }
  .contact-details { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 25px 18px 90px; }
  .mobile-dock { position: fixed; z-index: 24; bottom: 11px; left: 50%; display: grid; width: calc(100% - 22px); grid-template-columns: 1fr 1fr; transform: translate(-50%, 120%); overflow: hidden; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: 0 14px 36px rgba(37,33,32,.22); opacity: 0; transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .42s ease; backdrop-filter: blur(10px); }
  .mobile-dock.is-visible { transform: translate(-50%, 0); opacity: 1; }
  .mobile-dock.is-transferring { transform: translate(-50%, 0); opacity: 0; }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 56px; padding: 0 6px; color: var(--ink); font-size: 10px; font-weight: 800; white-space: nowrap; }
  .mobile-dock a + a { border-left: 1px solid #d8e3e4; }
  .mobile-dock .icon { width: 16px; color: var(--blue-deep); }
  .contact.is-dock-pending .contact__actions > a:nth-child(-n+2), .contact.is-dock-receiving .contact__actions > a:nth-child(-n+2) { opacity: 0; pointer-events: none; }
}

.dock-handoff-clone { position: absolute; z-index: 30; box-sizing: border-box; margin: 0; pointer-events: none; transition: transform .62s cubic-bezier(.2,.78,.18,1), width .62s cubic-bezier(.2,.78,.18,1), height .62s cubic-bezier(.2,.78,.18,1), background .3s ease, border-color .3s ease, border-radius .3s ease, color .3s ease, box-shadow .3s ease, font-size .3s ease; }
.dock-handoff-clone.is-source-look { border-color: rgba(255,255,255,.5); border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: 0 14px 36px rgba(37,33,32,.22); color: var(--ink); font-size: 10px; }
.dock-handoff-clone.is-source-look .icon { color: var(--blue-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .hero-word, .hero-load { opacity: 1; transform: none; }
}
