:root {
    --ink: #10110e;
    --ink-soft: #1b1d18;
    --paper: #f2f0e9;
    --white: #fff;
    --acid: #d7ff36;
    --muted: #9b9e92;
    --line: rgba(16, 17, 14, .18);
    --display: "Unbounded", sans-serif;
    --body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-header {
    align-items: center;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: 82px;
    padding: 0 4vw;
    position: relative;
    z-index: 20;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    gap: 10px;
    justify-self: start;
    letter-spacing: -.06em;
}

.brand-mark {
    display: inline-flex;
    flex-shrink: 0;
    height: 34px;
    width: 34px;
}

.brand-mark img {
    display: block;
    height: 100%;
    width: 100%;
}

.desktop-nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 36px;
}

.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    background: var(--ink);
    bottom: -6px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    width: 100%;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-phone {
    font-size: 10px;
    font-weight: 700;
    justify-self: end;
    letter-spacing: .1em;
    text-align: right;
    text-transform: uppercase;
}

.header-phone span {
    color: var(--ink);
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 4px;
    text-transform: none;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 720px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 6vw 56px 7vw;
}

.eyebrow {
    align-items: center;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    gap: 10px;
    letter-spacing: .14em;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.eyebrow span {
    background: var(--ink);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.eyebrow.light span {
    background: var(--acid);
}

.hero h1,
.estimate h2,
.section-heading h2,
.cases-title h2,
.why h2,
.faq h2,
.final-cta h2 {
    font-family: var(--display);
    letter-spacing: -.07em;
    line-height: .98;
    margin: 0;
}

.hero h1 {
    font-size: clamp(56px, 6.2vw, 104px);
    margin-left: -.05em;
}

h1 em,
.cases-title em,
.final-cta em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px var(--ink);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.65;
    margin: 34px 0;
    max-width: 590px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 28px;
}

.button {
    align-items: center;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    transition: transform .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--acid);
    color: var(--ink);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
    width: 100%;
}

.button span {
    font-size: 21px;
}

.text-link {
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 2px;
}

.hero-proof {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
    padding-top: 22px;
}

.hero-proof div {
    display: flex;
    flex-direction: column;
}

.hero-proof strong {
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -.05em;
}

.hero-proof span {
    color: #74776d;
    font-size: 10px;
    margin-top: 4px;
}

.hero-visual {
    background: var(--ink);
    min-height: 720px;
    overflow: hidden;
    position: relative;
}

.hero-scene {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 54px;
    top: 0;
}

.hero-scene::after {
    background:
        linear-gradient(90deg, var(--ink) 0%, rgba(16, 17, 14, .92) 8%, transparent 28%),
        linear-gradient(180deg, var(--ink) 0%, rgba(16, 17, 14, .85) 6%, transparent 18%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero-scene svg,
.hero-scene__media {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
}

.hero-scene__audio {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.hero-scene__audio-label {
    color: var(--paper);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.hero-scene__media--audio {
    height: auto;
    max-width: 420px;
    object-fit: unset;
    width: 100%;
}

.hero-scene__scroll {
    animation: hero-drive 28s linear infinite;
}

.hero-scene__wheel-spin {
    animation: hero-wheel 2s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes hero-drive {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(900px);
    }
}

@keyframes hero-wheel {
    to {
        transform: rotate(-360deg);
    }
}

.vertical-word {
    bottom: 24px;
    color: var(--paper);
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .25em;
    margin: 0;
    position: absolute;
    right: 17px;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: bottom right;
}

.location-chip {
    background: var(--paper);
    font-size: 12px;
    font-weight: 800;
    left: 28px;
    line-height: 1.4;
    padding: 17px 22px 17px 40px;
    position: absolute;
    top: 28px;
    z-index: 2;
}

.location-chip small {
    color: #777a70;
    font-size: 10px;
    font-weight: 600;
}

.pulse {
    background: #5abb40;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(90,187,64,.16);
    height: 8px;
    left: 20px;
    position: absolute;
    top: 23px;
    width: 8px;
}

.price-stamp {
    align-items: center;
    aspect-ratio: 1;
    background: var(--acid);
    border-radius: 50%;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    right: 84px;
    rotate: -9deg;
    text-align: center;
    width: 145px;
    z-index: 2;
}

.price-stamp strong {
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -.05em;
}

.price-stamp span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ticker {
    background: var(--acid);
    border-bottom: 1px solid var(--ink);
    border-top: 1px solid var(--ink);
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}

.ticker div {
    animation: ticker 24s linear infinite;
    display: inline-flex;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    gap: 28px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ticker-dot {
    opacity: .55;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.estimate {
    display: grid;
    gap: 5vw;
    grid-template-columns: 1fr minmax(380px, .85fr);
    padding: 120px 7vw;
}

.estimate h2,
.cases-title h2,
.why h2,
.faq h2 {
    font-size: clamp(42px, 4.2vw, 68px);
}

.estimate-copy > p {
    color: #66695f;
    font-size: 15px;
    line-height: 1.75;
    margin: 30px 0 0;
    max-width: 530px;
}

.estimate-form {
    background: var(--white);
    box-shadow: 0 24px 60px rgba(25, 27, 21, .08);
    padding: 30px;
}

.estimate-form label {
    display: block;
}

.estimate-form label > span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.estimate-form input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #c9cbc2;
    border-radius: 0;
    outline: 0;
    padding: 8px 0 13px;
    width: 100%;
}

.estimate-form input:focus {
    border-color: var(--ink);
}

.form-row {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
    margin: 28px 0;
}

.form-note {
    color: #888b80;
    font-size: 11px;
    line-height: 1.5;
    margin: 12px 0 0;
}

.form-message {
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
    padding: 10px 12px;
}

.form-message.success {
    background: #eaffb4;
}

.form-message.error {
    background: #ffe0da;
}

.process {
    background: var(--ink);
    color: var(--white);
    padding: 110px 7vw 120px;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 76px);
}

.section-heading > p {
    color: #a7aa9f;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 6px;
    max-width: 320px;
}

.steps {
    border: 1px solid rgba(255,255,255,.2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    overflow: hidden;
}

.step {
    border-right: 1px solid rgba(255,255,255,.2);
    min-height: 365px;
    padding: 26px 36px 30px;
    position: relative;
}

.step:last-child {
    border-right: 0;
}

.step.featured {
    background: var(--acid);
    color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
    html.js-enhanced .steps:not(.is-visible) .step {
        opacity: 0;
        visibility: hidden;
    }

    html.js-enhanced .steps.is-visible .step {
        opacity: 1;
        visibility: visible;
        animation: step-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--step-i, 0) * 140ms) forwards;
    }

    html.js-enhanced .steps.is-visible.steps--live .step {
        animation: step-float 4.8s ease-in-out calc(var(--step-i, 0) * 0.16s) infinite;
    }

    html.js-enhanced .steps.is-visible.steps--live .step-num {
        animation: step-num-pulse 3.2s ease-in-out calc(var(--step-i, 0) * 0.18s) infinite;
    }

    @keyframes step-enter {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes step-float {
        0%, 100% {
            opacity: 1;
            transform: translateY(0);
        }

        50% {
            opacity: 1;
            transform: translateY(-5px);
        }
    }

    @keyframes step-num-pulse {
        0%, 100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.06);
        }
    }

    [data-inview] {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--inview-delay, 0ms);
    }

    [data-inview].is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .case-card:nth-child(1) { --inview-delay: 0ms; }
    .case-card:nth-child(2) { --inview-delay: 70ms; }
    .case-card:nth-child(3) { --inview-delay: 140ms; }
    .case-card:nth-child(4) { --inview-delay: 210ms; }
    .case-card:nth-child(5) { --inview-delay: 280ms; }

    .faq-item:nth-child(1) { --inview-delay: 0ms; }
    .faq-item:nth-child(2) { --inview-delay: 60ms; }
    .faq-item:nth-child(3) { --inview-delay: 120ms; }
    .faq-item:nth-child(4) { --inview-delay: 180ms; }
    .faq-item:nth-child(5) { --inview-delay: 240ms; }
    .faq-item:nth-child(6) { --inview-delay: 300ms; }
}

.field-offscreen,
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.faq-item {
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}

.step-num {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    font-family: var(--display);
    font-size: 14px;
    height: 42px;
    justify-content: center;
    margin: 0 0 28px;
    width: 42px;
}

.step h3 {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: -.05em;
    margin: 0 0 15px;
}

.step p {
    color: #a7aa9f;
    font-size: 12px;
    line-height: 1.7;
    max-width: 300px;
}

.step.featured p {
    color: #35382e;
}

.step small {
    bottom: 28px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    position: absolute;
    text-transform: uppercase;
}

.cases {
    padding: 120px 7vw;
}

.cases-title {
    margin-bottom: 65px;
    max-width: 720px;
}

.cases-lead {
    color: #66695f;
    font-size: 15px;
    line-height: 1.7;
    margin: 24px 0 0;
    max-width: 560px;
}

.cases-title em {
    background: var(--acid);
    color: var(--ink);
    display: inline-block;
    padding: .03em .14em .08em;
    -webkit-text-stroke: 0;
}

.case-grid {
    display: grid;
    grid-auto-rows: 290px;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}

.case-card {
    border: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: -1px 0 0 -1px;
    padding: 30px;
    position: relative;
}

.case-card > span {
    font-size: 10px;
    font-weight: 800;
    left: 25px;
    position: absolute;
    top: 22px;
}

.case-card h3 {
    font-family: var(--display);
    font-size: 21px;
    letter-spacing: -.05em;
    margin: 0 0 14px;
}

.case-card p {
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
    max-width: 285px;
}

.case-credit {
    background: var(--acid);
}

.image-card {
    background: var(--ink);
    grid-column: span 2;
    overflow: hidden;
    position: relative;
}

.image-card__media {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.image-card__audio {
    align-items: center;
    background: rgba(16, 17, 14, .72);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: absolute;
    text-align: center;
}

.image-card__audio-label {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.image-card__media--audio {
    height: auto;
    max-width: 100%;
    object-fit: initial;
    width: min(100%, 320px);
}

.case-dtp {
    background: var(--ink);
    color: var(--white);
}

.case-mileage {
    background: #deddd5;
}

.case-problem {
    background: var(--white);
}

.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-image {
    background: var(--ink);
    min-height: 680px;
    overflow: hidden;
    position: relative;
}

.why-image::after {
    background: linear-gradient(0deg, rgba(16, 17, 14, .15), transparent);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.why-image__media {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.why-image__audio {
    align-items: center;
    background: rgba(16, 17, 14, .72);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: absolute;
    text-align: center;
    z-index: 2;
}

.why-image__audio-label {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.why-image__media--audio {
    height: auto;
    max-width: 100%;
    object-fit: initial;
    position: static;
    width: min(100%, 320px);
}

.why-copy {
    background: var(--acid);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 680px;
    padding: 8vw;
}

.why-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.8;
    margin: 32px 0;
    max-width: 520px;
}

.why ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why li {
    border-top: 1px solid rgba(16,17,14,.3);
    font-size: 13px;
    font-weight: 700;
    padding: 17px 0;
}

.why li:last-child {
    border-bottom: 1px solid rgba(16,17,14,.3);
}

.faq {
    display: grid;
    gap: 9vw;
    grid-template-columns: .75fr 1.25fr;
    padding: 120px 7vw;
}

.faq-title h2 {
    margin: 38px 0 25px;
}

.faq-title p {
    color: #777a70;
    font-size: 13px;
    margin-bottom: 8px;
}

.faq-title a {
    border-bottom: 1px solid;
    font-weight: 800;
}

.faq-item details,
details.faq-item {
    border-top: 1px solid var(--ink);
    padding: 0;
}

.accordion details.faq-item:last-child,
.accordion .faq-item:last-child details {
    border-bottom: 1px solid var(--ink);
}

details.faq-item summary,
.faq-item summary {
    cursor: pointer;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.03em;
    list-style: none;
    padding: 24px 50px 24px 0;
    position: relative;
}

details.faq-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary .faq-item__question {
    display: block;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.03em;
    padding-right: 40px;
}

details.faq-item summary > span:last-child,
.faq-item summary > span:last-child {
    font-family: var(--body);
    font-size: 26px;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 15px;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

details.faq-item.is-expanded summary > span:last-child,
.faq-item details.is-expanded summary > span:last-child {
    transform: rotate(45deg);
}

.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1);
}

details.faq-item.is-expanded .faq-item__body,
.faq-item details.is-expanded .faq-item__body {
    grid-template-rows: 1fr;
}

details.faq-item.is-collapsing .faq-item__body,
.faq-item details.is-collapsing .faq-item__body {
    grid-template-rows: 0fr;
}

.faq-item__body-inner {
    min-height: 0;
    overflow: hidden;
}

details.faq-item p,
.faq-item details p {
    color: #676a61;
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
    opacity: 0;
    padding: 0 60px 0 0;
    transform: translateY(-8px);
    transition:
        opacity .28s ease,
        transform .28s ease,
        padding .38s cubic-bezier(.4, 0, .2, 1);
}

details.faq-item.is-expanded p,
.faq-item details.is-expanded p {
    opacity: 1;
    padding-bottom: 24px;
    transform: translateY(0);
    transition-delay: .08s;
}

details.faq-item.is-collapsing p,
.faq-item details.is-collapsing p {
    opacity: 0;
    padding-bottom: 0;
    transform: translateY(-6px);
    transition-delay: 0s;
}

.final-cta {
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: 8vw;
    grid-template-columns: 1fr .7fr;
    padding: 110px 7vw;
}

.final-cta h2 {
    font-size: clamp(48px, 5.4vw, 84px);
}

.final-cta h2 em {
    color: var(--white);
    -webkit-text-stroke: 0;
}

.final-contact {
    align-self: end;
}

.final-contact > p {
    color: #a7aa9f;
    font-size: 13px;
    line-height: 1.7;
    max-width: 350px;
}

.final-contact .button {
    margin: 18px 0 30px;
}

.big-phone {
    border-bottom: 1px solid rgba(255,255,255,.6);
    display: block;
    font-family: var(--display);
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: -.04em;
    padding-bottom: 12px;
}

footer {
    align-items: center;
    display: grid;
    font-size: 14px;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 34px 7vw;
}

footer p {
    color: #66695f;
    line-height: 1.6;
    margin: 0;
}

footer p strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: -.03em;
}

.floating-call {
    display: none;
}

@media (max-width: 960px) {
    .estimate {
        display: block;
        grid-template-columns: 1fr;
    }

    .estimate-form {
        margin-top: 42px;
    }

    .case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .image-card {
        grid-column: span 1;
    }

    footer {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 58% 42%;
    }

    .hero-copy {
        padding-left: 5vw;
        padding-right: 4vw;
    }

    .hero h1 {
        font-size: 5.5vw;
    }

    .estimate {
        grid-template-columns: 1fr 360px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .estimate h2 {
        font-size: 4vw;
    }

    .faq {
        gap: 5vw;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
        height: 68px;
        padding: 0 20px;
        position: sticky;
        top: 0;
        z-index: 21;
    }

    .desktop-nav,
    .header-phone {
        display: none;
    }

    .menu-toggle {
        background: none;
        border: 0;
        display: block;
        height: 30px;
        padding: 7px 0;
        position: relative;
        width: 30px;
        z-index: 22;
    }

    .menu-toggle span {
        background: var(--ink);
        display: block;
        height: 2px;
        margin: 5px 0 5px auto;
        transition: .25s ease;
        width: 26px;
    }

    .menu-toggle span:last-child {
        width: 18px;
    }

    .menu-toggle.active span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle.active span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
        width: 26px;
    }

    .mobile-menu {
        background: var(--acid);
        display: flex;
        flex-direction: column;
        font-family: var(--display);
        font-size: 24px;
        gap: 24px;
        inset: 68px 0 auto;
        opacity: 0;
        padding: 40px 24px;
        pointer-events: none;
        position: fixed;
        transform: translateY(-20px);
        transition: .25s ease;
        z-index: 19;
    }

    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero-copy {
        padding: 70px 22px 55px;
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 76px);
        white-space: normal;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-proof {
        gap: 12px;
    }

    .hero-proof strong {
        font-size: 14px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-scene {
        right: 38px;
    }

    .vertical-word {
        right: 10px;
    }

    .price-stamp {
        bottom: 24px;
        right: 58px;
        width: 115px;
    }

    .estimate {
        display: block;
        padding: 85px 22px;
    }

    .estimate-form {
        margin-top: 42px;
    }

    .section-heading {
        align-items: start;
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .process {
        padding: 85px 22px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        margin-top: 0;
    }

    .step:last-child {
        border-bottom: 0;
    }

    .cases {
        padding: 85px 22px;
    }

    .cases-title {
        display: block;
    }

    .estimate h2,
    .cases-title h2,
    .why h2,
    .faq h2 {
        font-size: clamp(38px, 10vw, 58px);
    }

    .case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .image-card {
        grid-column: span 1;
    }

    .why {
        grid-template-columns: 1fr;
    }

    .why-image,
    .why-copy {
        min-height: 580px;
    }

    .why-copy {
        padding: 70px 30px;
    }

    .faq {
        display: block;
        padding: 85px 22px;
    }

    .accordion {
        margin-top: 55px;
    }

    .final-cta {
        grid-template-columns: 1fr;
        padding: 85px 22px 105px;
    }

    footer {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        padding: 35px 22px 100px;
    }

    .floating-call {
        background: var(--acid);
        bottom: 15px;
        box-shadow: 0 8px 25px rgba(16,17,14,.25);
        display: block;
        font-size: 13px;
        font-weight: 800;
        padding: 13px 18px;
        position: fixed;
        right: 15px;
        z-index: 15;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-proof {
        grid-template-columns: 1fr 1fr;
    }

    .hero-proof div:last-child {
        display: none;
    }

    .location-chip {
        left: 16px;
        top: 16px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .estimate-form {
        padding: 24px 20px;
    }

    .case-grid {
        grid-auto-rows: 245px;
        grid-template-columns: 1fr;
    }

    .image-card {
        min-height: 290px;
    }

    .why-image,
    .why-copy {
        min-height: 500px;
    }

    .faq-item summary {
        font-size: 12px;
    }

    .final-cta h2 {
        font-size: 12vw;
    }

    footer {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ticker div {
        animation: none;
    }

    .hero-scene__scroll,
    .hero-scene__wheel-spin {
        animation: none;
    }

    [data-inview] {
        opacity: 1;
        transform: none;
    }

    .steps .step {
        opacity: 1;
        animation: none;
    }

    .steps.is-visible .step-num {
        animation: none;
    }

    .faq-item__body,
    .faq-item details p,
    .faq-item summary span {
        transition: none;
    }

    .faq-item details p {
        opacity: 1;
        transform: none;
    }

    .faq-item details[open] .faq-item__body {
        grid-template-rows: 1fr;
    }

    .faq-item details[open] p {
        opacity: 1;
        padding-bottom: 24px;
        transform: none;
    }

    .faq-item details[open] summary span {
        transform: rotate(45deg);
    }
}

/* Responsive safety net */
img,
svg,
video,
audio {
    max-width: 100%;
}

.site-header > *,
.hero > *,
.estimate > *,
.section-heading > *,
.steps > *,
.case-grid > *,
.why > *,
.faq > *,
.final-cta > *,
footer > * {
    min-width: 0;
}

.hero h1,
.estimate h2,
.section-heading h2,
.cases-title h2,
.why h2,
.faq h2,
.final-cta h2,
.case-card h3,
.step h3,
.brand,
.big-phone {
    overflow-wrap: anywhere;
}

.button,
.text-link,
.big-phone {
    max-width: 100%;
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 68px;
    }

    [data-inview] {
        opacity: 1;
        transform: none;
    }

    .mobile-menu {
        max-height: calc(100dvh - 68px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .hero-copy,
    .estimate,
    .process,
    .cases,
    .faq,
    .final-cta,
    footer {
        padding-left: clamp(16px, 5.5vw, 22px);
        padding-right: clamp(16px, 5.5vw, 22px);
    }

    .hero h1 {
        font-size: clamp(40px, 11.5vw, 76px);
        letter-spacing: -.065em;
    }

    .hero h1 br,
    .estimate h2 br,
    .section-heading h2 br,
    .cases-title h2 br,
    .why h2 br,
    .final-cta h2 br {
        display: none;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-visual,
    .why-image,
    .why-copy {
        min-width: 0;
    }

    .hero-scene {
        right: 32px;
    }

    .location-chip {
        max-width: calc(100% - 72px);
    }

    .steps {
        width: 100%;
    }

    .step {
        min-height: 300px;
        padding-left: clamp(22px, 7vw, 36px);
        padding-right: clamp(22px, 7vw, 36px);
    }

    .case-card {
        min-width: 0;
        overflow: hidden;
    }

    .case-card h3,
    .case-card p {
        max-width: 100%;
    }

    .faq-item summary,
    .faq-item details p {
        overflow-wrap: anywhere;
    }

    .final-contact {
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand {
        font-size: 18px;
        letter-spacing: -.045em;
    }

    .brand-mark {
        height: 30px;
        width: 30px;
    }

    .mobile-menu {
        font-size: clamp(20px, 6vw, 24px);
        gap: 20px;
        padding: 30px 18px;
    }

    .hero-copy {
        padding-top: 54px;
        padding-bottom: 46px;
    }

    .eyebrow {
        align-items: flex-start;
        font-size: 10px;
        letter-spacing: .1em;
        line-height: 1.5;
    }

    .eyebrow span {
        flex: 0 0 auto;
        margin-top: .4em;
    }

    .hero h1 {
        font-size: clamp(36px, 11.2vw, 56px);
        line-height: 1.02;
    }

    h1 em,
    .final-cta em {
        -webkit-text-stroke-width: 1px;
    }

    .hero-lead {
        margin: 26px 0;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        align-self: flex-start;
    }

    .hero-proof {
        gap: 16px;
        margin-top: 42px;
    }

    .hero-proof div {
        min-width: 0;
    }

    .hero-proof strong,
    .hero-proof span {
        overflow-wrap: anywhere;
    }

    .hero-visual {
        min-height: clamp(360px, 125vw, 440px);
    }

    .hero-scene {
        right: 26px;
    }

    .location-chip {
        left: 12px;
        max-width: calc(100% - 56px);
        padding: 14px 14px 14px 34px;
        top: 12px;
    }

    .pulse {
        left: 16px;
        top: 20px;
    }

    .price-stamp {
        bottom: 22px;
        right: 42px;
        width: min(105px, 30vw);
    }

    .estimate,
    .process,
    .cases,
    .faq {
        padding-bottom: 68px;
        padding-top: 68px;
    }

    .estimate h2,
    .cases-title h2,
    .why h2,
    .faq h2 {
        font-size: clamp(32px, 9.5vw, 46px);
        letter-spacing: -.06em;
        line-height: 1.04;
    }

    .section-heading h2 {
        font-size: clamp(32px, 9.5vw, 46px);
        letter-spacing: -.06em;
        line-height: 1.04;
    }

    .estimate-form {
        margin-left: 0;
        margin-right: 0;
        min-width: 0;
        padding: 22px 16px;
        width: 100%;
    }

    .estimate-form input {
        min-width: 0;
    }

    .button {
        min-height: 54px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        white-space: normal;
    }

    .steps {
        margin-top: 48px;
    }

    .step {
        min-height: 270px;
        padding: 24px 22px 28px;
    }

    .step small {
        bottom: 24px;
    }

    .cases-title {
        margin-bottom: 44px;
    }

    .case-grid {
        grid-auto-rows: auto;
    }

    .case-card {
        min-height: 230px;
        padding: 24px 20px;
    }

    .image-card {
        min-height: 260px;
    }

    .why-image {
        min-height: clamp(360px, 115vw, 500px);
    }

    .why-copy {
        min-height: auto;
        padding: 60px clamp(16px, 6vw, 30px);
    }

    .faq-item summary {
        line-height: 1.45;
        padding-right: 38px;
    }

    .faq-item summary span {
        right: 4px;
    }

    .faq-item details p {
        padding-right: 10px;
    }

    .final-cta {
        gap: 48px;
        padding-bottom: 96px;
        padding-top: 68px;
    }

    .final-cta h2 {
        font-size: clamp(36px, 11vw, 54px);
        letter-spacing: -.06em;
        line-height: 1.02;
    }

    .final-contact .button {
        width: 100%;
    }

    .big-phone {
        font-size: clamp(17px, 5.7vw, 24px);
    }

    footer {
        gap: 20px;
    }

    .floating-call {
        bottom: max(12px, env(safe-area-inset-bottom));
        max-width: calc(100vw - 30px);
        right: max(12px, env(safe-area-inset-right));
    }
}

@media (max-width: 350px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof div:last-child {
        display: flex;
    }

    .price-stamp {
        right: 34px;
    }
}
