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

:root {
    --green-900: #1a3a2a;
    --green-800: #234d36;
    --green-700: #2d5f44;
    --green-600: #3a7a56;
    --green-500: #4a9466;
    --green-400: #6aab82;
    --green-100: #d4e8d8;
    --green-50: #eaf5ec;
    --cream: #f7f5f0;
    --cream-light: #faf9f7;
    --white: #ffffff;
    --text-primary: #1a1a18;
    --text-secondary: #4a4a46;
    --text-muted: #8a8a84;
    --line: rgba(26, 58, 42, 0.12);
    --line-strong: rgba(26, 58, 42, 0.25);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, sans-serif;
    --nav-width: 260px;
}

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

body {
    font-family: var(--font-sans);
    background: var(--cream-light);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── Side Navigation ── */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background: var(--green-900);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 32px;
    z-index: 100;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.nav-sub {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-top: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-400);
    text-decoration: none;
    border-bottom: 1px solid rgba(106, 171, 130, 0.12);
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--green-400);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cream);
    padding-left: 8px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 16px;
}

.nav-phone {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--green-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--cream);
}

/* ── Main Content ── */
.main-content {
    margin-left: var(--nav-width);
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--green-900);
    margin-bottom: 32px;
}

/* ── Hero ── */
.section-hero {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    background: var(--cream-light);
}

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

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--green-900);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 420px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--green-800);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green-800);
    border: 1px solid var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--green-800);
    background: var(--green-50);
}

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

.hero-image {
    flex: 1;
    max-width: 560px;
}

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

/* ── About ── */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 16px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

/* ── Menu ── */
.section-menu {
    background: var(--cream-light);
}

.menu-intro {
    margin-bottom: 64px;
}

.menu-intro p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-category {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--green-800);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

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

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

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

.menu-note {
    margin-top: 48px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
}

/* ── Gallery ── */
.section-gallery {
    background: var(--white);
    padding-bottom: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.gallery-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* ── Contact ── */
.section-contact {
    background: var(--green-900);
    color: var(--cream);
}

.section-contact .section-label {
    color: var(--green-400);
}

.section-contact .section-title {
    color: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-top: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-400);
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
}

.contact-link {
    color: var(--green-200, #a8d4b0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--cream);
}

/* ── Form ── */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(106, 171, 130, 0.2);
    padding: 48px;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cream);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(106, 171, 130, 0.25);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--green-600);
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--green-400);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.7;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 24px;
    text-align: center;
}

.form-success svg {
    color: var(--green-400);
}

.form-success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    margin-left: var(--nav-width);
    border-top: 1px solid var(--line);
    padding: 32px 80px;
    background: var(--cream-light);
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--green-800);
}

/* ── Mobile menu toggle ── */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    background: var(--green-900);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--cream);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .section {
        padding: 80px 48px;
    }

    .section-hero {
        gap: 48px;
    }

    .about-grid,
    .contact-grid {
        gap: 48px;
    }

    .menu-columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-width: 0px;
    }

    .side-nav {
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        width: 280px;
        padding: 40px 28px;
    }

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

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-content,
    .footer {
        margin-left: 0;
    }

    .section {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .section-hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

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

    .hero-cta {
        justify-content: center;
    }

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

    .hero-image img {
        height: 50vh;
    }

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

    .about-image img {
        height: 360px;
    }

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

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

    .gallery-item img {
        height: 280px;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 90px 20px 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
}
