:root {
  --navy: #071b2d;
  --navy-2: #0c2a42;
  --blue: #168ac3;
  --cyan: #64d4f5;
  --ice: #eaf8fc;
  --white: #ffffff;
  --ink: #0b1721;
  --muted: #586671;
  --line: #dbe4e9;
  --surface: #f5f8fa;
  --container: 1180px;
  --shadow: 0 24px 60px rgba(3, 18, 30, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: #fff; color: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { position: fixed; background: rgba(7, 27, 45, .96); box-shadow: 0 12px 35px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.nav-shell { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.72); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.18rem; text-transform: uppercase; letter-spacing: .1em; }
.brand small { margin-top: 7px; color: #9fcae1; font-size: .72rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav > a:not(.nav-cta, .nav-whatsapp) { position: relative; font-size: .86rem; font-weight: 700; color: #d9e8ef; }
.primary-nav > a:not(.nav-cta, .nav-whatsapp)::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 100%; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav > a:not(.nav-cta, .nav-whatsapp):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 15px; background: #fff; color: var(--navy); font-size: .84rem; font-weight: 850; }
.nav-cta:hover { background: var(--cyan); }
.nav-whatsapp { width: 43px; height: 43px; display: grid; place-items: center; background: #25d366; color: #062d18; }
.nav-whatsapp:hover { background: #62ec91; }
.nav-whatsapp svg { width: 23px; height: 23px; stroke-width: 1.9; }
.nav-whatsapp span { display: none; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero-grid { position: absolute; inset: 0; overflow: hidden; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 72px 72px; }
.hero-grid::after { content: ""; position: absolute; inset: -3% -3% -8%; background: url("water-surge.webp") right bottom / cover no-repeat; opacity: .52; mix-blend-mode: screen; transform-origin: center bottom; animation: water-breathe 9s ease-in-out infinite alternate; }
@keyframes water-breathe { from { transform: scale(1.01) translate3d(0,0,0); } to { transform: scale(1.055) translate3d(-1.2%, -.8%, 0); } }
.hero::before { content: ""; position: absolute; width: 700px; height: 700px; right: -260px; top: -220px; border: 120px solid rgba(22,138,195,.16); border-radius: 50%; }
.hero::after { content: ""; position: absolute; right: 0; top: 0; width: 42%; height: 100%; background: linear-gradient(135deg, rgba(100,212,245,.08), transparent 55%); clip-path: polygon(24% 0,100% 0,100% 100%,0 100%); }
.hero-layout { position: relative; z-index: 2; min-height: 780px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 76px; padding-top: 122px; padding-bottom: 118px; }
.eyebrow { margin: 0 0 23px; display: flex; align-items: center; gap: 12px; color: #9ed9ee; font-size: .77rem; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: #267da4; }
.hero h1, .section h2, .contact-section h2 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Display", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .96;
}
.hero h1 { max-width: 740px; font-size: clamp(4rem, 6.2vw, 6.25rem); text-transform: uppercase; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #c7d9e2; font-size: 1.14rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 23px; border: 1px solid transparent; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--cyan); color: var(--navy); }
.button-primary:hover { background: #fff; }
.button-whatsapp { border-color: #25d366; background: rgba(37,211,102,.12); color: #8df3b2; }
.button-whatsapp:hover { background: #25d366; color: #062d18; }
.button-ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.button-dark { margin-top: 27px; background: var(--navy); color: #fff; }
.button-dark:hover { background: var(--blue); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 600px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust div { display: grid; gap: 2px; padding-right: 18px; }
.hero-trust div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-trust strong { color: #fff; font-size: 1.05rem; }
.hero-trust span { color: #93aab6; font-size: .76rem; font-weight: 650; }

.hero-visual { position: relative; min-height: 540px; }
.photo-frame { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.32); box-shadow: var(--shadow); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,18,30,.4), transparent 58%); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { top: 18px; right: 0; width: 100%; height: 485px; transform: rotate(1.2deg); }
.photo-main img { transform: scale(1.025) rotate(-1.2deg); }
.fleet-hero-frame { border: 8px solid rgba(255,255,255,.08); }
.fleet-hero-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.36); pointer-events: none; }
.fleet-hero-frame::after { z-index: 1; background: linear-gradient(135deg, transparent 38%, rgba(7,27,45,.76)); }
.photo-kicker { position: absolute; z-index: 3; left: 22px; bottom: 21px; padding: 10px 13px; background: rgba(7,27,45,.88); color: #fff; font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(10px); }
.photo-secondary { left: -12px; bottom: 0; width: 46%; height: 260px; border: 8px solid var(--navy); }
.wash-stamp { position: absolute; z-index: 4; right: 10px; bottom: 38px; width: 138px; height: 138px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan); color: var(--navy); transform: rotate(7deg); }
.wash-stamp svg { position: absolute; width: 92px; opacity: .14; stroke-width: 1.3; }
.wash-stamp span { position: relative; font-weight: 950; line-height: 1; letter-spacing: .04em; text-align: center; text-transform: uppercase; }

.availability-bar { position: absolute; z-index: 4; bottom: 0; left: 0; width: 100%; border-top: 1px solid rgba(255,255,255,.14); background: rgba(4,20,33,.72); }
.availability-inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.availability-inner p { margin: 0; color: #adc0ca; font-size: .87rem; }
.availability-inner strong { color: #fff; }
.availability-inner a { color: #b8e7f5; font-size: .86rem; font-weight: 750; }
.pulse { display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: #54e08b; box-shadow: 0 0 0 5px rgba(84,224,139,.14); }

.section-heading h2, .process h2, .location h2 { font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; color: var(--navy); }
.split-heading { display: grid; grid-template-columns: 1.15fr .7fr; align-items: end; gap: 80px; }
.split-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.vehicle-marquee { margin-top: 58px; padding: 18px 0; overflow: hidden; border-block: 1px solid var(--line); white-space: nowrap; color: #54707f; font-family: "Arial Narrow", "Aptos Display", sans-serif; font-size: 1.02rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.vehicle-marquee-track { display: flex; width: max-content; animation: vehicle-scroll 30s linear infinite; }
.vehicle-marquee-set { display: flex; flex: none; align-items: center; gap: 17px; padding-right: 17px; }
.vehicle-marquee i { flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.vehicle-marquee:hover .vehicle-marquee-track { animation-play-state: paused; }
@keyframes vehicle-scroll { to { transform: translateX(-50%); } }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.service-card { position: relative; min-height: 365px; padding: 35px 32px; border: 1px solid #16364d; background: var(--navy); color: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:nth-child(2) { background: #0a2338; }
.service-card:nth-child(3) { background: #0d2940; }
.service-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 22px 50px rgba(7,27,45,.18); }
.card-number { position: absolute; top: 25px; right: 28px; color: #94a5ae; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.icon-box { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 64px; background: rgba(100,212,245,.12); color: var(--cyan); }
.icon-box svg { width: 32px; height: 32px; }
.service-card h3 { margin: 0 0 13px; font-size: 1.35rem; letter-spacing: -.01em; }
.service-card p { margin: 0; color: #a9c0cc; font-size: .95rem; line-height: 1.75; }

.owner-story { overflow: hidden; background: #fff; }
.owner-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 104px; }
.owner-photos { position: relative; min-height: 650px; }
.owner-photos figure { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.owner-photos img { width: 100%; height: 100%; object-fit: cover; }
.owner-photo-main { left: 0; top: 0; width: 68%; height: 570px; }
.owner-photo-secondary { right: 0; bottom: 0; width: 48%; height: 390px; border: 10px solid #fff; }
.owner-badge { position: absolute; z-index: 3; left: -28px; bottom: 30px; width: 154px; height: 154px; display: grid; align-content: center; justify-items: center; border-radius: 50%; background: var(--cyan); color: var(--navy); transform: rotate(-7deg); box-shadow: 0 18px 45px rgba(7,27,45,.18); text-align: center; }
.owner-badge strong { font-family: Impact, "Arial Narrow", sans-serif; font-size: 2.85rem; line-height: 1; }
.owner-badge span { width: 105px; font-size: .7rem; font-weight: 850; line-height: 1.2; text-transform: uppercase; }
.owner-copy h2 { color: var(--navy); font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; }
.owner-copy h2 em { color: var(--blue); font-style: normal; }
.owner-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.owner-intro { margin-top: 28px; color: var(--ink) !important; font-size: 1.12rem; font-weight: 650; line-height: 1.75; }
.owner-actions { display: flex; align-items: center; gap: 26px; margin-top: 4px; }
.owner-actions .button { width: auto; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #128642; font-weight: 850; }
.text-link span { font-size: 1.3rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.process { overflow: hidden; background: var(--navy); color: #fff; }
.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 96px; align-items: center; }
.process-visual { position: relative; min-height: 610px; }
.process-visual::before { content: ""; position: absolute; left: -40px; top: 55px; width: calc(100% + 70px); height: 440px; border: 1px solid rgba(100,212,245,.2); transform: rotate(-5deg); }
.process-visual img { position: relative; width: 100%; height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.process-caption { position: absolute; right: -30px; bottom: 15px; min-width: 245px; padding: 24px 28px; background: var(--cyan); color: var(--navy); }
.process-caption strong, .process-caption span { display: block; }
.process-caption strong { font-size: 1.02rem; text-transform: uppercase; }
.process-caption span { font-size: .82rem; }
.process h2 { color: #fff; max-width: 720px; }
.process-intro { max-width: 620px; margin: 24px 0 36px; color: #adc2cc; font-size: 1.05rem; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.steps li > span { color: var(--cyan); font-family: ui-monospace, monospace; font-size: .84rem; font-weight: 800; }
.steps h3 { margin: -4px 0 4px; font-size: 1.05rem; }
.steps p { margin: 0; color: #9eb3be; font-size: .92rem; }

.gallery-section { position: relative; overflow: hidden; background: #061521; color: #fff; }
.gallery-water { position: absolute; inset: 0; background: url("water-surge.webp") center top / cover no-repeat; opacity: .13; mix-blend-mode: screen; transform: scaleX(-1); }
.gallery-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,21,33,.42), #061521 54%); pointer-events: none; }
.gallery-heading, .photo-gallery { position: relative; z-index: 2; }
.gallery-heading { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 70px; margin-bottom: 50px; }
.gallery-heading h2 { color: #fff; font-size: clamp(3.2rem, 5.5vw, 5.8rem); text-transform: uppercase; }
.gallery-heading > p { max-width: 390px; margin: 0 0 8px; color: #a9bfca; }
.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 13px; }
.photo-gallery figure { position: relative; margin: 0; overflow: hidden; background: #0b273a; }
.photo-gallery .gallery-wide { grid-column: span 2; }
.photo-gallery .gallery-tall { grid-row: span 2; }
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.photo-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,15,24,.88), transparent 55%); }
.photo-gallery figcaption { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: #fff; font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.photo-gallery figure:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04); }

.proof-strip { padding: 25px 0; background: var(--cyan); color: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 18px; font-size: .86rem; font-weight: 850; text-transform: uppercase; }
.proof-grid div + div { border-left: 1px solid rgba(7,27,45,.2); }
.proof-grid svg { width: 25px; height: 25px; stroke-width: 2.2; }

.location { background: var(--surface); }
.location-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 92px; }
.location-copy > p:not(.eyebrow) { max-width: 560px; margin: 26px 0 0; color: var(--muted); font-size: 1.04rem; }
.location address { display: flex; gap: 17px; margin-top: 30px; color: #40515c; font-style: normal; }
.location address svg { flex: 0 0 28px; width: 28px; height: 28px; color: var(--blue); }
.location address span { display: block; line-height: 1.6; }
.location address strong { display: block; color: var(--navy); }
.location-card { position: relative; min-height: 510px; }
.location-card > img { width: 86%; height: 370px; margin-left: auto; object-fit: cover; box-shadow: var(--shadow); }
.hours-card { position: absolute; left: 0; bottom: 0; width: 72%; padding: 30px 34px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.hours-title { display: flex; align-items: center; margin-bottom: 17px; }
.hours-title h3 { margin: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.12); }
.hours-card dt, .hours-card dd { margin: 0; font-size: .84rem; }
.hours-card dt { color: #a9bdc8; }
.hours-card dd { font-weight: 750; }

.contact-section { position: relative; overflow: hidden; padding: 92px 0; background: linear-gradient(90deg, rgba(15,130,184,.98) 0%, rgba(7,53,80,.86) 100%), url("aerial-site.jpg") center / cover no-repeat; color: #fff; }
.contact-watermark { position: absolute; right: -20px; bottom: -82px; color: rgba(255,255,255,.08); font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(8rem, 18vw, 18rem); line-height: 1; letter-spacing: -.04em; }
.contact-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.contact-section .eyebrow { color: #d3f4ff; }
.contact-section .eyebrow span { background: #fff; }
.contact-section h2 { max-width: 600px; color: #fff; font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.42); }
.contact-actions a { position: relative; display: grid; grid-template-columns: 120px 1fr 30px; align-items: center; gap: 16px; min-height: 86px; border-bottom: 1px solid rgba(255,255,255,.42); }
.contact-actions span { color: #d4f0fb; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-actions strong { font-size: 1.08rem; overflow-wrap: anywhere; }
.contact-actions b { font-size: 1.55rem; transition: transform .2s ease; }
.contact-actions a:hover b { transform: translateX(5px); }

.site-footer { padding: 35px 0; background: #061521; color: #fff; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.footer-brand img { width: 52px; height: 52px; }
.footer-grid > p { margin: 0; color: #8fa6b2; font-size: .82rem; }
.copyright { text-align: right; }
.mobile-actions, .mobile-call, .mobile-whatsapp { display: none; }

@media (max-width: 1020px) {
  .primary-nav { gap: 12px; }
  .hero-layout { grid-template-columns: 1fr .78fr; gap: 32px; }
  .hero-visual { min-height: 480px; }
  .photo-main { width: 100%; height: 310px; }
  .photo-secondary { width: 55%; height: 230px; }
  .process-layout, .location-layout { gap: 55px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); row-gap: 10px; }
  .proof-grid div:nth-child(3) { border-left: 0; }
}

@media (max-width: 940px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 82px 0; }
  .site-header, .site-header.scrolled { position: fixed; background: rgba(7, 27, 45, .98); box-shadow: 0 10px 30px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
  .nav-shell { position: relative; }
  .menu-toggle { position: relative; z-index: 2; width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; top: 100%; left: 50%; width: 100vw; display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; max-height: calc(100dvh - 84px); padding: 18px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 26px; overflow-y: auto; overscroll-behavior: contain; background: rgba(7, 27, 45, .99); border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 35px rgba(0,0,0,.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .primary-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
  .primary-nav > a:not(.nav-cta, .nav-whatsapp) { grid-column: 1 / -1; width: 100%; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; font-size: 1.08rem; }
  .primary-nav > a:not(.nav-cta, .nav-whatsapp)::after { display: none; }
  .nav-cta, .nav-whatsapp { min-width: 0; min-height: 52px; margin-top: 16px; display: flex; align-items: center; justify-content: center; padding: 10px 12px; font-size: .78rem; text-align: center; }
  .nav-cta { grid-column: 1; }
  .nav-whatsapp { grid-column: 2; width: 100%; height: auto; gap: 7px; }
  .nav-whatsapp span { display: inline; }
  .nav-whatsapp svg { flex: 0 0 20px; width: 20px; height: 20px; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 124px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { display: none; }
  .hero::after { width: 80%; opacity: .7; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .icon-box { margin-bottom: 42px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-visual { min-height: 510px; width: min(85%, 480px); }
  .process-visual img { height: 470px; }
  .location-layout, .contact-layout { grid-template-columns: 1fr; }
  .owner-layout { grid-template-columns: 1fr; gap: 50px; }
  .owner-photos { width: min(100%, 630px); }
  .gallery-heading { grid-template-columns: 1fr; gap: 24px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .location-card { margin-top: 10px; }
  .contact-layout { gap: 52px; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { height: 82px; }
  .brand { gap: 11px; }
  .brand img { width: 58px; height: 58px; }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: .62rem; letter-spacing: .2em; }
  .primary-nav { max-height: calc(100dvh - 82px); padding-inline: 22px; }
  .hero-layout { padding-top: 140px; padding-bottom: 152px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .hero-lead { margin-top: 24px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 13px; margin-top: 35px; padding-top: 20px; }
  .hero-trust div, .hero-trust div + div { grid-template-columns: 95px 1fr; padding: 0; border-left: 0; }
  .availability-inner { min-height: 88px; justify-content: flex-start; }
  .availability-inner p { line-height: 1.45; }
  .availability-inner a { display: none; }
  .section { padding: 72px 0; }
  .section-heading h2, .process h2, .location h2, .contact-section h2 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .vehicle-marquee { margin-top: 40px; }
  .service-card { padding: 30px 26px; }
  .process-visual { width: calc(100% - 16px); min-height: 480px; }
  .process-visual::before { left: -8px; }
  .process-visual img { height: 435px; }
  .process-caption { right: -16px; min-width: 220px; }
  .steps li { grid-template-columns: 45px 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { justify-content: flex-start; padding: 8px 16px; }
  .proof-grid div + div { border-left: 0; border-top: 1px solid rgba(7,27,45,.18); }
  .location-card { min-height: 500px; }
  .location-card > img { width: 100%; height: 320px; }
  .hours-card { width: calc(100% - 18px); padding: 25px 24px; }
  .contact-section { padding: 72px 0; }
  .contact-actions a { grid-template-columns: 82px 1fr 22px; min-height: 84px; gap: 10px; }
  .contact-actions strong { font-size: .93rem; }
  .owner-photos { min-height: 520px; }
  .owner-photo-main { height: 460px; }
  .owner-photo-secondary { height: 320px; }
  .owner-badge { left: -5px; width: 132px; height: 132px; }
  .owner-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .photo-gallery { grid-auto-rows: 220px; gap: 8px; }
  .photo-gallery .gallery-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid > p { max-width: 270px; }
  .mobile-actions { position: fixed; z-index: 80; left: 0; bottom: 0; width: 100%; height: 66px; display: flex; box-shadow: 0 -10px 30px rgba(0,0,0,.16); }
  .mobile-actions a { width: 50%; min-width: 0; flex: 1 1 50%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 10px; font-size: .86rem; font-weight: 900; text-align: center; }
  .mobile-actions svg { width: 19px; height: 19px; }
  .mobile-call { background: var(--cyan); color: var(--navy); }
  .mobile-whatsapp { background: #25d366; color: #062d18; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .vehicle-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .vehicle-marquee-track { animation: none !important; }
  .vehicle-marquee-set[aria-hidden="true"] { display: none; }
}
