:root {
    --bg: #fbfaf6;
    --paper: #ffffff;
    --ink: #1e2623;
    --muted: #6c746f;
    --line: #e2dfd6;
    --green: #2e5f49;
    --green-dark: #1c3e31;
    --wine: #7c2638;
    --gold: #b88945;
    --shadow: 0 18px 50px rgba(30, 38, 35, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

h1,
h2,
h3 {
    margin: 0 0 0.6em;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

p {
    margin: 0 0 1rem;
}

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

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 82px;
}

.brand img {
    width: auto;
    height: 64px;
}

.primary-nav {
    margin-left: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.menu a {
    color: var(--ink);
}

.menu a:hover {
    color: var(--green);
}

.header-call,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    line-height: 1;
}

.header-call,
.button-primary {
    background: var(--green);
    color: #fff;
}

.button-primary:hover,
.header-call:hover {
    background: var(--green-dark);
}

.button-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.5);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    color: #fff;
}

.hero-color {
    min-height: 520px;
    background: var(--green-dark);
}

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

.hero-media::after,
.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 32, 27, 0.78), rgba(20, 32, 27, 0.34), rgba(20, 32, 27, 0.12));
}

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

.hero-content {
    position: relative;
    align-self: center;
    max-width: 760px;
    padding: 80px 0 110px;
}

.hero-content p {
    max-width: 620px;
    font-size: 1.16rem;
}

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

.section {
    padding: 86px 0;
}

.notice-band,
.service-band {
    background: #edf0e9;
}

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

.feature-copy {
    max-width: 540px;
}

.image-pair {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
}

.image-pair img,
.gallery-grid img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-pair img {
    height: 460px;
}

.image-pair img:first-child {
    margin-top: 48px;
}

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

.service-card {
    display: block;
    min-height: 260px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(30, 38, 35, 0.06);
}

.service-card span {
    display: block;
    color: var(--wine);
    font-weight: 800;
    margin-bottom: 52px;
}

.service-card:hover {
    transform: translateY(-2px);
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    overflow: hidden;
    color: #fff;
}

.page-hero.compact {
    min-height: 330px;
    background: var(--green-dark);
    color: #fff;
}

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

.page-hero-content,
.page-hero.compact .container {
    position: relative;
    align-self: center;
    max-width: 820px;
    padding: 74px 0;
}

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

.gallery-grid img {
    aspect-ratio: 4 / 3;
}

.content-narrow {
    max-width: 780px;
}

.editable-content > *:last-child {
    margin-bottom: 0;
}

.editable-content ul {
    padding-left: 1.2rem;
}

.gallery-section {
    padding-top: 0;
}

.contact-layout {
    align-items: stretch;
}

.contact-panel {
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.site-footer {
    background: #17241f;
    color: #f4f1ea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.1fr 0.8fr;
    gap: 34px;
    padding: 58px 0;
}

.footer-logo {
    width: 136px;
    margin-bottom: 16px;
}

.footer-wordmark {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.site-footer h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
}

.site-footer a {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-item {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.maintenance-page {
    position: relative;
    display: grid;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    color: #fff;
}

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

.maintenance-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 32, 27, 0.88), rgba(20, 32, 27, 0.56));
}

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

.maintenance-content {
    position: relative;
    align-self: center;
    max-width: 760px;
    padding: 84px 0;
}

.maintenance-logo {
    width: 210px;
    height: auto;
    margin-bottom: 34px;
}

.maintenance-content p {
    max-width: 650px;
    font-size: 1.14rem;
}

.maintenance-contact {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    font-size: 1.05rem;
    font-weight: 700;
}

.maintenance-contact a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.maintenance-active .site-header,
.maintenance-active .site-footer {
    display: none;
}

.maintenance-active .maintenance-page {
    min-height: 100vh;
}

.reviews-band {
    background: var(--paper);
}

.bb-intro {
    margin-bottom: 40px;
}

.bb-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    max-width: 980px;
}

.bb-gallery {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .primary-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 20px 24px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
    }

    .primary-nav.is-open {
        display: block;
    }

    .menu {
        display: grid;
        gap: 14px;
    }

    .header-call {
        display: none;
    }

    .split,
    .feature-grid,
    .contact-layout,
    .footer-grid,
    .bb-copy {
        grid-template-columns: 1fr;
    }

    .cards-three,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .image-pair img {
        height: 340px;
    }
}

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

    .brand img {
        height: 54px;
    }

    .hero,
    .page-hero {
        min-height: 560px;
    }

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

    .section {
        padding: 58px 0;
    }

    .cards-three,
    .gallery-grid,
    .image-pair {
        grid-template-columns: 1fr;
    }

    .image-pair img:first-child {
        margin-top: 0;
    }

    .footer-bottom .container {
        display: block;
    }
}
