@font-face {
    font-family: "Segoe UI Local";
    src: url("../assets/fonts/segoeui.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Segoe UI Local";
    src: url("../assets/fonts/segoeuib.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #051925;
    --ice: #e9f8fc;
    --lime: #b9ff2f;
    --white: #fff;
    --muted: #58717d;
    --line: rgba(5, 25, 37, .14);
    --scroll-progress: 0;
    --header-offset: 5.75rem;
    --hero-parallax: 0;
    --header-bg-opacity: 0;
    --header-blur: 0px;
    --header-shadow-opacity: 0;
    font-family: "Segoe UI Local", "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--ice);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ice);
    color: var(--ink);
}

.home-page {
    background: var(--ink);
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 30;
    padding: .75rem 1rem;
    border-radius: .45rem;
    background: var(--lime);
    color: var(--ink);
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    color: var(--ink);
    background: rgba(233, 248, 252, .94);
    box-shadow: 0 12px 34px rgba(5, 25, 37, .1);
}

.home-page .site-header {
    background: rgba(233, 248, 252, .82);
    box-shadow: 0 18px 46px rgba(5, 25, 37, .14);
    backdrop-filter: blur(var(--header-blur)) saturate(1.18);
    -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.18);
    transition: background-color .08s linear, box-shadow .08s linear, backdrop-filter .08s linear;
}

body:not(.home-page) .site-header {
    background: rgba(233, 248, 252, .96);
}

body:not(.home-page) main {
    padding-top: var(--header-offset);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.55rem clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-page .nav-container {
    transform: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    text-decoration: none;
    line-height: 0;
    box-shadow: none;
}

.home-page .brand {
    transform: scale(calc(1 - var(--hero-parallax) * .035));
    transform-origin: left center;
    transition: transform .08s linear;
}

.brand img {
    display: block;
    width: auto;
    height: clamp(3.2rem, 4.2vw, 4.85rem);
    max-width: clamp(3.75rem, 9vw, 5.6rem);
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .22));
}

.brand__text {
    display: block;
    padding: .42rem .2rem;
    color: var(--ink);
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3.2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-page .nav-menu {
    transform: translateY(calc(var(--hero-parallax) * -3px));
    transition: transform .08s linear;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .02em;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #1c6b3a;
}

main {
    display: block;
}

.home-page main {
    margin-top: 0;
    background: var(--ink);
}

.hero-wash {
    position: relative;
    min-height: min(760px, 100svh);
    height: 100svh;
    overflow: hidden;
    background: var(--ink);
    --hero-parallax: 0;
    isolation: isolate;
}

.hero-wash picture,
.hero-wash__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-wash__image {
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, calc(var(--hero-parallax) * 62px), 0) scale(calc(1 + var(--hero-parallax) * .075)) rotate(calc(var(--hero-parallax) * .28deg));
    filter: saturate(calc(1 + var(--hero-parallax) * .12)) contrast(calc(1 + var(--hero-parallax) * .08));
    transition: transform .08s linear, filter .08s linear;
    will-change: transform, filter;
}

.hero-wash__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1, 12, 19, .55), rgba(1, 12, 19, .18) 45%, rgba(1, 12, 19, .62)),
        linear-gradient(180deg, rgba(1, 12, 19, .2), rgba(1, 12, 19, .04) 58%, rgba(1, 12, 19, .72));
    opacity: calc(1 - var(--hero-parallax) * .08);
    transition: opacity .08s linear;
}

.hero-wash__content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 7rem clamp(1rem, 3vw, 2rem) 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate3d(calc(var(--hero-parallax) * -26px), calc(var(--hero-parallax) * -74px), 0) scale(calc(1 - var(--hero-parallax) * .075));
    opacity: calc(1 - var(--hero-parallax) * .68);
    filter: blur(calc(var(--hero-parallax) * 2px));
    transform-origin: left center;
    transition: transform .08s linear, opacity .08s linear, filter .08s linear;
    will-change: transform, opacity, filter;
}

.hero-wash__kicker {
    margin: 0 0 -1rem clamp(1rem, 10vw, 7.5rem);
    color: var(--lime);
    font-size: clamp(2.2rem, 6vw, 5.5rem);
    line-height: .9;
    font-weight: 900;
    text-transform: uppercase;
    transform: rotate(calc(-8deg - var(--hero-parallax) * 5deg)) translate3d(calc(var(--hero-parallax) * -34px), calc(var(--hero-parallax) * -18px), 0);
    transform-origin: left center;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    transition: transform .08s linear;
}

.hero-wash h1 {
    margin: 0;
    display: grid;
    gap: .1em;
    color: var(--white);
    font-weight: 900;
    line-height: .76;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 14px 28px rgba(0, 0, 0, .36);
}

.hero-wash h1 span {
    display: block;
    font-size: 6rem;
    margin-left: clamp(15rem, 36vw, 27rem);
    transform: translateX(calc(var(--hero-parallax) * -30px));
    transition: transform .08s linear;
}

.hero-wash h1 strong {
    display: block;
    margin-left: clamp(1rem, 14vw, 11rem);
    font-size: 6rem;
    font-weight: 900;
    transform: translate3d(calc(var(--hero-parallax) * 44px), calc(var(--hero-parallax) * -10px), 0);
    transition: transform .08s linear;
}

.hero-wash__subline {
    max-width: 31rem;
    margin: 1.25rem 0 0 clamp(.2rem, 18vw, 14rem);
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    transform: translateY(calc(var(--hero-parallax) * -24px));
    transition: transform .08s linear;
}

.wash-showcase {
    position: relative;
    background: var(--ice);
    padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 4.5rem) clamp(5rem, 10vw, 8rem);
}

.wash-showcase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: clamp(4rem, 9vw, 8rem);
    background: var(--ice);
    border-radius: 0 0 50% 50%;
    transform: translateY(-52%) translateX(calc((var(--scroll-progress) - .25) * 28px));
}

.wash-showcase__intro {
    max-width: 1240px;
    margin: 0 auto clamp(2.2rem, 5vw, 4rem);
    display: block;
}

.wash-showcase h2 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 900;
}

.wash-showcase__lead {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(.8rem, 2vw, 1.35rem);
    max-width: 48rem;
    margin: clamp(1rem, 2.5vw, 1.55rem) 0 0;
    padding: .9rem 0 .9rem clamp(1.15rem, 2vw, 1.6rem);
    color: var(--ink);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.45;
    font-weight: 700;
}

.wash-showcase__lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    bottom: .45rem;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--lime), #4ec3e0);
    box-shadow: 0 0 0 8px rgba(185, 255, 47, .16);
}

.wash-showcase__lead::after {
    content: "";
    flex: 0 0 clamp(48px, 8vw, 82px);
    height: clamp(12px, 1.8vw, 18px);
    border-radius: 999px;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, .95) 0 4px, transparent 5px),
        radial-gradient(circle at 34% 50%, rgba(255, 255, 255, .8) 0 3px, transparent 4px),
        linear-gradient(90deg, rgba(78, 195, 224, .32), rgba(185, 255, 47, .56));
}

.wash-showcase__lead span {
    max-width: 40rem;
}

.wash-gallery {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.35rem, 3vw, 2.4rem);
    align-items: start;
}

.wash-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: .55rem;
    background: var(--white);
    box-shadow: 0 24px 54px rgba(5, 25, 37, .12);
    transform: rotate(var(--tilt, 0deg));
}

.wash-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .78) 43%, rgba(185, 255, 47, .24) 52%, transparent 70%);
    transform: translateX(-125%) skewX(-10deg);
    pointer-events: none;
}

.wash-card.is-visible::after {
    animation: wash-sheen 1100ms cubic-bezier(.2, .8, .2, 1) calc(var(--reveal-delay, 0ms) + 260ms) both;
}

.wash-card:nth-child(1) {
    --tilt: 0deg;
}

.wash-card:nth-child(2) {
    --tilt: 0deg;
}

.wash-card:nth-child(3) {
    --tilt: 0deg;
}

.wash-card:nth-child(4) {
    --tilt: 0deg;
}

.wash-card--low {
    margin-top: 0;
}

.wash-card img {
    display: block;
    width: 100%;
    height: clamp(330px, 31vw, 460px);
    object-fit: cover;
    transform: scale(1.045);
    transition: transform 1200ms cubic-bezier(.16, 1, .3, 1);
}

.wash-card.is-visible img {
    transform: scale(1);
}

.wash-card figcaption {
    padding: .7rem .25rem .2rem;
    text-align: center;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-intro {
    position: relative;
    overflow: hidden;
    background: var(--ice);
    padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4.5rem) clamp(4.5rem, 8vw, 7rem);
}

.home-intro::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: clamp(4rem, 9vw, 8rem);
    background: var(--ice);
    border-radius: 0 0 50% 50%;
    transform: translateY(-52%) translateX(calc((var(--scroll-progress) - .18) * 24px));
}

.home-intro::after {
    content: "";
    position: absolute;
    right: -10rem;
    bottom: -14rem;
    width: clamp(20rem, 42vw, 36rem);
    height: clamp(20rem, 42vw, 36rem);
    background: radial-gradient(circle, rgba(185, 255, 47, .2), transparent 68%);
    pointer-events: none;
}

.home-intro__inner,
.home-benefits__inner,
.home-location-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.home-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.home-intro h2,
.home-benefits h2,
.home-location-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-intro__copy p:not(.section-kicker),
.home-benefits__intro p:not(.section-kicker),
.home-location-cta p:not(.section-kicker) {
    max-width: 48rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    font-weight: 700;
}

.home-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    margin-top: .7rem;
    padding: 0 1.45rem;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 18px 36px rgba(5, 25, 37, .16);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-action-row,
.why-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center;
}

.home-action:hover,
.home-action:focus-visible {
    background: #0b3348;
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(5, 25, 37, .22);
}

.home-action--ghost {
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(5, 25, 37, .22);
    box-shadow: none;
}

.home-action--ghost:hover,
.home-action--ghost:focus-visible {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin: 0;
}

.home-stats div {
    min-height: 9.5rem;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 252, .9)),
        radial-gradient(circle at 100% 0%, rgba(185, 255, 47, .32), transparent 9rem);
    border-left: 5px solid var(--lime);
    box-shadow: 0 20px 45px rgba(5, 25, 37, .1);
}

.home-stats dt {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: .9;
}

.home-stats dd {
    margin: .55rem 0 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-trust {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
    background: linear-gradient(180deg, #f7fbfc 0%, var(--white) 100%);
}

.home-trust__inner,
.home-main-location__inner,
.home-faq__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.home-trust__intro,
.home-faq__intro {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.home-trust h2,
.home-main-location h2,
.home-faq h2,
.why-page h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-trust__intro p:not(.section-kicker),
.home-main-location__copy p:not(.section-kicker),
.home-faq__intro p:not(.section-kicker) {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    font-weight: 700;
    line-height: 1.65;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.home-trust-card {
    padding: clamp(1.1rem, 2vw, 1.45rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(233, 248, 252, .78)),
        radial-gradient(circle at 100% 0%, rgba(185, 255, 47, .18), transparent 10rem);
    border-left: 5px solid var(--lime);
    box-shadow: 0 16px 38px rgba(5, 25, 37, .08);
}

.home-trust-card h3,
.why-card h3 {
    margin: 0 0 .7rem;
    color: var(--ink);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.home-trust-card p,
.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.55;
}

.home-suction {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4.5rem);
    background: var(--ink);
    color: var(--white);
}

.home-suction::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 20%, rgba(185, 255, 47, .22), transparent 23rem),
        linear-gradient(135deg, rgba(22, 90, 166, .28), transparent 44%);
    pointer-events: none;
}

.home-suction__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.home-suction__image {
    position: relative;
    overflow: hidden;
    min-height: clamp(320px, 38vw, 520px);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 30px 78px rgba(0, 0, 0, .26);
}

.home-suction__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(5, 25, 37, .1), transparent 46%, rgba(185, 255, 47, .18));
    pointer-events: none;
}

.home-suction__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.02);
}

.home-suction__copy {
    max-width: 40rem;
}

.home-suction .section-kicker {
    color: var(--lime);
}

.home-suction h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-suction p:not(.section-kicker) {
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    font-weight: 700;
    line-height: 1.65;
}

.home-suction .home-action {
    background: var(--lime);
    color: var(--ink);
}

.home-suction .home-action:hover,
.home-suction .home-action:focus-visible {
    background: var(--white);
}

.home-benefits {
    background: linear-gradient(180deg, #f7fbfc 0%, var(--white) 100%);
    padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4.5rem);
}

.home-benefits__intro {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.6rem);
}

.home-benefit {
    position: relative;
    min-height: 18rem;
    padding: clamp(1.15rem, 2vw, 1.45rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(233, 248, 252, .72)),
        radial-gradient(circle at 100% 0%, rgba(78, 195, 224, .18), transparent 12rem);
    border-top: 5px solid var(--lime);
    box-shadow: 0 18px 42px rgba(5, 25, 37, .09);
}

.home-benefit span {
    display: block;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    color: #165aa6;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.home-benefit h3 {
    margin: 0 0 .8rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.home-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.58;
    font-weight: 700;
}

.home-main-location {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4.5rem);
    background:
        radial-gradient(circle at 86% 24%, rgba(185, 255, 47, .2), transparent 22rem),
        linear-gradient(180deg, var(--ice), #f7fbfc);
}

.home-main-location__inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .86fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.home-main-location__copy {
    max-width: 44rem;
}

.home-main-location__facts {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1.15rem 0 .4rem;
}

.home-main-location__facts span {
    padding: .55rem .7rem;
    background: var(--white);
    color: var(--ink);
    border-left: 4px solid var(--lime);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(5, 25, 37, .08);
}

.home-main-location__media {
    overflow: hidden;
    min-height: clamp(320px, 38vw, 520px);
    border: 1px solid rgba(5, 25, 37, .1);
    box-shadow: 0 24px 62px rgba(5, 25, 37, .12);
}

.home-main-location__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.home-faq {
    padding: clamp(5rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
    background: var(--white);
}

.home-faq .home-action {
    margin-top: 1.4rem;
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-list details {
    background:
        linear-gradient(180deg, rgba(247, 251, 252, .96), rgba(233, 248, 252, .82)),
        radial-gradient(circle at 100% 0%, rgba(185, 255, 47, .14), transparent 10rem);
    border: 1px solid rgba(5, 25, 37, .1);
    box-shadow: 0 12px 30px rgba(5, 25, 37, .06);
}

.faq-list summary {
    min-height: 3.7rem;
    padding: 1rem 1.15rem;
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.faq-list summary::marker {
    color: #1c6b3a;
}

.faq-list details[open] summary {
    border-bottom: 1px solid rgba(5, 25, 37, .1);
}

.faq-list p {
    margin: 0;
    padding: 1rem 1.15rem 1.15rem;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.6;
}

.home-location-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 4.5rem);
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.home-location-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../assets/images/washfactory-standorte-autowaesche-hintergrund.webp");
    background-size: cover;
    background-position: center;
    opacity: .34;
}

.home-location-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 25, 37, .94), rgba(5, 25, 37, .72)),
        radial-gradient(circle at 78% 30%, rgba(185, 255, 47, .28), transparent 22rem);
}

.home-location-cta .section-kicker {
    color: var(--lime);
}

.home-location-cta h2,
.home-location-cta p:not(.section-kicker) {
    color: var(--white);
}

.home-location-cta p:not(.section-kicker) {
    max-width: 48rem;
}

.home-action--light {
    background: var(--lime);
    color: var(--ink);
}

.home-action--light:hover,
.home-action--light:focus-visible {
    background: var(--white);
}

.section-kicker {
    margin: 0 0 .8rem;
    color: #1c6b3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(4px);
    transition: opacity 640ms cubic-bezier(.16, 1, .3, 1), transform 640ms cubic-bezier(.16, 1, .3, 1), filter 640ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.wash-card.reveal {
    transform: translateY(34px) rotate(var(--tilt, 0deg));
}

.wash-card.reveal.is-visible {
    transform: translateY(0) rotate(var(--tilt, 0deg));
}

@keyframes wash-sheen {
    from {
        transform: translateX(-125%) skewX(-10deg);
    }

    to {
        transform: translateX(125%) skewX(-10deg);
    }
}

.section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.section-inner.narrow {
    max-width: 780px;
}

.section h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .95;
    text-transform: uppercase;
}

.section p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.why-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 12%, rgba(185, 255, 47, .18), transparent 24rem),
        linear-gradient(180deg, var(--ice), #f7fbfc 62%, var(--white));
}

.why-hero {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(320px, .8fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.why-hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.6rem, 5.8vw, 5.4rem);
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.why-hero__copy > p:not(.eyebrow) {
    max-width: 48rem;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.6vw, 1.24rem);
    font-weight: 700;
    line-height: 1.62;
}

.why-hero__media {
    overflow: hidden;
    min-height: clamp(320px, 38vw, 520px);
    border: 1px solid rgba(5, 25, 37, .1);
    box-shadow: 0 24px 64px rgba(5, 25, 37, .12);
}

.why-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.why-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    margin: clamp(2.5rem, 5vw, 4rem) 0 0;
}

.why-proof div {
    min-height: 9rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--white);
    border-left: 5px solid var(--lime);
    box-shadow: 0 16px 38px rgba(5, 25, 37, .08);
}

.why-proof dt {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: .9;
}

.why-proof dd {
    margin: .55rem 0 0;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1.25;
    text-transform: uppercase;
}

.why-section,
.why-use-cases,
.why-faq {
    margin-top: clamp(4rem, 8vw, 7rem);
}

.why-section__intro {
    max-width: 780px;
    margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.why-section__intro p:not(.section-kicker) {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    font-weight: 700;
    line-height: 1.65;
}

.why-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.4vw, 1.45rem);
}

.why-card {
    min-height: 14rem;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(233, 248, 252, .72)),
        radial-gradient(circle at 100% 0%, rgba(78, 195, 224, .16), transparent 10rem);
    border-top: 5px solid var(--lime);
    box-shadow: 0 16px 38px rgba(5, 25, 37, .08);
}

.why-use-cases {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(1.4rem, 3vw, 2rem);
    background: var(--ink);
    color: var(--white);
}

.why-use-cases .section-kicker {
    color: var(--lime);
}

.why-use-cases h2 {
    color: var(--white);
}

.why-use-cases ul {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-use-cases li {
    padding: .85rem 0 .85rem 1rem;
    border-left: 4px solid var(--lime);
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
    line-height: 1.52;
}

.why-use-cases strong {
    color: var(--white);
}

.eyebrow {
    margin: 0 0 .75rem;
    color: var(--lime);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.legal-section {
    background: var(--ice);
    padding-top: clamp(6rem, 10vw, 9rem);
}

.legal-prose h2 {
    margin: 2.4rem 0 .8rem;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.legal-prose h3 {
    margin: 1.55rem 0 .55rem;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.25;
}

.legal-prose p {
    margin: 0 0 1rem;
}

.legal-prose ul {
    margin: 0 0 1.2rem 1.25rem;
    padding: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.legal-prose a {
    color: #245467;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.locations-page {
    position: relative;
    background:
        radial-gradient(circle at 78% 16%, rgba(185, 255, 47, .18), transparent 28rem),
        linear-gradient(180deg, #e9f8fc 0%, #f7fbfc 100%);
    overflow: hidden;
}

.location-detail {
    position: relative;
    overflow: hidden;
}

.locations-page::before,
.location-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/images/washfactory-standorte-autowaesche-hintergrund.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: .80;
    pointer-events: none;
}

.locations-page::after,
.location-detail::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(233, 248, 252, .58), rgba(247, 251, 252, .78)),
        radial-gradient(circle at 78% 16%, rgba(185, 255, 47, .1), transparent 28rem);
    pointer-events: none;
}

.locations-page > *,
.location-detail > * {
    position: relative;
    z-index: 1;
}

.locations-page.section {
    padding-top: 1rem;
}

.locations-hero {
    grid-area: hero;
    margin-bottom: 0;
}

.locations-main {
    display: contents;
}

.locations-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.location-detail h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ink);
    font-size: 3.5rem;
    line-height: .95;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.locations-hero p,
.location-detail__lead {
    max-width: 44rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
    line-height: 1.5;
    font-weight: 700;
}

.location-detail__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    max-width: 48rem;
    margin: 1.4rem 0 0;
}

.location-detail__fact {
    min-width: 0;
    padding: .95rem 1rem;
    border-left: 4px solid var(--lime);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 251, 252, .88)),
        radial-gradient(circle at 100% 0%, rgba(185, 255, 47, .22), transparent 9rem);
    box-shadow: 0 12px 30px rgba(5, 25, 37, .07);
}

.location-detail__fact dt {
    margin: 0 0 .35rem;
    color: #165aa6;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.location-detail__fact dd {
    margin: 0;
    color: var(--ink);
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.45;
}

.location-feature-cards {
    display: grid;
    gap: 1rem;
    margin: 1.4rem 0 0;
}

.location-feature-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(150px, .58fr) minmax(0, 1fr);
    min-height: 13rem;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 22px 54px rgba(5, 25, 37, .16);
    isolation: isolate;
}

.location-feature-card--prominent {
    border: 2px solid rgba(185, 255, 47, .9);
    box-shadow: 0 30px 76px rgba(5, 25, 37, .22), 0 0 0 8px rgba(185, 255, 47, .12);
}

.location-feature-card--prominent::before {
    content: "Wohnmobil geeignet";
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 3;
    padding: .5rem .65rem;
    background: var(--lime);
    color: var(--ink);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(5, 25, 37, .18);
}

.location-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 82% 14%, rgba(185, 255, 47, .3), transparent 14rem),
        linear-gradient(90deg, rgba(5, 25, 37, .2), rgba(5, 25, 37, .92) 52%);
    pointer-events: none;
}

.location-feature-card img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 13rem;
    object-fit: cover;
}

.location-feature-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.location-feature-card__body p {
    margin: 0 0 .55rem;
    color: var(--lime);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.location-feature-card__body h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.75rem, 3.4vw, 2.65rem);
    line-height: .94;
    letter-spacing: 0;
    text-transform: uppercase;
}

.location-feature-card__body span {
    display: block;
    margin-top: .75rem;
    color: rgba(255, 255, 255, .86);
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.52;
}

.locations-legend {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: .8rem 0 0;
}

.locations-legend span {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.legend-pin {
    width: .7rem;
    height: .7rem;
    border-radius: 999px;
    background: #165aa6;
}

.legend-pin--partner {
    background: #ffd91f;
}

.locations-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    grid-template-areas:
        "hero sidebar-header"
        "map sidebar-body";
    gap: clamp(1.4rem, 4vw, 3rem);
    row-gap: clamp(1rem, 2.2vw, 1.6rem);
    align-items: start;
}

.locations-map {
    grid-area: map;
    position: sticky;
    top: 5.5rem;
    min-height: auto;
    overflow: hidden;
    border: 1px solid rgba(5, 25, 37, .12);
    background: #f6f5ef;
    box-shadow: 0 28px 72px rgba(5, 25, 37, .16);
}

.map-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.map-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .25rem;
    padding: .28rem;
    border: 1px solid rgba(5, 25, 37, .12);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 34px rgba(5, 25, 37, .14);
}

.map-toggle label {
    display: grid;
    place-items: center;
    min-height: 2.45rem;
    padding: 0 .95rem;
    color: var(--ink);
    cursor: pointer;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#map-nrw:checked ~ .map-toggle label[for="map-nrw"],
#map-deutschland:checked ~ .map-toggle label[for="map-deutschland"] {
    background: var(--lime);
}

.map-zoom-controls {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 5;
    display: inline-grid;
    grid-template-columns: repeat(3, auto);
    gap: .25rem;
    padding: .28rem;
    border: 1px solid rgba(5, 25, 37, .12);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 34px rgba(5, 25, 37, .14);
}

.map-zoom-controls button {
    display: grid;
    place-items: center;
    min-width: 2.45rem;
    min-height: 2.45rem;
    border: 0;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1;
}

.map-zoom-controls button:hover,
.map-zoom-controls button:focus-visible {
    background: var(--lime);
    color: var(--ink);
}

.locations-map__viewport {
    position: relative;
    display: none;
    aspect-ratio: 2816 / 1536;
    cursor: grab;
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

.locations-map.is-dragging .locations-map__viewport {
    cursor: grabbing;
}

#map-nrw:checked ~ .locations-map__viewport--nrw,
#map-deutschland:checked ~ .locations-map__viewport--germany {
    display: block;
}

.locations-map__zoom-layer {
    position: absolute;
    inset: 0;
    transform: translate3d(var(--map-pan-x, 0px), var(--map-pan-y, 0px), 0) scale(var(--map-zoom, 1));
    transition: transform .22s ease;
    will-change: transform;
}

.locations-map.is-dragging .locations-map__zoom-layer {
    transition: none;
}

.locations-map__viewport--nrw .locations-map__zoom-layer {
    transform-origin: 47% 43%;
}

.locations-map__viewport--germany .locations-map__zoom-layer {
    transform-origin: 40% 48%;
}

.locations-map__zoom-layer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    z-index: 2;
    width: 0;
    height: 0;
    pointer-events: none;
}

.map-pin:hover,
.map-pin:focus-within,
.map-pin.is-linked-active,
.map-pin.is-selected {
    z-index: 12;
}

.map-pin.is-filtered {
    display: none;
}

.map-pin__origin {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: .58rem;
    height: .58rem;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 999px;
    background: rgba(5, 25, 37, .5);
    box-shadow: 0 0 0 4px rgba(5, 25, 37, .12);
    opacity: calc(var(--connector-opacity, 0) * .82);
    transform: translate(-50%, -50%);
    transition: opacity .22s ease;
}

.map-pin__connector {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: var(--connector-length, 0px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(5, 25, 37, .52), rgba(5, 25, 37, .12));
    opacity: var(--connector-opacity, 0);
    transform: rotate(var(--connector-angle, 0deg));
    transform-origin: left center;
    transition: opacity .22s ease, width .22s ease, transform .22s ease;
}

.map-pin__connector::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    width: .34rem;
    height: .34rem;
    border-radius: 999px;
    background: rgba(5, 25, 37, .4);
    transform: translateY(-50%);
}

.map-pin__target {
    position: absolute;
    left: var(--pin-offset-x, 0px);
    top: var(--pin-offset-y, 0px);
    z-index: 2;
    display: block;
    width: 3.05rem;
    height: 3.35rem;
    color: var(--white);
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
    transform: translate(-50%, -100%);
    transition: left .22s ease, top .22s ease;
}

.map-pin__head {
    position: absolute;
    left: 50%;
    bottom: .3rem;
    display: grid;
    place-items: center;
    width: 2.18rem;
    height: 2.18rem;
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 999px 999px 999px 0;
    background: #165aa6;
    box-shadow: 0 14px 22px rgba(5, 25, 37, .34);
    transform: translateX(-50%) rotate(-45deg);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.map-pin__head::after {
    content: attr(data-label);
    color: var(--white);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(45deg);
}

.map-pin__target small {
    position: absolute;
    left: 50%;
    bottom: 3.1rem;
    white-space: nowrap;
    padding: .28rem .45rem;
    border-radius: 999px;
    background: rgba(5, 25, 37, .82);
    color: var(--white);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translate(-50%, .25rem);
    transition: opacity .2s ease, transform .2s ease;
}

.map-pin__target:hover .map-pin__head,
.map-pin__target:focus-visible .map-pin__head,
.map-pin.is-linked-active .map-pin__head,
.map-pin.is-selected .map-pin__head {
    box-shadow: 0 18px 28px rgba(5, 25, 37, .42);
    transform: translateX(-50%) rotate(-45deg) scale(1.12);
}

.map-pin__target:focus-visible {
    outline: 3px solid rgba(185, 255, 47, .95);
    outline-offset: .16rem;
}

.map-pin__target:hover small,
.map-pin__target:focus-visible small,
.map-pin.is-linked-active .map-pin__target small,
.map-pin.is-selected .map-pin__target small {
    opacity: 1;
    transform: translate(-50%, 0);
}

.map-pin--partner .map-pin__head {
    background: #ffd91f;
}

.map-pin--partner .map-pin__head::after {
    color: var(--ink);
}

.locations-sidebar {
    display: contents;
}

.locations-sidebar__body {
    grid-area: sidebar-body;
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    max-height: var(--location-sidebar-max-height, calc(100vh - 7rem));
    margin-top: 0;
    padding-left: clamp(1rem, 2vw, 1.4rem);
    border-left: 1px solid rgba(5, 25, 37, .14);
}

.locations-sidebar__header {
    grid-area: sidebar-header;
    padding: .9rem 0 .8rem;
    border-bottom: 1px solid rgba(5, 25, 37, .1);
}

.locations-sidebar__eyebrow {
    margin: 0 0 .35rem;
    color: #165aa6;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.locations-sidebar__header h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1;
    text-transform: uppercase;
}

.locations-sidebar__header p:not(.locations-sidebar__eyebrow) {
    margin: .55rem 0 0;
    color: var(--muted);
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.4;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding: .9rem 0 0;
}

.location-filter {
    min-height: 2.1rem;
    padding: 0 .8rem;
    border: 1px solid rgba(5, 25, 37, .16);
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.location-filter:hover,
.location-filter:focus-visible,
.location-filter.is-active {
    border-color: transparent;
    background: var(--lime);
    color: var(--ink);
}

.locations-list {
    display: grid;
    gap: 1.1rem;
    flex: 1 1 0;
    min-height: 0;
    padding: 0 .35rem 0 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.locations-list::-webkit-scrollbar {
    width: .55rem;
}

.locations-list::-webkit-scrollbar-track {
    background: rgba(5, 25, 37, .06);
}

.locations-list::-webkit-scrollbar-thumb {
    background: rgba(5, 25, 37, .28);
}

.location-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: .6rem 1.1rem;
    align-items: start;
    padding: 1.25rem 1.3rem;
    border: 1px solid rgba(5, 25, 37, .11);
    border-left: 4px solid #165aa6;
    background: rgba(255, 255, 255, .76);
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(5, 25, 37, .07);
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.location-card[hidden] {
    display: none;
}

.location-card:hover,
.location-card:focus-visible,
.location-card.is-linked-active,
.location-card.is-selected {
    border-color: rgba(22, 90, 166, .38);
    border-left-color: var(--lime);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 46px rgba(5, 25, 37, .14);
    transform: translateX(-3px);
}

.location-card:focus-visible {
    outline: 3px solid rgba(185, 255, 47, .9);
    outline-offset: 2px;
}

.location-card--partner {
    border-left-color: #ffd91f;
}

.location-card--partner:hover,
.location-card--partner:focus-visible,
.location-card--partner.is-linked-active,
.location-card--partner.is-selected {
    border-color: rgba(255, 217, 31, .58);
    border-left-color: #ffd91f;
}

.location-card__badge {
    grid-row: 1 / -1;
    align-self: center;
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 999px;
    background: #165aa6;
    color: var(--white);
    box-shadow: 0 8px 18px rgba(5, 25, 37, .2);
    font-weight: 900;
    line-height: 1;
}

.location-card--partner .location-card__badge {
    background: #ffd91f;
    color: var(--ink);
}

.location-card__content {
    display: grid;
    min-width: 0;
    gap: .4rem;
}

.location-card__type {
    color: #245467;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.location-card__title {
    color: var(--ink);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.location-card__address {
    display: grid;
    gap: .15rem;
    margin-top: .15rem;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
}

.location-card__text {
    color: #456577;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
}

.location-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .15rem;
}

.location-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0 .5rem;
    background: var(--lime);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(5, 25, 37, .1);
}

.location-card__action {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    color: #165aa6;
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.location-card:hover .location-card__action,
.location-card:focus-visible .location-card__action,
.location-card.is-linked-active .location-card__action,
.location-card.is-selected .location-card__action {
    color: var(--ink);
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .9rem;
    padding: .78rem 1rem;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.back-link:hover,
.back-link:focus-visible {
    background: var(--lime);
    color: var(--ink);
}

.location-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, .98fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-top: 1.5rem;
}

.location-detail__map {
    width: min(100%, 620px);
    justify-self: center;
    overflow: hidden;
    border: 1px solid rgba(5, 25, 37, .12);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 20px 52px rgba(5, 25, 37, .1);
}

.location-detail__map iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 420px;
    border: 0;
}

.location-detail__map-info {
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    border-top: 1px solid rgba(5, 25, 37, .12);
    background: rgba(255, 255, 255, .94);
}

.location-detail__map-info h2 {
    margin: 0 0 .35rem;
    color: var(--ink);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.location-detail__map-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.location-detail__map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.location-detail__map-actions a {
    color: #165aa6;
    font-weight: 900;
    text-transform: uppercase;
}

.location-detail__map-actions a:hover,
.location-detail__map-actions a:focus-visible {
    color: var(--ink);
}

.location-detail__gallery {
    width: min(100%, 980px);
    min-height: clamp(420px, 54vw, 680px);
    margin: clamp(2rem, 5vw, 3.5rem) auto 0;
    padding: clamp(.65rem, 1.6vw, 1rem);
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: clamp(72px, 10vw, 126px);
    gap: clamp(.45rem, 1.3vw, .85rem);
    border: 1px solid rgba(5, 25, 37, .08);
    background:
        radial-gradient(circle at 18% 0%, rgba(185, 255, 47, .18), transparent 18rem),
        linear-gradient(180deg, rgba(247, 251, 252, .94), rgba(233, 248, 252, .86));
    box-shadow: 0 24px 62px rgba(5, 25, 37, .09);
}

.location-detail__media {
    width: min(100%, 1240px);
    margin: clamp(2rem, 5vw, 3.5rem) auto 0;
}

.location-detail__media--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .68fr);
    gap: clamp(1rem, 2.4vw, 1.75rem);
    align-items: stretch;
}

.location-detail__media--split .location-detail__gallery {
    width: 100%;
    min-height: clamp(520px, 54vw, 720px);
    margin: 0;
}

.location-detail__highlight {
    position: relative;
    min-height: clamp(520px, 54vw, 720px);
    margin: 0;
    padding: clamp(.8rem, 1.6vw, 1rem);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: .85rem;
    border: 1px solid rgba(185, 255, 47, .42);
    background:
        radial-gradient(circle at 20% 0%, rgba(185, 255, 47, .2), transparent 16rem),
        linear-gradient(180deg, rgba(247, 251, 252, .94), rgba(233, 248, 252, .88));
    box-shadow: 0 24px 62px rgba(5, 25, 37, .09);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    touch-action: manipulation;
    transform: translateY(0) scale(1);
    transition: transform .32s cubic-bezier(.16, 1, .3, 1), border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.location-detail__highlight:hover,
.location-detail__highlight:focus-visible,
.location-detail__highlight.is-popped {
    border-color: rgba(185, 255, 47, .86);
    background:
        radial-gradient(circle at 20% 0%, rgba(185, 255, 47, .32), transparent 16rem),
        linear-gradient(180deg, rgba(247, 251, 252, .98), rgba(233, 248, 252, .92));
    box-shadow: 0 34px 84px rgba(5, 25, 37, .18), 0 0 0 1px rgba(185, 255, 47, .28);
    transform: translateY(-.45rem) scale(1.018);
}

.location-detail__highlight:focus-visible {
    outline: 3px solid rgba(185, 255, 47, .9);
    outline-offset: 4px;
}

.location-detail__highlight:active {
    transform: translateY(-.18rem) scale(1.006);
}

.location-detail__highlight h2 {
    justify-self: start;
    margin: 0;
    padding: .7rem .85rem;
    color: var(--ink);
    background: var(--lime);
    font-size: .86rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transition: transform .32s cubic-bezier(.16, 1, .3, 1), box-shadow .32s ease;
}

.location-detail__highlight img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, .5);
    transition: transform .38s cubic-bezier(.16, 1, .3, 1), filter .38s ease;
}

.location-detail__highlight:hover h2,
.location-detail__highlight:focus-visible h2,
.location-detail__highlight.is-popped h2 {
    box-shadow: 0 12px 26px rgba(5, 25, 37, .14);
    transform: translateY(-2px);
}

.location-detail__highlight:hover img,
.location-detail__highlight:focus-visible img,
.location-detail__highlight.is-popped img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.025);
}

.location-highlight-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.location-highlight-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.location-highlight-lightbox[hidden] {
    display: none;
}

.location-highlight-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 12, 19, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.location-highlight-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: min(92vw, 820px);
    max-height: min(88svh, 900px);
    padding: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: .35rem;
    background: transparent;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
    transform: translateY(1rem) scale(.96);
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}

.location-highlight-lightbox.is-open .location-highlight-lightbox__dialog {
    transform: translateY(0) scale(1);
}

.location-highlight-lightbox__title {
    justify-self: start;
    margin: 0;
    padding: .58rem .8rem;
    color: var(--ink);
    background: var(--lime);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.location-highlight-lightbox__image {
    display: block;
    width: auto;
    max-width: min(92vw, 820px);
    max-height: calc(min(88svh, 900px) - 3.2rem);
    object-fit: contain;
    border: 3px solid var(--lime);
    background: rgba(247, 251, 252, .96);
    box-shadow: 0 0 0 5px rgba(185, 255, 47, .14), 0 24px 70px rgba(0, 0, 0, .36);
}

.location-highlight-lightbox__close {
    position: absolute;
    top: .35rem;
    right: .35rem;
    z-index: 2;
    width: 2.1rem;
    height: 2.1rem;
    border: 0;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.location-highlight-lightbox__close:hover,
.location-highlight-lightbox__close:focus-visible {
    background: var(--lime);
    color: var(--ink);
}

.location-gallery__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .26), 0 2px 6px rgba(0, 0, 0, .18);
    cursor: pointer;
    opacity: .88;
    transform: scale(.985);
    transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease, filter .45s ease;
    isolation: isolate;
}

.location-gallery__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 25, 37, .05), rgba(5, 25, 37, .34)),
        linear-gradient(135deg, rgba(185, 255, 47, .16), rgba(66, 215, 255, .08) 42%, transparent 70%);
    pointer-events: none;
    transition: opacity .3s ease;
}

.location-gallery__item::after {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    pointer-events: none;
    opacity: .72;
}

.location-gallery__item[data-pos="1"] {
    grid-column: 1 / 6;
    grid-row: 1 / 6;
    cursor: default;
    opacity: 1;
    transform: scale(1);
    border-color: rgba(185, 255, 47, .48);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .36), 0 0 0 1px rgba(185, 255, 47, .18);
}

.location-gallery__item:not([data-pos="1"]):hover,
.location-gallery__item:not([data-pos="1"]):focus-visible {
    opacity: 1;
    transform: translateY(-2px) scale(1);
    border-color: rgba(185, 255, 47, .36);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .34), 0 0 0 1px rgba(185, 255, 47, .16);
}

.location-gallery__item:focus-visible {
    outline: 3px solid rgba(185, 255, 47, .86);
    outline-offset: 3px;
}

.location-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94);
    transition: transform .55s ease, filter .55s ease;
}

.location-gallery__item[data-pos="1"] img {
    filter: saturate(1.03) contrast(1.02);
}

.location-gallery__item:hover img,
.location-gallery__item:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.03);
}

.location-gallery__caption {
    position: absolute;
    left: clamp(.75rem, 2vw, 1rem);
    right: clamp(.75rem, 2vw, 1rem);
    bottom: clamp(.75rem, 2vw, 1rem);
    z-index: 3;
    padding: .7rem .8rem;
    color: var(--white);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(185, 255, 47, .94);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-gallery__item:not([data-pos="1"]) .location-gallery__caption {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .28s ease, transform .28s ease;
}

.location-gallery__item:not([data-pos="1"]):hover .location-gallery__caption,
.location-gallery__item:not([data-pos="1"]):focus-visible .location-gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    background: #03131d;
    color: #cfe1e8;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-credit,
.footer-links a {
    text-decoration: none;
    color: #cfe1e8;
}

.footer-credit:hover,
.footer-links a:hover {
    color: var(--lime);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 60;
    width: min(920px, 92vw);
    padding: clamp(1rem, 2vw, 1.15rem);
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(5, 25, 37, .12);
    box-shadow: 0 24px 64px rgba(5, 25, 37, .22);
    transform: translateX(-50%);
    transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
}

.cookie-banner__content {
    display: grid;
    gap: .75rem;
}

.cookie-banner__title {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cookie-banner__text {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.5;
}

.cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(5, 25, 37, .14);
    background: rgba(233, 248, 252, .72);
}

.cookie-banner__actions > * {
    border-right: 1px solid rgba(5, 25, 37, .14);
}

.cookie-banner__actions > *:last-child {
    border-right: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .8rem .9rem;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.cookie-btn--accept {
    background: var(--lime);
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
    color: var(--ink);
    background: rgba(185, 255, 47, .42);
}

@media (max-width: 900px) {
    .site-header {
        position: fixed;
    }

    body:not(.home-page) .site-header {
        position: fixed;
    }

    body:not(.home-page) main {
        padding-top: 7rem;
    }

    .nav-container {
        align-items: flex-start;
    }

    .nav-menu {
        gap: .9rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero-wash {
        min-height: 720px;
    }

    .hero-wash__content {
        padding-top: 8rem;
    }

    .hero-wash h1 span {
        font-size: clamp(4.2rem, 21vw, 9rem);
    }

    .hero-wash h1 strong {
        margin-left: 0;
        font-size: clamp(3.2rem, 17vw, 7rem);
    }

    .hero-wash__kicker,
    .hero-wash__subline {
        margin-left: 0;
    }

    .wash-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .wash-card img {
        height: clamp(300px, 54vw, 420px);
    }

    .home-intro__inner {
        grid-template-columns: 1fr;
    }

    .home-stats {
        max-width: 620px;
    }

    .home-trust-grid,
    .home-main-location__inner,
    .why-hero,
    .why-use-cases {
        grid-template-columns: 1fr;
    }

    .home-benefit-grid {
        grid-template-columns: 1fr;
    }

    .home-benefit {
        min-height: auto;
    }

    .home-suction__inner {
        grid-template-columns: 1fr;
    }

    .home-suction__copy {
        max-width: none;
    }

    .why-proof,
    .why-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .locations-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "map"
            "sidebar-header"
            "sidebar-body";
    }

    .location-detail__grid {
        grid-template-columns: 1fr;
    }

    .location-feature-card {
        grid-template-columns: minmax(220px, .7fr) minmax(0, 1fr);
    }

    .location-detail__gallery {
        width: 100%;
        min-height: clamp(420px, 74vw, 620px);
    }

    .location-detail__media--split {
        grid-template-columns: 1fr;
    }

    .location-detail__media--split .location-detail__gallery,
    .location-detail__highlight {
        min-height: clamp(420px, 74vw, 620px);
    }

    .locations-map {
        position: relative;
        top: auto;
    }

    .locations-map__viewport {
        touch-action: pan-y;
    }

    .locations-sidebar__body {
        position: relative;
        top: auto;
        height: min(64svh, 620px);
        min-height: 22rem;
        max-height: none;
        margin-top: 0;
        padding-left: 0;
        border-left: 0;
        overflow: hidden;
    }

    .locations-list {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding-right: .35rem;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
    }

}

@media (max-width: 560px) {
    .nav-container {
        padding-top: 1rem;
        gap: .75rem;
    }

    .brand img {
        height: 3rem;
        max-width: 3.5rem;
    }

    .nav-menu {
        gap: .8rem;
    }

    .nav-menu a {
        font-size: .82rem;
    }

    .hero-wash {
        height: auto;
        min-height: 650px;
    }

    .hero-wash__content {
        padding-bottom: 5rem;
    }

    .hero-wash h1 {
        max-width: 100%;
        line-height: .84;
    }

    .hero-wash h1 span,
    .hero-wash h1 strong {
        margin-left: 0;
        font-size: clamp(3rem, 15vw, 4.2rem);
        max-width: 100%;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        transform: none;
    }

    .wash-gallery {
        grid-template-columns: 1fr;
        max-width: 370px;
    }

    .location-detail__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 92px;
        min-height: 520px;
    }

    .location-detail__facts {
        grid-template-columns: 1fr;
    }

    .location-gallery__item[data-pos="1"] {
        grid-column: 1 / 3;
        grid-row: 1 / 5;
    }

    .location-gallery__caption {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
    }

    .wash-card img {
        height: 420px;
    }

    .wash-card--low {
        margin-top: 0;
    }

    .locations-hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
        overflow-wrap: anywhere;
    }

    .map-toggle {
        left: auto;
        right: .75rem;
        top: .75rem;
        max-width: calc(100% - 1.5rem);
        padding: .2rem;
        gap: .18rem;
    }

    .map-toggle label {
        min-height: 1.9rem;
        padding: 0 .55rem;
        font-size: .68rem;
        letter-spacing: .02em;
    }

    .map-zoom-controls {
        left: 1rem;
        bottom: .75rem;
    }

    .map-pin__target {
        width: 2.95rem;
        height: 3.25rem;
    }

    .map-pin__head {
        width: 1.86rem;
        height: 1.86rem;
        border-width: 2px;
    }

    .map-pin__head::after {
        font-size: .68rem;
    }

    .map-pin__target small {
        display: none;
    }

    .location-card {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
    }

    .location-card__action {
        grid-column: 2;
        justify-self: start;
    }

    .wash-showcase h2 {
        font-size: clamp(2rem, 10vw, 2.65rem);
        overflow-wrap: anywhere;
    }

    .home-intro,
    .home-suction,
    .home-trust,
    .home-main-location,
    .home-faq,
    .home-benefits,
    .home-location-cta {
        padding-left: clamp(1rem, 6vw, 1.4rem);
        padding-right: clamp(1rem, 6vw, 1.4rem);
    }

    .home-intro h2,
    .home-suction h2,
    .home-trust h2,
    .home-main-location h2,
    .home-faq h2,
    .why-page h2,
    .home-benefits h2,
    .home-location-cta h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        overflow-wrap: anywhere;
    }

    .why-page {
        padding-left: clamp(1rem, 6vw, 1.4rem);
        padding-right: clamp(1rem, 6vw, 1.4rem);
    }

    .why-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
        overflow-wrap: anywhere;
    }

    .home-stats {
        grid-template-columns: 1fr;
    }

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

    .home-stats div {
        min-height: 7.6rem;
    }

    .home-suction__image,
    .home-main-location__media,
    .why-hero__media {
        min-height: 300px;
    }

    .home-action {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }

    .home-action-row,
    .why-actions {
        width: 100%;
        align-items: stretch;
    }

    .location-feature-card {
        grid-template-columns: 1fr;
    }

    .location-feature-card img {
        min-height: 220px;
    }

    .wash-showcase__lead {
        font-size: 1rem;
        padding-right: 0;
    }

    .wash-showcase__lead::after {
        display: none;
    }

    .cookie-banner {
        bottom: 12px;
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions > * {
        border-top: 1px solid rgba(5, 25, 37, .14);
        border-right: 0;
    }

    .cookie-banner__actions > *:first-child {
        border-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .hero-wash__image,
    .hero-wash__content,
    .hero-wash__kicker,
    .hero-wash h1 span,
    .hero-wash h1 strong,
    .hero-wash__subline,
    .home-page .nav-container,
    .home-page .brand,
    .home-page .nav-menu,
    .reveal,
    .wash-card.reveal,
    .wash-card img {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .home-page .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

}
