:root {
    --forest: #38453a;
    --beige: #c4b293;
    --pine: #67736a;
    --off-white: #f7f5f1;
    --charcoal: #2f3132;
    --gold: #c8a23c;
    --white: #ffffff;
    --line: rgba(47, 49, 50, 0.14);
    --shadow: 0 24px 70px rgba(47, 49, 50, 0.18);
    --radius: 8px;
    --content: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container {
    width: min(100% - 32px, var(--content));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: var(--radius);
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 14px;
    text-decoration: none;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 245, 241, 0.92);
    border-bottom: 1px solid rgba(47, 49, 50, 0.08);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    flex: 0 0 auto;
}

.brand strong {
    display: block;
    color: var(--forest);
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--pine);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    border-radius: var(--radius);
    color: var(--charcoal);
    font-size: 0.94rem;
    font-weight: 700;
    padding: 10px 12px;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
    background: rgba(56, 69, 58, 0.1);
    color: var(--forest);
}

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

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--forest);
}

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

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

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

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(47, 49, 50, 0.88), rgba(47, 49, 50, 0.58) 46%, rgba(47, 49, 50, 0.18)),
        linear-gradient(0deg, rgba(47, 49, 50, 0.38), rgba(47, 49, 50, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 80px;
}

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

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

h1,
h2,
h3 {
    color: var(--forest);
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.hero h1 {
    width: min(720px, 100%);
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6.7rem);
    letter-spacing: 0;
}

.hero-copy {
    width: min(580px, 100%);
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
}

.button-primary {
    background: var(--gold);
    color: #1e211f;
}

.button-primary:hover {
    background: #d6b454;
}

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

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible {
    position: relative;
    z-index: 2;
}

.notice {
    border-left: 4px solid var(--gold);
    margin: 0;
    padding: 12px 14px;
    font-size: 0.94rem;
    font-weight: 700;
}

.hero-notice {
    width: min(680px, 100%);
    margin-top: 32px;
    background: rgba(47, 49, 50, 0.56);
    color: rgba(255, 255, 255, 0.93);
}

.section {
    scroll-margin-top: 88px;
    padding-block: clamp(64px, 8vw, 104px);
}

.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.section h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-copy p,
.section-intro {
    color: #4d524e;
    font-size: 1.05rem;
}

.section-copy p:last-child {
    margin-bottom: 0;
}

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

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

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

.card {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--off-white);
    padding: 24px;
}

.card-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(200, 162, 60, 0.18);
    color: #6b5313;
    font-size: 0.82rem;
    font-weight: 900;
}

.card h3,
.feature h3,
.contact-panel h3 {
    margin: 22px 0 10px;
    font-size: 1.35rem;
}

.card p,
.feature p {
    margin-bottom: 0;
    color: #525852;
}

.why-section {
    background:
        linear-gradient(180deg, rgba(56, 69, 58, 0.06), rgba(56, 69, 58, 0)),
        var(--off-white);
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature {
    border-top: 1px solid var(--line);
    padding-block: 18px;
}

.feature:first-child {
    border-top: 0;
    padding-top: 0;
}

.feature h3 {
    margin-top: 0;
}

.contact-main {
    min-width: 0;
}

.contact-notice {
    margin: 24px 0;
    background: rgba(56, 69, 58, 0.07);
}

.contact-actions .button-secondary {
    border-color: var(--forest);
    color: var(--forest);
    background: transparent;
}

.contact-actions .button-secondary:hover {
    background: rgba(56, 69, 58, 0.08);
}

.contact-panel {
    border-radius: var(--radius);
    background: var(--forest);
    color: var(--white);
    padding: 28px;
    box-shadow: var(--shadow);
}

.map-frame {
    aspect-ratio: 16 / 10;
    margin: -12px -12px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-panel h3 {
    color: var(--white);
}

address {
    font-style: normal;
}

.map-note {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.hours {
    margin: 0;
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-block: 12px;
}

.hours dt {
    font-weight: 800;
}

.hours dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
}

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.82);
    padding-block: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.footer-brand strong,
.footer-brand small {
    color: var(--white);
}

.footer-notice {
    border-left-color: var(--beige);
    padding-block: 8px;
}

.footer-meta {
    margin: 0;
    white-space: nowrap;
}

.footer-meta a {
    color: var(--white);
    font-weight: 800;
    text-decoration-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
    .nav {
        flex-wrap: wrap;
    }

    .js-enabled .nav {
        flex-wrap: nowrap;
    }

    .js-enabled .nav-toggle {
        display: block;
    }

    .nav-links {
        position: static;
        display: flex;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid var(--line);
        background: var(--off-white);
        padding: 8px 0 14px;
        box-shadow: none;
    }

    .js-enabled .nav-links {
        position: fixed;
        inset: 72px 0 auto;
        display: none;
        flex: initial;
        border-top: 0;
        border-bottom: 1px solid var(--line);
        padding: 12px 16px 18px;
        box-shadow: 0 20px 40px rgba(47, 49, 50, 0.14);
    }

    .js-enabled .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 12px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(47, 49, 50, 0.9), rgba(47, 49, 50, 0.6)),
            linear-gradient(0deg, rgba(47, 49, 50, 0.34), rgba(47, 49, 50, 0.1));
    }

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

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--content));
    }

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

    .brand small {
        font-size: 0.68rem;
    }

    .hero {
        min-height: 680px;
    }

    .hero-media img {
        object-position: 58% center;
    }

    .hero-content {
        padding-block: 56px;
    }

    .hero h1 {
        font-size: 2.85rem;
    }

    .button {
        width: 100%;
    }

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

    .card {
        min-height: 0;
    }

    .hours div {
        display: block;
    }

    .hours dd {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}

@media print {
    .site-header,
    .hero-media,
    .hero-overlay,
    .hero-actions,
    .map-frame,
    .button {
        display: none !important;
    }

    body {
        background: var(--white);
        color: #000;
    }

    .hero,
    .site-footer,
    .contact-panel {
        background: var(--white);
        color: #000;
        box-shadow: none;
    }

    .hero {
        min-height: 0;
    }

    .hero h1,
    .hero-copy,
    .contact-panel h3,
    .footer-brand strong,
    .footer-brand small,
    .footer-meta a {
        color: #000;
    }

    .section,
    .hero-content,
    .site-footer {
        padding-block: 24px;
    }
}
