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

:root {
    --emerald: #064e3b;
    --emerald-deep: #043828;
    --emerald-light: #0a7a5c;
    --cream: #fff7ed;
    --cream-dark: #f5ebe0;
    --cream-mid: #faf3e8;
    --charcoal: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    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; }

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

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

/* ── Typography ───────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-light);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--emerald);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--light {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--white);
}
.btn--light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

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

.btn--small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 247, 237, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--emerald);
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
}

.logo-word {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald);
    letter-spacing: -0.02em;
}

.site-header:not(.scrolled) .logo-word {
    color: var(--white);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-light);
    transition: var(--transition);
}

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

.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a::after { background: var(--emerald); }
.site-header:not(.scrolled) .main-nav a:hover { color: var(--white); }

.main-nav .btn--small {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.main-nav .btn--small:hover {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--white);
}

.site-header.scrolled .main-nav .btn--small {
    color: var(--white);
    border-color: var(--emerald);
}
.site-header.scrolled .main-nav .btn--small:hover {
    background: var(--emerald);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.pexels.com/photos/38390583/pexels-photo-38390583.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280')
        center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 56, 40, 0.55) 0%,
        rgba(6, 78, 59, 0.65) 50%,
        rgba(4, 30, 22, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
    max-width: 780px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,247,237,0.7);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: rgba(255,247,237,0.8);
    margin-bottom: 44px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,247,237,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── Intro Strip ──────────────────────────────────── */
.intro-strip {
    background: var(--emerald);
    padding: 64px 0;
}

.intro-strip-inner {
    max-width: 800px;
}

.intro-strip-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream);
}

.intro-strip-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,247,237,0.5);
    margin-bottom: 16px;
    font-style: normal;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.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 ease;
}

.about-image-wrap:hover img { transform: scale(1.03); }

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(6, 78, 59, 0.15);
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.sig-word {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald);
    font-style: italic;
}

.sig-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
    padding: 120px 0;
    background: var(--cream-dark);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.menu-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--emerald);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

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

.menu-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Space ────────────────────────────────────────── */
.space {
    padding: 120px 0;
    background: var(--cream);
}

.space-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.space-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.space-img-main {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.space-img-main img,
.space-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.space-img-main:hover img,
.space-img-secondary:hover img { transform: scale(1.03); }

.space-img-secondary {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.space-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.space-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.feature-item svg {
    color: var(--emerald);
    flex-shrink: 0;
}

/* ── Testimonial ──────────────────────────────────── */
.testimonial {
    padding: 100px 0;
    background: var(--emerald);
    text-align: center;
}

.testimonial-quote {
    color: rgba(255,247,237,0.25);
    margin-bottom: 32px;
}

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: var(--cream);
    max-width: 760px;
    margin: 0 auto 28px;
}

.testimonial-attribution {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,247,237,0.5);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 120px 0;
    background: var(--cream-dark);
}

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

.visit-address {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(6, 78, 59, 0.15);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-value {
    font-size: 1.0625rem;
    color: var(--emerald);
    font-weight: 500;
    transition: var(--transition);
}
.detail-value:hover { color: var(--emerald-light); }

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    font-size: 0.9375rem;
}

.hours-row span:first-child { color: var(--text-light); }
.hours-row span:last-child { font-weight: 500; color: var(--charcoal); }

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.12);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 14px 16px;
    border: 1.5px solid rgba(6, 78, 59, 0.2);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
}

.form-success {
    padding: 16px 20px;
    background: rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(6, 78, 59, 0.2);
    border-radius: 10px;
    color: var(--emerald);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand .logo-word {
    color: var(--white);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9375rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid,
    .space-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap { aspect-ratio: 16/10; }

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

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

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 247, 237, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.25rem;
        color: var(--text) !important;
    }

    .main-nav a::after { background: var(--emerald) !important; }

    .main-nav .btn--small {
        color: var(--white) !important;
        border-color: var(--emerald) !important;
    }

    .hero-content { padding: 140px 0 100px; }

    .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .space-features { grid-template-columns: 1fr; }

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

    .footer-inner { grid-template-columns: 1fr; gap: 36px; }

    .intro-strip { padding: 48px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
