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

:root {
    --emerald: #064E3B;
    --emerald-light: #065F46;
    --emerald-dark: #022C22;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --cream-mid: #FAF5EF;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --text-on-dark: #FFF8F0;
    --text-on-dark-muted: rgba(255, 248, 240, 0.65);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease-out);
}

.nav.scrolled .nav-inner {
    height: 64px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--emerald);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--emerald);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--emerald);
    padding: 0.625rem 1.5rem;
    transition: all 0.4s var(--ease-out);
}

.nav-cta:hover {
    background: var(--emerald);
    color: var(--text-on-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--emerald);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(6, 78, 59, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 2rem;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

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

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-right {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--emerald);
    opacity: 0.2;
    z-index: -1;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--emerald);
    opacity: 0.4;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--emerald);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--emerald);
    color: var(--text-on-dark);
    border: 1px solid var(--emerald);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald);
    border: 1px solid rgba(6, 78, 59, 0.3);
    padding: 0.875rem 1.25rem;
}

.btn-ghost:hover {
    border-color: var(--emerald);
    background: rgba(6, 78, 59, 0.04);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 0.875rem;
}

/* ─── SECTION LABELS ─── */
.section-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ─── INTRO ─── */
.intro {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.intro-image {
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.intro-image:hover img {
    transform: scale(1.02);
}

.intro-text {
    padding: clamp(1rem, 3vw, 2rem) 0;
}

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

.intro-stats {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(6, 78, 59, 0.12);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(6, 78, 59, 0.2);
}

/* ─── MENU ─── */
.menu {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--emerald);
    color: var(--text-on-dark);
}

.menu .section-label {
    color: rgba(255, 248, 240, 0.5);
}

.menu .section-title {
    color: var(--text-on-dark);
    margin-bottom: 3.5rem;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.menu-category {
    padding: 2rem;
    background: rgba(255, 248, 240, 0.04);
    border: 1px solid rgba(255, 248, 240, 0.08);
    transition: all 0.4s var(--ease-out);
}

.menu-category:hover {
    background: rgba(255, 248, 240, 0.07);
    border-color: rgba(255, 248, 240, 0.15);
    transform: translateY(-4px);
}

.category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: rgba(255, 248, 240, 0.6);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item:last-child {
    margin-bottom: 0;
}

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

.item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-on-dark);
    white-space: nowrap;
}

.item-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 248, 240, 0.15);
    min-width: 20px;
}

.item-desc {
    font-size: 0.8125rem;
    color: rgba(255, 248, 240, 0.5);
    line-height: 1.6;
    font-weight: 300;
}

.menu-footer {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
}

.menu-footer p {
    font-size: 0.9375rem;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: 1.5rem;
}

.menu-footer .btn-primary {
    background: var(--cream);
    color: var(--emerald);
    border-color: var(--cream);
}

.menu-footer .btn-primary:hover {
    background: transparent;
    color: var(--text-on-dark);
    border-color: var(--text-on-dark);
}

/* ─── HIGHLIGHT ─── */
.highlight {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--cream-dark);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.highlight-image {
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 7/5;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.highlight-image:hover img {
    transform: scale(1.02);
}

.highlight-content {
    padding: clamp(1rem, 3vw, 2rem) 0;
}

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

.highlight-features {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.feature-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--emerald);
    border-radius: 50%;
    margin-top: 0.6em;
}

/* ─── VISIT ─── */
.visit {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit-info {
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(6, 78, 59, 0.12);
    border-bottom: 1px solid rgba(6, 78, 59, 0.12);
}

.visit-block h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.visit-block p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.visit-block a {
    color: var(--emerald);
    text-decoration: none;
    border-bottom: 1px solid rgba(6, 78, 59, 0.3);
    transition: border-color 0.3s;
}

.visit-block a:hover {
    border-color: var(--emerald);
}

.visit-map {
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: saturate(0.3) contrast(1.05);
    transition: filter 0.5s var(--ease-out);
}

.map-container:hover iframe {
    filter: saturate(0.6) contrast(1.05);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--emerald-dark);
    color: var(--text-on-dark);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-on-dark);
    letter-spacing: 0.02em;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 248, 240, 0.5);
    line-height: 1.7;
}

.footer-brand a {
    color: rgba(255, 248, 240, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-brand a:hover {
    color: var(--text-on-dark);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-on-dark);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    gap: 1rem;
}

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

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE MENU ─── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-overlay a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-overlay a:hover {
    color: var(--emerald);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-frame::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .highlight-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

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

    .hero-scroll {
        display: none;
    }

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

    .menu-category {
        padding: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .visit-details {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .intro-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
