@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --anthracite: #2f373a;
    --turquoise: #7dc9d0;
    --turquoise-strong: var(--turquoise);
    --pearl: #d2d4d4;
    --ice: #e8f1f2;
    --header-blue: var(--ice);
    --white: #ffffff;
    --ink: var(--anthracite);
    --font-primary: "Dunbar Tall", "Outfit", "Avenir Next", Arial, sans-serif;
    --font-display: var(--font-primary);
    --font-body: "Outfit", "Avenir Next", Arial, sans-serif;
    --motion: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--ice);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

h1,
h2,
p,
figure,
blockquote {
    margin: 0;
}

h1,
h2 {
    font-family: var(--font-display);
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

::selection {
    color: var(--anthracite);
    background: var(--turquoise);
}

:focus-visible {
    outline: 3px solid var(--turquoise);
    outline-offset: 4px;
    box-shadow: 0 0 0 2px var(--anthracite);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--anthracite);
    transform: translateY(-180%);
    transition: transform var(--motion);
}

.skip-link:focus {
    transform: translateY(0);
}

.accent-line {
    display: block;
    width: 2.5rem;
    height: 2px;
    flex: none;
    background: var(--turquoise-strong);
}

.section-label {
    color: var(--turquoise-strong);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 2.9rem;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    color: var(--anthracite);
    background: var(--turquoise-strong);
    border: 0;
    border-radius: 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    transition: background var(--motion), transform var(--motion);
}

.button:hover {
    background: var(--pearl);
    transform: translateY(-2px);
}

.site-header {
    position: relative;
    z-index: 100;
    height: 5.1rem;
    background: var(--header-blue);
}

.site-header__inner {
    position: relative;
    display: flex;
    width: calc(100% - 2.5rem);
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    width: 7rem;
    align-items: center;
}

.brand img {
    width: 100%;
    height: auto;
}

.nav-toggle {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    color: var(--anthracite);
    background: transparent;
    border: 2px solid var(--turquoise-strong);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
    display: block;
    width: 1rem;
    height: 2px;
    background: currentColor;
    content: "";
}

.nav-toggle__icon {
    position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    position: absolute;
    left: 0;
}

.nav-toggle__icon::before {
    top: -5px;
}

.nav-toggle__icon::after {
    top: 5px;
}

.site-nav {
    display: flex;
    flex-direction: column;
}

.js .site-nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    right: 0;
    left: 0;
    display: none;
    padding: 0.8rem;
    background: var(--header-blue);
    border: 1px solid rgba(47, 55, 58, 0.16);
    border-radius: 0;
    box-shadow: 0 1rem 2rem rgba(47, 55, 58, 0.18);
}

.js .site-nav.is-open {
    display: flex;
}

.site-nav a {
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--anthracite);
    text-decoration: underline;
    text-decoration-color: var(--turquoise);
    text-underline-offset: 0.35em;
}

.site-nav__cta {
    margin-top: 0.4rem;
    border: 2px solid var(--turquoise-strong);
    border-radius: 0;
    color: var(--anthracite);
    font-weight: 600;
    text-align: center;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    color: var(--white);
    background: var(--ice);
}

.hero__visual {
    height: 16rem;
    overflow: hidden;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    display: flex;
    min-height: 32rem;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.5rem 2.25rem;
    background: var(--anthracite);
}

.hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.hero .accent-line {
    margin-top: 2rem;
}

.hero__lead {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.55;
}

.hero .button {
    margin-top: 2rem;
}

.hero__note {
    margin-top: auto;
    color: var(--pearl);
    font-size: 0.78rem;
}

.services {
    display: grid;
    background: var(--ice);
}

.service {
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 3.5rem 1.5rem;
    border-bottom: 1px solid var(--pearl);
}

.service__number,
.process__number {
    color: var(--turquoise-strong);
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.service .accent-line {
    margin-top: 2rem;
}

.service h2 {
    margin-top: 2.2rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
}

.service p {
    max-width: 24rem;
    margin-top: 1.35rem;
    font-size: 1rem;
}

.commitment {
    position: relative;
    display: flex;
    min-height: 38rem;
    align-items: flex-start;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--anthracite);
}

.commitment__copy {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4.5rem 1.5rem 5rem;
}

.commitment .accent-line {
    margin-top: 1.1rem;
}

.commitment h2 {
    margin-top: 2rem;
    font-size: clamp(3.2rem, 13vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.96;
}

.commitment__copy > p:last-child {
    max-width: 34rem;
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.55;
}

.commitment__chevrons {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 47.99rem) {
    .hero h1 {
        font-size: clamp(2.55rem, 11vw, 2.85rem);
    }

    .commitment h2 {
        font-size: clamp(2.7rem, 11.5vw, 3.15rem);
    }

    .commitment__copy > p:last-child {
        max-width: 21rem;
        font-size: 0.96rem;
    }
}

.brands,
.reviews,
.process,
.area {
    background: var(--ice);
}

.brands {
    display: flex;
    min-height: 13rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.brands .accent-line,
.reviews__heading .accent-line,
.process > .accent-line,
.contact-cta .accent-line {
    margin: 1rem auto 0;
}

.brands__list {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.25;
    text-transform: uppercase;
}

.reviews {
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--pearl);
}

.reviews__heading {
    text-align: center;
}

.reviews__score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 2rem;
}

.reviews__score strong {
    color: var(--anthracite);
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
}

.reviews__score > span:last-child {
    font-size: 0.95rem;
}

.reviews__stars {
    color: var(--turquoise);
    font-size: 1.75rem;
    letter-spacing: -0.1em;
}

.reviews-carousel {
    margin-top: 2.6rem;
}

.reviews-carousel__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviews-carousel__status {
    color: rgba(47, 55, 58, 0.72);
    font-size: 0.82rem;
}

.reviews-carousel__controls {
    display: flex;
    gap: 0.55rem;
}

.reviews-carousel__button {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--anthracite);
    border-radius: 50%;
    background: transparent;
    color: var(--anthracite);
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    place-items: center;
    transition: color var(--motion), background-color var(--motion), border-color var(--motion), opacity var(--motion);
}

.reviews-carousel__button:hover,
.reviews-carousel__button:focus-visible {
    border-color: var(--turquoise);
    color: var(--anthracite);
    background: var(--turquoise);
}

.reviews-carousel__button:focus-visible,
.reviews-carousel__viewport:focus-visible {
    outline: 3px solid rgba(125, 201, 208, 0.45);
    outline-offset: 3px;
}

.reviews-carousel__button:disabled {
    cursor: default;
    opacity: 0.3;
}

.reviews-carousel__viewport {
    padding-bottom: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--turquoise) rgba(210, 212, 212, 0.55);
    scrollbar-width: thin;
    touch-action: pan-x;
}

.reviews-carousel__track {
    --reviews-gap: 0.9rem;
    display: grid;
    grid-auto-columns: 88%;
    grid-auto-flow: column;
    gap: var(--reviews-gap);
}

.review-card {
    display: flex;
    height: 21.5rem;
    min-height: 0;
    flex-direction: column;
    padding: 1.35rem 1.25rem 1.25rem;
    border: 1px solid var(--pearl);
    background: var(--white);
    scroll-snap-align: start;
}

.review-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-card__number {
    color: var(--turquoise);
    font-family: var(--font-display);
    font-size: 0.82rem;
}

.review-card__stars {
    color: var(--turquoise);
    font-size: 0.95rem;
    letter-spacing: -0.08em;
}

.review-card__quote {
    height: 2.75rem;
    margin-top: 1.1rem;
    color: var(--turquoise);
    font-family: Georgia, serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
}

.review-card blockquote {
    max-height: 9rem;
    margin-top: 0.8rem;
    padding-right: 0.6rem;
    overflow-y: auto;
    font-size: 0.94rem;
    line-height: 1.5;
    overscroll-behavior: contain;
    scrollbar-color: var(--turquoise) rgba(210, 212, 212, 0.45);
    scrollbar-width: thin;
}

.review-card blockquote:focus-visible {
    outline: 2px solid rgba(125, 201, 208, 0.55);
    outline-offset: 3px;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.84rem;
    line-height: 1.45;
}

.review-card footer strong {
    font-weight: 600;
}

.review-card footer span {
    color: rgba(47, 55, 58, 0.72);
}

.reviews__google-link {
    display: flex;
    width: fit-content;
    margin: 1.5rem auto 0;
    color: var(--anthracite);
    font-size: 0.9rem;
    font-weight: 500;
    gap: 0.55rem;
    text-decoration: none;
}

.reviews__google-link:hover,
.reviews__google-link:focus-visible {
    color: var(--anthracite);
    text-decoration: underline;
    text-decoration-color: var(--turquoise);
}

.process {
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--pearl);
}

.process > .section-label {
    text-align: center;
}

.process__grid {
    display: grid;
    margin: 3.5rem 0 0;
    padding: 0;
    list-style: none;
}

.process__step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--pearl);
}

.process__copy img {
    width: 6.25rem;
    height: 6.25rem;
}

.process__copy h2 {
    margin-top: 1rem;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.process__copy p {
    max-width: 28rem;
    margin-top: 1rem;
    font-size: 0.98rem;
}

.area {
    min-height: 31rem;
    padding: 5.5rem 1.5rem;
    border-top: 1px solid var(--pearl);
}

.area .accent-line {
    margin-top: 1rem;
}

.area h2 {
    margin-top: 2rem;
    font-size: clamp(2.6rem, 11vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.area h2 + p {
    margin-top: 1.1rem;
}

.area__places {
    margin-top: 2.2rem;
    line-height: 1.6;
}

.area__media {
    height: 18rem;
    margin: 3.5rem -1.5rem -5.5rem;
    overflow: hidden;
}

.area__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-cta {
    display: flex;
    min-height: 28rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    color: var(--white);
    background: var(--anthracite);
    text-align: center;
}

.contact-cta h2 {
    color: var(--turquoise-strong);
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
}

.contact-cta p {
    margin-top: 2rem;
    line-height: 1.55;
}

.contact-cta .button {
    margin-top: 2rem;
}

.site-footer {
    color: var(--white);
    background: var(--anthracite);
}

.site-footer__inner {
    padding: 4rem 1.5rem 1.5rem;
}

.site-footer__main {
    display: grid;
    gap: 3rem;
}

.site-footer__identity > p {
    max-width: 22rem;
    margin-top: 1.35rem;
    line-height: 1.55;
}

.site-footer__identity .site-footer__tagline {
    margin-top: 1.5rem;
    color: var(--turquoise);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.site-footer__identity .site-footer__tagline + p {
    margin-top: 0.75rem;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.75rem;
}

.site-footer__social-link {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    border: 1px solid var(--turquoise);
    transition: color var(--motion), background var(--motion), transform var(--motion);
}

.site-footer__social-link:not(.site-footer__social-link--pending):hover {
    color: var(--anthracite);
    background: var(--white);
    transform: translateY(-2px);
}

.site-footer__social-link--pending {
    cursor: help;
}

.site-footer__social-link svg {
    width: 1.35rem;
    height: 1.35rem;
    overflow: visible;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__social-link svg path {
    stroke: none;
}

.site-footer__social-link svg path + path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.1;
}

.site-footer__social-link .site-footer__social-icon--outline,
.site-footer__social-link .site-footer__social-icon--outline path,
.site-footer__social-link .site-footer__social-icon--outline rect,
.site-footer__social-link .site-footer__social-icon--outline circle {
    fill: none;
    stroke: currentColor;
}

.site-footer__social-link .site-footer__social-dot {
    fill: currentColor;
    stroke: none;
}

.brand--footer {
    width: 9.2rem;
}

.brand--footer img {
    filter: brightness(0) invert(1);
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.site-footer__title {
    margin-bottom: 0.35rem;
    color: var(--turquoise);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__legal a {
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25em;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
    color: var(--white);
    text-decoration: underline;
}

.site-footer__contact,
.site-footer__business {
    font-size: 0.92rem;
    line-height: 1.55;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.site-footer__contact address {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.35rem;
    font-style: normal;
}

.site-footer__business p + p {
    margin-top: 0.9rem;
}

.site-footer__business strong {
    font-weight: 650;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.1rem;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(210, 212, 212, 0.3);
}

.site-footer__copyright {
    color: var(--pearl);
    font-size: 0.8rem;
}

.site-footer__legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.86rem;
}

.desktop-only {
    display: none;
}

@media (min-width: 48rem) and (max-width: 68.74rem) {
    .site-footer__inner {
        padding-right: 7vw;
        padding-left: 7vw;
    }

    .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.5rem 5rem;
    }

    .site-footer__bottom,
    .site-footer__legal {
        flex-direction: row;
        align-items: center;
    }

    .site-footer__bottom {
        justify-content: space-between;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service:nth-child(odd) {
        border-right: 1px solid var(--pearl);
    }

    .commitment {
        min-height: 36rem;
    }

    .commitment__copy {
        padding-bottom: 5rem;
    }

    .commitment__chevrons {
        opacity: 0.32;
    }

    .reviews-carousel__track {
        grid-auto-columns: calc((100% - var(--reviews-gap)) / 2);
    }

    .process__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process__step {
        padding-inline: 1.5rem;
        border-right: 1px solid var(--pearl);
        border-bottom: 0;
    }

    .process__step {
        display: block;
    }

    .process__copy {
        margin-top: 1.75rem;
    }
}

@media (min-width: 68.75rem) {
    html {
        scroll-padding-top: 6rem;
    }

    .site-header {
        height: clamp(5.5rem, 6.57vw, 7.8125rem);
    }

    .site-header__inner {
        width: 63.1%;
        max-width: 75.0625rem;
    }

    .brand {
        width: clamp(8.6rem, 9.62vw, 11.45rem);
    }

    .nav-toggle {
        display: none;
    }

    .site-nav,
    .js .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(0.4rem, 0.8vw, 0.95rem);
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav a {
        padding: 0.65rem clamp(0.45rem, 0.55vw, 0.7rem);
        font-size: clamp(0.86rem, 1.05vw, 1.25rem);
        line-height: 1;
        white-space: nowrap;
    }

    .site-nav__cta,
    .site-nav .site-nav__cta {
        min-width: clamp(9.5rem, 10.1vw, 12rem);
        margin: 0 0 0 clamp(0.4rem, 0.8vw, 0.95rem);
        padding-block: clamp(0.65rem, 0.8vw, 0.95rem);
    }

    .desktop-only {
        display: block;
    }

    .hero {
        height: clamp(37rem, 42.56vw, 50.625rem);
        grid-template-columns: 28.43% 0.26% 28.38% 0.21% 42.72%;
        gap: 0;
    }

    .hero__visual {
        height: 100%;
    }

    .hero__visual--facade {
        grid-column: 1;
    }

    .hero__visual--menuiseries {
        grid-column: 3;
    }

    .hero__visual img {
        object-fit: fill;
    }

    .hero__content {
        min-height: 0;
        height: 100%;
        grid-column: 5;
        padding: clamp(6rem, 7.4vw, 8.8rem) 2.1vw clamp(2rem, 2.05vw, 2.45rem);
    }

    .hero h1 {
        font-size: clamp(3.4rem, 4vw, 4.75rem);
        line-height: 1.12;
    }

    .hero .accent-line {
        width: clamp(3.5rem, 3.94vw, 4.7rem);
        margin-top: clamp(2rem, 2.7vw, 3.2rem);
    }

    .hero__lead {
        margin-top: clamp(1.8rem, 2.15vw, 2.55rem);
        font-size: clamp(0.95rem, 0.95vw, 1.125rem);
        line-height: 1.55;
    }

    .hero .button {
        min-height: clamp(2.8rem, 2.75vw, 3.25rem);
        margin-top: clamp(2rem, 2.4vw, 2.85rem);
        padding-inline: clamp(1rem, 1.15vw, 1.4rem);
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .hero__note {
        font-size: clamp(0.78rem, 0.84vw, 1rem);
    }

    .services {
        height: clamp(23.45rem, 26.06vw, 31rem);
        grid-template-columns: repeat(4, 1fr);
    }

    .service {
        min-height: 0;
        height: 100%;
        padding: clamp(4.5rem, 5.15vw, 6.15rem) 1.8vw 2rem 2.63vw;
        border-right: 1px solid var(--pearl);
        border-bottom: 0;
    }

    .service:first-child {
        padding-left: 5.25vw;
    }

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

    .service__number,
    .process__number {
        font-size: clamp(2.65rem, 3.15vw, 3.75rem);
    }

    .service .accent-line {
        width: clamp(2.1rem, 2.05vw, 2.45rem);
        margin-top: clamp(2rem, 2.35vw, 2.8rem);
    }

    .service h2 {
        margin-top: clamp(2rem, 2.4vw, 2.85rem);
        font-size: clamp(1.7rem, 2.1vw, 2.5rem);
    }

    .service p {
        max-width: 18rem;
        margin-top: clamp(1.2rem, 1.4vw, 1.65rem);
        font-size: clamp(0.88rem, 0.95vw, 1.125rem);
        line-height: 1.45;
    }

    .commitment {
        height: clamp(23.45rem, 26.27vw, 31.25rem);
        min-height: 0;
        align-items: center;
    }

    .commitment__copy {
        width: 43%;
        margin-left: 10.51vw;
        padding: 0;
        transform: translateY(1vw);
    }

    .section-label {
        font-size: clamp(0.88rem, 1.05vw, 1.25rem);
    }

    .commitment .accent-line {
        width: clamp(3.4rem, 3.9vw, 4.65rem);
        margin-top: 1.1vw;
    }

    .commitment h2 {
        margin-top: 1.65vw;
        font-size: clamp(3.2rem, 4vw, 4.75rem);
    }

    .commitment__copy > p:last-child {
        max-width: 26.2vw;
        margin-top: 2vw;
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .commitment__chevrons {
        top: 0;
        right: 7vw;
        bottom: auto;
        left: auto;
        width: 40.3vw;
        max-width: 47.9375rem;
        height: auto;
        object-fit: contain;
        opacity: 1;
    }

    .brands {
        min-height: 0;
        height: clamp(9.1rem, 10.72vw, 12.75rem);
        padding: 0;
    }

    .brands .accent-line,
    .reviews__heading .accent-line,
    .process > .accent-line,
    .contact-cta .accent-line {
        width: clamp(3.4rem, 4.95vw, 5.9rem);
        margin-top: 0.8vw;
    }

    .brands__list {
        margin-top: 1.65vw;
        font-size: clamp(1.75rem, 2.3vw, 2.7rem);
    }

    .reviews {
        height: clamp(32rem, 38vw, 42rem);
        padding: 3.35vw 0 0;
    }

    .reviews__score {
        gap: 0.7vw;
        margin-top: 1.85vw;
    }

    .reviews__score strong {
        font-size: clamp(2.8rem, 3.45vw, 4.1rem);
    }

    .reviews__stars {
        font-size: clamp(1.8rem, 2.55vw, 3rem);
    }

    .reviews__score > span:last-child {
        font-size: clamp(0.85rem, 0.84vw, 1rem);
    }

    .reviews-carousel {
        width: 78.98%;
        margin: 2.15vw auto 0;
    }

    .reviews-carousel__toolbar {
        margin-bottom: 0.8vw;
    }

    .reviews-carousel__track {
        --reviews-gap: clamp(0.75rem, 1vw, 1.2rem);
        grid-auto-columns: calc((100% - (var(--reviews-gap) * 2)) / 3);
    }

    .review-card {
        height: clamp(13.5rem, 15.5vw, 16rem);
        min-height: 0;
        padding: clamp(1rem, 1.3vw, 1.55rem);
    }

    .review-card__quote {
        height: clamp(2rem, 2.5vw, 3rem);
        margin-top: 0.55vw;
        font-size: clamp(3rem, 3.5vw, 4.15rem);
    }

    .review-card blockquote {
        max-height: clamp(4.6rem, 5.5vw, 6.5rem);
        margin-top: 0.35vw;
        font-size: clamp(0.82rem, 0.86vw, 1rem);
        line-height: 1.45;
    }

    .review-card footer {
        padding-top: clamp(0.7rem, 0.85vw, 1rem);
        font-size: clamp(0.75rem, 0.75vw, 0.9rem);
    }

    .reviews-carousel__button {
        width: clamp(2.25rem, 2.5vw, 3rem);
        height: clamp(2.25rem, 2.5vw, 3rem);
    }

    .reviews__google-link {
        margin-top: 1.25vw;
        font-size: clamp(0.78rem, 0.78vw, 0.93rem);
    }

    .process {
        height: clamp(18.5rem, 20.55vw, 24.4375rem);
        padding: 2.4vw 0 0;
    }

    .process__grid {
        width: 86.35%;
        grid-template-columns: repeat(3, 1fr);
        margin: 1.65vw auto 0;
    }

    .process__step {
        min-height: 11.5rem;
        grid-template-columns: 22% 78%;
        gap: 0;
        padding: 0 2.6vw 0 0;
        border-right: 1px solid var(--pearl);
        border-bottom: 0;
    }

    .process__step + .process__step {
        padding-left: 2.1vw;
    }

    .process__step:last-child {
        padding-right: 0;
        border-right: 0;
    }

    .process__copy img {
        width: clamp(6rem, 6vw, 7rem);
        height: clamp(6rem, 6vw, 7rem);
    }

    .process__copy h2 {
        margin-top: 0.55vw;
        font-size: clamp(0.95rem, 1.15vw, 1.35rem);
    }

    .process__copy p {
        margin-top: 1vw;
        font-size: clamp(0.82rem, 0.84vw, 1rem);
        line-height: 1.5;
    }

    .area {
        display: grid;
        height: clamp(23.6rem, 26.27vw, 31.25rem);
        min-height: 0;
        grid-template-columns: 56% 44%;
        align-items: stretch;
        padding: 0;
    }

    .area__inner {
        align-self: center;
        margin-left: 10.51vw;
        transform: translateY(0.7vw);
    }

    .area__media {
        height: 100%;
        margin: 0;
    }

    .area .accent-line {
        width: clamp(3.4rem, 3.7vw, 4.4rem);
        margin-top: 0.95vw;
    }

    .area h2 {
        margin-top: 1.65vw;
        font-size: clamp(2.1rem, 2.4vw, 2.85rem);
    }

    .area h2 + p,
    .area__places {
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .area h2 + p {
        margin-top: 0.5vw;
    }

    .area__places {
        margin-top: 1.75vw;
    }

    .contact-cta {
        height: clamp(20.25rem, 22.49vw, 26.75rem);
        min-height: 0;
        padding: 0;
    }

    .contact-cta h2 {
        font-size: clamp(2.1rem, 2.4vw, 2.85rem);
    }

    .contact-cta p {
        margin-top: 1.7vw;
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .contact-cta .button {
        min-height: clamp(2.8rem, 2.75vw, 3.25rem);
        margin-top: 1.45vw;
        padding-inline: 1.65vw;
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .site-footer {
        min-height: 0;
    }

    .site-footer__inner {
        width: min(89.5%, 85rem);
        margin-inline: auto;
        padding: clamp(4.5rem, 5.4vw, 6.4rem) 0 clamp(1.5rem, 2vw, 2.35rem);
    }

    .site-footer__main {
        grid-template-columns: minmax(15rem, 1.35fr) minmax(8rem, 0.62fr) minmax(13rem, 0.9fr) minmax(17rem, 1.13fr);
        align-items: start;
        gap: clamp(2rem, 4vw, 5rem);
    }

    .brand--footer {
        width: clamp(8.8rem, 9.2vw, 10.95rem);
    }

    .site-footer__bottom,
    .site-footer__legal {
        flex-direction: row;
        align-items: center;
    }

    .site-footer__bottom {
        justify-content: space-between;
        margin-top: clamp(3rem, 4vw, 4.75rem);
    }

    .site-footer__legal {
        gap: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accueil enrichi : styles isolés pour préserver les autres pages validées. */
.page-home .hero {
    grid-template-columns: minmax(0, 1fr);
}

.page-home .hero__visual--facade,
.page-home .hero__content {
    grid-column: 1;
}

.page-home .hero__content {
    min-height: 43rem;
    padding: 4.5rem 1.5rem 2.5rem;
}

.page-home .hero h1 {
    max-width: 34rem;
    font-size: clamp(2.6rem, 11vw, 3.35rem);
    line-height: 1.02;
}

.page-home .hero__intro {
    display: grid;
    max-width: 38rem;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.96rem;
    line-height: 1.58;
}

.page-home .hero .button {
    margin-top: 2rem;
}

.page-home .hero__note {
    margin-top: auto;
    padding-top: 2.5rem;
    line-height: 1.45;
}

@media (max-width: 22.5rem) {
    .page-home .hero h1 {
        font-size: 2.2rem;
        overflow-wrap: normal;
        word-break: normal;
    }
}

.page-home .services__heading {
    padding: 4.5rem 1.5rem;
    border-bottom: 1px solid var(--pearl);
    background: var(--white);
}

.page-home .services__heading .accent-line,
.page-home .environment__copy .accent-line,
.page-home .brands__copy .accent-line {
    margin-right: 0;
    margin-left: 0;
    margin-top: 1.2rem;
}

.page-home .services__heading h2,
.page-home .environment h2,
.page-home .brands h2,
.page-home .reviews h2,
.page-home .process > h2 {
    max-width: 54rem;
    margin-top: 2rem;
    font-size: clamp(2.25rem, 9vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.page-home .service {
    position: relative;
    min-height: 27rem;
}

.page-home .service h3 {
    margin: 2.2rem 0 0;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.page-home .service p {
    line-height: 1.55;
}

.page-home .service__link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--anthracite);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--turquoise);
    text-underline-offset: 0.3em;
}

.page-home .service__link:hover {
    color: var(--anthracite);
    text-decoration-thickness: 2px;
}

.page-home .service__link::after {
    position: absolute;
    inset: 0;
    content: "";
}

.page-home .environment {
    display: grid;
    background: var(--white);
}

.page-home .environment__media {
    height: 23rem;
    margin: 0;
    overflow: hidden;
}

.page-home .environment__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .environment__copy {
    padding: 4.5rem 1.5rem 5rem;
}

.page-home .environment__copy > p:not(.section-label),
.page-home .brands__copy > p:not(.section-label) {
    max-width: 46rem;
    margin-top: 1.5rem;
    line-height: 1.65;
}

.page-home .commitment {
    min-height: 0;
}

.page-home .commitment__copy {
    padding: 5rem 1.5rem 5.5rem;
}

.page-home .commitment h2 {
    max-width: 50rem;
    font-size: clamp(2.65rem, 11vw, 4rem);
    line-height: 1.02;
}

.page-home .commitment__body {
    display: grid;
    max-width: 68rem;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.page-home .commitment__text {
    display: grid;
    max-width: 39rem;
    gap: 1.25rem;
    line-height: 1.65;
}

.page-home .commitment__list {
    display: grid;
    max-width: 42rem;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-home .commitment__list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.45;
}

.page-home .commitment__list li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 0.6rem;
    height: 2px;
    background: var(--turquoise);
    content: "";
}

.page-home .commitment__chevrons {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% center;
    opacity: 0.18;
}

.page-home .brands {
    min-height: 0;
    align-items: stretch;
    padding: 5rem 1.5rem;
    text-align: left;
}

.page-home .brands__copy {
    width: 100%;
}

.page-home .brands__list {
    display: flex;
    width: max-content;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    list-style: none;
}

.page-home .brands__list li {
    position: relative;
    display: flex;
    width: clamp(11rem, 45vw, 15rem);
    min-height: 6.5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
}

.page-home .brands__list img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
}

.page-home .brands__list .brands__logo--veka {
    width: 82%;
}

.page-home .brands__list .brands__logo--somfy {
    mix-blend-mode: multiply;
}

.page-home .brands__list li::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 2.4rem;
    background: var(--turquoise-strong);
    content: "";
    opacity: 0.85;
    transform: translateY(-50%) rotate(24deg);
    transform-origin: center;
}

.page-home .brands__marquee {
    width: calc(100% + 3rem);
    margin: 3.5rem -1.5rem 0;
    overflow: hidden;
}

.page-home .brands__track {
    display: flex;
    width: max-content;
    animation: brands-marquee 28s linear infinite;
    will-change: transform;
}

.page-home .brands__marquee:hover .brands__track {
    animation-play-state: paused;
}

@media (max-width: 47.99rem) {
    .page-home .brands__list li {
        width: 32vw;
        min-height: 5.75rem;
        padding: 0.75rem;
    }
}

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

.page-home .reviews {
    height: auto;
    min-height: 0;
}

.page-home .reviews h2 {
    margin-inline: auto;
}

.page-home .reviews__score {
    margin-top: 2rem;
}

.page-home .process {
    height: auto;
    min-height: 0;
}

.page-home .process > h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.page-home .process__copy h3 {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: uppercase;
}

.page-home .process__copy p {
    line-height: 1.58;
}

.page-home .area {
    height: auto;
    min-height: 0;
}

.page-home .area__text {
    display: grid;
    max-width: 40rem;
    gap: 1.2rem;
    margin-top: 1.5rem;
    line-height: 1.65;
}

.page-home .area__transition {
    display: inline-block;
    max-width: 34rem;
    margin-top: 2rem;
    color: var(--anthracite);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--turquoise);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.3em;
    transition: color var(--motion), text-decoration-color var(--motion);
}

.page-home .area__transition:hover {
    color: #3e6265;
}

.page-home .area__transition:focus-visible {
    outline: 2px solid var(--turquoise-strong);
    outline-offset: 0.3rem;
}

.page-home .area__media {
    position: relative;
}

.page-home .area__media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-home .area__media img {
    transition: filter var(--motion), transform var(--motion);
}

.page-home .area__media > a:hover img {
    filter: saturate(0.85) contrast(1.03);
    transform: scale(1.01);
}

.page-home .area__media figcaption {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.35rem 0.55rem;
    color: var(--anthracite);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
}

.page-home .area__media figcaption a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.page-home .contact-cta {
    height: auto;
    min-height: 30rem;
}

.page-home .contact-cta p {
    max-width: 49rem;
}

@media (min-width: 48rem) and (max-width: 68.74rem) {
    .page-home .hero__content {
        min-height: 40rem;
        padding-right: 7vw;
        padding-left: 7vw;
    }

    .page-home .services__heading {
        grid-column: 1 / -1;
        padding: 5rem 7vw;
    }

    .page-home .service {
        min-height: 29rem;
        padding-right: 7vw;
        padding-left: 7vw;
    }

    .page-home .environment {
        grid-template-columns: 44% 56%;
    }

    .page-home .environment__media {
        height: auto;
        min-height: 38rem;
    }

    .page-home .environment__copy {
        align-self: center;
        padding: 5rem 7vw;
    }

    .page-home .environment h2 {
        font-size: clamp(2rem, 4.6vw, 2.35rem);
    }

    .page-home .commitment__copy {
        padding-right: 7vw;
        padding-left: 7vw;
    }

    .page-home .commitment__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
    }

    .page-home .brands {
        padding: 5.5rem 7vw;
    }

    .page-home .brands__list {
        font-size: clamp(1.15rem, 2vw, 1.4rem);
    }

    .page-home .brands__marquee {
        width: calc(100% + 14vw);
        margin: 4vw -7vw 0;
    }

    .page-home .reviews,
    .page-home .process {
        padding-right: 7vw;
        padding-left: 7vw;
    }

    .page-home .process__grid {
        align-items: stretch;
    }

    .page-home .process__step {
        min-height: 28rem;
    }

    .page-home .area {
        display: grid;
        grid-template-columns: 52% 48%;
        padding: 0;
    }

    .page-home .area__inner {
        align-self: center;
        padding: 5.5rem 7vw;
    }

    .page-home .area__media {
        height: 100%;
        min-height: 39rem;
        margin: 0;
    }
}

@media (min-width: 68.75rem) {
    .page-home .hero {
        height: clamp(41rem, 46vw, 47rem);
        grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    }

    .page-home .hero__visual--facade {
        grid-column: 1;
    }

    .page-home .hero__content {
        position: relative;
        min-height: 0;
        height: 100%;
        grid-column: 2;
        justify-content: center;
        padding: clamp(3.5rem, 4vw, 4.75rem) 3.3vw;
    }

    .page-home .hero h1 {
        max-width: 34rem;
        font-size: clamp(3.1rem, 3.55vw, 4.2rem);
        line-height: 1.02;
    }

    .page-home .hero .accent-line {
        margin-top: clamp(1.5rem, 1.8vw, 2.2rem);
    }

    .page-home .hero__intro {
        max-width: 37rem;
        gap: clamp(0.75rem, 0.9vw, 1.1rem);
        margin-top: clamp(1.35rem, 1.5vw, 1.8rem);
        font-size: clamp(0.84rem, 0.86vw, 1rem);
        line-height: 1.52;
    }

    .page-home .hero .button {
        margin-top: clamp(1.35rem, 1.55vw, 1.85rem);
        margin-bottom: clamp(1.35rem, 1.7vw, 2rem);
    }

    .page-home .hero__note {
        position: absolute;
        right: 3.3vw;
        bottom: clamp(1.25rem, 1.35vw, 1.6rem);
        left: 3.3vw;
        max-width: 38rem;
        margin-top: 0;
        padding-top: 0;
        font-size: clamp(0.68rem, 0.72vw, 0.86rem);
    }

    .page-home .services {
        height: auto;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .page-home .services__heading {
        grid-column: 1 / -1;
        padding: clamp(5rem, 6vw, 7rem) 10.51vw;
    }

    .page-home .services__heading .accent-line,
    .page-home .environment__copy .accent-line,
    .page-home .brands__copy .accent-line {
        width: clamp(3.4rem, 4vw, 4.75rem);
        margin-top: 1.2vw;
    }

    .page-home .services__heading h2,
    .page-home .environment h2,
    .page-home .brands h2,
    .page-home .reviews h2,
    .page-home .process > h2 {
        margin-top: 1.7vw;
        font-size: clamp(2.7rem, 3.15vw, 3.75rem);
    }

    .page-home .service,
    .page-home .service:first-child {
        min-height: clamp(31rem, 36vw, 39rem);
        height: auto;
        padding: clamp(4rem, 4.8vw, 5.7rem) 2.2vw 3rem;
    }

    .page-home .service:first-of-type {
        padding-left: 5.25vw;
    }

    .page-home .service h3 {
        margin-top: clamp(1.8rem, 2vw, 2.4rem);
        font-size: clamp(1.6rem, 1.85vw, 2.2rem);
    }

    .page-home .service p {
        font-size: clamp(0.84rem, 0.87vw, 1rem);
    }

    .page-home .service__link {
        max-width: 16rem;
        font-size: clamp(0.8rem, 0.82vw, 0.95rem);
    }

    .page-home .environment {
        height: clamp(31rem, 34vw, 36rem);
        min-height: 0;
        grid-template-columns: 46% 54%;
    }

    .page-home .environment__media {
        height: 100%;
        min-height: 0;
    }

    .page-home .environment__copy {
        align-self: center;
        padding: 4rem 10.51vw 4rem 7vw;
    }

    .page-home .environment__copy > p:not(.section-label),
    .page-home .brands__copy > p:not(.section-label) {
        margin-top: 1.35vw;
        font-size: clamp(0.9rem, 0.93vw, 1.1rem);
    }

    .page-home .commitment {
        height: auto;
        min-height: clamp(50rem, 55vw, 61rem);
        align-items: center;
    }

    .page-home .commitment__copy {
        width: 79%;
        margin-left: 10.51vw;
        padding: 6.5rem 0;
        transform: none;
    }

    .page-home .commitment h2 {
        max-width: 58rem;
        margin-top: 1.6vw;
        font-size: clamp(3.2rem, 4vw, 4.75rem);
    }

    .page-home .commitment__body {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: clamp(4rem, 7vw, 8rem);
        margin-top: 3.2vw;
    }

    .page-home .commitment__text,
    .page-home .commitment__list {
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }

    .page-home .commitment__list {
        max-width: 32rem;
        grid-template-columns: minmax(0, 1fr);
        align-content: start;
        gap: 0.9rem;
    }

    .page-home .commitment__chevrons {
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
        opacity: 0.14;
        transform: none;
    }

    .page-home .brands {
        height: auto;
        padding: clamp(5.5rem, 6.5vw, 7.75rem) 10.51vw;
    }

    .page-home .brands__copy {
        max-width: 69rem;
    }

    .page-home .brands__list {
        margin-top: 0;
        font-size: clamp(1rem, 1.22vw, 1.45rem);
    }

    .page-home .brands__list li {
        width: clamp(13rem, 16vw, 18rem);
        min-height: clamp(7rem, 8vw, 9.5rem);
    }

    .page-home .brands__marquee {
        width: calc(100% + 21.02vw);
        margin: 4vw -10.51vw 0;
    }

    .page-home .reviews {
        height: auto;
        min-height: clamp(42rem, 47vw, 51rem);
        padding: clamp(5rem, 5.5vw, 6.5rem) 0;
    }

    .page-home .reviews h2 {
        max-width: 48rem;
    }

    .page-home .process {
        height: auto;
        padding: clamp(5rem, 5.5vw, 6.5rem) 0 clamp(5.5rem, 6vw, 7rem);
    }

    .page-home .process__grid {
        margin-top: 3vw;
    }

    .page-home .process__step {
        min-height: clamp(20rem, 22vw, 26rem);
    }

    .page-home .process__copy h3 {
        margin-top: 0.8vw;
        font-size: clamp(1rem, 1.16vw, 1.38rem);
    }

    .page-home .process__copy p {
        font-size: clamp(0.82rem, 0.84vw, 1rem);
    }

    .page-home .area {
        height: clamp(38rem, 43vw, 50rem);
        grid-template-columns: 52% 48%;
    }

    .page-home .area__inner {
        max-width: 42rem;
        margin-left: 10.51vw;
        padding-right: 4rem;
        transform: none;
    }

    .page-home .area h2 {
        font-size: clamp(2.7rem, 3.15vw, 3.75rem);
    }

    .page-home .area__text,
    .page-home .area__transition {
        font-size: clamp(0.9rem, 0.93vw, 1.1rem);
    }

    .page-home .area__media {
        height: 100%;
        margin: 0;
    }

    .page-home .contact-cta {
        height: auto;
        min-height: clamp(27rem, 30vw, 34rem);
        padding: 5rem 10.51vw;
    }

    .page-home .contact-cta h2 {
        font-size: clamp(2.7rem, 3.15vw, 3.75rem);
    }

    .page-home .contact-cta p {
        font-size: clamp(0.9rem, 0.95vw, 1.125rem);
    }
}

@media (max-width: 47.99rem) {
    .page-home .area__media {
        height: auto;
        aspect-ratio: 1;
    }

    .page-home .area__media img {
        object-fit: contain;
    }

    .page-home .area__media figcaption {
        right: auto;
        bottom: 0.4rem;
        left: 0.4rem;
        padding: 0.2rem 0.35rem;
        font-size: 0.52rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .area__media img {
        transition: none;
    }

    .page-home .brands__marquee {
        overflow-x: auto;
    }

    .page-home .brands__track {
        animation: none;
        will-change: auto;
    }

    .page-home .brands__list[aria-hidden="true"] {
        display: none;
    }
}
