/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: #1a3c34;
    background: #faf8f4;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #1a3c34; color: #faf8f4;
    padding: 0.5rem 1rem; border-radius: 0 0 8px 8px;
    z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d7a5f;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #1a3c34;
    margin-bottom: 1.5rem;
}
.eyebrow-green { color: #3d7a5f; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #1a3c34;
    color: #faf8f4;
}
.btn-primary:hover { background: #2d5e47; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: #1a3c34;
    border: 1.5px solid #1a3c34;
}
.btn-outline:hover { background: #1a3c34; color: #faf8f4; }
.btn-white {
    background: #faf8f4;
    color: #1a3c34;
}
.btn-white:hover { background: #e8e4dc; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8125rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(26, 60, 52, 0.08); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #1a3c34;
}
.logo-icon { color: #3d7a5f; }
.nav-list {
    display: flex; align-items: center; gap: 2rem;
}
.nav-list a {
    font-size: 0.875rem; font-weight: 500;
    color: #1a3c34;
    position: relative;
    transition: color 0.2s;
}
.nav-list a:not(.btn):hover { color: #3d7a5f; }
.nav-list a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: #3d7a5f;
    transition: width 0.25s ease;
}
.nav-list a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    position: relative;
    align-items: center; justify-content: center;
}
.hamburger {
    display: block; width: 22px; height: 2px;
    background: #1a3c34; position: relative;
    transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
    width: 100%; height: 2px; background: #1a3c34;
    transition: all 0.3s ease;
}
.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;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #faf8f4 0%, #f0ebe3 50%, #e8e4dc 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #3d7a5f; margin-bottom: 1rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: #1a3c34;
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    color: #3d7a5f;
}
.hero-desc {
    font-size: 1.0625rem;
    color: #3d5a4e;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta { display: flex; gap: 2rem; }
.meta-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 500;
    color: #3d5a4e;
}
.meta-item svg { color: #3d7a5f; }

/* Hero visuals */
.hero-visual {
    position: relative;
    height: 700px;
}
.hero-img-main {
    width: 75%;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(26, 60, 52, 0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: 40px; right: 0;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 60, 52, 0.18);
    border: 4px solid #faf8f4;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute;
    top: 40px; right: 20%;
    display: flex; align-items: center; gap: 0.5rem;
    background: #1a3c34; color: #faf8f4;
    padding: 0.625rem 1.125rem;
    border-radius: 100px;
    font-size: 0.8125rem; font-weight: 500;
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.2);
}
.hero-badge svg { color: #7bc48f; }

/* ===== ABOUT ===== */
.about {
    padding: 8rem 0;
    background: #faf8f4;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-lg {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(26, 60, 52, 0.12);
}
.about-img-lg img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm {
    position: absolute;
    bottom: -40px; right: -30px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 60, 52, 0.15);
    border: 4px solid #faf8f4;
}
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-content { max-width: 520px; }
.about-content p {
    font-size: 1rem;
    color: #3d5a4e;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}
.about-stats {
    display: flex; gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(26, 60, 52, 0.12);
}
.stat { text-align: center; flex: 1; }
.stat-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem; color: #3d7a5f;
    line-height: 1; margin-bottom: 0.375rem;
}
.stat-label {
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #6b8f82;
}
.stat-divider {
    width: 1px; background: rgba(26, 60, 52, 0.12);
    align-self: stretch; margin: 0.5rem 0;
}

/* ===== MENU ===== */
.menu {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f5f2ec 0%, #faf8f4 100%);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-title { margin-bottom: 0.75rem; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.menu-category {
    background: #faf8f4;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 60, 52, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.menu-category:hover {
    box-shadow: 0 16px 48px rgba(26, 60, 52, 0.1);
    transform: translateY(-4px);
}
.menu-cat-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
}
.menu-cat-header svg { color: #3d7a5f; flex-shrink: 0; }
.menu-cat-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.375rem; color: #1a3c34;
}
.menu-list { display: flex; flex-direction: column; gap: 1rem; }
.menu-list li {
    display: flex; justify-content: space-between;
    align-items: baseline; gap: 1rem;
}
.menu-item-name {
    font-weight: 500; color: #1a3c34;
    font-size: 0.9375rem;
}
.menu-item-desc {
    font-size: 0.8125rem; color: #6b8f82;
    text-align: right; flex-shrink: 0;
    line-height: 1.4;
}
.menu-note {
    text-align: center;
    font-size: 0.875rem; color: #6b8f82;
    margin-top: 2.5rem;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 8rem 0;
    background: #faf8f4;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.08);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item--tall { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item--tall img { min-height: 500px; }
.gallery-item:not(--tall) { grid-column: span 4; }
.gallery-item:not(.gallery-item--tall) img { min-height: 240px; }
.gallery-item--wide { grid-column: 1 / 13; }
.gallery-item--wide img { min-height: 280px; }

/* ===== VISIT ===== */
.visit {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a3c34 0%, #2d5e47 100%);
    color: #faf8f4;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit .section-eyebrow { color: #7bc48f; }
.visit .section-title { color: #faf8f4; margin-bottom: 2.5rem; }
.visit-details { margin-bottom: 2.5rem; }
.visit-row {
    display: flex; gap: 1rem;
    margin-bottom: 1.5rem; align-items: flex-start;
}
.visit-row svg { color: #7bc48f; flex-shrink: 0; margin-top: 2px; }
.visit-row strong {
    display: block;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #7bc48f; margin-bottom: 0.25rem;
}
.visit-row span, .visit-row a {
    font-size: 1rem; color: rgba(250, 248, 244, 0.8);
    line-height: 1.6;
}
.visit-row a:hover { color: #faf8f4; text-decoration: underline; }
.visit-hours {
    background: rgba(250, 248, 244, 0.06);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(250, 248, 244, 0.1);
}
.visit-hours-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem; color: #faf8f4;
    margin-bottom: 1rem;
}
.hours-row {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.06);
    color: rgba(250, 248, 244, 0.75);
}
.hours-row:last-child { border-bottom: none; }
.visit-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; }

/* ===== CTA ===== */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0ebe3 0%, #faf8f4 100%);
}
.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-eyebrow { margin-bottom: 1rem; }
.cta-title { margin-bottom: 1rem; }
.cta-desc {
    font-size: 1.0625rem;
    color: #3d5a4e;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 0;
    background: #faf8f4;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-content p {
    font-size: 1rem; color: #3d5a4e;
    line-height: 1.75; margin-top: 1rem;
}
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 60, 52, 0.08);
    box-shadow: 0 8px 32px rgba(26, 60, 52, 0.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: #1a3c34; margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(26, 60, 52, 0.15);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a3c34;
    background: #faf8f4;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #3d7a5f;
    box-shadow: 0 0 0 3px rgba(61, 122, 95, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0b8ae; }
.form-group textarea { resize: vertical; }
.form-success {
    display: flex; align-items: center; gap: 0.625rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(61, 122, 95, 0.08);
    border-radius: 12px;
    font-size: 0.9375rem; color: #1a3c34;
    font-weight: 500;
}
.form-success svg { color: #3d7a5f; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
    background: #1a3c34;
    color: rgba(250, 248, 244, 0.7);
    padding: 4rem 0 2rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-brand .logo { color: #faf8f4; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; margin-bottom: 0.375rem; }
.footer-brand a { color: rgba(250, 248, 244, 0.7); transition: color 0.2s; }
.footer-brand a:hover { color: #faf8f4; }
.footer-nav {
    display: flex; gap: 2rem; flex-wrap: wrap;
}
.footer-nav a {
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: #7bc48f; }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 244, 0.1);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.8125rem; color: rgba(250, 248, 244, 0.45);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list a { font-size: 1.125rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-content { padding-right: 0; order: 1; }
    .hero-visual { order: 0; height: 400px; }
    .hero-img-main { width: 60%; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 500px; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--tall { grid-column: 1 / 7; grid-row: auto; }
    .gallery-item:not(.gallery-item--tall) { grid-column: span 6; }
    .gallery-item--wide { grid-column: 1 / 13; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
    .hero-visual { height: 320px; }
    .hero-img-main { width: 65%; }
    .hero-img-float { width: 55%; bottom: 20px; }
    .hero-meta { flex-direction: column; gap: 0.75rem; }
    .about-img-sm { right: -10px; bottom: -20px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--tall { grid-column: 1 / -1; }
    .gallery-item:not(.gallery-item--tall) { grid-column: span 1; }
    .gallery-item--wide { grid-column: 1 / -1; }
    .about-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 100%; height: 1px; margin: 0; }
    .footer-nav { gap: 1.25rem; }
    .footer-bottom { flex-direction: column; }
    .contact-form-wrap { padding: 1.75rem; }
}
