:root {
    --white: #ffffff;
    --off-white: #f5f5f2;
    --surface: #eceeeb;
    --border: #d7dad6;
    --text: #202322;
    --text-muted: #626864;
    --charcoal: #202322;
    --black: #111312;
    --green: #303c34;
    --gold: #c9942e;
    --gold-light: #e4ba62;
    --page-width: 1180px;
    --header-height: 82px;
    --shadow: 0 18px 45px rgba(17, 19, 18, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

.page-shell {
    width: min(calc(100% - 40px), var(--page-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 5000;
    padding: 11px 16px;
    border-radius: 6px;
    background: var(--white);
    color: var(--black);
    font-weight: 800;
    transform: translateY(-160%);
}

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

.site-header {
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        height 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
    height: 72px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(24, 27, 25, 0.97);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    width: min(calc(100% - 40px), 1280px);
    height: 100%;
    margin-inline: auto;
    gap: 34px;
}

.site-logo {
    display: flex;
    width: 170px;
    flex: 0 0 170px;
    align-items: center;
}

.site-logo img {
    max-height: 65px;
    object-fit: contain;
}

.site-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 28px;
}

.site-navigation a {
    position: relative;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.87rem;
    font-weight: 800;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform 150ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.site-navigation a.active::after {
    transform: scaleX(1);
}

.header-contact {
    display: flex;
    flex-direction: column;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    color: var(--white);
    line-height: 1.15;
}

.header-contact span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-contact strong {
    margin-top: 4px;
    font-size: 0.88rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--white);
    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    display: flex;
    min-height: 670px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(14, 16, 15, 0.95) 0%,
            rgba(14, 16, 15, 0.82) 43%,
            rgba(14, 16, 15, 0.28) 78%,
            rgba(14, 16, 15, 0.12) 100%
        ),
        linear-gradient(0deg, rgba(14, 16, 15, 0.32), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 125px;
    padding-bottom: 65px;
}

.eyebrow,
.section-label {
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label-light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0 22px;
    font-size: clamp(3.8rem, 7vw, 6.8rem);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.92;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.03rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 900;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        color 150ms ease,
        transform 150ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);
    color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--gold-light);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.button-light {
    background: var(--white);
    color: var(--black);
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--gold-light);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.button-dark {
    background: var(--charcoal);
    color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: var(--black);
}

.button-outline-dark {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
    background: var(--charcoal);
    color: var(--white);
}

.hero-facts {
    display: flex;
    max-width: 670px;
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 22px 0 0;
}

.hero-facts div + div {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts strong {
    font-size: 1.45rem;
    font-weight: 950;
}

.hero-facts span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
}

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid span {
    padding: 19px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
}

.trust-grid span + span {
    border-left: 1px solid var(--border);
}

.section {
    padding: 88px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: end;
    margin-bottom: 40px;
    gap: 70px;
}

.section-heading h2,
.capability-content h2,
.value-section h2,
.gallery-preview h2,
.final-cta h2 {
    margin: 11px 0 0;
    font-size: clamp(2.35rem, 4vw, 4rem);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1;
}

.section-heading-copy p {
    margin: 0 0 13px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.section-heading-copy p + p {
    margin-top: 10px;
}

.text-link,
.estimate-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #936918;
    font-size: 0.79rem;
    font-weight: 900;
}

.text-link span,
.estimate-link span {
    transition: transform 150ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.estimate-link:hover span,
.estimate-link:focus-visible span {
    transform: translateX(4px);
}

.services-section {
    background: var(--off-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 19, 18, 0.06);
    transition:
        transform 150ms ease,
        box-shadow 150ms ease;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-card img {
    height: 205px;
    object-fit: cover;
}

.service-card-content {
    display: flex;
    min-height: 235px;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 23px;
}

.service-card h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.service-card p {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.service-card a {
    margin-top: auto;
    padding-top: 20px;
    color: #936918;
    font-size: 0.74rem;
    font-weight: 900;
}

.value-section {
    padding: 72px 0;
    background: var(--green);
    color: var(--white);
}

.value-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: 80px;
}

.value-copy p {
    max-width: 730px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.8;
}

.value-options {
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.16);
}

.value-options > div {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.value-options > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.value-options strong {
    font-size: 0.85rem;
    font-weight: 900;
}

.value-options span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    line-height: 1.55;
}

.value-options .button {
    margin-top: 18px;
}

.value-options small {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    line-height: 1.5;
    text-align: center;
}

.capability-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 74px;
}

.capability-image {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.capability-image img {
    min-height: 500px;
    object-fit: cover;
}

.capability-content p {
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.capability-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.capability-content li {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 12px 14px 12px 36px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--off-white);
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1.35;
}

.capability-content li::before {
    position: absolute;
    top: 50%;
    left: 12px;
    color: var(--gold);
    content: "✓";
    font-weight: 950;
    transform: translateY(-50%);
}

.service-area-section {
    overflow: hidden;
    background: var(--off-white);
}

.service-area-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
    align-items: center;
    gap: 64px;
}

.service-area-content h2 {
    max-width: 560px;
    margin: 11px 0 0;
    font-size: clamp(2.45rem, 4.5vw, 4.4rem);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.service-area-content > p {
    max-width: 570px;
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 0.91rem;
    line-height: 1.8;
}

.service-area-examples {
    display: block;
    margin-top: 13px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.7;
}

.extended-service-card {
    margin-top: 31px;
    padding: 22px;
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    background: var(--charcoal);
    color: var(--white);
}

.extended-service-card strong {
    font-size: 0.9rem;
    font-weight: 900;
}

.extended-service-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    line-height: 1.65;
}

.extended-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 900;
}

.map-column {
    min-width: 0;
}

.map-wrapper {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #dde1dd;
    box-shadow: var(--shadow);
}

.service-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 510px;
}

.map-summary {
    position: absolute;
    z-index: 500;
    right: 18px;
    bottom: 18px;
    display: flex;
    max-width: 270px;
    flex-direction: column;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(28, 31, 29, 0.94);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.map-summary strong {
    font-size: 0.77rem;
}

.map-summary span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.66rem;
}

.map-note {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-align: right;
}

.jmp-logo-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
}

.jmp-logo-marker img {
    display: block;
    width: 92px;
    height: auto;
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.42));
}

.leaflet-container {
    width: 100%;
    height: 100%;
    background: #dde1dd;
    font-family: inherit;
}

.leaflet-control-attribution {
    font-size: 10px;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 400;
}

.leaflet-control {
    z-index: 400;
}

.gallery-preview {
    padding: 86px 0;
    background: var(--charcoal);
    color: var(--white);
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    grid-auto-rows: 335px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    background: var(--black);
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 60%);
    content: "";
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.025);
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 0.81rem;
    font-weight: 900;
}

.final-cta {
    padding: 78px 0;
    background: var(--white);
}

.final-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 80px;
}

.final-cta p {
    max-width: 740px;
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.8;
}

.final-cta small {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.68rem;
}

.final-cta-actions {
    display: flex;
    min-width: 245px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
}

.estimate-link {
    justify-content: center;
    margin-top: 5px;
}

.site-footer {
    padding: 62px 0 24px;
    background: var(--black);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    align-items: center;
    gap: 80px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 220px;
    max-height: 115px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 540px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.79rem;
    line-height: 1.75;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer-trust span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.65rem;
    font-weight: 800;
}

.footer-contact-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.045);
}

.footer-phone {
    display: block;
    margin-top: 9px;
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1;
}

.footer-contact-card p {
    max-width: 500px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    line-height: 1.7;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-top: 21px;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-nav a,
.footer-details span,
.footer-copyright {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.67rem;
}

.footer-nav a {
    transition: color 150ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--white);
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-copyright {
    white-space: nowrap;
}

.mobile-contact-bar {
    display: none;
}

:focus-visible {
    outline: 3px solid rgba(201, 148, 46, 0.62);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    .header-contact {
        display: none;
    }

    .site-navigation {
        gap: 20px;
    }

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

    .service-card-content {
        min-height: 215px;
    }

    .value-layout,
    .capability-layout {
        gap: 50px;
    }

    .service-area-layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
        gap: 45px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .site-navigation {
        position: fixed;
        z-index: 999;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        padding: 0 20px;
        gap: 0;
        overflow: hidden;
        background: rgba(20, 22, 21, 0.99);
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 190ms ease,
            opacity 150ms ease,
            padding 190ms ease;
    }

    .site-navigation.open {
        max-height: calc(100vh - 72px);
        padding-top: 12px;
        padding-bottom: 24px;
        opacity: 1;
        pointer-events: auto;
    }

    .site-navigation a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-navigation a::after {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(14, 16, 15, 0.93),
                rgba(14, 16, 15, 0.66)
            ),
            linear-gradient(0deg, rgba(14, 16, 15, 0.4), transparent);
    }

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

    .trust-grid span:nth-child(3),
    .trust-grid span:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .trust-grid span:nth-child(3) {
        border-left: 0;
    }

    .section-heading,
    .value-layout,
    .capability-layout,
    .service-area-layout,
    .final-cta-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .capability-image img {
        min-height: 420px;
    }

    .map-wrapper,
    .service-map {
        min-height: 460px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 290px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .final-cta-actions {
        align-items: flex-start;
        min-width: 0;
    }

    .footer-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 580px) {
    body {
        padding-bottom: 68px;
    }

    .page-shell,
    .header-inner {
        width: min(calc(100% - 28px), var(--page-width));
    }

    .section {
        padding: 68px 0;
    }

    .site-logo {
        width: 136px;
        flex-basis: 136px;
    }

    .site-logo img {
        max-height: 55px;
    }

    .hero {
        min-height: 690px;
    }

    .hero-image {
        object-position: 60% center;
    }

    .hero-content {
        padding-top: 118px;
        padding-bottom: 52px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 4.5rem);
    }

    .hero p {
        font-size: 0.91rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-facts div {
        flex-direction: row;
        align-items: center;
        padding: 12px 0;
        gap: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-facts div + div {
        padding-left: 0;
        border-left: 0;
    }

    .hero-facts strong {
        min-width: 58px;
        font-size: 1.15rem;
    }

    .hero-facts span {
        margin: 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid span {
        padding: 14px;
    }

    .trust-grid span + span,
    .trust-grid span:nth-child(3),
    .trust-grid span:nth-child(4) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .section-heading h2,
    .capability-content h2,
    .value-section h2,
    .gallery-preview h2,
    .final-cta h2,
    .service-area-content h2 {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 225px;
    }

    .service-card-content {
        min-height: 0;
    }

    .value-options {
        padding: 22px;
    }

    .capability-content ul {
        grid-template-columns: 1fr;
    }

    .map-wrapper,
    .service-map {
        min-height: 400px;
    }

    .map-summary {
        right: 12px;
        bottom: 28px;
        left: 12px;
        max-width: none;
    }

    .map-note {
        text-align: left;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 255px;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .final-cta-actions,
    .final-cta-actions .button {
        width: 100%;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 68px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(17, 19, 18, 0.98);
        color: var(--white);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    }

    .mobile-contact-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .mobile-contact-bar a + a {
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        background: var(--gold);
        color: var(--black);
    }

    .mobile-contact-bar span {
        font-size: 0.61rem;
        font-weight: 750;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .mobile-contact-bar strong {
        margin-top: 2px;
        font-size: 0.76rem;
        font-weight: 950;
    }
}

@media (max-width: 820px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-details {
        justify-content: flex-start;
    }
}

@media (max-width: 580px) {
    .footer-contact-card {
        padding: 24px;
    }

    .footer-actions {
        flex-direction: column;
    }

    .footer-actions .button {
        width: 100%;
    }

    .footer-nav,
    .footer-details {
        flex-direction: column;
        gap: 8px;
    }

    .footer-copyright {
        white-space: normal;
    }
}