:root {
    --ink: #062a31;
    --ink-deep: #041b20;
    --ink-soft: #123f47;
    --red: #c9233b;
    --red-bright: #ed4055;
    --red-dark: #9f1024;
    --cream: #f4efe5;
    --paper: #fbfcfb;
    --white: #ffffff;
    --muted: #5f7074;
    --line: #dce5e3;
    --gold: #a68149;
    --gold-light: #f1d995;
    --shadow: 0 24px 70px rgba(4, 27, 32, .13);
    --shadow-strong: 0 30px 90px rgba(4, 27, 32, .25);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --container: 1240px;
    --header-height: 94px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: var(--white); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    color: var(--ink);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
}
h1 { font-size: clamp(3.2rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(80px, 10vw, 145px) 0; }
.section-dark { color: var(--white); background: var(--ink-deep); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark p { opacity: .75; }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    left: 20px;
    top: 12px;
    z-index: 9999;
    padding: 10px 15px;
    color: var(--white);
    background: var(--red);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-noise {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 27px;
    height: 2px;
    content: "";
    background: currentColor;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow .pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 0 0 rgba(237, 64, 85, .6);
    animation: pulse 2.1s infinite;
}
.eyebrow .pulse + * { margin-left: 0; }
.eyebrow:has(.pulse)::before { display: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 13px rgba(237, 64, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(237, 64, 85, 0); } }

.button {
    position: relative;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    box-shadow: 0 16px 34px rgba(201, 35, 59, .28);
}
.button-primary:hover { box-shadow: 0 22px 44px rgba(201, 35, 59, .38); }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 0 15px 35px rgba(6, 42, 49, .2); }
.button-dark:hover { background: var(--ink-soft); }
.button-ghost-light { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.button-ghost-light:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.button-small { min-height: 45px; padding: 10px 18px; font-size: .88rem; }
.button-full { width: 100%; }
.button-shine::after {
    position: absolute;
    top: -60%;
    left: -42%;
    width: 35%;
    height: 220%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: rotate(18deg);
    animation: shine 4.8s ease-in-out infinite;
}
@keyframes shine { 0%, 58% { left: -50%; } 88%, 100% { left: 130%; } }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}
.text-link span { color: var(--red); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(4, 27, 32, .12); }
.topline { color: rgba(255,255,255,.78); background: var(--ink-deep); font-size: .78rem; }
.topline-inner { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 20px; }
.topline p { display: flex; align-items: center; gap: 8px; margin: 0; color: inherit; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6edea2; box-shadow: 0 0 0 4px rgba(110,222,162,.1); }
.topline-links { display: flex; gap: 22px; }
.topline a { text-decoration: none; }
.topline a:hover { color: var(--white); }
.nav-shell { background: rgba(251,252,251,.94); backdrop-filter: blur(18px); }
.nav-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 26px; }
.brand { position: relative; z-index: 2; display: block; width: 92px; flex: 0 0 92px; text-decoration: none; }
.brand img { width: 92px; height: 68px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav ul { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.main-nav li a {
    position: relative;
    display: block;
    padding: 10px 10px;
    color: #29484e;
    font-size: .84rem;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
}
.main-nav li a::after {
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2px;
    content: "";
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}
.main-nav li a:hover::after, .main-nav li a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav li a[aria-current="page"] { color: var(--ink); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; border-radius: 50%; background: var(--ink); }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.breadcrumb-wrap { background: #edf2f0; border-top: 1px solid rgba(6,42,49,.05); }
.breadcrumbs { display: flex; min-height: 42px; align-items: center; gap: 9px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { color: var(--ink); text-decoration: none; }

/* Hero */
.hero {
    position: relative;
    min-height: min(830px, calc(100vh - 30px));
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 65% 42%, rgba(24,91,101,.55), transparent 31%),
        linear-gradient(122deg, #041a20 0%, #072d35 52%, #03161b 100%);
    overflow: hidden;
}
.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
    position: absolute;
    right: -10%;
    bottom: -36%;
    width: 62vw;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 170px rgba(255,255,255,.012);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(28px, 4vw, 72px); padding: 86px 0 110px; }
.hero-copy { position: relative; z-index: 8; }
.hero h1 { margin-bottom: 26px; color: var(--white); font-size: clamp(4rem, 6.6vw, 7rem); text-transform: uppercase; }
.hero h1 em { display: inline-block; color: var(--red-bright); font-style: normal; text-shadow: 0 12px 44px rgba(201,35,59,.25); }
.hero-lead { max-width: 650px; margin-bottom: 32px; color: rgba(255,255,255,.79); font-size: clamp(1.06rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin: 34px 0 0; padding: 0; color: rgba(255,255,255,.72); font-size: .87rem; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof span { display: inline-grid; width: 21px; height: 21px; place-items: center; color: var(--white); background: rgba(201,35,59,.92); border-radius: 50%; font-size: .68rem; }
.hero-visual { position: relative; min-height: 590px; transform-style: preserve-3d; will-change: transform; transition: transform .18s ease-out; }
.hero-photo-stack { position: absolute; inset: 0; transform-style: preserve-3d; }
.hero-shot { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #09262d; box-shadow: 0 34px 85px rgba(0,0,0,.38); }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.hero-shot::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, transparent 48%, rgba(2,18,22,.88) 100%); }
.hero-shot:hover img { transform: scale(1.035); }
.hero-shot figcaption { position: absolute; right: 24px; bottom: 21px; left: 24px; z-index: 2; color: var(--white); text-shadow: 0 3px 18px rgba(0,0,0,.45); }
.hero-shot figcaption span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.68); font-size: .62rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero-shot figcaption strong { font-size: clamp(1.05rem, 1.8vw, 1.48rem); }
.hero-shot-main { top: 0; right: 0; width: 78%; height: 78%; border-radius: 36px; transform: translateZ(18px) rotate(1.5deg); }
.hero-shot-main img { object-position: 52% center; }
.hero-shot-main figcaption { top: 20px; right: auto; bottom: auto; width: max-content; max-width: calc(100% - 40px); padding: 10px 13px; background: rgba(3,26,31,.66); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; backdrop-filter: blur(9px); }
.hero-shot-lifestyle { bottom: 0; left: 0; z-index: 3; width: 48%; height: 42%; border-radius: 28px; transform: translateZ(60px) rotate(-3deg); }
.hero-shot-lifestyle img { object-position: 51% center; }
.hero-shot-lifestyle figcaption { right: 16px; bottom: 14px; left: 16px; font-size: .78rem; font-weight: 850; }
.hero-shot-detail { right: 2%; bottom: 0; z-index: 4; width: 31%; height: 30%; border: 7px solid rgba(255,255,255,.92); border-radius: 50%; transform: translateZ(90px) rotate(5deg); }
.hero-shot-detail::after { background: linear-gradient(135deg, transparent 45%, rgba(2,18,22,.45)); }
.hero-badge {
    position: absolute;
    top: 7%;
    left: 5%;
    z-index: 7;
    width: 122px;
    height: 122px;
    display: grid;
    place-content: center;
    color: var(--ink);
    text-align: center;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
    transform: translateZ(110px) rotate(-8deg);
}
.hero-badge::before { position: absolute; inset: 8px; content: ""; border: 1px dashed rgba(6,42,49,.45); border-radius: inherit; }
.hero-badge strong { display: block; font-size: 2.15rem; line-height: 1; }
.hero-badge span { display: block; width: 85px; font-size: .65rem; font-weight: 850; line-height: 1.15; text-transform: uppercase; }
.hero-signature { position: absolute; right: 1%; bottom: 5%; z-index: 6; margin: 0; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .2em; line-height: 1.3; text-align: right; text-transform: uppercase; }
.hero-signature strong { color: var(--white); font-size: 1.1rem; }
.speed-lines { position: absolute; top: 59%; left: 0; z-index: 0; width: 47%; }
.speed-lines span { display: block; height: 2px; margin: 14px 0; background: linear-gradient(90deg, transparent, var(--red-bright)); border-radius: 9px; animation: speed 2.7s ease-in-out infinite; }
.speed-lines span:nth-child(2) { width: 74%; animation-delay: .3s; }
.speed-lines span:nth-child(3) { width: 48%; animation-delay: .6s; }
@keyframes speed { 50% { transform: translateX(45px); opacity: .35; } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; pointer-events: none; }
.hero-glow-one { top: 18%; left: -7%; width: 280px; height: 280px; background: var(--red); }
.hero-glow-two { right: 4%; bottom: 0; width: 320px; height: 320px; background: #1c7180; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; z-index: 4; width: 30px; height: 50px; border: 1px solid rgba(255,255,255,.35); border-radius: 30px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--white); border-radius: 3px; animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { to { top: 28px; opacity: 0; } }

.trust-strip { position: relative; z-index: 5; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 -18px 45px rgba(0,0,0,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 24px 32px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--ink); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.1; }
.trust-grid span { color: var(--muted); font-size: .82rem; }

.section-impact { color: var(--white); background: linear-gradient(112deg, #071f25 0%, #0a333b 65%, #7e1425 145%); overflow: hidden; }
.section-impact::before { position: absolute; top: -150px; right: -90px; width: 470px; height: 470px; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012); }
.impact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: clamp(45px, 8vw, 120px); }
.section-impact h2 { max-width: 860px; margin: 0; color: var(--white); font-size: clamp(2.6rem, 4.5vw, 5rem); }
.section-impact .lead { margin-bottom: 28px; color: rgba(255,255,255,.78); }
.impact-points { display: flex; flex-wrap: wrap; gap: 10px; }
.impact-points span { padding: 9px 13px; color: var(--white); border: 1px solid rgba(255,255,255,.14); border-radius: 99px; background: rgba(255,255,255,.06); font-size: .75rem; font-weight: 800; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin-bottom: 8px; }
.section-heading.compact { grid-template-columns: 1fr; }

.section-services { background: linear-gradient(180deg, #fbfcfb 0%, #f1f4f2 100%); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.service-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 320px;
    background: var(--white);
    border: 1px solid rgba(6,42,49,.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 55px rgba(5,38,44,.07);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: box-shadow .35s var(--ease), border-color .35s ease;
}
.service-card:hover { border-color: rgba(201,35,59,.28); box-shadow: var(--shadow); }
.service-card-media { min-height: 100%; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.045); }
.service-card-body { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 38px 30px; background: var(--white); }
.service-number { position: absolute; top: 20px; right: 24px; color: rgba(6,42,49,.11); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.service-card h3 { margin-bottom: 14px; font-size: clamp(1.45rem, 2.3vw, 2.1rem); }
.service-card h3 a { text-decoration: none; }
.service-card p { margin-bottom: 26px; }
.service-card .text-link { margin-top: auto; }

.section-choice { background: var(--cream); overflow: hidden; }
.section-choice::before { position: absolute; top: -220px; right: -200px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(6,42,49,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(6,42,49,.02), 0 0 0 150px rgba(6,42,49,.015); }
.choice-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.choice-copy h2 { max-width: 690px; }
.choice-list { margin-top: 36px; border-top: 1px solid rgba(6,42,49,.14); }
.choice-list a { position: relative; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 19px 0; border-bottom: 1px solid rgba(6,42,49,.14); text-decoration: none; transition: padding .25s var(--ease); }
.choice-list a:hover { padding-left: 10px; }
.choice-list span { color: var(--red); font-size: .73rem; font-weight: 850; }
.choice-list strong { font-size: .98rem; letter-spacing: -.015em; }
.choice-list small { color: var(--muted); font-size: .72rem; }
.comparison-wrap { position: relative; }
.comparison { position: relative; min-height: 570px; border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); overflow: hidden; isolation: isolate; background: #061c22; }
.comparison-panel { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.comparison-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.comparison-panel::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(2,18,22,.88) 100%); pointer-events: none; }
.comparison-before { color: var(--white); }
.comparison-after { color: var(--white); clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-panel figcaption { position: absolute; bottom: 24px; z-index: 2; width: 42%; display: grid; gap: 10px; }
.comparison-before figcaption { right: 24px; justify-items: end; text-align: right; }
.comparison-after figcaption { left: 24px; justify-items: start; text-align: left; }
.comparison-panel figcaption strong { max-width: 280px; font-size: clamp(1rem, 2vw, 1.35rem); }
.comparison-label { padding: 7px 12px; border-radius: 99px; font-size: .64rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.comparison-before .comparison-label { color: var(--white); background: rgba(3,26,31,.72); backdrop-filter: blur(8px); }
.comparison-after .comparison-label { color: var(--white); background: var(--red); }
.paint-panel { position: relative; width: min(360px, 80%); aspect-ratio: 1.7; border-radius: 50% 40% 46% 54% / 45% 52% 48% 55%; transform: rotate(-7deg); }
.paint-panel.scratched { background: linear-gradient(135deg, #67767a, #273d42 55%, #7b898c); box-shadow: inset -20px -30px 60px rgba(0,0,0,.25), 0 25px 60px rgba(0,0,0,.25); }
.paint-panel.scratched::before { position: absolute; inset: 20%; content: ""; background: radial-gradient(circle, rgba(255,255,255,.05), transparent 55%); filter: blur(5px); }
.paint-panel.scratched i { position: absolute; top: 45%; left: 18%; width: 62%; height: 2px; background: rgba(255,255,255,.55); transform: rotate(-8deg); box-shadow: 0 10px 0 rgba(255,255,255,.2); }
.paint-panel.scratched i:nth-child(2) { top: 58%; left: 35%; width: 42%; transform: rotate(13deg); }
.paint-panel.scratched i:nth-child(3) { top: 34%; left: 48%; width: 25%; transform: rotate(-28deg); }
.paint-panel.polished { background: linear-gradient(130deg, #153f48 0%, #0b2b32 42%, #d22a42 44%, #8d0d21 54%, #0b2b32 56%, #1a4e57); box-shadow: inset 25px 20px 45px rgba(255,255,255,.15), 0 25px 60px rgba(0,0,0,.18); }
.paint-panel.polished i { position: absolute; top: 20%; left: 15%; width: 70%; height: 18%; border-radius: 50%; background: rgba(255,255,255,.35); filter: blur(8px); transform: rotate(-7deg); }
.comparison-divider { position: absolute; top: 0; bottom: 0; left: var(--position); z-index: 5; width: 3px; background: var(--white); box-shadow: 0 0 18px rgba(0,0,0,.25); transform: translateX(-50%); pointer-events: none; }
.comparison-divider span { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; box-shadow: 0 8px 25px rgba(0,0,0,.24); transform: translate(-50%, -50%); font-weight: 900; }
.comparison input[type="range"] { position: absolute; inset: 0; z-index: 6; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-note { margin: 16px 0 0; color: var(--muted); font-size: .76rem; text-align: center; text-transform: uppercase; letter-spacing: .12em; }

.section-process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 270px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.process-grid li::after { position: absolute; right: -28px; bottom: -48px; width: 150px; height: 150px; content: ""; border: 26px solid rgba(201,35,59,.04); border-radius: 50%; }
.process-grid li > span { display: inline-block; margin-bottom: 50px; color: var(--red); font-size: .78rem; font-weight: 900; }
.process-grid h3 { margin-bottom: 14px; }
.process-grid p { margin: 0; font-size: .93rem; }

.section-about-teaser { background: #eef3f1; }
.about-teaser-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); }
.about-stamp { position: absolute; right: -24px; bottom: -28px; width: 140px; height: 140px; display: grid; place-content: center; color: var(--white); text-align: center; background: var(--red); border: 8px solid #eef3f1; border-radius: 50%; transform: rotate(-7deg); }
.about-stamp span, .about-stamp small { font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.about-stamp strong { font-size: 2rem; line-height: 1; }
.about-teaser-grid > div:last-child p { max-width: 640px; }
.about-teaser-grid .button { margin-top: 12px; }

.section-faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); }
.faq-grid > div:first-child { position: sticky; top: 150px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.accordion details[open] summary span { background: var(--red); transform: rotate(45deg); }
.accordion details > div { padding: 0 55px 25px 0; }
.accordion p { margin: 0; }

.final-cta { position: relative; padding: clamp(70px, 9vw, 120px) 0; overflow: hidden; }
.final-cta::before { position: absolute; top: -100px; right: 4%; width: 340px; height: 340px; content: ""; background: radial-gradient(circle, rgba(201,35,59,.35), transparent 68%); }
.final-cta-grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 70px; }
.final-cta h2 { max-width: 850px; margin-bottom: 20px; }
.final-cta p { margin: 0; }
.final-cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* Inner pages */
.page-hero { position: relative; color: var(--white); background: linear-gradient(128deg, var(--ink-deep), #0b3f48); overflow: hidden; }
.page-hero::before { position: absolute; inset: 0; content: ""; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent); }
.page-hero::after { position: absolute; right: -180px; bottom: -320px; width: 680px; height: 680px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 170px rgba(255,255,255,.01); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(50px, 8vw, 110px); padding: clamp(75px, 9vw, 125px) 0; }
.page-hero h1 { margin-bottom: 26px; color: var(--white); font-size: clamp(3rem, 5.6vw, 6rem); }
.page-hero p { max-width: 700px; margin-bottom: 32px; color: rgba(255,255,255,.74); font-size: 1.1rem; }
.page-hero-media { position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); overflow: hidden; transform-style: preserve-3d; }
.page-hero-media::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.page-hero-media img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }


/* Service lifestyle image */
.service-photo-stage {
    padding-top: 0;
}
.service-photo-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    background: #071f24;
    box-shadow: var(--shadow-strong);
}
.service-photo-media {
    min-height: 520px;
    overflow: hidden;
}
.service-photo-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 44% center;
    transition: transform .8s var(--ease);
}
.service-photo-card:hover .service-photo-media img {
    transform: scale(1.035);
}
.service-photo-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(220,38,38,.18), transparent 42%),
        linear-gradient(145deg, #08262c 0%, #06191e 100%);
}
.service-photo-copy h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: .98;
    letter-spacing: -.045em;
}
.service-photo-copy p {
    max-width: 38rem;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
}
.service-photo-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .service-photo-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .service-photo-media,
    .service-photo-media img {
        min-height: 0;
    }
    .service-photo-media img {
        aspect-ratio: 16 / 10;
        object-position: 42% center;
    }
}

@media (max-width: 560px) {
    .service-photo-copy {
        padding: 30px 22px 34px;
    }
    .service-photo-copy h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .service-photo-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .service-photo-actions .button,
    .service-photo-actions .text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
.benefit-bar { color: var(--white); background: var(--red); }
.benefit-bar ul { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.benefit-bar li { min-height: 95px; display: flex; align-items: center; gap: 10px; padding: 20px 25px; border-right: 1px solid rgba(255,255,255,.2); font-size: .84rem; font-weight: 800; line-height: 1.35; }
.benefit-bar li:last-child { border-right: 0; }
.benefit-bar li span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; color: var(--red); background: var(--white); border-radius: 50%; font-size: .7rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-grid article { min-height: 290px; padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 15px 50px rgba(5,38,44,.05); }
.feature-grid article > span { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; margin-bottom: 55px; color: var(--white); background: var(--red); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.feature-grid h3 { margin-bottom: 15px; }
.feature-grid p { margin: 0; font-size: .94rem; }
.service-process { overflow: hidden; }
.service-process::after { position: absolute; top: -250px; right: -100px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 85px rgba(255,255,255,.012), 0 0 0 170px rgba(255,255,255,.009); }
.process-grid-dark { position: relative; z-index: 2; }
.process-grid-dark li { min-height: 220px; color: var(--white); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.process-grid-dark li > span { color: var(--gold-light); }
.process-grid-dark h3 { color: var(--white); font-size: 1.55rem; }
.service-decision { background: var(--cream); }
.service-decision-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: clamp(50px, 9vw, 130px); }
.service-decision-grid > div:first-child p { max-width: 680px; }
.decision-card { padding: clamp(34px, 5vw, 60px); color: var(--white); background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); }
.decision-card h3 { color: var(--white); }
.decision-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 35px; color: var(--white); background: var(--red); border-radius: 50%; font-size: 1.3rem; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 32px; color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.11); }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--gold-light); font-weight: 900; }

/* About */
.story-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 10vw, 150px); }
.story-copy .lead { color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 700; line-height: 1.5; }
.values-section { background: var(--ink); }
.values-section h2, .values-section h3 { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values-grid article { position: relative; min-height: 310px; padding: 40px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.values-grid article::after { position: absolute; right: -55px; bottom: -55px; width: 170px; height: 170px; content: ""; border: 24px solid rgba(201,35,59,.12); border-radius: 50%; }
.values-grid span { display: inline-block; margin-bottom: 75px; color: var(--gold-light); font-size: .78rem; font-weight: 900; }
.values-grid p { color: rgba(255,255,255,.65); }
.location-section { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(55px, 10vw, 150px); }
.location-card { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 45px; color: var(--white); background: radial-gradient(circle at 72% 22%, #1d5a65, var(--ink) 45%, var(--ink-deep)); border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); overflow: hidden; }
.location-card::before { position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.03), 0 0 0 80px rgba(255,255,255,.02); }
.location-card p { color: var(--white); font-size: 1.15rem; }
.location-card .text-link { color: var(--white); }
.map-pin { position: absolute; top: 45px; left: 45px; width: 60px; height: 60px; background: var(--red); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-pin::after { position: absolute; top: 19px; left: 19px; width: 22px; height: 22px; content: ""; background: var(--white); border-radius: 50%; }

/* Contact */
.contact-hero-grid { grid-template-columns: 1.1fr .9fr; }
.contact-quick-grid { display: grid; gap: 14px; }
.contact-quick-grid a { position: relative; display: grid; grid-template-columns: 50px 1fr; grid-template-rows: auto auto; column-gap: 18px; padding: 24px; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); text-decoration: none; transition: background .25s ease, transform .25s ease; }
.contact-quick-grid a:hover { background: rgba(255,255,255,.11); transform: translateX(-5px); }
.contact-quick-grid a > span { grid-row: 1 / 3; width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font-weight: 900; }
.contact-quick-grid small { color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-quick-grid strong { font-size: 1rem; overflow-wrap: anywhere; }
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(45px, 8vw, 105px); }
.contact-info { position: sticky; top: 140px; }
.contact-address { display: flex; flex-direction: column; margin: 35px 0 25px; font-style: normal; }
.contact-address strong { margin-bottom: 6px; font-size: 1.2rem; }
.hours-list { margin: 35px 0 0; border-top: 1px solid rgba(6,42,49,.15); }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(6,42,49,.15); }
.hours-list dt { font-weight: 800; }
.hours-list dd { margin: 0; color: var(--muted); }
.form-card { padding: clamp(32px, 5vw, 64px); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 32px; font-size: clamp(2rem, 4vw, 3.4rem); }
.form-alert { margin-bottom: 25px; padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 700; }
.form-alert-success { color: #155d38; background: #e5f7ed; border: 1px solid #b9e7cb; }
.form-alert-error { color: #842135; background: #fde8ec; border: 1px solid #f1bbc5; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea {
    width: 100%;
    color: var(--ink);
    background: #f6f8f7;
    border: 1px solid #d9e1df;
    border-radius: 13px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { height: 56px; padding: 0 16px; }
.field textarea { min-height: 160px; padding: 15px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--red); box-shadow: 0 0 0 4px rgba(201,35,59,.1); }
.field small { display: block; margin-top: 5px; color: var(--muted); font-size: .72rem; text-align: right; }
.check-field { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin: 5px 0 25px; color: var(--muted); font-size: .78rem; line-height: 1.45; cursor: pointer; }
.check-field input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--red); }
.check-field a { color: var(--ink); }
.honeypot { position: absolute; left: -9999px; }

/* Legal + 404 */
.legal-hero { padding: 90px 0 70px; background: var(--cream); }
.legal-hero h1 { margin: 0; overflow-wrap: anywhere; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.legal-section { padding-top: 70px; }
.legal-content { max-width: 920px; }
.legal-content h2 { margin: 50px 0 18px; font-size: clamp(1.45rem, 2.8vw, 2.2rem); letter-spacing: -.025em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content a { color: var(--red-dark); }
.not-found { min-height: 68vh; display: grid; place-items: center; padding: 100px 0; text-align: center; background: var(--cream); }
.not-found-inner { max-width: 800px; }
.not-found-inner > span { display: block; color: var(--red); font-size: clamp(5rem, 15vw, 12rem); font-weight: 950; line-height: .8; opacity: .16; }
.not-found h1 { margin: -15px 0 25px; font-size: clamp(2.7rem, 6vw, 5.5rem); }
.not-found p { max-width: 620px; margin: 0 auto 30px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.65); background: #021216; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr 1.1fr; gap: 55px; padding: 80px 0 55px; }
.site-footer h2 { margin-bottom: 22px; color: var(--white); font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.brand-footer { width: 120px; margin-bottom: 20px; padding: 9px; background: var(--white); border-radius: 16px; }
.brand-footer img { width: 102px; height: 82px; }
.footer-brand p { max-width: 330px; font-size: .87rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer address { font-style: normal; }
.hours-compact { margin: 0; }
.hours-compact div { display: grid; grid-template-columns: 34px 1fr; gap: 9px; padding: 4px 0; }
.hours-compact dt { color: var(--white); font-weight: 800; }
.hours-compact dd { margin: 0; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: .74rem; }
.footer-bottom p { margin: 0; color: inherit; }
.footer-bottom > div { display: flex; gap: 18px; }
.footer-bottom .version { text-align: right; }
.mobile-actions { display: none; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 46px; height: 46px; color: var(--white); background: var(--red); border: 0; border-radius: 50%; box-shadow: 0 12px 30px rgba(201,35,59,.3); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .25s ease, transform .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Reveal + tilt */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-tilt] { transition: transform .18s ease-out, box-shadow .35s ease; will-change: transform; }

/* Cinematic vehicle appeal */
.section-desire { padding-top: clamp(34px, 5vw, 70px); padding-bottom: clamp(34px, 5vw, 70px); background: linear-gradient(180deg, #f1f4f2 0%, #071f25 100%); }
.desire-card {
    position: relative;
    min-height: clamp(540px, 69vw, 760px);
    display: flex;
    align-items: flex-end;
    padding: clamp(30px, 6vw, 78px);
    border-radius: clamp(28px, 4vw, 52px);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 34px 100px rgba(2, 18, 22, .34);
}
.desire-card::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(2,15,19,.92) 0%, rgba(2,15,19,.74) 38%, rgba(2,15,19,.18) 70%, rgba(2,15,19,.1) 100%); }
.desire-card::after { position: absolute; top: 0; right: 0; z-index: 1; width: 42%; height: 8px; content: ""; background: linear-gradient(90deg, transparent, var(--red-bright)); }
.desire-card > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transition: transform 1s var(--ease), filter .6s ease; }
.desire-card:hover > img { transform: scale(1.025); filter: saturate(1.08) contrast(1.03); }
.desire-copy { position: relative; z-index: 2; width: min(720px, 68%); }
.desire-copy h2 { max-width: 720px; margin-bottom: 24px; color: var(--white); font-size: clamp(3rem, 6vw, 6.2rem); }
.desire-copy p { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.desire-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.text-link-light { color: var(--white); }
.text-link-light span { color: var(--gold-light); }
.desire-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 0; padding: 0; list-style: none; }
.desire-tags li { padding: 8px 12px; color: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(3,24,29,.36); backdrop-filter: blur(9px); font-size: .72rem; font-weight: 800; }

.image-credits { display: grid; gap: 9px; margin: 18px 0 0; padding-left: 22px; }
.image-credits li { color: var(--muted); }

@media (max-width: 1180px) {
    .main-nav { gap: 12px; }
    .main-nav li a { padding-inline: 7px; font-size: .77rem; }
    .nav-cta { display: none; }
    .hero-grid { grid-template-columns: .9fr 1.1fr; }
    .hero h1 { font-size: clamp(3.7rem, 6.8vw, 6.2rem); }
    .hero-visual { min-height: 540px; }
    .hero-shot-main { width: 82%; }
    .hero-shot-lifestyle { width: 50%; }
    .service-card { grid-template-columns: 1fr; }
    .service-card-media { height: 220px; }
    .footer-grid { grid-template-columns: 1.1fr .8fr .9fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 960px) {
    .desire-copy { width: min(760px, 84%); }
    .desire-card::before { background: linear-gradient(90deg, rgba(2,15,19,.9) 0%, rgba(2,15,19,.68) 52%, rgba(2,15,19,.2) 100%); }
    :root { --header-height: 82px; }
    body { font-size: 16px; }
    .topline-links a:last-child { display: none; }
    .menu-toggle { display: block; position: relative; z-index: 1002; }
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 110px 30px 45px;
        color: var(--white);
        background: rgba(3, 24, 29, .98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav ul { width: min(100%, 520px); flex-direction: column; gap: 0; }
    .main-nav li { width: 100%; }
    .main-nav li a { padding: 13px 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.15rem; }
    .main-nav li a::after { display: none; }
    .nav-cta { display: inline-flex; margin-top: 24px; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 85px; }
    .hero-copy { max-width: 780px; }
    .hero h1 { font-size: clamp(4rem, 12vw, 6.4rem); }
    .hero-visual { min-height: 520px; margin-top: 5px; }
    .hero-shot-main { width: 74%; height: 76%; }
    .hero-shot-lifestyle { width: 44%; height: 43%; }
    .hero-shot-detail { width: 27%; height: 28%; }
    .hero-badge { top: 4%; left: 4%; }
    .hero-signature { bottom: 3%; }
    .impact-grid { grid-template-columns: 1fr; align-items: start; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section-heading { grid-template-columns: 1fr; gap: 25px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .choice-grid, .about-teaser-grid, .faq-grid, .service-decision-grid, .story-grid, .location-grid, .contact-layout { grid-template-columns: 1fr; }
    .choice-copy { order: 1; }
    .comparison-wrap { order: 2; }
    .faq-grid > div:first-child, .contact-info { position: static; }
    .process-grid, .feature-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .process-grid li:last-child, .feature-grid article:last-child, .values-grid article:last-child { grid-column: 1 / -1; }
    .final-cta-grid { grid-template-columns: 1fr; gap: 35px; }
    .final-cta-actions { flex-direction: row; flex-wrap: wrap; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .about-stamp { right: 10px; }
    .page-hero-media { max-width: 720px; }
    .benefit-bar ul { grid-template-columns: repeat(2, 1fr); }
    .benefit-bar li:nth-child(2) { border-right: 0; }
    .benefit-bar li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-quick-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
    .section-desire { padding-block: 18px; }
    .desire-card { min-height: 620px; align-items: flex-end; padding: 28px 22px; border-radius: 28px; }
    .desire-card::before { background: linear-gradient(180deg, rgba(2,15,19,.08) 12%, rgba(2,15,19,.66) 50%, rgba(2,15,19,.97) 100%); }
    .desire-card > img { object-position: 46% center; }
    .desire-copy { width: 100%; }
    .desire-copy h2 { font-size: clamp(2.65rem, 14vw, 4rem); }
    .desire-actions { align-items: stretch; flex-direction: column; }
    .desire-actions .button { width: 100%; }
    .desire-actions .text-link { justify-content: center; min-height: 44px; }
    .desire-tags { gap: 7px; margin-top: 22px; }
    .desire-tags li { font-size: .66rem; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }
    h1 { letter-spacing: -.055em; }
    .topline-inner { justify-content: center; }
    .topline-links { display: none; }
    .nav-inner { min-height: 68px; }
    .brand { width: 78px; flex-basis: 78px; }
    .brand img { width: 78px; height: 58px; }
    .hero-grid { padding: 68px 0 85px; }
    .hero h1 { font-size: clamp(2.85rem, 11.6vw, 3.25rem); line-height: .97; }
    .hero-lead { font-size: 1rem; }
    .hero-actions, .final-cta-actions { flex-direction: column; }
    .hero-actions .button, .final-cta-actions .button { width: 100%; }
    .hero-proof { display: none; }
    .hero-visual { min-height: 385px; margin-top: 24px; }
    .hero-shot-main { top: 0; right: 0; width: 88%; height: 70%; border-radius: 24px; }
    .hero-shot-lifestyle { bottom: 0; left: 0; width: 57%; height: 42%; border-radius: 20px; }
    .hero-shot-detail { right: 0; bottom: 2%; width: 32%; height: 28%; border-width: 5px; }
    .hero-shot figcaption { right: 15px; bottom: 14px; left: 15px; }
    .hero-shot-main figcaption { top: 14px; right: 10px; left: 92px; width: auto; max-width: none; padding: 8px 10px; }
    .hero-shot-main figcaption strong { font-size: .82rem; }
    .hero-shot-main figcaption span { font-size: .5rem; }
    .hero-shot-lifestyle figcaption { font-size: .68rem; }
    .hero-badge { top: 5%; left: 0; width: 92px; height: 92px; }
    .hero-badge strong { font-size: 1.55rem; }
    .hero-badge span { width: 65px; font-size: .5rem; }
    .hero-signature, .scroll-cue { display: none; }
    .trust-grid > div { min-height: 105px; padding: 20px; }
    .trust-grid strong { font-size: 1.35rem; }
    .trust-grid span { font-size: .72rem; }
    .section-heading { margin-bottom: 35px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { grid-template-columns: 1fr; border-radius: 26px; }
    .service-card-media { height: 230px; }
    .service-card-body { padding: 30px 26px; }
    .choice-list a { grid-template-columns: 36px 1fr; }
    .choice-list small { grid-column: 2; }
    .comparison { min-height: 455px; border-radius: 28px; }
    .comparison-panel figcaption { bottom: 16px; width: 43%; gap: 8px; }
    .comparison-before figcaption { right: 16px; }
    .comparison-after figcaption { left: 16px; }
    .comparison-panel figcaption strong { font-size: .9rem; }
    .comparison-label { font-size: .54rem; white-space: normal; }
    .paint-panel { width: 82%; }
    .process-grid, .feature-grid, .values-grid { grid-template-columns: 1fr; }
    .process-grid li:last-child, .feature-grid article:last-child, .values-grid article:last-child { grid-column: auto; }
    .process-grid li { min-height: 230px; padding: 30px; }
    .about-stamp { right: -5px; bottom: -34px; width: 115px; height: 115px; }
    .faq-grid { gap: 30px; }
    .accordion summary { padding: 22px 0; font-size: .94rem; }
    .page-hero-grid { padding: 70px 0; }
    .page-hero h1 { font-size: clamp(2.8rem, 12.5vw, 4.5rem); }
    .benefit-bar ul { grid-template-columns: 1fr; }
    .benefit-bar li { min-height: 70px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
    .feature-grid article { min-height: 250px; padding: 30px; }
    .feature-grid article > span { margin-bottom: 35px; }
    .story-grid { gap: 25px; }
    .location-card { min-height: 330px; padding: 32px; }
    .map-pin { top: 32px; left: 32px; }
    .contact-quick-grid, .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 30px 20px; border-radius: 25px; }
    .hours-list div { font-size: .87rem; }
    .legal-hero h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 65px; }
    .footer-bottom { grid-template-columns: 1fr; text-align: center; padding-bottom: 92px; }
    .footer-bottom > div { justify-content: center; }
    .footer-bottom .version { text-align: center; }
    .mobile-actions { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 950; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 7px; background: rgba(4,27,32,.94); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.32); backdrop-filter: blur(14px); }
    .mobile-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; color: var(--white); border-radius: 12px; font-size: .82rem; font-weight: 850; text-decoration: none; }
    .mobile-actions a:last-child { background: var(--red); }
    .back-to-top { right: 16px; bottom: 85px; }
}

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

@media print {
    .site-header, .mobile-actions, .back-to-top, .final-cta, .site-footer, .hero-actions, .button { display: none !important; }
    body { color: #000; background: #fff; font-size: 11pt; }
    .section, .page-hero-grid { padding: 25px 0; }
    .page-hero, .legal-hero { color: #000; background: #fff; }
    .page-hero h1, .page-hero p { color: #000; }
}


/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; }
.sitemap-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.sitemap-list a { display: grid; gap: 5px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); text-decoration: none; background: rgba(255,255,255,.72); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.sitemap-list a:hover { transform: translateY(-2px); border-color: rgba(201,35,59,.35); box-shadow: 0 12px 30px rgba(6,42,49,.08); }
.sitemap-list span { color: var(--muted); font-size: .9rem; line-height: 1.55; }
@media (max-width: 940px) { .sitemap-grid { grid-template-columns: 1fr; } }
