:root {
    --color-bg: #0F0E0B;
    --color-bg-warm: #1A1710;
    --color-cream: #F5EDE0;
    --color-cream-soft: #E8DFD0;
    --color-gold: #C9A94E;
    --color-gold-light: #D4B85C;
    --color-terracotta: #C45D3E;
    --color-olive: #6B7C4F;
    --color-olive-dark: #3D4A2A;
    --color-text: #F5EDE0;
    --color-text-muted: #A89F90;
    --color-divider: rgba(201, 169, 78, 0.2);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

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

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

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NOISE OVERLAY ==================== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    background: rgba(15, 14, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--color-divider);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-cream-soft);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.6rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-reserve:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-cream);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(196, 93, 62, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(107, 124, 79, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 169, 78, 0.05) 0%, transparent 70%),
        var(--color-bg);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(201, 169, 78, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(201, 169, 78, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-cream);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 237, 224, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-cream);
    background: rgba(245, 237, 224, 0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ==================== SECTION COMMONS ==================== */
section {
    padding: 8rem 3rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-cream);
    margin-bottom: 2rem;
}

.section-title em {
    font-style: italic;
    color: var(--color-gold);
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 3rem 0;
}

/* ==================== ABOUT ==================== */
.about {
    background: var(--color-bg-warm);
    position: relative;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-frame {
    aspect-ratio: 4/5;
    background:
        linear-gradient(135deg, rgba(201, 169, 78, 0.1), rgba(107, 124, 79, 0.1));
    border: 1px solid var(--color-divider);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 169, 78, 0.15);
}

.about-image-placeholder {
    font-family: var(--font-display);
    font-size: 8rem;
    opacity: 0.15;
    color: var(--color-gold);
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-divider);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--color-cream-soft);
    font-weight: 500;
}

/* ==================== MENU ==================== */
.menu {
    background: var(--color-bg);
    position: relative;
}

.menu-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-cat-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.menu-cat-btn.active,
.menu-cat-btn:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

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

.menu-item {
    padding: 2rem 2.5rem;
    border: 1px solid rgba(201, 169, 78, 0.08);
    text-align: left;
    transition: background 0.3s;
}

.menu-item:hover {
    background: rgba(201, 169, 78, 0.03);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-cream);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 500;
}

.menu-item-dots {
    flex: 1;
    margin: 0 1rem;
    border-bottom: 1px dotted rgba(201, 169, 78, 0.3);
    align-self: center;
    margin-bottom: 4px;
}

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

.menu-note {
    margin-top: 3rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ==================== REVIEWS ==================== */
.reviews {
    background: var(--color-bg-warm);
    overflow: hidden;
}

.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--color-gold);
    font-size: 1.3rem;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: rgba(245, 237, 224, 0.02);
    border: 1px solid var(--color-divider);
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 78, 0.4);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.review-stars span {
    color: var(--color-gold);
    font-size: 0.85rem;
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-cream-soft);
    margin-bottom: 1.5rem;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.review-source {
    font-size: 0.7rem;
    color: rgba(168, 159, 144, 0.6);
    margin-top: 0.25rem;
}

/* ==================== LOCATION ==================== */
.location {
    background: var(--color-bg);
}

.location-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-map {
    aspect-ratio: 1;
    background: var(--color-bg-warm);
    border: 1px solid var(--color-divider);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.6) brightness(0.7) contrast(1.1);
    transition: filter 0.5s;
}

.location-map:hover iframe {
    filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-detail {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-divider);
}

.location-detail:first-of-type {
    padding-top: 0;
}

.location-detail:last-of-type {
    border-bottom: none;
}

.location-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.location-detail-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-cream);
    line-height: 1.5;
}

.location-detail-value a {
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s;
}

.location-detail-value a:hover {
    color: var(--color-gold);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 6rem 3rem;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(196, 93, 62, 0.08) 0%, transparent 60%),
        var(--color-bg-warm);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.cta-banner .section-title {
    margin-bottom: 1rem;
}

.cta-banner p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 4rem 3rem 2rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-divider);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 78, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(168, 159, 144, 0.5);
}

.footer-bottom a {
    color: rgba(168, 159, 144, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

    .about-image-frame {
        max-height: 400px;
    }

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

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

@media (max-width: 768px) {
    section {
        padding: 5rem 1.5rem;
    }

    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links, .nav-reserve {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

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

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

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

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

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

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

    .location-map {
        aspect-ratio: 16/10;
    }
}
