:root {
    --ink: #1d2926;
    --muted: #65706c;
    --forest: #1d3a35;
    --pine: #274f49;
    --copper: #d56f2a;
    --gold: #f0c36a;
    --paper: #fbfaf6;
    --mist: #eef3ef;
    --line: #dfe6e0;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(29, 41, 38, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    box-shadow: 0 8px 28px rgba(29, 41, 38, .08);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.wrap {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 10;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--ink);
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

.topbar {
    background: var(--forest);
    color: var(--white);
    font-size: 14px;
    line-height: 1.35;
}

.topbar-inner,
.nav-shell,
.hero-actions,
.section-head,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    font-weight: 800;
    text-decoration: none;
}

.topbar span {
    overflow-wrap: anywhere;
}

.nav-shell {
    padding: 18px 0;
}

.brand img {
    width: 228px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-nav a,
.nav-phone,
.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
}

.primary-nav a {
    padding: 10px 14px;
    color: var(--muted);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--forest);
    background: var(--mist);
}

.nav-phone {
    padding: 10px 16px;
    color: var(--white);
    background: var(--copper);
}

.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 32, 29, .88), rgba(16, 32, 29, .48), rgba(16, 32, 29, .22));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
    padding: 92px 0 78px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: .96;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.2;
}

.lead {
    max-width: 720px;
    color: rgba(255, 255, 255, .88);
    font-size: 20px;
}

.button {
    border: 0;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 15px;
}

.button-light {
    color: var(--ink);
    background: var(--gold);
}

.button-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .55);
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.stat {
    padding: 30px;
    background: var(--white);
}

.stat,
.service-card,
.process-step,
.gallery-card,
.contact-panel {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.stat:hover,
.service-card:hover,
.process-step:hover,
.gallery-card:hover,
.contact-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 111, 42, .45);
    box-shadow: 0 22px 58px rgba(29, 41, 38, .16);
}

.stat strong {
    display: block;
    color: var(--copper);
    font-size: 34px;
    line-height: 1;
}

.section {
    padding: 86px 0;
}

.section-alt {
    background: var(--mist);
}

.section-head {
    margin-bottom: 34px;
}

.section-head p {
    max-width: 540px;
    color: var(--muted);
}

.service-grid,
.process-grid,
.gallery-grid,
.contact-grid,
.split {
    display: grid;
    gap: 24px;
}

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

.service-card,
.process-step,
.contact-panel,
.estimate-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card {
    overflow: hidden;
}

.service-card img,
.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card div {
    padding: 24px;
}

.service-card h2 {
    font-size: 24px;
    line-height: 1.15;
}

.service-card p,
.process-step p,
.contact-panel p,
.text-muted {
    color: var(--muted);
}

.split {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
}

.split-image {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    padding: 12px 14px;
    border-left: 4px solid var(--copper);
    background: var(--white);
    font-weight: 800;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    padding: 24px;
}

.process-step span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--copper);
    font-weight: 900;
}

.cta-band {
    padding: 54px 0;
    color: var(--white);
    background: var(--forest);
}

.cta-band .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-hero {
    padding: 74px 0;
    color: var(--white);
    background: var(--forest);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    font-size: 20px;
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.gallery-card figcaption {
    padding: 14px 16px;
    font-weight: 800;
}

.contact-grid {
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
}

.contact-panel,
.estimate-form {
    padding: 28px;
}

.contact-method {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
    border-bottom: 0;
}

.contact-method a {
    color: var(--forest);
    font-weight: 900;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--paper);
    font: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    padding: 58px 0 20px;
    color: rgba(255, 255, 255, .82);
    background: #142622;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.1fr;
    gap: 42px;
}

.footer-logo {
    width: 210px;
    margin-bottom: 18px;
    border-radius: 8px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 18px;
}

.site-footer a {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 14px;
}

@media (max-width: 900px) {
    .nav-shell,
    .topbar-inner,
    .section-head,
    .cta-band .wrap,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .primary-nav {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .nav-phone {
        display: none;
    }

    .hero {
        min-height: 590px;
    }

    .stats,
    .service-grid,
    .process-grid,
    .gallery-grid,
    .contact-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: min(100% - 28px, 1160px);
    }

    .brand img {
        width: 205px;
    }

    .hero-content {
        padding: 74px 0 54px;
    }

    .hero-actions,
    .check-list,
    .form-grid {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        gap: 8px;
    }

    .topbar {
        font-size: 13px;
    }

    .section {
        padding: 58px 0;
    }
}
