/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-deep:    #1B4332;
    --green-mid:     #2D6A4F;
    --green-light:   #40916C;
    --green-pale:    #B7E4C7;
    --cream:         #F4F1EA;
    --cream-light:   #FAF8F4;
    --cream-dark:    #E8E2D6;
    --ink:           #1A1A1A;
    --ink-light:     #3D3D3D;
    --ink-muted:     #6B6B6B;
    --white:         #FFFFFF;
    --font-serif:    'Lora', Georgia, 'Times New Roman', serif;
    --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
    --radius:        4px;
    --shadow-sm:     0 1px 3px rgba(27,67,50,.06), 0 1px 2px rgba(27,67,50,.04);
    --shadow-md:     0 4px 16px rgba(27,67,50,.08), 0 2px 4px rgba(27,67,50,.04);
    --shadow-lg:     0 12px 40px rgba(27,67,50,.10), 0 4px 12px rgba(27,67,50,.05);
    --transition:    .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-deep);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 200;
    font-size: .875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--green-deep); }

.section-label {
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 24px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: .9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 2px; }

.btn-dark {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}
.btn-dark:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,248,244,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-dark);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-deep);
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-deep);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    font-size: .9375rem;
    font-weight: 400;
    color: var(--ink-light);
    position: relative;
    transition: color var(--transition);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-mid);
    transition: width var(--transition);
}
.nav-menu a:hover { color: var(--green-deep); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream-light);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
}

.hero-text { padding-right: 16px; }

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--green-deep);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.hero-headline em {
    font-style: italic;
    color: var(--green-mid);
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--ink-muted);
}
.hero-meta a {
    color: var(--green-mid);
    font-weight: 500;
    transition: color var(--transition);
}
.hero-meta a:hover { color: var(--green-deep); }
.meta-dot { color: var(--cream-dark); }

.hero-image { position: relative; }
.hero-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--green-pale);
    border-radius: 8px;
    z-index: -1;
}

/* ── Intro ──────────────────────────────────────── */
.intro {
    background: var(--green-deep);
    padding: 64px 24px;
}
.intro-text {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Services ───────────────────────────────────── */
.services {
    padding: 100px 24px;
    background: var(--cream-light);
}
.services .container { max-width: 1100px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 40px 36px;
    transition: var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-pale);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--green-mid);
    margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--green-deep);
}
.service-card p {
    font-size: .9375rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 100px 24px;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-title { margin-bottom: 20px; }
.about-content p {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}
.stat-label {
    font-size: .8125rem;
    color: var(--ink-muted);
    letter-spacing: .02em;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    padding: 100px 24px;
    background: var(--cream-light);
}
.gallery .container { max-width: 1200px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-item--tall { grid-row: span 2; }

/* ── Visit ──────────────────────────────────────── */
.visit {
    padding: 100px 24px;
    background: var(--white);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info .section-title { margin-bottom: 20px; }

.visit-address {
    font-size: 1.0625rem;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 32px;
}

.visit-hours h3 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .8125rem;
}
.visit-hours ul li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: .9375rem;
    color: var(--ink-light);
}
.visit-hours ul li span:last-child { font-weight: 500; color: var(--ink); }

.visit-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9375rem;
    color: var(--green-mid);
    font-weight: 500;
    transition: color var(--transition);
}
.visit-link:hover { color: var(--green-deep); }
.visit-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    background: var(--cream);
}
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 64px 32px;
    text-align: center;
    min-height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--green-mid);
}
.map-placeholder p {
    font-size: .9375rem;
    color: var(--ink-muted);
}

/* ── CTA ────────────────────────────────────────── */
.cta {
    padding: 100px 24px;
    background: var(--green-deep);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cta-text .section-title { color: var(--cream); margin-bottom: 16px; }
.cta-text p {
    font-size: 1.0625rem;
    color: var(--green-pale);
    line-height: 1.75;
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 6px;
}
.optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--ink);
    background: var(--cream-light);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-muted); opacity: .6; }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group--textarea textarea { resize: vertical; min-height: 100px; }

.form-success {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--green-pale);
    color: var(--green-deep);
    border-radius: var(--radius);
    font-size: .9375rem;
    font-weight: 500;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    padding: 48px 24px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
}
.footer-brand .logo-mark {
    background: var(--green-mid);
    color: var(--cream);
}
.footer-copy {
    font-size: .875rem;
    color: rgba(244,241,234,.5);
    line-height: 1.8;
}
.footer-copy a {
    color: var(--green-pale);
    transition: color var(--transition);
}
.footer-copy a:hover { color: var(--white); }

/* ── Animations ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { padding-right: 0; order: 2; }
    .hero-image { order: 1; max-width: 480px; margin: 0 auto; }
    .hero-accent { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrapper { max-width: 480px; }

    .visit-grid { grid-template-columns: 1fr; gap: 40px; }

    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,248,244,.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--cream-dark);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: block; }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--tall img,
    .gallery-item img { height: 220px; }

    .hero-headline { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-meta { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .service-card { padding: 28px 24px; }
    .cta-form-wrapper { padding: 24px; }
    .about-stats { flex-direction: column; gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 240px; }
}
