:root {
    --ink: #1e2528;
    --muted: #5d686d;
    --line: #dde3e1;
    --paper: #fbfaf7;
    --soft: #eef1ed;
    --clay: #8a4b2a;
    --clay-dark: #64351e;
    --moss: #365c4a;
    --gold: #c7933a;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(30, 37, 40, 0.14);
}

* {
    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;
}

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

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

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

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

.topbar {
    background: var(--ink);
    color: var(--white);
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    padding: 9px 0;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(251, 250, 247, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 6px;
    background: var(--clay);
    color: var(--white);
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-links a.active {
    color: var(--clay);
}

.quote-link {
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--moss);
    color: var(--white) !important;
}

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

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 23, 24, 0.82), rgba(20, 23, 24, 0.42), rgba(20, 23, 24, 0.15));
}

.hero-content {
    position: relative;
    max-width: 760px;
    padding: 80px 0 96px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 0.82rem;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.12;
}

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: 4.35rem;
}

h2 {
    margin-bottom: 16px;
    font-size: 2.45rem;
}

h3 {
    font-size: 1.35rem;
}

.hero p:not(.eyebrow) {
    max-width: 660px;
    font-size: 1.18rem;
}

.hero-actions,
.cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--clay);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--clay-dark);
}

.btn.secondary {
    background: var(--white);
    color: var(--ink);
}

.section {
    padding: 82px 0;
}

.muted {
    background: var(--soft);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 42px;
    align-items: start;
}

.highlight-box,
.contact-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.highlight-box ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

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

.card {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.card a {
    color: var(--clay);
    font-weight: 800;
    text-decoration: none;
}

.image-band {
    background: var(--ink);
    color: var(--white);
}

.image-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.image-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.page-hero {
    background: var(--ink);
    color: var(--white);
}

.page-hero.compact {
    padding: 72px 0;
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    font-size: 1.1rem;
}

.service-list {
    display: grid;
    gap: 48px;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: center;
}

.service-row.reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.service-row.reverse img {
    order: 2;
}

.service-row img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
}

.service-row ul {
    padding-left: 20px;
}

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

.gallery-cta {
    background: var(--soft);
}

.home-gallery-section {
    background: var(--paper);
}

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

.home-gallery-head > div {
    max-width: 700px;
}

.home-gallery-head p:not(.eyebrow) {
    margin-bottom: 0;
}

.home-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-gallery figure {
    min-height: 100%;
}

.home-gallery figure img {
    height: 250px;
}

.gallery-cta h2 {
    margin-bottom: 10px;
}

.gallery-cta p:not(.eyebrow) {
    max-width: 640px;
    margin-bottom: 0;
}

.cta-inner {
    justify-content: space-between;
}

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

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

.review-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0;
}

.review-card footer {
    display: grid;
    gap: 2px;
    margin-top: 22px;
}

.review-card footer span {
    color: var(--muted);
    font-weight: 700;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.upload-form {
    position: sticky;
    top: 126px;
}

.upload-form h2 {
    font-size: 1.65rem;
}

.form-help {
    margin-top: -4px;
    color: var(--muted);
}

.photo-gallery figure img {
    height: 260px;
}

.empty-gallery {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

figure img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

figcaption {
    padding: 16px 18px;
    font-weight: 800;
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.zone-tags span {
    padding: 10px 13px;
    border-radius: 6px;
    background: var(--soft);
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.quote-form {
    padding: 30px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

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

label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    font-weight: 800;
}

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

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(199, 147, 58, 0.28);
    border-color: var(--gold);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.notice {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-weight: 800;
}

.notice p {
    margin: 0;
}

.notice.success {
    background: #e2f4ea;
    color: #20583d;
}

.notice.error {
    background: #f9e2dc;
    color: #7a2d1f;
}

.legal .container {
    max-width: 860px;
}

.site-footer {
    padding: 54px 0 24px;
    background: #161b1d;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
}

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

.copyright {
    padding-top: 28px;
    color: #c7cdca;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .topbar-inner,
    .navbar,
    .nav-links {
        align-items: flex-start;
    }

    .topbar-inner,
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hero {
        min-height: 560px;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .split,
    .cards,
    .image-grid,
    .service-row,
    .service-row.reverse,
    .home-gallery,
    .gallery,
    .reviews-grid,
    .gallery-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .upload-form {
        position: static;
    }

    .service-row.reverse img {
        order: 0;
    }

    .contact-card {
        box-shadow: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .topbar-inner {
        gap: 6px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .quote-link {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 620px;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 64px 0 78px;
    }

    .section {
        padding: 58px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form,
    .highlight-box,
    .contact-card {
        padding: 22px;
    }

    .image-grid img,
    .service-row img,
    .home-gallery figure img,
    figure img {
        height: 260px;
    }

    .btn {
        width: 100%;
    }
}
