: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;
    scroll-padding-top: 110px;
}

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: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(24, 27, 25, 0.9);
    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);
}

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

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

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

.page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(14, 16, 15, 0.96) 0%,
            rgba(14, 16, 15, 0.86) 44%,
            rgba(14, 16, 15, 0.35) 78%,
            rgba(14, 16, 15, 0.2) 100%
        ),
        linear-gradient(0deg, rgba(14, 16, 15, 0.32), transparent 48%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 135px;
    padding-bottom: 70px;
}

.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);
}

.page-hero h1 {
    max-width: 880px;
    margin: 18px 0 23px;
    font-size: clamp(3.5rem, 6.5vw, 6.3rem);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.94;
}

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

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 1.02rem;
    line-height: 1.8;
}

.page-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);
}

.service-navigation {
    position: sticky;
    z-index: 800;
    top: 72px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(17, 19, 18, 0.05);
    backdrop-filter: blur(12px);
}

.service-navigation-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-navigation-inner::-webkit-scrollbar {
    display: none;
}

.service-navigation a {
    flex: 0 0 auto;
    padding: 18px 20px;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
    transition:
        border-color 150ms ease,
        color 150ms ease;
}

.service-navigation a:hover,
.service-navigation a:focus-visible {
    border-color: var(--gold);
    color: var(--text);
}

.section {
    padding: 88px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.service-detail-content h2,
.value-section h2,
.limitations-section 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;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

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

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

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    overflow: hidden;
    border-radius: 16px;
    background: var(--charcoal);
    box-shadow: var(--shadow);
}

.intro-copy {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
    color: var(--white);
}

.intro-copy h2 {
    max-width: 680px;
    margin: 12px 0 0;
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.intro-copy > p {
    max-width: 680px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.8;
}

.intro-audiences {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 29px;
}

.intro-audiences span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.68rem;
    font-weight: 800;
}

.intro-capability {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
        url("../images/equipment-dozer.jpeg") center / cover;
}

.intro-capability-label {
    color: #936918;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.intro-capability h3 {
    max-width: 490px;
    margin: 10px 0 0;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1;
}

.intro-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 29px;
    gap: 10px;
}

.intro-equipment-grid div {
    display: flex;
    min-height: 105px;
    flex-direction: column;
    justify-content: center;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--off-white);
}

.intro-equipment-grid strong {
    font-size: 0.8rem;
    font-weight: 950;
}

.intro-equipment-grid span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.67rem;
    line-height: 1.5;
}

.service-detail-section {
    padding: 90px 0;
    background: var(--white);
}

.service-detail-alt {
    background: var(--off-white);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 75px;
}

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    overflow: hidden;
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-detail-image > img {
    height: 520px;
    object-fit: cover;
}

.service-detail-image-stack {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 520px;
    gap: 4px;
}

.service-detail-image-stack img {
    height: 520px;
    object-fit: cover;
}

.service-detail-content {
    position: relative;
}

.service-number {
    position: absolute;
    top: -52px;
    right: 0;
    color: rgba(32, 35, 34, 0.055);
    font-size: 7rem;
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
}

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

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

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

.service-detail-section:not(.service-detail-alt) .service-list li {
    background: var(--off-white);
}

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

.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);
}

.specialty-section {
    background: var(--charcoal);
    color: var(--white);
}

.specialty-heading {
    margin-bottom: 42px;
}

.specialty-heading .section-heading-copy p {
    color: rgba(255, 255, 255, 0.67);
}

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

.specialty-card {
    min-height: 275px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.045);
}

.specialty-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(228, 186, 98, 0.4);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
}

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

.specialty-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    line-height: 1.7;
}

.value-section {
    padding: 78px 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;
}

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

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

.limitations-content {
    padding: 28px;
    border-left: 4px solid var(--gold);
    border-radius: 0 11px 11px 0;
    background: var(--white);
    box-shadow: 0 14px 35px rgba(17, 19, 18, 0.07);
}

.limitations-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.75;
}

.limitations-content p + p {
    margin-top: 13px;
}

.limitations-content .button {
    margin-top: 21px;
}

.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-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-detail-layout {
        gap: 48px;
    }

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

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

@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;
    }

    .page-hero {
        min-height: 570px;
    }

    .page-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);
    }

    .service-navigation {
        top: 72px;
    }

    .service-navigation-inner {
        justify-content: flex-start;
    }

    .section-heading,
    .service-detail-layout,
    .value-layout,
    .limitations-layout,
    .final-cta-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .intro-panel {
        grid-template-columns: 1fr;
    }

    .intro-copy {
        min-height: 0;
        padding: 44px;
    }

    .intro-capability {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .service-detail-reverse .service-detail-image,
    .service-detail-reverse .service-detail-content {
        order: initial;
    }

    .service-detail-image > img,
    .service-detail-image-stack,
    .service-detail-image-stack img {
        height: 430px;
        min-height: 430px;
    }

    .service-number {
        top: -35px;
        font-size: 5rem;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

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

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

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

    .section,
    .service-detail-section {
        padding: 68px 0;
    }

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

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

    .page-hero {
        min-height: 620px;
    }

    .page-hero-content {
        padding-top: 120px;
        padding-bottom: 55px;
    }

    .page-hero h1 {
        font-size: clamp(3.1rem, 15vw, 4.35rem);
    }

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

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

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

    .intro-copy,
    .intro-capability {
        padding: 28px;
    }

    .intro-copy h2 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .intro-equipment-grid {
        grid-template-columns: 1fr;
    }

    .intro-equipment-grid div {
        min-height: 82px;
    }

    .service-navigation a {
        padding: 15px 14px;
    }

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

    .service-detail-image > img {
        height: 340px;
        min-height: 340px;
    }

    .service-detail-image-stack {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .service-detail-image-stack img {
        height: 260px;
        min-height: 260px;
    }

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

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

    .specialty-card {
        min-height: 0;
    }

    .value-options {
        padding: 22px;
    }

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

    .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;
    }

    .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;
    }
}