@media (max-width: 768px) {
    .hero__bg {
        content: url("./image/intro/bg-mobile.png");
    }

    .hero-nav, .hero-phone {
        display: none;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hero-header {
        display: flex;
        align-items: center;
        gap: var(--space-7xl);
        height: 60px;
        min-height: 60px;
        padding: 10px 12px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        /* position: relative; */
        z-index: 10001;
        justify-content: space-between;
    }
    .hero-header.hero-header--pinned {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translate(-50%, -120%);
        width: calc(100vw - 24px);
        z-index: 20000;
    }
    .hero-header.hero-header--pinned.hero-header--visible {
        transform: translate(-50%, 0);
    }
    .about-hero .hero-header {
        background: #1b2f38;
    }
    .hero-header__actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }
    .hero-header__actions .btn--green {
        height: 40px;
        padding: 0 14px;
    }
    .process-step {
        min-height: initial;
        height: auto;
    }
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: var(--color-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .mobile-menu-toggle__icon {
        width: 22px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        pointer-events: none;
    }
    .mobile-menu-toggle__bar {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 3px;
        background: var(--color-white);
        transform-origin: center;
        transition:
            transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
            opacity 0.22s ease;
    }
    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: var(--color-accent);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100svh;
        max-height: 100svh;
        overflow: hidden;
    }
    .mobile-menu--open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /*
     * Mobile menu lives inside the first <main><section>; later sections paint on top of it by default,
     * so the fullscreen overlay appears "behind" page content until scroll pins the header (menu moves to body).
     * Lift the hero/header section above following content only while the drawer is open.
     */
    body.mobile-menu-open main > section:first-of-type {
        position: relative;
        z-index: 21000;
    }

    .blog-theme-filter,
    .project-gallery__theme-filter {
        z-index: 1 !important;
    }
    .mobile-menu-open .blog-theme-filter,
    .mobile-menu-open .project-gallery__theme-filter {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .mobile-menu__body {
        flex: 1 1 auto;
        min-height: 0;
        max-height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        padding: 112px 12px calc(28px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-menu__nav {
        width: min(100%, 290px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        flex: 0 0 auto;
    }
    .mobile-menu__item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .mobile-menu__trigger {
        color: var(--color-white);
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 135%;
        letter-spacing: -2%;
        
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .mobile-menu__trigger::after {
        content: "";
        width: 6px;
        height: 6px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-top: -3px;
        transition: transform 0.2s ease;
    }
    .mobile-menu__trigger[aria-expanded="true"]::after {
        transform: rotate(-135deg);
        margin-top: 3px;
    }
    .mobile-menu__panel {
        width: 100%;
        border-radius: 8px;
        background: var(--color-brand);
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .mobile-menu__panel[hidden] {
        display: none;
    }
    .mobile-menu__panel a {
        color: var(--color-white);
        font-family: var(--font-body);
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;

    }
    .mobile-menu__link {
        color: var(--color-white);
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 135%;
        letter-spacing: -2%;
        
        text-align: center;
    }
    .mobile-menu__cta {
        width: 100%;
        max-width: 369px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: auto;
        flex-shrink: 0;
    }
    .mobile-menu__phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--color-white);
        font-family: Cabinet Grotesk;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: 0%;

    }
    .mobile-menu__phone-icon {
        flex-shrink: 0;
        filter: brightness(0) invert(1);
    }
    .mobile-menu__quote {
        width: 100%;
    }
    .about-hero .mobile-menu__cta .btn--mobile-quote,
    .mobile-menu__cta .btn--mobile-quote {
        background-color: rgba(27, 47, 56, 1);
        color: var(--color-white);
    }
    .about-hero .mobile-menu__cta .btn--mobile-quote::before,
    .mobile-menu__cta .btn--mobile-quote::before {
        background-color: var(--color-accent);
    }
    .about-hero .hero-header__actions .btn--green,
    .hero-header__actions .btn--green {
        background-color: rgba(255, 255, 255, 1);
        color: rgba(0, 0, 0, 1);
    }
    .about-hero .hero-header__actions .btn--green::before,
    .hero-header__actions .btn--green::before {
        background-color: var(--color-accent);
    }
    .hero__shell {
        padding: 12px;
        padding-bottom: 20px;
    }
    .hero__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 40px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;
        text-align: center;

    }
    .help-widget {
        flex: 1;
    }
    .help-widget__trigger {
        width: -webkit-fill-available;
        height: initial;
    }
    .help-widget__avatar {
        width: 34px;
        height: 34px;
    }
    .help-widget__trigger-title {
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;
    }
    .help-widget__trigger-sub {
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 8px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;

    }
    .hero__deck {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
        gap: var(--space-5xl);
        width: 100%;
        margin-top: auto;
        padding-top: var(--space-8xl);
    }
    .hero-card--glass {
        padding: 3.5px 6px;
        min-height: fit-content;
        gap: 6px;
        width: fit-content;
    }
    .text-decorative {
        font-weight: 400;;
    }
    .hero__deck {
        gap: 6px;
        max-height: 90px;
    }
    .info-line {
        height: 108px;
    }
    .info-line__viewport {
        width: 100%;
        overflow: hidden;
        height: 108px;
    }
    .info-line__group {
        display: flex;
        align-items: center;
        gap: 24px;
        padding-inline: 20px;
        flex-shrink: 0;
        height: 108px;
    }
    .info-line__logo {
        height: 108px;
    }
    .info-line__text {
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;
        text-align: center;
    }
    .services__intro {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        flex-direction: column;
    }
    .services__container {
        padding: 80px 12px;
    }
    .services__grid {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 17px;
    }
    .services__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .services__lead {
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;

    }
    .service-card__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 30px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .service-card__image {
        height: 230px;
    }
    .process__container {
        padding-top: 80px;  
        padding-bottom: 80px;
    }
    .process__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;
        text-align: center;

    }
    .process__grid {
        margin-top: 40px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 8px
    }
    .estimate-modal {
        padding: 10px;
    }
    .projects__slide {
        width: 354px;
        height: 320px;
        border-radius: 16px;
        object-fit: cover;
        object-position: center;
        flex: 0 0 354px;
        display: block;
    }
    .projects__track {
        gap: 8px;
    }
    .projects__head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        flex-direction: column;
    }
    .projects__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .projects__viewport {
        margin-top: 20px;
    }
    .projects__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .why-choose__container, .reviews {
        display: none;
    }

    .areas__container {
        padding-top: 80px;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .areas__head {
        display: contents;
    }

    .areas__intro {
        order: 1;
        max-width: none;
    }

    .areas__layout {
        order: 2;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-height: 0;
    }

    .areas-map {
        order: 1;
        min-height: 260px;
        display: flex;
    }
    .areas-map__img {
        height: auto;
    }
    .areas-card {
        order: 2;
        width: 100%;
        max-width: none;
        padding: 32px;
    }
    .areas__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .areas-card__subtitle {
        font-family: Cabinet Grotesk;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .areas__lead {
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;

    }
    .areas__cta {
        order: 3;
        align-self: center;
        margin-top: -8px;
    }

    .estimate__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .estimate__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .estimate__intro,
    .estimate-card--01,
    .estimate-card--02,
    .estimate-card--03,
    .estimate-card--04,
    .estimate-card--05,
    .estimate-photo,
    .estimate-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .estimate-card--step,
    .estimate-card--tall,
    .estimate-cta {
        min-height: auto;
    }

    .estimate-photo {
        min-height: 180px;
        height: 300px;
    }
    .estimate__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;

    }
    .estimate-card--step {
        min-height: 300px;
    }
    .estimate-cta {
        min-height: 300px;
    }
    .faq__title {
        font-family: Cabinet Grotesk;
        font-weight: 800;
        font-style: Extrabold;
        font-size: 34px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -1%;
        text-align: center;

    }
    .faq-item {
        border-radius: 16px;
        border: 1px solid #e8e8e8;
        background: var(--color-white);
        padding: 24px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        cursor: pointer;
    }
    .contact-quote__layout {
        display: flex;
        grid-template-columns: 1fr 779px;
        gap: 50px;
        align-items: start;
        grid-auto-flow: row dense;
        flex-direction: column;
    }
    .contact-quote__left {
        min-height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px;
    }
    .contact-form {
        padding: 40px 24px;
    }
    .contact-form__row {
        display: flex;
        flex: 0;
        gap: 12px;
        flex-direction: column;
    }
    .seo-copy__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .seo-copy__card {
        margin-top: 24px;
        padding: 32px;
    }
    .seo-copy__text {
        -webkit-line-clamp: 12;
    }
    .site-footer__top {
        display: flex;
        grid-template-columns: 120px minmax(280px, 1fr) auto auto auto;
        gap: 42px;
        align-items: center;
        flex-direction: column;
        align-content: center;
        text-align: center;
    }
    .site-footer__contact-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .site-footer__contact-col {
        display: flex;
        flex-direction: column;
        gap: 29px;
        align-items: center;
        order: 5;
    }
    .site-footer__nav-col {
        order: 2;
    }
    .site-footer__nav-col--wide {
        order: 3;
    }
    .site-footer__nav-col--locations {
        order: 4;
    }
    .site-footer__nav-col a {
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;
        color: var(--color-white);
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }
    .site-footer__dropdown {
        justify-content: center;
    }
    .site-footer__dropdown-panel {
        left: 50%;
        transform: translateX(-50%);
    }
    .site-footer__nav-col--locations {
        padding-left: 0;;
    }
    .site-footer__bottom {
        margin-top: 50px;
        padding-top: 0px;
        border-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
    }
    .site-footer__bottom-left {
        display: contents;
    }
    .site-footer__legal {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .site-footer__rights {
        order: 2;
        text-align: center;
    }
    .site-footer__credit {
        order: 3;
        justify-content: center;
        margin-top: 20px
    }
    .site-footer__container {
        padding-top: 60px;
        padding-bottom: 45px;
    }
    .site-footer__brand {
        display: inline-flex;
        width: auto;
        line-height: 0;
    }
    .site-footer__brand img {
        height: 70px;
        width: auto;
    }

    .service-included__container {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .service-included__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .service-included__grid {
        margin-top: 40px;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .service-included__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .service-included__grid::-webkit-scrollbar {
        display: none;
    }
    .service-included-card {
        min-height: auto;
        padding: 24px;
        gap: 24px;
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: start;
    }

    .local-service-included__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .local-service-included__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .local-service-included__grid {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .local-service-included-card {
        gap: 24px;
    }
    .local-service-included-card__top {
        gap: 24px;
        padding-bottom: 20px;
    }

    .service-protection__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .service-protection__layout {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .service-protection__content-wrap {
        min-height: auto;
        padding: 40px 24px;
    }
    .service-protection__text {
        padding: 0;
        padding-top: 32px;
    }
    .service-protection__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .service-protection__media-wrap {
        min-height: 540px;
    }
    .service-protection__note {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
    }
    .service-protection__note-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .service-why-team {
        min-height: 620px;
    }
    .service-why-team__container {
        min-height: 620px;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .service-why-team__card {
        max-width: 100%;
        min-height: auto;
        padding: 24px;
        gap: 20px;
    }
    .service-why-team__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .service-why-team__chips {
        max-width: 100%;
    }

    .service-hero-intro__stack {
        flex: 0 0 auto !important;
    }
    .service-location-hero .service-hero-intro__stack {
        margin: 60px 0 0 !important;
    }
    .service-hero-intro__deck {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 100% !important;
        flex: 1 1 auto !important;
        margin-top: 30px !important;
        padding-top: 0 !important;
        gap: 20px !important;
    }
    .service-hero-intro__contact-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        align-items: flex-end !important;
        width: -webkit-fill-available !important;
    }
    .service-location-hero .service-hero-intro__contact-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        align-items: flex-end !important;
        width: -webkit-fill-available !important;
    }
    .service-location-hero .service-hero-intro__deck {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        flex: 1 1 auto !important;
        height: 100% !important;
        gap: 20px !important;
        margin-top: 30px !important;
        padding-top: 0 !important;
    }
    .service-location-hero .service-hero-intro__contact-row {
        margin-top: auto !important;
    }

    .about-hero-intro {
        padding-top: 49px;
        padding-bottom: 8px;
    }
    .reviews-page-intro__container {
        padding-top: 20px;
        padding-bottom: 56px;
        align-items: center;
        display: flex;
        flex-direction: column;
        align-content: center;
    }
    .reviews-page-intro__title {
        font-size: 40px;
    }
    .reviews-page-intro__main {
        gap: 24px;
        max-width: 100%;
    }
    .reviews-page-intro__bottom {
        flex-direction: column;
        align-items: center;
        position: static;
    }
    .reviews-page-intro__chips {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    .reviews-showcase {
        padding: 20px 0 60px;
    }
    .reviews-showcase__container {
        width: calc(100% - 24px);
        gap: 16px;
    }
    .hero-card--reviews-dark {
        gap: 6px;
        padding-left: 6px;
        width: 193px;
        height: 57px;
    }
    .review-showcase-row {
        grid-template-columns: 1fr;
        row-gap: 24px;
        padding: 20px;
    }
    .review-showcase-row__carousel {
        min-height: 300px;
    }
    .review-showcase-row__text {
        font-size: 22px;
        line-height: 1.35;
    }
    .review-showcase-row__author {
        font-size: 24px;
    }
    .review-showcase-row__service {
        font-size: 18px;
    }
    .review-showcase-slide {
        flex-basis: 100%;
    }
    .review-showcase-slide--quote {
        padding: 20px;
    }
    .review-showcase-slide__quote {
        font-size: 20px;
    }
    .review-showcase-slide__author {
        font-size: 20px;
    }
    .review-showcase-slide__service {
        font-size: 16px;
    }
    .review-showcase-row__controls {
        left: 12px;
        bottom: 12px;
    }
    .review-showcase-row__control {
        width: 44px;
        height: 44px;
    }

    .about-hero-intro__container {
        grid-template-columns: 1fr;
        gap: 24px;
        height: auto;
        min-height: auto;
    }
    .about-hero-intro__content {
        grid-template-rows: auto auto;
        row-gap: 24px;
        order: 1;
    }
    .about-hero-intro__main {
        gap: 24px;
        justify-content: flex-start;
    }
    .about-hero-intro__title {
        font-size: 40px;
        line-height: 1.1;
        max-width: 360px;
    }
    .about-hero-intro__lead {
        font-size: 16px;
    }
    .about-hero-intro__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .about-hero-intro__chip {
        width: fit-content;
    }
    .about-hero-intro__media {
        order: 2;
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
    .about-hero-intro__widget .help-widget {
        width: 178px;
        height: 57px;
    }
    .about-hero-intro__widget .help-widget__trigger {
        width: 146px;
        height: 57px;
        min-height: 57px;
        padding: 0 16px;
        justify-content: flex-start;
    }
    .about-hero-intro__widget {
        right: 8px;
        bottom: 8px;
        width: 178px;
        height: 57px;
    }

    .about-trust__container {
        padding-top: 80px;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .about-trust__intro {
        max-width: 100%;
    }
    .about-trust__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .about-trust__cards {
        order: 3;
    }
    .about-trust__image-wrap {
        order: 4;
        width: 100%;
        aspect-ratio: auto;
        max-height: none;
        margin-top: -16px;
    }
    .about-trust__image {
        width: 100%;
        height: auto;
        max-height: none;
    }
    .about-trust-card {
        padding: 20px;
        gap: 16px;
    }
    .about-trust-card__title {
        font-size: 24px;
    }

    .about-owner__container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .about-owner__layout {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .about-owner__intro {
        margin-bottom: 32px;
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
    }
    .about-owner__title {
        font-size: 34px;
        line-height: 1.1;
        text-align: center;
        margin: 0 auto;
    }
    .about-owner__lead {
        text-align: center;
    }
    .about-owner__aside--gray {
        min-height: 0;
        gap: 80px;
        order: 2;
    }
    .about-owner__photo-wrap {
        min-height: 320px;
        order: 1;
    }
    .about-owner__cards {
        order: 3;
    }
    .about-owner__photo {
        min-height: 320px;
    }
    .about-owner__badge {
        white-space: normal;
        text-align: center;
        max-width: calc(100% - 32px);
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-owner-card {
        min-height: 0;
    }
    .process-step--tall {
        min-height: 0;
    }
    .about-color__card {
        display: flex;
        flex-direction: column;
        padding: 130px 16px 80px;
    }
    .about-color {
        padding-top: 0;
        padding-bottom: 0;
    }
    .about-color__decor {
        top: 20px;
        grid-template-columns: repeat(2, 24px);
        grid-template-rows: repeat(2, 24px);
        gap: 4px;
    }
    .about-color__decor--left {
        left: 16px;
    }
    .about-color__decor--right {
        right: 16px;
    }
    .about-color__title {
        order: 1;
        font-size: 34px;
        line-height: 1.1;
    }
    .about-color__copy {
        order: 2;
        margin-top: 24px;
        flex-direction: column;
        gap: 16px;
    }
    .about-color__center {
        order: 3;
        margin-top: 40px;
    }
    .about-color__image,
    .about-color__cta {
        width: 100%;
        max-width: none !important;
    }
    .about-color__image {
        height: auto;
    }
    .about-color__copy p {
        max-width: 100%;
        text-align: center;
    }
    .about-color__brands {
        order: 4;
        margin-top: 60px;
    }
    .about-color__brands-title {
        margin: 50px 0 20px;
        font-size: 24px;
        max-width: 290px;
    }
    .about-color__brands-group {
        gap: 40px;
        padding-right: 24px;
    }
    .about-color__brands-group img {
        height: 34px;
    }

    .expert-advice {
        padding: 60px 0;
    }
    .expert-advice__container {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 20px;
        padding-top: 0;
    }
    .expert-advice__head {
        display: block;
        margin-bottom: 32px;
    }
    .expert-advice__title {
        font-size: 34px;
    }
    .expert-advice__cta--top {
        display: none;
    }
    .expert-advice__cta--bottom {
        display: flex;
        width: 163px;
        margin: 32px auto 0;
        text-align: center;
        justify-content: center;
    }
    .expert-advice__grid {
        grid-template-columns: 1fr;
    }
    .expert-advice-card__media {
        height: 220px;
    }

    .blog-hero-intro {
        padding: 56px 0 0;
    }
    .blog-hero-intro__title {
        font-size: 40px;
        line-height: 1.1;
    }
    .blog-hero-intro__content {
        max-width: 100%;
    }
    .blog-hero-intro__container {
        padding: 0;
    }
    .blog-articles {
        padding-bottom: 80px;
    }
    .blog-articles__container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blog-articles__controls {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .blog-articles__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-articles__load-more {
        margin-top: 32px;
    }

    .blog-article {
        padding: 0px;
    }
    .blog-article__container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blog-article__hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-article__intro {
        display: contents;
    }
    .blog-article__meta {
        order: 1;
    }
    .blog-article__title {
        order: 2;
    }
    .blog-article__lead {
        order: 3;
    }
    .blog-article__media {
        order: 4;
        position: static;
    }
    .blog-article__content {
        order: 5;
    }
    .blog-article__highlight {
        order: 6;
    }
    .blog-article__media > img {
        height: 320px;
    }
    .blog-article__title {
        font-size: 40px;
        line-height: 1.1;
    }
    .blog-article__content {
        gap: 15px;
    }
    .blog-article__content h3 {
        font-size: 24px;
    }
    .blog-article__highlight {
        padding: 20px;
        gap: 16px;
    }
    .blog-article__highlight-image img {
        height: 220px;
    }
    .blog-article__highlight-copy h3 {
        font-size: 26px;
    }

    .project-gallery {
        padding: 56px 0 60px;
    }
    .project-gallery__container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .project-gallery__title {
        font-size: 40px;
        line-height: 1.1;
    }
    .project-gallery__theme-filter {
        width: 100%;
        margin-top: 32px;
    }
    .project-gallery__grid {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .project-gallery-card,
    .project-gallery-card img {
        min-height: 320px;
        height: 320px;
    }
    .project-gallery-card__badge {
        max-width: calc(100% - 24px);
    }

    .service-areas-list__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .service-areas-list__heading,
    .service-areas-list__city {
        font-size: 34px;
        line-height: 1.1;
    }
    .service-areas-list__rows {
        margin-top: 40px;
    }
    .service-areas-list__row {
        padding: 20px 0;
        gap: 16px;
    }
    .service-areas-list__chips {
        gap: 6px;
    }
    .service-areas-list__chip {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .service-areas-hero .service-hero-intro__deck--split,
    .service-location-hero .service-hero-intro__deck--split {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-top: 30px;
    }
    .service-areas-hero .service-hero-intro__stack,
    .service-location-hero .service-hero-intro__stack {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 46px 0 0 !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
    }
    .service-areas-hero .service-hero-intro__primary,
    .service-location-hero .service-hero-intro__primary {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex: 1 1 auto;
        min-height: 0;
    }
    .service-areas-hero .service-hero-intro__contact-row,
    .service-location-hero .service-hero-intro__contact-row {
        margin-left: 0;
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: flex-end;
        width: -webkit-fill-available;
    }
    .service-areas-hero .service-hero-intro__deck,
    .service-location-hero .service-hero-intro__deck {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        height: 100% !important;
        min-height: 0 !important;
        margin-top: 0 !important;
        justify-content: space-between !important;
        align-items: stretch !important;
    }

    .help-widget {
        position: relative;
        width: -webkit-fill-available;
        transition: width 0.32s ease;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .expert-advice__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
