@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   ROOT / DESIGN SYSTEM
========================================================= */

:root {
    --font-primary: "Inter", sans-serif;

    --header-footer: rgba(24, 34, 41, 0.94);

    --navy: #334752;
    --navy-deep: #283a45;

    --warm-white: #f7f6f2;
    --white: #ffffff;

    --technical-gray: #64747d;
    --light-gray: #dce0e0;

    --border: rgba(24, 34, 41, 0.18);

    --amber: #d58a35;
    --amber-dark: #b86f22;
    --amber-light: #e5a85a;

    --text: #182229;
    --text-muted: #667176;

    --max-width: 1280px;

    --section-padding: clamp(5rem, 9vw, 9rem);

    --transition-fast: 180ms ease;
    --transition-medium: 300ms ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--warm-white);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

::selection {
    background: var(--amber);
    color: var(--white);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    max-width: 900px;
    font-size: clamp(2.8rem, 3.7vw, 0.9rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.5rem);
}

h3 {
    font-weight: 400;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    /* letter-spacing: -0.025em; */
}

p {
    margin-bottom: 1rem;
}

.eyebrow {
    max-width: 370px;
    margin: 35px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    background-color: var(--amber);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: var(--navy-deep);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-line {
    display: block;
    width: clamp(50px, 10vw, 150px);
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */
.section-container,
.header-inner,
.hero-content {
    width: min(calc(100% - 4rem), var(--max-width));
    margin-inline: auto;
}

section {
    position: relative;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    background: var(--header-footer);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    width: min(calc(100% - 4rem), var(--max-width));

    min-height: 76px;
    margin-inline: auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    gap: 5px;
    text-decoration: none;
}

.site-logo img {
    width: 30px;
    height: 30px;
    padding-bottom: 5px;
    object-fit: contain;
    display: block;
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 3rem);
}

.main-navigation a {
    position: relative;
    padding-block: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--amber);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.main-navigation a:hover {
    color: var(--white);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2rem;
    min-height: 48px;
    padding-left: 0.7rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.header-phone::after {
    display: none;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--amber-light);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.mobile-menu-toggle,
.mobile-navigation {
    display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: max(720px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--navy-deep);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*
   Very subtle movement.
   This is intentionally restrained.
*/

.hero-media img {
    animation: hero-image-settle 10s ease-out both;
}

@keyframes hero-image-settle {
    from {
        transform: scale(1.025);
    }

    to {
        transform: scale(1);
    }
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 18, 23, 0.9) 0%,
            rgba(10, 18, 23, 0.68) 40%,
            rgba(10, 18, 23, 0.2) 78%,
            rgba(10, 18, 23, 0.1) 100%);
}

/* =========================================================
   HERO TECHNICAL LINES
========================================================= */

.hero-technical-lines {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
}

.technical-line {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.22);
}

.technical-line-vertical {
    top: 0;
    bottom: 0;
    left: 2%;
    width: 1px;
}

.technical-line-horizontal {
    top: 18%;
    right: 0;
    left: 0;
    height: 1px;
}

/* Corner brackets */

.technical-corner {
    position: absolute;
    width: 34px;
    height: 34px;
}

.technical-corner::before,
.technical-corner::after {
    position: absolute;
    background: var(--amber);
    content: "";
}

.technical-corner-top {
    top: 18%;
    left: 2%;
}

.technical-corner-top::before {
    top: 0;
    left: 0;
    width: 34px;
    height: 1px;
}

.technical-corner-top::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 34px;
}

.technical-corner-bottom {
    right: 8%;
    bottom: 12%;
}

.technical-corner-bottom::before {
    right: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
}

.technical-corner-bottom::after {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 34px;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 2rem;
}

.hero .eyebrow {
    color: var(--text);
}

.hero h1 {
    max-width: 880px;
    padding-top: 10px;
}

.hero-statement {
    max-width: 650px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(1rem, 2vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-description {
    max-width: 590px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.2rem, 1.4vw, 1.3rem);
    letter-spacing: 0.1em;
}

/* =========================================================
   HERO GOOGLE RATING
========================================================= */

.hero-review {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-profiles {
    display: flex;
    align-items: center;
}

.review-profiles img {
    width: 46px;
    height: 46px;
    margin-left: -10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    background: var(--technical-gray);
}

.review-profiles img:first-child {
    margin-left: 0;
}

.review-rating {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.review-stars {
    color: var(--amber);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.review-rating p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.review-rating strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.review-rating span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* .button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-height: 54px;
    padding: 0.85rem 1.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.button img {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    object-fit: contain;
}
 */

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.button-content {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    width: 250px;
    gap: 0.75rem;
}

.button-content img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.button-content span {
    text-align: left;
    letter-spacing: 0.21em;
}

.button span {
    font-size: 0.9em;
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.button:hover span {
    transform: translateX(4px);
}

.button-primary {
    color: var(--text);
    background: var(--amber);
    border: 1px solid var(--amber);
    font-size: 18px;
}

.button-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.button-secondary {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.button-secondary:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
    padding-block: var(--section-padding);
    background: var(--warm-white);
}

.trust-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: end;
}

.trust-intro h2 {
    max-width: 750px;
}

.trust-intro p {
    max-width: 500px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.trust-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5rem;
    border-top: 1px solid var(--border);
}

.technical-detail {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    padding: 1.5rem 1.5rem 0 0;
    border-right: 1px solid var(--border);
}

.technical-detail:not(:first-child) {
    padding-left: 1.5rem;
}

.technical-detail:last-child {
    border-right: 0;
}

.detail-label {
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding-block: var(--section-padding);
    color: var(--white);
    background: var(--navy);
}

.services-section .section-label {
    color: var(--white);
}

.services-section .section-line {
    background: rgba(255, 255, 255, 0.4);
}

.services-section .section-description {
    color: var(--warm-white);
    font-size: 1.1em;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
}

.section-heading h2 {
    max-width: 800px;
}

.section-heading p {
    max-width: 450px;
    margin-bottom: 0;
    color: var(--navy-deep);
}

/* Open service list */

.services-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-group {
    display: grid;
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
    gap: 3rem;
    padding-block: 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.service-code {
    color: var(--amber-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.service-group h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.service-group p {
    max-width: 750px;
    margin-bottom: 0;
    color: var(--warm-white);
    font-size: 1rem;
    letter-spacing: 0.01em;
    font-size: 1.2rem;
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-phone {
        justify-self: end;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        margin-left: 0.5rem;
        color: var(--white);
        background: transparent;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 1px;
        background: currentColor;
    }

    .mobile-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        background: var(--navy);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-medium),
            transform var(--transition-medium), visibility var(--transition-medium);
    }

    .mobile-navigation.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-navigation>a:not(.mobile-call-button) {
        padding-block: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-call-button {
        margin-top: 1.25rem;
        padding: 1rem;
        color: var(--text);
        background: var(--amber);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .hero h1 {
        padding-top: 35px;
    }

    .trust-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-detail:nth-child(2) {
        border-right: 0;
    }

    .technical-detail:nth-child(n + 3) {
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }

    .technical-detail:nth-child(3) {
        padding-left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .service-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    :root {
        --section-padding: 5rem;
    }

    html {
        scroll-padding-top: 72px;
    }

    body {
        font-size: 15px;
    }

    .section-container,
    .header-inner,
    .hero-content {
        width: min(calc(100% - 3rem), var(--max-width));
    }

    .hero {
        min-height: 100svh;
        align-items: flex-end;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 4rem;
    }

    .header-inner {
        min-height: 68px;
        gap: 0.5rem;
    }

    .site-logo {
        font-size: 1rem;
    }

    .hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .hero-overlay {
        position: absolute;
        z-index: 1;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(10, 18, 23, 0.18) 0%,
                rgba(10, 18, 23, 0.4) 45%,
                rgba(10, 18, 23, 0.75) 100%);
    }

    .hero-media img {
        object-position: 60% center;
    }

    .hero-technical-lines {
        opacity: 0.55;
    }

    .technical-corner-bottom {
        right: 1rem;
        bottom: 8%;
    }

    .hero-statement {
        margin-top: 1.25rem;
    }

    .hero-review {
        gap: 0.75rem;
    }

    .review-profiles img {
        width: 40px;
        height: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        gap: 0.4rem 0.55rem;
        font-size: 0.58rem;
        line-height: 1.5;
    }

    .section-label {
        margin-bottom: 2rem;
    }

    .trust-details {
        grid-template-columns: 1fr;
        margin-top: 3.5rem;
    }

    .technical-detail,
    .technical-detail:not(:first-child) {
        padding: 1.25rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .technical-detail:nth-child(n + 3) {
        margin-top: 0;
        padding-top: 1.25rem;
    }

    .technical-detail:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 3rem;
    }

    .service-group {
        padding-block: 1.75rem;
    }

    .service-code {
        font-size: 0.6rem;
    }

    /* Disable hero movement for users who prefer reduced motion */

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        .hero-media img {
            animation: none;
        }

        *,
        *::before,
        *::after {
            transition-duration: 0.01ms !important;
        }
    }
}

/* =========================================================
   PROJECT GALLERY
========================================================= */
.work-section {
    padding-block: var(--section-padding);
}

.project-gallery {
    margin-top: 2rem;
}

.project-gallery-main {
    position: relative;
    overflow: hidden;
    background: #182229;
}

.project-slide {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.project-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(24, 34, 41, 0.82);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.gallery-arrow-prev {
    left: 16px;
}

.gallery-arrow-next {
    right: 16px;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: #d58a35;
}

.project-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.project-thumbnail {
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.65;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.project-thumbnail:hover img,
.project-thumbnail.is-active img {
    opacity: 1;
}

.project-thumbnail.is-active {
    border-color: #d58a35;
}

.project-thumbnail:hover img {
    transform: scale(1.03);
}

@media (max-width: 767px) {

    .project-gallery-thumbnails {
        grid-template-columns: repeat(5, 110px);
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-arrow-next {
        right: 8px;
    }
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding-block: var(--section-padding);
    color: var(--white);
    background: var(--navy);
}

.reviews-section .section-label {
    color: var(--white);
}

.reviews-section .section-line {
    background: rgba(255, 255, 255, 0.35);
}

.reviews-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}

.reviews-intro h2 {
    max-width: 750px;
}

.reviews-intro p {
    margin-top: 1.25rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 160px;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.google-stars {
    margin-bottom: 0.35rem;
    color: var(--amber);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.google-rating strong {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
}

.google-rating span {
    margin-top: 0.3rem;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Open review layout — deliberately NOT cards */

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.review {
    min-width: 0;
    padding: 2rem 2rem 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.review+.review {
    padding-left: 2rem;
}

.review:last-child {
    padding-right: 0;
    border-right: 0;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.reviewer-photo {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--technical-gray);
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer h3 {
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.reviewer span {
    color: var(--white);
    font-size: 0.72rem;
}

.review .review-stars {
    flex-shrink: 0;
    font-size: 0.7rem;
}

.review-text {
    max-width: 450px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.8;
}

.reviews-link {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.reviews-link a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--amber-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.reviews-link a span {
    transition: transform var(--transition-fast);
}

.reviews-link a:hover {
    color: var(--white);
}

.reviews-link a:hover span {
    transform: translateX(4px);
}

/* =========================================================
   DYNAMIC GOOGLE REVIEWS
========================================================= */

.reviews-loading,
.reviews-empty,
.reviews-error {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.reviewer-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--technical-gray);
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    color: var(--amber);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-google-link span {
    transition: transform var(--transition-fast);
}

.review-google-link:hover {
    color: var(--white);
}

.review-google-link:hover span {
    transform: translateX(4px);
}

/* =========================================================
   SERVICE AREAS
========================================================= */

.service-areas-section {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    color: var(--text);
}

/* Intro + Map */

.service-area-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

/* Intro */

.service-area-intro h2 {
    max-width: 520px;
    margin: 0 0 1.5rem;
    color: var(--text);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.035em;
}

.service-area-intro p {
    max-width: 500px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Map */

.service-area-map {
    position: relative;
    min-width: 0;
}

.map-frame {
    position: relative;
    width: 100%;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light-gray);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

/* Map technical label */

.map-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 0.2rem;

    padding: 0.65rem 0.8rem;

    background: rgba(40, 58, 69, 0.94);
    color: var(--white);

    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.map-label span:last-child {
    color: var(--light-gray);
    font-size: 0.5rem;
}

/* Technical corners */

.map-corner {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    pointer-events: none;
}

.map-corner-top {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--amber);
    border-right: 2px solid var(--amber);
}

.map-corner-bottom {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
}

/* Area List */

.service-area-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-area-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;

    min-height: 70px;
    padding: 1rem 1.2rem;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-area-item span {
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.service-area-item strong {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Service Coverage Note */

.service-area-note {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-top: 2rem;

    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.service-area-note .section-line {
    flex: 1;
    max-width: 90px;
    height: 1px;
    background: var(--border);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-area-intro h2,
    .service-area-intro p {
        max-width: 700px;
    }

    .service-area-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .service-area-content {
        gap: 2.5rem;
    }

    .service-area-intro h2 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .service-area-intro p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .map-frame {
        min-height: 360px;
    }

    .map-frame iframe {
        height: 360px;
    }

    .service-area-list {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
    }

    .service-area-item {
        min-height: 64px;
        padding: 0.8rem;
    }

    .service-area-item strong {
        font-size: 0.78rem;
    }

    .service-area-note {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.7rem;
        line-height: 1.5;
    }

    .service-area-note .section-line {
        display: none;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {
    p.eyebrow {
        font-size: 12px;
    }

    .section-label {
        font-size: 12px;
    }

    .service-area-list {
        grid-template-columns: 1fr;
    }

    .map-frame,
    .map-frame iframe {
        height: 320px;
    }

    .map-label {
        top: 0.75rem;
        left: 0.75rem;
    }
}

/* =========================================================
   FINAL CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(6rem, 12vw, 11rem);
    color: var(--white);
    background: var(--navy-deep);
}

.cta-section .section-container {
    position: relative;
    z-index: 2;
}

.cta-section .eyebrow {
    color: var(--text);
}

.cta-section h2 {
    max-width: 900px;
    margin: 1.5rem 0;
}

.cta-section p:not(.eyebrow) {
    max-width: 580px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

/* Technical background lines */

.cta-technical-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-technical-lines::before,
.cta-technical-lines::after {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    content: "";
}

.cta-technical-lines::before {
    top: 0;
    bottom: 0;
    left: 2%;
    width: 1px;
}

.cta-technical-lines::after {
    top: 20%;
    right: 0;
    left: 0;
    height: 1px;
}

.cta-technical-lines span:first-child {
    position: absolute;
    top: 20%;
    /* left: 80%; */
    left: 2%;
    width: 70px;
    height: 1px;
    background: var(--amber);
}

.cta-technical-lines span:last-child {
    position: absolute;
    top: 20%;
    left: 2%;
    width: 1px;
    height: 70px;
    background: var(--amber);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: var(--header-footer);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr;
    gap: 4rem;
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;
    padding-block: 4rem;
}

.footer-brand .site-logo {
    margin-bottom: 1.25rem;
}

.footer-brand p {
    max-width: 350px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    letter-spacing: 0.2rem;
}

.footer-label {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--amber);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.footer-service-area p {
    max-width: 400px;
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.7;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-contact a {
    display: inline-block;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color var(--transition-fast);
    letter-spacing: 0.2rem;
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;
    padding-block: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
    .work-details {
        grid-template-columns: 1fr;
    }

    .work-details .technical-detail {
        padding: 1.25rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .work-details .technical-detail:last-child {
        border-bottom: 0;
    }

    .reviews-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .google-rating {
        align-items: flex-start;
        width: fit-content;
        padding-top: 0;
        padding-left: 0;
        border-left: 0;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review,
    .review+.review {
        padding: 2rem 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .review:first-child {
        padding-top: 2rem;
    }

    .review:last-child {
        border-bottom: 0;
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 0.5rem;
        min-height: 76px;
    }

    .work-section,
    .reviews-section,
    .service-areas-section {
        padding-block: 5rem;
    }

    .before-label {
        left: 0.75rem;
    }

    .after-label {
        right: 0.75rem;
    }

    .reviews-intro {
        margin-bottom: 2.5rem;
    }

    .google-rating strong {
        font-size: 2.2rem;
    }

    .review {
        padding-block: 1.75rem !important;
    }

    .review-header {
        margin-bottom: 1.25rem;
    }

    .review-text {
        font-size: 0.88rem;
    }

    .service-area-content {
        gap: 3rem;
    }

    .service-area-item {
        grid-template-columns: 32px 1fr;
        padding-block: 1.1rem;
    }

    .service-area-item strong {
        font-size: 1rem;
    }

    .service-area-note {
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 3rem;
        line-height: 1.6;
    }

    .service-area-note .section-line {
        width: 60px;
    }

    .cta-section {
        padding-block: 5.5rem 7rem;
    }

    .cta-section h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
        max-width: 350px;
    }

    .cta-section p:not(.eyebrow) {
        font-size: 0.92rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: min(calc(100% - 2rem), var(--max-width));
        padding-block: 3.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.35rem;
        width: min(calc(100% - 2rem), var(--max-width));
        padding-block: 1rem 5rem;
    }
}

/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {
    .site-logo img {
        width: 22px;
        height: 22px;
    }

    .phone-label {
        font-size: 0.6rem;
    }

    .phone-number {
        font-size: 1rem;
    }

    .eyebrow {
        font-size: 0.8rem;
    }

    h1 {
        font-size: clamp(1.5rem, 2.5vw, 2.7rem);
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-bottom: 3.5rem;
    }

    .hero-review {
        align-items: flex-start;
    }

    .hero-trust span:nth-of-type(even) {
        display: none;
    }

    .service-group h3 {
        font-size: 1.25rem;
    }

    .service-group p {
        font-size: 1rem;
    }
}

/* =========================================================
   Media 380
========================================================= */

@media (max-width: 380px) {
    .site-logo {
        font-size: 0.8rem;
    }

    .site-logo img {
        width: 20px;
        height: 20px;
    }

    header-phone {
        gap: 0.2px;
    }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-media img {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   FOCUS STATES
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 4px;
}

/* =========================================================
   PRINT
========================================================= */

@media print {

    .site-header,
    .mobile-navigation,
    .hero-actions,
    .cta-actions {
        display: none !important;
    }

    body {
        color: #405661;
        background: #fff;
    }

    section,
    footer {
        break-inside: avoid;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}