*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream-50: #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #ebe7dc;
    --cream-300: #d9d3c4;
    --emerald-800: #166534;
    --emerald-900: #14532d;
    --emerald-950: #052e16;
    --font-sans: 'Instrument Sans', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: #1a1a1a;
    background: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, dl { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--emerald-900); color: #fff;
    padding: .5rem 1rem; border-radius: 0 0 6px 6px; z-index: 200;
    font-size: .875rem;
}
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,249,246,.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.06); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400;
    color: var(--emerald-900);
}
.nav-logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--emerald-900); color: #d9f99d;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: .95rem; font-weight: 500;
}
.nav-menu {
    display: flex; align-items: center; gap: 2rem;
}
.nav-link {
    font-size: .8125rem; font-weight: 400; letter-spacing: .06em;
    text-transform: uppercase; color: #555;
    transition: color .2s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--emerald-800);
    transition: width .25s ease;
}
.nav-link:hover { color: var(--emerald-900); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    font-size: .8125rem; font-weight: 500; letter-spacing: .04em;
    color: var(--emerald-800);
    padding: .5rem 1rem; border: 1px solid var(--emerald-800);
    border-radius: 6px; transition: all .2s;
}
.nav-cta:hover { background: var(--emerald-800); color: #fff; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 24px; padding: 4px 0;
}
.nav-toggle-line {
    display: block; height: 1.5px; background: #333;
    border-radius: 2px; transition: all .3s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}
.nav-menu.open {
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(250,249,246,.97);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
    gap: 1rem;
}

/* ─── HERO ─── */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 5rem 1.5rem 3rem;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.45) saturate(.8);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(5,46,22,.82) 0%, rgba(20,83,45,.70) 50%, rgba(5,46,22,.85) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 1200px; width: 100%;
    display: grid; grid-template-columns: 1fr 300px;
    gap: 3rem; align-items: center;
}
.hero-card {
    max-width: 560px;
}
.hero-greeting {
    font-family: var(--font-serif); font-style: italic;
    font-size: 1.125rem; color: #86efac;
    margin-bottom: .75rem; letter-spacing: .02em;
}
.hero-headline {
    font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400; line-height: 1.1; color: #fff;
    margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.0625rem; color: rgba(255,255,255,.78);
    line-height: 1.75; margin-bottom: 2rem; max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8125rem 1.5rem; border-radius: 8px;
    font-size: .9375rem; font-weight: 500; letter-spacing: .02em;
    transition: all .25s ease; border: 1px solid transparent;
}
.btn-primary {
    background: #d9f99d; color: var(--emerald-950); border-color: #d9f99d;
}
.btn-primary:hover { background: #bef26e; border-color: #bef26e; transform: translateY(-1px); }
.btn-ghost {
    background: transparent; color: #fff; border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-light {
    background: #fff; color: var(--emerald-900); border-color: #fff;
}
.btn-light:hover { background: var(--cream-100); transform: translateY(-1px); }
.btn-ghost-light {
    background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.7); }

.hero-stats {
    display: flex; flex-direction: column; gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px; padding: 1.25rem 1.5rem;
    display: flex; flex-direction: column; gap: .25rem;
}
.stat-num {
    font-family: var(--font-serif); font-size: 1.375rem;
    font-weight: 500; color: #d9f99d;
}
.stat-label {
    font-size: .8125rem; color: rgba(255,255,255,.65);
    letter-spacing: .04em; text-transform: uppercase;
}

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase; color: var(--emerald-800);
    margin-bottom: .75rem;
}
.section-title {
    font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400; line-height: 1.2; color: var(--emerald-950);
    margin-bottom: 1rem; letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.0625rem; color: #555; max-width: 520px; line-height: 1.75;
}
.section-header { margin-bottom: 3.5rem; }

/* ─── SERVICES ─── */
.services {
    padding: 7rem 0;
    background: var(--cream-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--cream-200);
    border-radius: 12px; padding: 2rem;
    transition: all .3s ease;
}
.service-card:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 8px 32px rgba(20,83,45,.08);
    transform: translateY(-3px);
}
.service-icon-wrap {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--emerald-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald-800); margin-bottom: 1.25rem;
    transition: background .3s;
}
.service-card:hover .service-icon-wrap { background: var(--emerald-100); }
.service-name {
    font-family: var(--font-serif); font-size: 1.25rem;
    font-weight: 500; color: var(--emerald-950); margin-bottom: .5rem;
}
.service-desc { font-size: .9375rem; color: #666; line-height: 1.7; }

/* ─── ABOUT ─── */
.about {
    padding: 7rem 0;
    background: var(--cream-100);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
    position: absolute; bottom: -2rem; right: -1.5rem;
    border-radius: 12px; overflow: hidden;
    border: 5px solid var(--cream-100);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.about-img-accent img { width: 240px; height: 180px; object-fit: cover; }
.about-content { }
.about-body {
    font-size: 1rem; color: #444; line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-signature {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--cream-200);
}
.signature-text {
    font-family: var(--font-serif); font-style: italic;
    font-size: 1.125rem; color: var(--emerald-800); margin-bottom: .5rem;
}
.signature-line {
    display: block; width: 48px; height: 1px;
    background: var(--emerald-300);
}

/* ─── GALLERY ─── */
.gallery {
    padding: 7rem 0;
    background: var(--cream-50);
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.gallery-item {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.gallery-item img {
    width: 100%; height: 280px; object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ─── VISIT ─── */
.visit {
    padding: 7rem 0;
    background: var(--cream-100);
}
.visit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.visit-info { }
.visit-desc {
    font-size: 1rem; color: #555; line-height: 1.8;
    margin-bottom: 2rem;
}
.visit-details { margin-bottom: 2rem; }
.visit-detail {
    display: flex; gap: 1rem; padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-200);
}
.visit-detail dt {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase; color: var(--emerald-800);
    min-width: 80px;
}
.visit-detail dd { font-size: .9375rem; color: #444; line-height: 1.6; }
.visit-link { color: #333; transition: color .2s; }
.visit-link:hover { color: var(--emerald-800); }
.hours-list { display: flex; flex-direction: column; gap: .35rem; }
.hours-day { font-weight: 500; color: #333; }
.hours-time { color: #666; }
.btn-directions {
    margin-top: .5rem;
}
.visit-map {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    min-height: 420px;
}

/* ─── CTA ─── */
.cta-section {
    padding: 7rem 0;
    background: var(--emerald-950);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(22,101,52,.5) 0%, transparent 70%);
}
.cta-card {
    position: relative; text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-pre {
    font-size: .8125rem; font-weight: 500; letter-spacing: .16em;
    text-transform: uppercase; color: #86efac; margin-bottom: .75rem;
}
.cta-title {
    font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; color: #fff; line-height: 1.2;
    margin-bottom: 1rem;
}
.cta-body {
    font-size: 1.0625rem; color: rgba(255,255,255,.7);
    line-height: 1.75; margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
    background: var(--emerald-950);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,.7);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-serif); font-size: 1.125rem;
    color: #fff; margin-bottom: .75rem;
}
.footer-logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(217,249,157,.15); color: #86efac;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: .9rem; font-weight: 500;
}
.footer-tagline { font-size: .9375rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-contact { }
.footer-link {
    font-size: .9375rem; color: rgba(255,255,255,.6);
    transition: color .2s; line-height: 1.7;
}
.footer-link:hover { color: #86efac; }
.footer-hours-title {
    font-size: .75rem; font-weight: 500; letter-spacing: .12em;
    text-transform: uppercase; color: #86efac; margin-bottom: .75rem;
}
.footer-hours p { font-size: .9375rem; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-hours-day { font-weight: 500; color: rgba(255,255,255,.75); }
.footer-bottom {
    padding-top: 2rem;
    font-size: .8125rem; color: rgba(255,255,255,.3);
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Default state for reduced motion — always visible */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-card { flex: 1; min-width: 120px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-accent { right: 0; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu.open { display: flex; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .services { padding: 5rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .about { padding: 5rem 0; }
    .about-img-main img { height: 360px; }
    .about-img-accent { bottom: -1.5rem; right: -.5rem; }
    .about-img-accent img { width: 180px; height: 140px; }
    .gallery { padding: 5rem 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 220px; }
    .visit { padding: 5rem 0; }
    .cta-section { padding: 5rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-direction: column; }
    .stat-card { flex: none; }
    .cta-actions { flex-direction: column; align-items: center; }
}
