/* =============================================================================
   Design tokens — colors, spacing, typography
   Fonts: Cabinet Grotesk (Fontshare), Inter (Google Fonts)
   ============================================================================= */

:root {
    /* Colors */
    --color-white: #ffffff;
    --color-light-gray: #f8f8f8;
    --color-gray: #eaebeb;
    --color-green: #1b2f38;
    --color-dark: #000000;
    --color-orange: #ff5b04;

    /* Semantic aliases (extend as needed) */
    --color-bg: var(--color-white);
    --color-bg-muted: var(--color-light-gray);
    --color-border: var(--color-gray);
    --color-text: var(--color-dark);
    --color-text-inverse: var(--color-white);
    --color-accent: var(--color-orange);
    --color-brand: var(--color-green);

    /* Font stacks */
    --font-heading: "Cabinet Grotesk", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;

    /* Spacing scale (use for margin, padding, gap) */
    --space-2xs: 2px;
    --space-xs: 4px;
    --space-3xl: 8px;
    --space-4xl: 12px;
    --space-5xl: 16px;
    --space-6xl: 20px;
    --space-7xl: 24px;
    --space-8xl: 32px;
    --space-9xl: 40px;
    --space-10xl: 60px;
    --space-11xl: 80px;
    --space-12xl: 120px;
}

/* -----------------------------------------------------------------------------
   Base
   ----------------------------------------------------------------------------- */

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-heading);
}

/* Semantic headings — same scale as .heading-* */
h1 {
    font-weight: 800;
    font-size: 50px;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h3 {
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h4 {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h5,
h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a,
button {
    all: unset;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* -----------------------------------------------------------------------------
   Typography — Heading (Cabinet Grotesk)
   ----------------------------------------------------------------------------- */

.heading-xl {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 50px;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.heading-l {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.heading-m {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.heading-s {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.heading-xs {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* -----------------------------------------------------------------------------
   Typography — Body (Inter)
   ----------------------------------------------------------------------------- */

.body-xl {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.body-l-regular {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.body-l-semibold {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.body-m {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

/* Decorative & Link (Cabinet Grotesk) */

.text-decorative {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    
}

.text-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.text-link:hover {
    color: var(--color-accent);
}

/* -----------------------------------------------------------------------------
   Layout
   ----------------------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: 1408px;
    margin: 0 auto;
    padding-inline: var(--space-7xl);
}

/* -----------------------------------------------------------------------------
   Hero — Home first screen (Figma: Home page ~1440×793, node 3:443)
   ----------------------------------------------------------------------------- */

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    background-color: var(--color-light-gray);
    color: var(--color-text-inverse);
    overflow: visible;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero__shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px 40px;
    overflow: visible;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: var(--space-7xl);
    height: 60px;
    min-height: 60px;
    padding: 0 var(--space-7xl);
    border-radius: 8px;
    background: transparent;
    position: relative;
    padding-right: 12px;
    z-index: 20000;
    overflow: visible;
}

/* Backdrop on a pseudo-layer so absolute dropdowns are not clipped (Chrome/WebKit + backdrop-filter). */
.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
    pointer-events: none;
}

.about-hero .hero-header::before,
.contact-page-header .hero-header::before {
    display: none;
}

.hero-header > * {
    position: relative;
    z-index: 1;
}

.hero-header--pinned {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -120%);
    opacity: 0;
    width: min(1360px, calc(100vw - 24px));
    z-index: 20000;
    will-change: transform, opacity;
    transition: transform 280ms ease-out, opacity 280ms ease-out;
}

.hero-header--pinned.hero-header--visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.hero-header__brand {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 28px;
    height: 100%;
    color: #fff;
    overflow: visible;
}

.hero-nav__link,
.hero-nav__trigger {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
}

.hero-nav__link:hover,
.hero-nav__trigger:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
}

.hero-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: visible;
}

.hero-nav__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 2px;
}

.hero-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

button.hero-nav__trigger {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-align: inherit;
}

.hero-nav__trigger::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}

.hero-nav__panel {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: max-content;
    min-width: 200px;
    padding: 20px;
    border-radius: 8px;
    background: rgb(27, 47, 56);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 60;
}

.hero-nav__panel--services {
    width: 290px;
}

.hero-nav__panel--about {
    width: 248px;
}

.hero-nav__panel--locations {
    width: 126px;
}

.hero-nav__item:hover .hero-nav__panel {
    display: flex;
}

.hero-nav__panel-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.hero-nav__panel-link:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
}

.hero-header__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: var(--space-4xl);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--color-white);
}

.hero-phone:hover {
    color: var(--color-accent);
}

.hero-phone__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--green {
    height: 40px;
    padding: 0 20px;
    background-color: var(--color-brand);
    color: var(--color-white);
}

.btn--green::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    flex-shrink: 0;
}

.btn--green:hover {
    filter: brightness(1.06);
}

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

.btn--primary {
    height: 48px;
    padding: 0 var(--space-7xl);
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn--primary:hover {
    filter: brightness(1.05);
}

.btn--lg {
    gap: 10px;
}

.hero__stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
    padding-top: 60px;
    gap: 40px;
}

.hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.hero__eyebrow {
    margin: 0;
}

.hero__eyebrow-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 33px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    color: var(--color-white);
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    flex-shrink: 0;
}

.hero__eyebrow-text {
    max-width: 313px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: inherit;
}

.hero__eyebrow-text__underline {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-decoration-skip-ink: auto;
}

.hero__titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.hero__title {
    margin: 0;
    max-width: 770px;
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 102%;
    letter-spacing: -1%;
    text-align: center;
    
}

.hero__lead {
    max-width: 493px;
    margin: 0;
    color: var(--color-white);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__response {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
}

.hero__response-icon {
    display: block;
    flex-shrink: 0;
}

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

.hero__deck {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5xl);
    width: 100%;
    margin-top: auto;
    padding-top: var(--space-8xl);
}

.hero-card {
    width: 100%;
    max-width: 251px;
    border-radius: 10px;
}

/* .hero-card--reviews {
    max-width: 210px;
} */

.hero-card--glass {
    display: flex;
    align-items: stretch;
    gap: var(--space-4xl);
    min-height: 70px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--color-white);
}

.hero-card__google {
    display: block;
}

.hero-card__reviews-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-width: 0;
    justify-content: center;
}

.hero-card__reviews-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--space-4xl);
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.hero-card__reviews-meta {
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.hero-card__reviews-title {
    margin: 0;
    color: var(--color-white);
}

.hero-card--solid {
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
    min-height: 70px;
    padding: 10px 20px;
    background: var(--color-white);
    box-shadow: 0 5px 6.5px rgba(0, 0, 0, 0.03);
}

.hero-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-card__help-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-width: 0;
}

.hero-card__help-title {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    color: rgba(0, 0, 0, 1);
}

.hero-card__help-sub {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    color: rgba(0, 0, 0, 1);
}

.help-widget {
    position: relative;
    width: 251px;
    transition: width 0.32s ease;
}

.help-widget__trigger {
    position: relative;
    z-index: 2;
    width: 100%;
    /* min-height: 70px; */
    width: 250px;
    padding: 10px 0px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 5px 6.5px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.32s ease, opacity 0.24s ease;
    justify-content: center;
}

.help-widget__trigger:hover {
    transform: translateY(-1px);
}

.help-widget__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.help-widget__trigger-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.help-widget__trigger-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.help-widget__trigger-sub {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.help-widget__panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 311px;
    min-height: 367px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.help-widget--open {
    width: 311px;
}

.help-widget--open .help-widget__trigger {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.help-widget--open .help-widget__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.help-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.help-widget__heading {
    font-family: var(--font-heading);
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-dark);
}

.help-widget__close {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.help-widget__close::before,
.help-widget__close::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-dark);
}

.help-widget__close::before {
    transform: rotate(45deg);
}

.help-widget__close::after {
    transform: rotate(-45deg);
}

.help-widget__actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.help-widget__action {
    border-radius: 6px;
    padding: 10px 16px;
    background: var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.help-widget__action-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.help-widget__action-top img {
    flex-shrink: 0;
}

.help-widget__action-sub {
    font-family: var(--font-body);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    color: rgba(0, 0, 0, 1);    
}

.help-widget__action:hover,
.help-widget__action:focus-visible,
.help-widget__action:active {
    background: var(--color-accent);
}

.help-widget__action:hover .help-widget__action-top,
.help-widget__action:hover .help-widget__action-sub,
.help-widget__action:focus-visible .help-widget__action-top,
.help-widget__action:focus-visible .help-widget__action-sub,
.help-widget__action:active .help-widget__action-top,
.help-widget__action:active .help-widget__action-sub {
    color: var(--color-white);
}

.help-widget__action:hover .help-widget__action-top img,
.help-widget__action:focus-visible .help-widget__action-top img,
.help-widget__action:active .help-widget__action-top img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.help-widget__response {
    border-radius: 6px;
    min-height: 33px;
    padding: 6px 12px;
    padding-right: 0;;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: #121212;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.help-widget__response::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   Info line — infinite partner ticker
   ----------------------------------------------------------------------------- */

.info-line {
    height: 120px;
    background: rgb(27, 47, 56);
    box-shadow: 0 16px 32px rgba(20, 14, 48, 0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.info-line__viewport {
    width: 100%;
    overflow: hidden;
}

.info-line__track {
    display: flex;
    width: max-content;
    animation: info-line-scroll 28s linear infinite;
    will-change: transform;
}

@media (max-width: 768px) {
    .info-line .info-line__track {
        animation-play-state: paused;
    }

    .info-line.info-line--running .info-line__track {
        animation-play-state: running;
    }
}

.info-line__group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-inline: 40px;
    flex-shrink: 0;
}

.info-line__logo {
    display: block;
    flex-shrink: 0;
}

.info-line__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.info-line__text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-white);
    white-space: nowrap;
}

@keyframes info-line-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* -----------------------------------------------------------------------------
   Services section
   ----------------------------------------------------------------------------- */

.services {
    background: #eaebeb;
    box-shadow: 0 16px 32px rgba(20, 14, 48, 0.12);
}

.services__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.services__intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.services__title {
    max-width: 647px;
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-dark);
}

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

.services__grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 14px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: var(--color-white);
    box-shadow: 0 5px 6.5px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card__image {
    width: 100%;
    height: 284px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card__surface {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
    padding: 24px 12px 16px;
    min-height: 227px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.service-card__content {
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    transition: color 0.35s ease;
}

.service-card__text {
    margin-top: 10px;
    color: var(--color-dark);
    transition: color 0.35s ease;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    /* width: 170px; */
    padding: 0 24px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    align-self: flex-start;
    margin-top: auto;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.service-card:hover {
    background: var(--color-green);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.service-card .service-card__surface {
    background: var(--color-white);
}

.service-card:hover .service-card__cta {
    transform: translateY(-1px);
}

.service-card:hover .service-card__surface {
    transform: translateY(-20px);
}

.service-card__image--interior {
    object-position: 30% center;
}

.service-card__image--drywall {
    object-position: 58% center;
}

.service-card__image--cabinet {
    object-position: 70% center;
}

.service-card__image--deck {
    object-position: 80% center;
}

.service-card__image--washing {
    object-position: 22% center;
}

/* -----------------------------------------------------------------------------
   Process section
   ----------------------------------------------------------------------------- */

.process {
    background: var(--color-green);
}

.process__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.process__intro {
    max-width: 499px;
    margin: 0 auto;
    text-align: center;
}

.process__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.process__lead {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
}

.process__grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.process-step,
.process-offer {
    border-radius: 16px;
    padding: 24px;
}

.process-step {
    min-height: 262px;
    background: var(--color-white);
    align-self: start;
}

.process-step--tall {
    min-height: 334px;
}

.process-step__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step__icon-img {
    width: 20px;
    height: 20px;
    display: block;
}

.process-step__num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: rgba(27, 47, 56, 0.4);
}

.process-step__line {
    height: 1px;
    margin-top: 32px;
    background: #eaebeb;
}

.process-step__body {
    margin-top: 32px;
}

.process-step__title {
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-dark);
}

.process-step__text {
    margin-top: 12px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.process-offer {
    min-height: 262px;
    background: var(--color-accent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    align-self: start;
}

.process-offer__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 33px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.process-offer__text {
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.process-offer__cta {
    width: max-content;
    height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    background: var(--color-green);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

/* -----------------------------------------------------------------------------
   Projects slider section
   ----------------------------------------------------------------------------- */

.projects {
    background: var(--color-white);
}

.projects__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.projects__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.projects__title {
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-dark);
}

.projects__lead {
    margin-top: 16px;
    max-width: 301px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
}

.projects__controls {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.projects__control {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.projects__control:hover {
    filter: brightness(1.07);
}

.projects__viewport {
    margin-top: 47px;
    /* overflow: hidden; */
}

.projects__track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.45s ease;
}

.projects__slide {
    width: 660px;
    height: 440px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    flex: 0 0 660px;
    display: block;
}

.projects__cta {
    display: flex;
    margin: 32px auto 0;
    width: 213px;
    height: 48px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

/* -----------------------------------------------------------------------------
   Reviews slider section
   ----------------------------------------------------------------------------- */

.reviews {
    background: var(--color-white);
}

.reviews__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.reviews__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.reviews__intro {
    max-width: 390px;
}

.reviews__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.reviews__lead {
    margin-top: 16px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.reviews__controls {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reviews__control {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews__control:hover {
    filter: brightness(1.07);
}

.reviews__viewport {
    margin-top: 40px;
}

.reviews__track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.45s ease;
}

.review-slide {
    display: grid;
    grid-template-columns: 380px 400px;
    gap: 10px;
    flex: 0 0 790px;
    height: 500px;
}

.review-slide__photo {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.review-slide__card {
    height: 500px;
    border-radius: 16px;
    background: #f8f8f8;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.review-slide__content {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.review-slide__stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-slide__text {
    font-family: var(--font-body);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.review-slide__author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-slide__name {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
}

.review-slide__service {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

/* -----------------------------------------------------------------------------
   Why choose us — bento grid
   ----------------------------------------------------------------------------- */

.why-choose {
    background-color: var(--color-gray);
    box-shadow: 0 16px 32px rgba(20, 14, 48, 0.12);
}

.why-choose__container {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
}

.why-choose__head {
    text-align: center;
    max-width: 636px;
    margin-inline: auto;
}

.why-choose__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.why-choose__lead {
    margin-top: var(--space-5xl);
    margin-inline: auto;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.why-choose__grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: minmax(0, 328fr) minmax(0, 329fr) minmax(0, 673fr);
    grid-template-rows: minmax(220px, auto) minmax(200px, auto);
    gap: 16px;
    align-items: stretch;
}

.why-choose__spotlight {
    grid-column: 1;
    /* Explicit line numbers are more reliable than span in older WebKit grid implementations */
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-8xl);
    padding: var(--space-7xl);
    border-radius: 12px;
    background: var(--color-green);
    color: var(--color-white);
}

.why-choose__spotlight-head {
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
}

.why-choose__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.why-choose__spotlight-label {
    margin: 0;
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-white);
}

.why-choose__spotlight-text {
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-white);
}

.why-choose__card {
    padding: var(--space-7xl);
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 5px 6.5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose__card-title {
    margin: 0 0 var(--space-4xl);
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
}

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

.why-choose__card--premium {
    grid-column: 2;
    grid-row: 1;
}

.why-choose__card--warranty {
    grid-column: 3;
    grid-row: 1;
    min-height: 0;
    align-self: stretch;
}

.why-choose__warranty-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-7xl);
    flex: 1;
    min-height: 0;
}

.why-choose__warranty-copy {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    max-width: 310px;
}

.why-choose__warranty-copy .why-choose__card-title {
    margin-bottom: var(--space-4xl);
}

.why-choose__clients {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    max-width: 127px;
}

.why-choose__clients-avatars {
    width: 120px;
    height: auto;
    display: block;
}

.why-choose__clients-caption {
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.why-choose__clients-num {
}

.why-choose__card--pricing {
    grid-column: 2;
    grid-row: 2;
}

.why-choose__photo-wrap {
    grid-column: 3;
    grid-row: 2;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 6.5px rgba(0, 0, 0, 0.03);
    background: #e3ecdf;
    min-height: 200px;
    align-self: stretch;
}

.why-choose__photo {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: block;
}

.why-choose__cta {
    display: flex;
    margin: 40px auto 0;
    width: max-content;
    min-height: 48px;
    padding-inline: var(--space-7xl);
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    /* line-height: 1.3; */
    text-decoration: none;
}

.why-choose__cta:hover {
    filter: brightness(1.06);
}

/* -----------------------------------------------------------------------------
   Free estimate steps section
   ----------------------------------------------------------------------------- */

.estimate {
    background: var(--color-green);
}

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

.estimate__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 321px 258px 258px;
    gap: 10px;
}

.estimate__intro {
    grid-column: 1 / span 2;
    grid-row: 1;
    max-width: 538px;
    padding-top: 2px;
}

.estimate__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.estimate__lead {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
    max-width: 538px;
}

.estimate-card {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.estimate-card--step {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-white);
}

.estimate-card--tall {
    height: 100%;
}

.estimate-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.estimate-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.estimate-card__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.estimate-card--01 {
    grid-column: 3;
    grid-row: 1;
}

.estimate-card--02 {
    grid-column: 4;
    grid-row: 1;
}

.estimate-card--03 {
    grid-column: 1;
    grid-row: 2 / span 2;
}

.estimate-card--04 {
    grid-column: 2;
    grid-row: 2;
}

.estimate-card--05 {
    grid-column: 2;
    grid-row: 3;
}

.estimate-photo {
    grid-column: 3;
    grid-row: 2 / span 2;
    border-radius: 12px;
    overflow: hidden;
}

.estimate-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.estimate-cta {
    grid-column: 4;
    grid-row: 2 / span 2;
    border-radius: 10px;
    background: var(--color-accent);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.estimate-cta__text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
    max-width: 278px;
}

.estimate-cta__btn {
    width: max-content;
    min-height: 48px;
    padding-inline: 24px;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.estimate-cta__btn img {
    filter: invert(1);
}

.estimate-cta__btn:hover {
    filter: brightness(0.97);
}

/* -----------------------------------------------------------------------------
   Areas we serve section
   ----------------------------------------------------------------------------- */

.areas {
    background: var(--color-white);
}

.areas__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.areas__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.areas__intro {
    max-width: 397px;
}

.areas__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.areas__lead {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.areas__cta {
    min-height: 48px;
    padding-inline: 24px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.areas__cta:hover {
    filter: brightness(1.06);
}

.areas__layout {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 367px minmax(0, 1fr);
    gap: 12px;
    min-height: 571px;
}

.areas-card {
    border-radius: 12px;
    background: var(--color-green);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.areas-card__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.areas-card__subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.areas-card__list {
    list-style: disc;
    margin: 0;
    padding-left: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.areas-card__item {
    color: var(--color-white);
}

.areas-card__item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.areas-card__item span {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
    color: var(--color-white);
}

.areas-card__item a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.areas-card__nearby {
    margin: 0;
    padding-left: 26px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.areas-map {
    border-radius: 16px;
    overflow: hidden;
}

.areas-map__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* -----------------------------------------------------------------------------
   Service areas list section
   ----------------------------------------------------------------------------- */

.service-areas-list {
    background: var(--color-white);
}

.service-areas-list__container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-areas-list__heading {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.service-areas-list__rows {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.service-areas-list__row {
    border-bottom: 1px solid #eaecec;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.service-areas-list__row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-areas-list__city {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.service-areas-list__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas-list__chip {
    /* min-height: 48px; */
    padding: 12px 20px;
    border-radius: 6px;
    background: #eaebeb;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.service-areas-list__chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   FAQ section
   ----------------------------------------------------------------------------- */

.faq {
    background: var(--color-gray);
}

.faq__container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq__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;
    max-width: 300px;    
    color: var(--color-dark);
    margin: 0 auto;
}

.faq__list {
    margin: 50px auto 0;
    max-width: 951px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    background: var(--color-white);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    cursor: pointer;
}

.faq-item__main {
    flex: 1;
    min-width: 0;
}

.faq-item:not(.faq-item--open) .faq-item__answer {
    display: none;
}

.faq-item__question {
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-dark);
}

.faq-item__answer {
    margin-top: 10px;
    max-width: 743px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.faq-item__toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    width: 16.5px;
    height: 1.5px;
    background: var(--color-green);
    transition: transform 0.2s ease;
}

.faq-item__icon::after {
    transform: rotate(90deg);
}

.faq-item--open .faq-item__icon::after {
    transform: rotate(0deg) scaleX(0);
}

/* -----------------------------------------------------------------------------
   Contact quote section
   ----------------------------------------------------------------------------- */

.contact-quote {
    background: var(--color-green);
}

.contact-quote--light {
    background: rgba(255, 255, 255, 1);
}

.contact-quote__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-quote__layout {
    display: grid;
    grid-template-columns: 1fr 779px;
    gap: 24px;
    align-items: start;
}

.contact-quote__left {
    min-height: 617px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-quote__intro {
    max-width: 373px;
}

.contact-quote__title {
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-white);
}

.contact-quote__lead {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
    max-width: 373px;
}

.contact-quote__details {
    display: flex;
    flex-direction: column;
    gap: 29px;
    max-width: 387px;
}

.contact-detail__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-white);
}

.contact-detail__label img {
    filter: invert(53%) sepia(97%) saturate(2141%) hue-rotate(358deg) brightness(102%) contrast(103%);
}

.contact-detail__value {
    margin-top: 10px;
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;

    color: var(--color-white);
}

.contact-quote--light .contact-quote__title,
.contact-quote--light .contact-quote__lead,
.contact-quote--light .contact-detail__label,
.contact-quote--light .contact-detail__value {
    color: var(--color-dark);
}

.contact-form {
    border-radius: 12px;
    background: #f8f8f8;
    padding: 50px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

    color: var(--color-dark);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #eaebeb;
    border-radius: 6px;
    background: var(--color-white);
    padding: 15px 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    outline: none;
}

.contact-form__field select {
    appearance: none;
    background-image: url("./image/icons/arrow-form-select.svg");
    background-position: right 16px center;
    background-size: 10px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.contact-form__field textarea {
    min-height: 95px;
    resize: vertical;
}

.contact-form__submit {
    width: 100%;
    min-height: 48px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.contact-form__submit:hover {
    filter: brightness(1.05);
}

.contact-form__note {
    margin-top: -2px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
    
    color: var(--color-dark);
}

.form-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 6px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    animation: formStatusFadeIn 0.22s ease;
}

.form-status--info {
    color: #2f4f60;
    background: rgba(47, 79, 96, 0.08);
    border-color: rgba(47, 79, 96, 0.2);
}

.form-status--success {
    color: #166534;
    background: rgba(22, 101, 52, 0.1);
    border-color: rgba(22, 101, 52, 0.24);
}

.form-status--error {
    color: #b42318;
    background: rgba(180, 35, 24, 0.1);
    border-color: rgba(180, 35, 24, 0.24);
}

.form-field-error {
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.35;
    color: #c62828;
}

.contact-form__field .is-invalid,
.estimate-modal__field .is-invalid {
    border-color: #c62828;
}

.contact-form__submit:disabled,
.estimate-modal__submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.contact-form__submit.is-loading,
.estimate-modal__submit.is-loading {
    position: relative;
}

.contact-form__submit.is-loading::after,
.estimate-modal__submit.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: formSpin 0.75s linear infinite;
}

@keyframes formSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes formStatusFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------------------------------------
   Estimate modal
   ----------------------------------------------------------------------------- */

.estimate-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.estimate-modal[hidden] {
    display: none;
}

.estimate-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 19, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.estimate-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    background: var(--color-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.estimate-modal.estimate-modal--open .estimate-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.estimate-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f2f4f4;
    color: #697176;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: .5;
}

.estimate-modal__close:hover {
    color: var(--color-dark);
}

.estimate-modal__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.estimate-modal__content[hidden] {
    display: none;
}

.estimate-modal__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.estimate-modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    text-align: center;
}

.estimate-modal__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-modal__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    text-align: center;
}

.estimate-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.estimate-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.estimate-modal__field {
    display: block;
}

.estimate-modal__field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    padding: 15px 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    outline: none;
}

.estimate-modal__field input:focus {
    border-color: #cfd4d6;
}

.estimate-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.estimate-modal__submit {
    width: 100%;
    min-height: 48px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.estimate-modal__submit:hover {
    filter: brightness(1.05);
}

.estimate-modal__note {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    text-align: center;
}

.estimate-modal__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 6px;
}

.estimate-modal__success[hidden] {
    display: none;
}

.estimate-modal__success-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(27, 47, 56, 0.08);
    color: var(--color-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.estimate-modal__success-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.estimate-modal__success-text {
    max-width: 370px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.estimate-modal__done {
    margin-top: 8px;
    min-height: 46px;
    min-width: 160px;
    padding-inline: 24px;
    border-radius: 6px;
    background: var(--color-brand);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.estimate-modal__done:hover {
    filter: brightness(1.06);
}

/* -----------------------------------------------------------------------------
   SEO copy section
   ----------------------------------------------------------------------------- */

.seo-copy {
    background: var(--color-white);
}

.seo-copy__container {
    padding-top: 100px;
    padding-bottom: 107px;
}

.seo-copy__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.seo-copy__card {
    margin-top: 32px;
    border-radius: 16px;
    background: #f8f8f8;
    padding: 32px;
}

.seo-copy__text {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seo-copy__card.seo-copy__card--expanded .seo-copy__text {
    line-clamp: unset;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.seo-copy__toggle {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-dark);
}

.seo-copy__toggle-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -2px;
}

.seo-copy__card.seo-copy__card--expanded .seo-copy__toggle-arrow {
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* -----------------------------------------------------------------------------
   Footer section
   ----------------------------------------------------------------------------- */

.site-footer {
    background: #000;
}

.site-footer__container {
    padding-top: 80px;
    padding-bottom: 34px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 120px minmax(280px, 1fr) auto auto auto;
    gap: 42px;
    align-items: start;
}

.site-footer__brand {
    display: inline-flex;
    width: 79px;
    line-height: 0;
}

.site-footer__contact-col {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.site-footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: #eaebeb;
}

.site-footer__label img {
    filter: invert(53%) sepia(97%) saturate(2141%) hue-rotate(358deg) brightness(102%) contrast(103%);
}

.site-footer__value {
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    
    color: var(--color-white);
}

.site-footer__cta {
    margin-top: 10px;
    min-height: 48px;
    width: 213px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.site-footer__cta:hover {
    filter: brightness(1.05);
}

.site-footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__nav-col--locations {
    padding-left: 100px;
}

.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-self: flex-start;
    transform: translateX(0);
    transition: transform 0.22s ease, color 0.22s ease;
}

.site-footer__nav-col a:hover {
    color: var(--color-accent);
    transform: translateX(10px);
}

.site-footer__dropdown {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}

.site-footer__dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
}

.site-footer__dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer__dropdown-trigger::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}

.site-footer__dropdown-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    width: 248px;
    padding: 16px;
    border-radius: 8px;
    background: rgb(27, 47, 56);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 20;
}

.site-footer__dropdown:hover .site-footer__dropdown-panel,
.site-footer__dropdown:focus-within .site-footer__dropdown-panel {
    display: flex;
}

.site-footer__dropdown-panel a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-white);
    transform: translateX(0);
    transition: transform 0.22s ease, color 0.22s ease;
}

.site-footer__dropdown-panel a:hover {
    color: var(--color-white);
    text-decoration: underline;
    transform: translateX(10px);
}

.site-footer__nav-title {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: rgba(234, 235, 235, 1)
}

.site-footer__nav-col--wide {
    width: 256px;
}

.site-footer__bottom {
    margin-top: 97px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-footer__bottom-left {
    display: inline-flex;
    align-items: center;
    gap: 110px;
}

.site-footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.2;
    text-decoration: none;
}

.site-footer__credit span {
    max-width: 100px;
    font-weight: 400;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;

}

.site-footer__credit-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: rgba(21, 21, 21, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eaebeb;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.site-footer__credit-icon img {
    display: block;
    width: 16px;
    height: 17px;
}

.site-footer__legal {
    display: inline-flex;
    align-items: center;
    gap: 85px;
}

.site-footer__legal a,
.site-footer__rights {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__rights {
    justify-self: end;
    text-align: right;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   Service included section
   ----------------------------------------------------------------------------- */

.service-included {
    background: var(--color-green);
}

.service-included__container {
    padding-top: 100px;
    padding-bottom: 40px;
}

.service-included__intro {
    max-width: 546px;
    margin: 0 auto;
    text-align: center;
}

.service-included__title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.service-included__lead {
    margin-top: 16px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.service-included__grid {
    margin-top: 71px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.service-included-card {
    border-radius: 10px;
    background: var(--color-white);
    min-height: 338px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.service-included-card__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-included-card__icon-wrap img {
    display: block;
}

.service-included-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-included-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.service-included-card__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

/* -----------------------------------------------------------------------------
   Local service included section
   ----------------------------------------------------------------------------- */

.local-service-included {
    background: var(--color-white);
}

.local-service-included__container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.local-service-included__intro {
    max-width: 571px;
    margin: 0 auto;
    text-align: center;
}

.local-service-included__title {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.local-service-included__lead {
    margin: 16px 0 0;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.local-service-included__grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 59px;
}

.local-service-included-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.local-service-included-card__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-bottom: 1px solid #eaecec;
    padding-bottom: 31px;
}

.local-service-included-card__number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1b2f38;
    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%;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.local-service-included-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.local-service-included-card__title {
    margin: 0;
    color: var(--color-dark);
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 109.00000000000001%;
    letter-spacing: -2%;
    
}

.local-service-included-card__text {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

/* -----------------------------------------------------------------------------
   Service protection section
   ----------------------------------------------------------------------------- */

.service-protection {
    background: var(--color-white);
    box-shadow: 0 16px 32px rgba(20, 14, 48, 0.12);
}

.service-protection__container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.service-protection__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.service-protection__content-wrap {
    border-radius: 16px;
    background: #eaebeb;
    padding: 40px;
    min-height: 626px;
    display: flex;
}

.service-protection__content {
    max-width: 592px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 100%;
}

.service-protection__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.service-protection__text {
    max-width: 570px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
    color: var(--color-dark);
}

.service-protection__media-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 626px;
}

.service-protection__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-protection__note {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 16px;
    background: var(--color-green);
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-protection__note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    margin-top: 8px;
}

.service-protection__note-text {
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    color: var(--color-white);
}

/* -----------------------------------------------------------------------------
   Service why team section
   ----------------------------------------------------------------------------- */

.service-why-team {
    position: relative;
    min-height: 100svh;
    background: var(--color-green);
    overflow: hidden;
}

.service-why-team__bg {
    position: absolute;
    inset: 0;
}

.service-why-team__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-why-team__container {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 40px;
}

.service-why-team__card {
    width: 100%;
    max-width: 540px;
    min-height: 332px;
    border-radius: 16px;
    background: var(--color-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.service-why-team__title {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 470px;
}

.service-why-team__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 475px;
}

.service-why-team__chip {
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.service-why-team__chip span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   About hero section
   ----------------------------------------------------------------------------- */

.about-hero {
    background: #ffffff;
    overflow: visible;
}

.about-hero .hero__shell {
    padding-bottom: 20px;
}

.about-hero .hero-header {
    background: #1b2f38;
}

.about-hero .hero-nav__link,
.about-hero .hero-nav__trigger,
.about-hero .hero-phone {
    color: var(--color-white);
}

.about-hero .hero-phone:hover,
.about-hero .hero-nav__link:hover,
.about-hero .hero-nav__trigger:hover {
    color: var(--color-white);
}

.about-hero .btn--green {
    background-color: #ff5b04;
    color: var(--color-white);
}

.about-hero .btn--green::before {
    background-color: var(--color-white);
}

.contact-page-header {
    background: #ffffff;
    overflow: visible;
}

.contact-page-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    overflow: visible;
}

.contact-page-header .hero-header {
    background: #1b2f38;
}

.contact-page-header .hero-nav__link,
.contact-page-header .hero-nav__trigger,
.contact-page-header .hero-phone {
    color: var(--color-white);
}

.contact-page-header .hero-phone:hover,
.contact-page-header .hero-nav__link:hover,
.contact-page-header .hero-nav__trigger:hover {
    color: var(--color-white);
}

.contact-page-header .btn--green {
    background-color: #ff5b04;
    color: var(--color-white);
}

.contact-page-header .btn--green::before {
    background-color: var(--color-white);
}

@media (max-width: 768px) {
    .contact-page-header__inner {
        padding: 12px;
    }
}

.contacts-page .contact-quote__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contacts-page .contact-quote__intro {
    max-width: 90%;
}

.contacts-page .contact-quote__lead {
    max-width: none;
}

.contacts-page .areas {
    background: rgba(27, 47, 56, 1);
}

.contacts-page .areas__title,
.contacts-page .areas__lead {
    color: rgba(255, 255, 255, 1);
}

.contacts-page .areas-card {
    background: rgba(255, 255, 255, 1);
}

.contacts-page .areas-card__subtitle,
.contacts-page .areas-card__item,
.contacts-page .areas-card__item span,
.contacts-page .areas-card__nearby {
    color: var(--color-dark);
}

.reviews-page-hero .hero__shell {
    min-height: auto;
}

.reviews-page-intro {
    background: var(--color-white);
}

.reviews-page-intro__container {
    padding-top: 40px;
    /* padding-bottom: 80px; */
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    position: relative;
}

.reviews-page-intro__main {
    max-width: 515px;
    display: flex;
    flex-direction: column;
    gap: 32px;

    align-items: center;
    text-align: center;
    justify-self: center;
    width: 100%;
}

.reviews-page-intro__title {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.reviews-page-intro__lead {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.reviews-page-intro__bottom {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 40px;
    bottom: 0;
}

.reviews-page-intro__chips {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
}

.reviews-page-intro__chips .hero__eyebrow-inner {
    background: rgba(27, 47, 56, 0.6);
}

.reviews-page-intro__chips .hero__eyebrow-text {
    color: var(--color-white);
}

.hero-card--reviews-dark {
    background: #1b2f38;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* max-width: 234px; */
    height: 70px;
    padding-left: 10px;
    gap: 12px;
    /* width: 193px; */
}

.hero-card--reviews-dark .hero-stars img {
    filter: brightness(0) invert(1);
}

.hero-card--reviews-dark .hero-card__reviews-meta {
    color: rgba(255, 255, 255, 0.7);
}

.hero-card--reviews-dark .hero-card__reviews-title {
    color: var(--color-white);
}

.about-hero-intro {
    padding-top: 20px;
    padding-bottom: 0;
}

.about-hero-intro__container {
    display: grid;
    grid-template-columns: minmax(0, 521px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    height: calc(100svh - 100px - 20px);
    min-height: 0;
    justify-items: center;
    justify-content: space-between;
}
.about-hero-intro__content {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 24px;
    align-items: center;
    height: 100%;
}

.about-hero-intro__main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    min-height: 0;
    align-items: flex-start;
}

.about-hero-intro__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-hero-intro__title {
    margin: 0;
    color: var(--color-dark);
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 102%;
    letter-spacing: -1%;
    
}

.about-hero-intro__lead {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-hero-intro__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.about-hero-intro__chip {
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(27, 47, 56, 0.6);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-hero-intro__chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.about-hero-intro__media {
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    position: relative;
    justify-self: end;
}

.about-hero-intro__bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-hero-intro__widget {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 251px;
    height: 70px;
    z-index: 2;
}

.about-hero-intro__widget .help-widget {
    width: 251px;
    height: 70px;
}

.about-hero-intro__widget .help-widget__trigger {
    width: 218px;
    min-height: 70px;
    height: 70px;
    padding: 0px 16px;
    justify-content: flex-start;
}

.about-hero-intro__widget .help-widget__trigger-copy {
    flex: 1 1 auto;
    min-width: 0;
}

/* -----------------------------------------------------------------------------
   About trust section
   ----------------------------------------------------------------------------- */

.about-trust {
    background: var(--color-green);
}

.about-trust__container {
    padding-top: 120px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: minmax(0, 672fr) minmax(0, 680fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "eyebrow intro"
        "image cards";
    column-gap: 8px;
    row-gap: 50px;
    align-items: start;
}

.about-trust__eyebrow {
    grid-area: eyebrow;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-trust__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.about-trust__intro {
    grid-area: intro;
    max-width: 508px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-trust__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-trust__lead {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-trust__image-wrap {
    grid-area: image;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    border-radius: 16px;
    overflow: hidden;
    border: 8px solid var(--color-white);
    aspect-ratio: 672 / 372;
    max-height: 372px;
    display: block;
    line-height: 0;
}

.about-trust__image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-trust__cards {
    grid-area: cards;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-trust-card {
    border-radius: 16px;
    background: var(--color-white);
    padding: 24px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.about-trust-card__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-trust-card__icon-wrap img {
    width: 20px;
    height: 20px;
}

.about-trust-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-trust-card__title {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-trust-card__text {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

/* -----------------------------------------------------------------------------
   About owner section (Taras)
   ----------------------------------------------------------------------------- */

.about-owner {
    background: var(--color-white);
    color: var(--color-dark);
}

.about-owner__container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-owner__intro {
    max-width: 535px;
    margin: 0 auto 59px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.about-owner__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.about-owner__lead {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.about-owner__layout {
    display: grid;
    grid-template-columns: minmax(0, 441px) minmax(0, 462px) minmax(0, 441px);
    gap: 8px;
    justify-content: center;
    align-items: start;
}

.about-owner__aside--gray {
    min-height: 531px;
    padding: 24px;
    border-radius: 12px;
    background: #eaebeb;
    box-shadow: 0 9px 6.5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.about-owner__aside-text {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.about-owner__photo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 531px;
    background: #d9d9d9;
}

.about-owner__photo {
    width: 100%;
    height: 100%;
    min-height: 531px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-owner__badge {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    white-space: nowrap;
    text-align: center;
    width: calc(100% - 20px);
    justify-content: center;
}

.about-owner__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.about-owner__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-owner-card {
    border-radius: 12px;
    padding: 24px;
    min-height: 261px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.about-owner-card--accent {
    background: var(--color-accent);
    box-shadow: 0 9px 6.5px rgba(0, 0, 0, 0.03);
}

.about-owner-card--dark {
    background: var(--color-green);
}

.about-owner-card__body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-owner-card__body--on-accent {
    color: var(--color-dark);
}

.about-owner-card__body--on-dark {
    color: var(--color-white);
}

.about-owner-card__footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-owner-card__heading {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-owner-card__heading--dark {
    color: var(--color-dark);
}

.about-owner-card__heading--light {
    color: var(--color-white);
}

.about-owner-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-owner-card__icon--on-dark {
    background: var(--color-green);
}

.about-owner-card__icon--on-accent {
    background: var(--color-accent);
}

/* -----------------------------------------------------------------------------
   About color consultation section
   ----------------------------------------------------------------------------- */

.about-color {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--color-white);
}

.about-color__card {
    position: relative;
    border-radius: 16px;
    background: #eaebeb;
    padding: 100px 40px 91px;
    overflow: hidden;
}

.about-color__decor {
    position: absolute;
    top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: repeat(2, 50px);
    gap: 4px;
}

.about-color__decor span {
    border-radius: 8px;
    display: block;
}

.about-color__decor span:nth-child(1) {
    background: #1b2f38;
}

.about-color__decor span:nth-child(2) {
    background: #7d929c;
}

.about-color__decor span:nth-child(3) {
    background: #2d6c88;
}

.about-color__decor--left {
    left: 40px;
}

.about-color__decor--right {
    right: 40px;
    transform: rotate(90deg);
}

.about-color__title {
    margin: 0 auto;
    max-width: 516px;
    color: var(--color-dark);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-color__center {
    margin-top: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-color__image {
    width: 333px;
    height: 321px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-color__cta {
    width: 333px;
    padding: 0;
}

.about-color__copy {
    margin-top: -96px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.about-color__copy p {
    margin: 0;
    max-width: 366px;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-color__brands {
    margin-top: 50px;
}

.about-color__brands-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.about-color__brands-title {
    margin: 50px 0 32px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-color__brands-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-color__brands-viewport::before,
.about-color__brands-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.about-color__brands-viewport::before {
    left: 0;
    background: linear-gradient(to right, #eaebeb 0%, rgba(234, 235, 235, 0) 100%);
}

.about-color__brands-viewport::after {
    right: 0;
    background: linear-gradient(to left, #eaebeb 0%, rgba(234, 235, 235, 0) 100%);
}

.about-color__brands-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: info-line-scroll 42s linear infinite;
    will-change: transform;
}

.about-color__brands-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.about-color__brands-group img {
    height: 43px;
    width: auto;
    display: block;
}

/* Expert Advice (blog) — about page */
.expert-advice {
    background: #fff;
    padding: 100px 0;
}

.expert-advice__container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.expert-advice__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.expert-advice__title {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
}

.expert-advice__cta {
    display: inline-flex;
    width: 163px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.expert-advice__cta--top {
    justify-content: center;
}

.expert-advice__cta--bottom {
    display: none;
    margin: 40px auto 0;
    justify-content: center;
}

.expert-advice__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.expert-advice-card {
    margin: 0;
}

.expert-advice-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.expert-advice-card__link:hover .expert-advice-card__heading {
    text-decoration: underline;
}

.expert-advice-card__media {
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    margin-bottom: 16px;
}

.expert-advice-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-advice-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expert-advice-card__top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-advice-card__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-advice-card__category {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #000;
}

.expert-advice-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #000;
}

.expert-advice-card__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    flex-shrink: 0;
}

.expert-advice-card__heading {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #000;
}

.expert-advice-card__excerpt {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

/* -----------------------------------------------------------------------------
   Blog page
   ----------------------------------------------------------------------------- */

.blog-hero {
    background: #fff;
}

.blog-hero .hero__shell {
    min-height: auto;
}

.blog-hero-intro {
    padding: 80px 0 58px;
}

.blog-hero-intro__container {
    display: flex;
    justify-content: center;
}

.blog-hero-intro__content {
    width: 100%;
    max-width: 572px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-hero-intro__title {
    margin: 0;
    color: #000;
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 102%;
    letter-spacing: -1%;
    text-align: center; 
}

.blog-hero-intro__lead {
    margin: 0;
    color: #000;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.blog-articles {
    background: #fff;
    padding: 0 0 100px;
}

.blog-articles__container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.blog-articles__controls {
    display: grid;
    grid-template-columns: 416px 416px;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.blog-articles__search {
    height: 56px;
    border-radius: 6px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
}

.blog-articles__search {
    gap: 12px;
    padding: 0 20px;
}

.blog-articles__search img {
    width: 20px;
    height: 20px;
    opacity: 0.55;
    flex-shrink: 0;
    display: block;
}

.blog-articles__search input {
    width: 100%;
    border: 0;
    background: transparent;
    outline: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.blog-articles__search input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.blog-theme-filter {
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.blog-theme-filter__trigger {
    width: -webkit-fill-available;
    height: 56px;
    border: 0;
    border-radius: 6px;
    background: #f8f8f8;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    cursor: pointer;
}

.blog-theme-filter__arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
    transition: transform 0.2s ease;
}

.blog-theme-filter__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    padding: 8px;
    z-index: 20;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-theme-filter__menu[hidden] {
    display: none;
}

.blog-theme-filter__option {
    display: block;
    width: -webkit-fill-available;
    text-align: left;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    cursor: pointer;
}

.blog-theme-filter__option:hover {
    background: rgba(0, 0, 0, 0.04);
}

.blog-theme-filter__option.is-active {
    background: rgba(255, 91, 4, 0.12);
    color: #ad3f00;
    font-weight: 600;
}

.blog-theme-filter.is-open .blog-theme-filter__arrow {
    transform: rotate(180deg);
}

.blog-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
}

.blog-articles__empty {
    margin: 24px 0 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

.blog-articles__load-more {
    display: flex;
    width: 115px;
    min-height: 40px;
    margin: 50px auto 0;
    padding: 0;
}

.blog-articles__load-more[hidden] {
    display: none !important;
}

/* -----------------------------------------------------------------------------
   Blog article page
   ----------------------------------------------------------------------------- */

.blog-article {
    background: #fff;
    padding: 100px 0 80px;
}

.blog-article__container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
}

.blog-article__hero {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 680px);
    gap: 40px;
    align-items: start;
}

/* Allow sticky media block to stick to viewport on desktop blog article template. */
body.blog-article-page main {
    overflow: visible;
}

.blog-article__media {
    position: sticky;
    top: 15px;
}

.blog-article__media > img {
    width: 100%;
    height: 467px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.blog-article__cta {
    margin-top: 12px;
    width: 100%;
    min-height: 48px;
    padding: 0;
}

.blog-article__intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.3;
    color: #000;
}

.blog-article__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(20, 14, 48, 0.72);
}

.blog-article__title {
    margin: 0;
    font-family: Cabinet Grotesk;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 102%;
    letter-spacing: -1%;
    
    color: #000;
}

.blog-article__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.blog-article__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-article__content h3 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: #000;
}

.blog-article__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.blog-article__highlight {
    margin-top: 24px;
    border-radius: 16px;
    background: #1b2f38;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-article__highlight-image img {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.blog-article__highlight-copy h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 32px;
    line-height: 1.15;
}

.blog-article__highlight-copy p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.expert-advice--related .expert-advice__cta {
    display: none;
}

/* -----------------------------------------------------------------------------
   Project gallery page
   ----------------------------------------------------------------------------- */

.project-gallery-hero .hero__shell {
    min-height: auto;
    padding-bottom: 0;
}

/*
 * Next section (.project-gallery) uses .project-gallery__theme-filter { z-index: 50 }.
 * Without a higher stacking context on the hero, the gallery paints on top and clips the nav dropdown.
 */
.about-hero.project-gallery-hero {
    position: relative;
    z-index: 100;
}

.project-gallery {
    background: #fff;
    padding: 100px 0 80px;
}

.project-gallery__container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.project-gallery__intro {
    max-width: 515px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-gallery__title {
    margin: 0;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.project-gallery__lead {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

.project-gallery__theme-filter {
    margin: 50px auto 0;
    width: 416px;
    z-index: 50;
    isolation: isolate;
}

.project-gallery__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-gallery-card {
    position: relative;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.04);
}

.project-gallery-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.project-gallery-card__badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 20px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

.project-gallery-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5b04;
    flex-shrink: 0;
}

.project-gallery__load-more {
    display: flex;
    width: 115px;
    min-height: 40px;
    margin: 32px auto 0;
    padding: 0;
}

.project-gallery__empty {
    margin: 20px 0 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

.service-hero-intro__primary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-location-hero .service-hero-intro__stack {
    max-width: none;
    margin: 339px 0 0;
    padding-top: 0;
    align-items: flex-end;
    gap: 32px;
    display: flex;
}

.service-location-hero .service-hero-intro__primary {
    max-width: 561px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-location-hero .service-hero-intro__deck--split {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
}

.service-location-hero .service-hero-intro__deck--split > div:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1 1 auto;
}

.service-location-hero .service-hero-intro__contact-row {
    margin-left: 0;
    align-items: flex-end;
    flex: 0 0 auto;
}

.service-areas-hero .service-hero-intro__stack {
    max-width: none;
    margin: 339px 0 0;
    padding-top: 0;
    align-items: flex-end;
    gap: 32px;
    display: flex;
}

.service-areas-hero .service-hero-intro__primary {
    max-width: 593px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-areas-hero .service-hero-intro__deck--split {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
}

.service-areas-hero .service-hero-intro__deck--split > div:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1 1 auto;
}

.service-areas-hero .service-hero-intro__contact-row {
    margin-left: 16px;
    align-items: flex-end;
    flex: 0 0 auto;
}

.reviews-showcase {
    padding: 40px 0 80px;
}

.reviews-showcase__container {
    width: min(1360px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-showcase-row {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    column-gap: 48px;
    align-items: stretch;
    padding-right: 0;
}

.review-showcase-row__content {
    display: flex;
    flex-direction: column;
}

.review-showcase-row__location {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.2;
}

.review-showcase-row__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-orange);
}

.review-showcase-row__text {
    margin: 16px 0 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: -2%;
    
}

.review-showcase-row__author-block {
    margin-top: auto;
    padding-top: 32px;
}

.review-showcase-row__author {
    margin: 0;
    font-family: Cabinet Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    
}

.review-showcase-row__service {
    margin: 4px 0 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: -2%;
    
}

.review-showcase-row__carousel {
    position: relative;
    min-width: 0;
    min-height: 420px;
    height: 420px;
}

.review-showcase-row__viewport {
    overflow: hidden;
    height: 100%;
}

.review-showcase-row__track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    will-change: transform;
    height: 100%;
}

.review-showcase-slide {
    flex: 0 0 420px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 14, 48, 0.04);
    border: 1px solid rgba(20, 14, 48, 0.08);
    margin: 0;
}

.review-showcase-slide--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-showcase-slide--quote {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.review-showcase-slide__quote {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
}

.review-showcase-slide__author {
    margin: auto 0 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}

.review-showcase-slide__service {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.3;
}

.review-showcase-row__controls {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.review-showcase-row__control {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 6px;
    background: #1b2f38;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-showcase-row__control img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}