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

:root {
    --emerald-950: #052e16;
    --emerald-900: #14532d;
    --emerald-800: #166534;
    --emerald-700: #15803d;
    --emerald-600: #16a34a;
    --cream-50:  #fefdf8;
    --cream-100: #fdf9ef;
    --cream-200: #faf0d6;
    --line: rgba(20, 83, 45, 0.10);
    --line-strong: rgba(20, 83, 45, 0.20);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    background: var(--cream-50);
    color: var(--emerald-950);
    font-family: var(--font-sans);
    font-weight: 300;
    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 { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

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

/* ── Section ──────────────────────────────────────── */
.section {
    padding: 100px 0;
}
.section--alt {
    background: var(--cream-100);
}

/* ── Eyebrow / Title / Desc ───────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    color: var(--emerald-950);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--emerald-800);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Thin Divider ─────────────────────────────────── */
.thin-divider {
    height: 1px;
    background: var(--line);
    margin: 0;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.btn--primary {
    background: var(--emerald-900);
    color: #f0fdf4;
    border: 1px solid var(--emerald-900);
}
.btn--primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(5, 46, 22, 0.2);
}
.btn--ghost {
    background: transparent;
    color: var(--emerald-950);
    border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
    border-color: var(--emerald-700);
    color: var(--emerald-700);
}
.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
    box-shadow: 0 1px 12px rgba(5, 46, 22, 0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--emerald-950);
}
.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--emerald-900);
    color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
}
.nav-logo-text { display: none; }
@media (min-width: 640px) {
    .nav-logo-text { display: inline; }
}
.nav-links {
    display: none;
    list-style: none;
    gap: 32px;
    align-items: center;
}
@media (min-width: 768px) {
    .nav-links { display: flex; }
}
.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-800);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-700);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--emerald-600); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
    background: var(--emerald-900);
    color: #f0fdf4;
    padding: 10px 22px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: background 0.2s, transform 0.2s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
    background: var(--emerald-800);
    color: #f0fdf4;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--emerald-950);
    transition: background 0.2s;
}
.nav-toggle:hover { background: var(--cream-100); }
@media (min-width: 768px) {
    .nav-toggle { display: none; }
}
.nav-toggle-icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon-close { display: block; }

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.nav-overlay-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--emerald-950);
    transition: color 0.2s;
}
.nav-overlay-link:hover { color: var(--emerald-600); }
.nav-overlay-link--cta {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--emerald-900);
    color: #f0fdf4;
    padding: 14px 32px;
    border-radius: 100px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #052e16 0%,
        #14532d 25%,
        #166534 45%,
        #15803d 65%,
        #16a34a 85%,
        #22c55e 100%
    );
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(34, 197, 94, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(20, 83, 45, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(5, 46, 22, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 253, 244, 0.6);
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #f0fdf4;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero-title br { display: none; }
@media (min-width: 640px) {
    .hero-title br { display: block; }
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(240, 253, 244, 0.75);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.hero-actions .btn--primary {
    background: #f0fdf4;
    color: var(--emerald-950);
    border-color: #f0fdf4;
}
.hero-actions .btn--primary:hover {
    background: var(--cream-200);
    border-color: var(--cream-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.hero-actions .btn--ghost {
    border-color: rgba(240, 253, 244, 0.3);
    color: #f0fdf4;
}
.hero-actions .btn--ghost:hover {
    border-color: rgba(240, 253, 244, 0.7);
    color: #f0fdf4;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(240, 253, 244, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Services Grid ────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--cream-50);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(5, 46, 22, 0.08);
}
.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cream-100);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 24px;
    transition: background 0.3s;
}
.service-card:hover .service-card-icon {
    background: var(--emerald-900);
    border-color: var(--emerald-900);
    color: #f0fdf4;
}
.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--emerald-950);
    margin-bottom: 12px;
}
.service-card-desc {
    font-size: 0.9375rem;
    color: var(--emerald-800);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.about-image-wrap:hover img {
    transform: scale(1.03);
}
.about-content { max-width: 480px; }
.about-content .section-eyebrow,
.about-content .section-title,
.about-content p,
.about-stats { text-align: left; }
.about-content p {
    font-size: 1rem;
    color: var(--emerald-800);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--emerald-900);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--emerald-700);
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    background: var(--line-strong);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: auto;
}
.gallery-item:first-child {
    aspect-ratio: 5/6;
}
.gallery-item:nth-child(2) {
    aspect-ratio: 5/4;
}
.gallery-item:nth-child(3) {
    aspect-ratio: 5/4;
}
.gallery-item:last-child {
    aspect-ratio: 5/6;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.04);
}

/* ── Visit / Hours ────────────────────────────────── */
.visit-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) {
    .visit-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.visit-info .section-eyebrow,
.visit-info .section-title { text-align: left; }
.visit-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 32px;
    font-size: 1rem;
    color: var(--emerald-800);
    line-height: 1.7;
}
.visit-address svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--emerald-600);
}
.visit-hours {
    list-style: none;
}
.visit-hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9375rem;
}
.visit-hours-day {
    color: var(--emerald-950);
    font-weight: 400;
}
.visit-hours-time {
    color: var(--emerald-700);
    font-weight: 300;
}
.visit-hours li:last-child { border-bottom: none; }
.visit-hours-day:has(~ li:has(.visit-hours-time:contains("Closed"))) {
    color: var(--emerald-600);
}
.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.visit-map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.visit-map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.visit-map-link:hover img {
    transform: scale(1.03);
}
.visit-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.85), transparent);
    color: #f0fdf4;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.visit-map-link:hover .visit-map-overlay { opacity: 1; }

/* ── Contact Form ─────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) {
    .contact-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.contact-info .section-eyebrow,
.contact-info .section-title { text-align: left; }
.contact-info .section-desc { text-align: left; margin: 0 0 32px; }
.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--emerald-800);
}
.contact-details svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--emerald-600);
}
.contact-details a {
    color: var(--emerald-700);
    transition: color 0.2s;
}
.contact-details a:hover { color: var(--emerald-500); }

/* Form */
.contact-form-wrap {
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--cream-50);
    color: var(--emerald-950);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-input::placeholder { color: rgba(20, 83, 45, 0.35); }
.form-input:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.form-note {
    font-size: 0.8125rem;
    color: var(--emerald-700);
    margin-top: 16px;
    text-align: center;
    opacity: 0.7;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--emerald-600);
    margin: 0 auto 20px;
}
.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--emerald-950);
    margin-bottom: 12px;
}
.form-success-text {
    font-size: 0.9375rem;
    color: var(--emerald-800);
    line-height: 1.7;
}
.form-success-text a {
    color: var(--emerald-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hidden { display: none !important; }

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--emerald-950);
    color: rgba(240, 253, 244, 0.6);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(240, 253, 244, 0.08);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #f0fdf4;
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.875rem;
    color: rgba(240, 253, 244, 0.5);
    transition: color 0.2s;
}
.footer-links a:hover { color: #f0fdf4; }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(240, 253, 244, 0.5);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #f0fdf4; }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(240, 253, 244, 0.3);
}

/* ── Scroll Reveal ────────────────────────────────── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(24px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
