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

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf8f5;
    --cream-100: #f5f0e8;
    --cream-200: #ece4d4;
    --cream-300: #e0d5c0;
    --warm-700: #92634c;
    --warm-600: #b07d5a;
    --warm-500: #d4a574;
    --warm-400: #e8c4a0;
    --warm-300: #f0d8bc;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-light: #f5f0e8;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 0.75rem 1.25rem;
    z-index: 1000;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

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

/* Typography */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 2.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--emerald-700);
}

.section-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.section-headline--light {
    color: var(--cream-50);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    border-color: var(--emerald-800);
}
.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 47, 35, 0.25);
}
.btn-outline {
    background: transparent;
    color: var(--cream-50);
    border-color: rgba(250, 248, 245, 0.4);
}
.btn-outline:hover {
    border-color: var(--cream-50);
    background: rgba(250, 248, 245, 0.1);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--emerald-800);
    border-color: var(--emerald-800);
}
.btn-outline-light:hover {
    background: var(--emerald-800);
    color: var(--cream-50);
    transform: translateY(-2px);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out);
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--cream-50);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.4s;
}
.nav.scrolled .nav-logo {
    color: var(--emerald-900);
}
.nav-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warm-500);
    flex-shrink: 0;
    transition: background 0.4s;
}
.nav.scrolled .nav-logo-dot {
    background: var(--emerald-600);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-400);
    transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a:hover {
    color: var(--cream-50);
}
.nav.scrolled .nav-menu a {
    color: var(--text-secondary);
}
.nav.scrolled .nav-menu a::after {
    background: var(--emerald-700);
}
.nav.scrolled .nav-menu a:hover {
    color: var(--emerald-800);
}
.nav-phone {
    font-size: 0.8125rem !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    font-weight: 400 !important;
    color: var(--warm-400) !important;
}
.nav.scrolled .nav-phone {
    color: var(--emerald-700) !important;
}

/* 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 {
    width: 22px;
    height: 1.5px;
    background: var(--cream-50);
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}
.nav.scrolled .nav-toggle-line {
    background: var(--emerald-900);
}
.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav.scrolled .nav-toggle.active .nav-toggle-line {
    background: var(--emerald-900);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        background: var(--emerald-900);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu a {
        font-size: 1rem;
        color: rgba(250, 248, 245, 0.85) !important;
    }
    .nav-menu a::after {
        background: var(--warm-400) !important;
    }
    .nav.scrolled .nav-menu a {
        color: rgba(250, 248, 245, 0.85) !important;
    }
    .nav-phone {
        color: var(--warm-400) !important;
    }
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--emerald-950);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(4, 120, 87, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(148, 99, 76, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(5, 150, 105, 0.25) 0%, transparent 50%),
        linear-gradient(175deg, #042f23 0%, #064e3b 35%, #047857 65%, #065f46 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(250,248,245,0.5) 60px, rgba(250,248,245,0.5) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(250,248,245,0.5) 60px, rgba(250,248,245,0.5) 61px);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 2rem;
    padding-top: 5rem;
}
.hero-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-400);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 1.75rem;
    letter-spacing: -0.015em;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero-headline em {
    font-style: italic;
    color: var(--warm-300);
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 200;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 2.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 248, 245, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1.2s forwards;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250,248,245,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ─── Intro ─── */
.intro {
    padding: 8rem 0;
    background: var(--cream-50);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-text .section-label {
    margin-bottom: 1rem;
}
.intro-body {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}
.intro-image:hover img {
    transform: scale(1.03);
}
.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(250, 248, 245, 0.2);
    pointer-events: none;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .intro-image {
        aspect-ratio: 16/10;
        order: -1;
    }
    .intro {
        padding: 5rem 0;
    }
}

/* ─── Highlights ─── */
.highlights {
    padding: 6rem 0;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.highlight-card {
    padding: 2.5rem;
    background: var(--cream-50);
    border-radius: 16px;
    border: 1px solid var(--cream-200);
    transition: all 0.4s var(--ease-out);
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(4, 47, 35, 0.08);
    border-color: var(--emerald-200, #a7f3d0);
}
.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--emerald-50, #ecfdf5);
    color: var(--emerald-700);
    margin-bottom: 1.5rem;
}
.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.highlight-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .highlight-card {
        padding: 2rem;
    }
}

/* ─── Menu Preview ─── */
.menu-preview {
    padding: 8rem 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}
.menu-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(4, 120, 87, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 100% 0%, rgba(148, 99, 76, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.menu-preview .container {
    position: relative;
    z-index: 1;
}
.menu-intro {
    font-size: 1.0625rem;
    font-weight: 200;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 4rem;
    max-width: 480px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}
.menu-category h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--warm-400);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--cream-50);
}
.menu-item-desc {
    font-size: 0.8125rem;
    font-weight: 200;
    color: rgba(250, 248, 245, 0.45);
    white-space: nowrap;
}
.menu-note {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.35);
    font-style: italic;
    margin-bottom: 2rem;
}
.menu-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .menu-preview {
        padding: 5rem 0;
    }
}

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: var(--cream-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-content .section-label {
    margin-bottom: 1rem;
}
.about-body {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 13/10;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}
.about-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image {
        order: -1;
        aspect-ratio: 16/9;
    }
    .about {
        padding: 5rem 0;
    }
}

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
}
.visit .section-headline {
    margin-bottom: 3rem;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.visit-block h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--emerald-800);
    margin-bottom: 0.5rem;
}
.visit-block p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}
.visit-block a {
    color: var(--emerald-700);
    text-decoration: none;
    border-bottom: 1px solid var(--cream-300);
    transition: border-color 0.3s;
}
.visit-block a:hover {
    border-color: var(--emerald-700);
}
.visit-note {
    font-size: 0.8125rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 0.25rem;
}
.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }
    .visit-map {
        aspect-ratio: 16/9;
    }
    .visit {
        padding: 5rem 0;
    }
}

/* ─── Footer ─── */
.footer {
    background: var(--emerald-950);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream-50);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.footer-brand p {
    font-size: 0.9375rem;
    font-weight: 200;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.7;
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--warm-400);
}
.footer-contact p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.7;
}
.footer-contact a {
    color: var(--warm-400);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: var(--warm-300);
}
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.3);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Scroll Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.revealed {
        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; }
}
