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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50:  #fafaf5;
    --cream-100: #f5f5ee;
    --cream-200: #eae8dc;
    --cream-300: #d4d0c0;
    --text-dark: #1a1a18;
    --text-mid:  #4a4a46;
    --text-light:#7a7a72;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--emerald-900);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--emerald-800);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--dark {
    background: var(--emerald-900);
    color: #fff;
    border-color: var(--emerald-900);
}

.btn--dark:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
}

.btn--ghost {
    background: transparent;
    color: var(--emerald-800);
    border-color: var(--emerald-800);
}

.btn--ghost:hover {
    background: var(--emerald-800);
    color: #fff;
}

.btn--light {
    background: #fff;
    color: var(--emerald-900);
    border-color: #fff;
}

.btn--light:hover {
    background: var(--cream-100);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ── Header ───────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(250, 250, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--cream-200);
}

.header.scrolled .logo-text {
    color: var(--text-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    transition: border-color 0.3s;
}

.header.scrolled .logo-mark {
    border-color: var(--emerald-800);
    color: var(--emerald-800);
}

.logo-text {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #fff;
}

.header.scrolled .nav a {
    color: var(--text-mid);
}

.header.scrolled .nav a:hover {
    color: var(--emerald-800);
}

/* ── Mobile nav toggle ────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.header.scrolled .nav-toggle-line {
    background: var(--text-dark);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) 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(-6px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--emerald-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.pexels.com/photos/38447625/pexels-photo-38447625.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') 
        center center / cover no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 78, 59, 0.55) 0%,
        rgba(6, 78, 59, 0.75) 50%,
        rgba(6, 78, 59, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding-top: 5rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 8rem 0;
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-content {
    padding: 2rem 0;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--emerald-800);
    font-style: italic;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
    padding: 8rem 0;
    background: var(--cream-100);
}

.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.menu-header .section-intro {
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--cream-300);
}

.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--emerald-700);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.menu-tab:hover {
    color: var(--text-dark);
}

.menu-tab.active {
    color: var(--emerald-800);
}

.menu-tab.active::after {
    transform: scaleX(1);
}

.menu-panel {
    max-width: 800px;
    margin: 0 auto;
}

.menu-panel.hidden {
    display: none;
}

.menu-grid {
    display: grid;
    gap: 0;
}

.menu-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--cream-200);
    transition: padding-left 0.3s var(--ease-out);
}

.menu-item:hover {
    padding-left: 0.75rem;
}

.menu-item:first-child {
    border-top: 1px solid var(--cream-200);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
}

.menu-item-divider {
    flex: 1;
    height: 1px;
    background: var(--cream-300);
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 8rem 0;
    background: var(--cream-50);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--tall {
    grid-column: 1 / 6;
    aspect-ratio: 3/4;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 3;
    aspect-ratio: 3/2;
}

.gallery-item--wide {
    grid-column: 8 / 13;
    aspect-ratio: 3/2;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 8rem 0;
    background: var(--cream-100);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info {
    padding: 2rem 0;
}

.visit-address {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.visit-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-mid);
    font-size: 0.9375rem;
}

.visit-detail a {
    transition: color 0.3s;
}

.visit-detail a:hover {
    color: var(--emerald-700);
}

.visit-detail svg {
    color: var(--emerald-700);
    flex-shrink: 0;
}

.visit-hours h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-200);
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.hours-row span:last-child {
    color: var(--text-dark);
    font-weight: 400;
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 480px;
    background: var(--cream-200);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 8rem 0;
    background: var(--emerald-900);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact .section-eyebrow {
    color: rgba(255,255,255,0.5);
}

.contact .section-title {
    color: #fff;
}

.contact .section-title em {
    color: rgba(255,255,255,0.7);
}

.contact .section-intro {
    color: rgba(255,255,255,0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #f87171;
}

.form-success {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    padding: 1rem;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-success.hidden {
    display: none;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 3rem 0;
    background: var(--emerald-900);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.footer-name {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.footer-copy,
.footer-address {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav a {
        color: var(--text-dark);
        font-size: 0.9375rem;
    }

    .nav a:hover {
        color: var(--emerald-800);
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

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

    .gallery-item--tall,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide),
    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0;
        border-bottom: none;
    }

    .menu-tab {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
        border-bottom: 1px solid var(--cream-200);
    }

    .menu-tab::after {
        display: none;
    }

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

    .visit-map {
        min-height: 300px;
    }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
