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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #ebe7dc;
    --cream-300: #e0dbce;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--emerald-800);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 100;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-md);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--emerald-800);
    letter-spacing: -0.01em;
}

.logo-mark {
    color: var(--emerald-700);
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    list-style: none;
}

.primary-nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--stone-600);
    transition: color var(--transition-fast);
    position: relative;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-700);
    transition: width var(--transition-base);
}

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

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-800);
    color: #fff;
    border: 1.5px solid var(--emerald-800);
}

.btn--primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--stone-700);
    border: 1.5px solid var(--stone-300);
}

.btn--ghost:hover {
    border-color: var(--emerald-700);
    color: var(--emerald-800);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn--full {
    width: 100%;
}

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    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);
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream-50);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-xl);
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background: var(--emerald-600);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--stone-900);
    margin-bottom: var(--space-xl);
}

.hero-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-600);
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--emerald-800);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--stone-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--stone-200);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -24px;
    left: -32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: 4px solid var(--cream-50);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Section shared ─── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--stone-900);
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-500);
    max-width: 520px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ─── About ─── */
.about {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content {
    max-width: 480px;
}

.about-content p {
    color: var(--stone-600);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--cream-200);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--stone-700);
    font-weight: 400;
}

.value-icon {
    flex-shrink: 0;
    color: var(--emerald-700);
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Menu ─── */
.menu {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.menu-cat {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--stone-500);
    border: 1.5px solid var(--stone-200);
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.menu-cat:hover {
    border-color: var(--emerald-300, #a7f3d0);
    color: var(--emerald-700);
}

.menu-cat.active {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.menu-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--stone-100);
    transition: all var(--transition-base);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.menu-item-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-body {
    padding: var(--space-lg);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--stone-900);
}

.menu-item-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: rgba(6, 95, 70, 0.08);
    padding: 2px 8px;
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--stone-500);
}

/* ─── Process ─── */
.process {
    padding: var(--space-4xl) 0;
    background: var(--emerald-900);
    color: #fff;
}

.process .section-eyebrow {
    color: var(--emerald-400, #6ee7b7);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.15);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.process-step-connector {
    display: none;
}

/* ─── Visit ─── */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-info {
    max-width: 480px;
}

.visit-details {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    font-style: normal;
}

.visit-row {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--cream-200);
}

.visit-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-400);
    padding-top: 2px;
}

.visit-row span,
.visit-row a {
    font-size: 0.9375rem;
    color: var(--stone-700);
    line-height: 1.7;
}

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

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ─── Form ─── */
.visit-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--stone-100);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--stone-900);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--stone-500);
    margin-bottom: var(--space-2xl);
    line-height: 1.65;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-500);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--stone-800);
    background: var(--cream-50);
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input::placeholder {
    color: var(--stone-400);
}

.form-input:focus {
    border-color: var(--emerald-600);
    background: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(6, 95, 70, 0.06);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--emerald-800);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--stone-900);
    color: rgba(255,255,255,0.6);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
}

.footer-brand p {
    font-size: 0.875rem;
    margin-top: var(--space-md);
    line-height: 1.7;
    max-width: 280px;
}

.footer-brand .logo {
    color: #fff;
}

.footer-brand .logo-mark {
    color: var(--emerald-500);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact span {
    font-size: 0.875rem;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

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

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: var(--space-2xl);
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--cream-200);
        padding: var(--space-xl);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
        justify-content: center;
    }

    .hero-image-accent {
        left: 0;
        bottom: -16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step-connector {
        display: none;
    }

    .visit-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .menu-categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

    .menu-cat {
        flex-shrink: 0;
    }
}
