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

:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --cream: #faf8f4;
    --cream-dark: #f0ece4;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #f5f5f5;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.97);
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    position: relative;
    transition: color var(--transition);
}

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

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

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

.nav-cta {
    background: var(--navy) !important;
    color: var(--cream) !important;
    padding: 0.65rem 1.6rem;
    letter-spacing: 0.1em !important;
    transition: background var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--navy-light) !important;
    color: var(--gold) !important;
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--navy);
    transition: var(--transition);
}

.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-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--cream);
    padding-top: 80px;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5vw;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 2.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--cream);
}

.btn-large {
    padding: 1.15rem 3rem;
    font-size: 0.82rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 2px;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}

.hero-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.hero-divider::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: var(--gold);
}

/* ── SECTIONS ── */
section {
    padding: 8rem 5vw;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

/* ── ABOUT ── */
.about {
    background: var(--cream);
}

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

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

/* ── MENU ── */
.menu {
    background: var(--navy);
    color: var(--text-light);
}

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

.menu-header .section-eyebrow {
    color: var(--gold);
}

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

.menu-intro {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.6);
    font-weight: 300;
}

.menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.menu-item-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.6;
}

.menu-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-footer p {
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.4);
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* ── GALLERY ── */
.gallery {
    background: var(--cream-dark);
    padding-bottom: 6rem;
}

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

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    transition: transform var(--transition), filter var(--transition);
    filter: brightness(0.97);
}

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

/* ── VISIT ── */
.visit {
    background: var(--cream);
}

.visit-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.visit-detail-value {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-dark);
}

.visit-detail-link {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}

.visit-detail-link:hover {
    color: var(--gold);
    border-color: var(--navy);
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

/* ── FOOTER ── */
.footer {
    background: var(--navy);
    color: var(--text-light);
    padding: 5rem 5vw 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(245, 245, 245, 0.5);
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(245, 245, 245, 0.6);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-phone {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    transition: color var(--transition);
}

.footer-phone:hover {
    color: var(--gold-light);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(245, 245, 245, 0.5);
    font-weight: 300;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245, 245, 245, 0.3);
    font-weight: 300;
    letter-spacing: 0.06em;
}

/* ── SCROLL REVEAL (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

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

    .about-grid {
        gap: 4rem;
    }

    .menu-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 3rem 5vw;
        gap: 2rem;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-image {
        order: -1;
    }

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

    .hero-image-accent {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

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

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

    .visit-map {
        height: 350px;
    }

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

    section {
        padding: 5rem 5vw;
    }
}

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

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

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