/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #0D1B2A;
    background: #FAF8F5;
    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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: #0D1B2A;
    margin-bottom: 1.5rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #4A5568;
    max-width: 520px;
    line-height: 1.8;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(13, 27, 42, 0.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: #0D1B2A;
}
.nav-logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    width: 36px;
    height: 36px;
    border: 1px solid #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0D1B2A;
    position: relative;
    transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A84C;
    transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: #C9A84C; }
.nav-cta {
    font-size: 0.75rem !important;
    letter-spacing: 0.12em !important;
    border: 1px solid #0D1B2A;
    padding: 0.6rem 1.4rem;
    transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover {
    background: #0D1B2A;
    color: #FAF8F5 !important;
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle-line {
    width: 100%;
    height: 1.5px;
    background: #0D1B2A;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: url('https://images.pexels.com/photos/2323432/pexels-photo-2323432.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 27, 42, 0.72) 0%,
        rgba(13, 27, 42, 0.55) 50%,
        rgba(13, 27, 42, 0.78) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.15;
    color: #FAF8F5;
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    color: #C9A84C;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(250, 248, 245, 0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    font-weight: 400;
}
.btn-primary {
    background: #C9A84C;
    color: #0D1B2A;
    border: 1px solid #C9A84C;
}
.btn-primary:hover {
    background: #B8963F;
    border-color: #B8963F;
}
.btn-ghost {
    background: transparent;
    color: #FAF8F5;
    border: 1px solid rgba(250, 248, 245, 0.4);
}
.btn-ghost:hover {
    border-color: #FAF8F5;
    background: rgba(250, 248, 245, 0.08);
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 248, 245, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── ABOUT ── */
.about {
    padding: 8rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-text { padding: 1rem 0; }
.about-text p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.about-text p:first-of-type {
    font-size: 1.1rem;
    color: #0D1B2A;
    line-height: 1.85;
}

/* ── MENU ── */
.menu {
    padding: 6rem 0 8rem;
    background: #0D1B2A;
}
.menu .section-label { color: #C9A84C; }
.menu .section-title { color: #FAF8F5; }
.menu-title { text-align: center; }
.menu .section-subtitle {
    text-align: center;
    margin: 0 auto 3rem;
    color: rgba(250, 248, 245, 0.6);
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.menu-tab {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    color: rgba(250, 248, 245, 0.45);
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}
.menu-tab:hover { color: rgba(250, 248, 245, 0.75); }
.menu-tab.active {
    color: #C9A84C;
    border-bottom-color: #C9A84C;
}
.menu-panel { max-width: 800px; margin: 0 auto; }
.menu-panel.hidden { display: none; }
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(250, 248, 245, 0.07);
}
.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #FAF8F5;
    white-space: nowrap;
}
.menu-item-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
    min-width: 2rem;
}
.menu-item-desc {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.45);
    width: 100%;
    line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
    padding: 6rem 0 8rem;
}
.gallery .section-title { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ── VISIT ── */
.visit {
    padding: 6rem 0 8rem;
    background: #0D1B2A;
}
.visit .section-label { color: #C9A84C; }
.visit .section-title { color: #FAF8F5; margin-bottom: 3rem; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit-details { display: flex;
    flex-direction: column;
    gap: 2rem; }
.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.visit-icon {
    width: 22px;
    height: 22px;
    color: #C9A84C;
    flex-shrink: 0;
    margin-top: 3px;
}
.visit-detail-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
    margin-bottom: 0.3rem;
}
.visit-detail-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #FAF8F5;
    line-height: 1.6;
}
.visit-detail-value a {
    color: #C9A84C;
    transition: color 0.3s;
}
.visit-detail-value a:hover { color: #B8963F; }
.visit-map {
    aspect-ratio: 4/3;
    background: #1a2d42;
    overflow: hidden;
}

/* ── FOOTER ── */
.footer {
    padding: 4rem 0 2.5rem;
    background: #091420;
}
.footer-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.07);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #FAF8F5;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.4);
    margin-left: auto;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(250, 248, 245, 0.3);
}
.footer-bottom a {
    color: rgba(250, 248, 245, 0.3);
    transition: color 0.3s;
}
.footer-bottom a:hover { color: #C9A84C; }

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #FAF8F5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 0.85rem; }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(13, 27, 42, 0.4);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { max-height: 400px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { aspect-ratio: 16/9; }
    .footer-tagline { margin-left: 0; }
    .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .container { padding: 0 1.25rem; }
    .nav-inner { padding: 0; }
    .hero { min-height: 100svh; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .about { padding: 5rem 0; }
    .menu { padding: 4rem 0 5rem; }
    .gallery { padding: 4rem 0 5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .visit { padding: 4rem 0 5rem; }
    .menu-tabs { flex-wrap: wrap; justify-content: center; }
    .menu-tab { padding: 0.75rem 1rem; font-size: 0.7rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-scroll-line { animation: none; opacity: 0.5; }
    .gallery-item img { transition: none; }
    .menu-tab, .btn, .nav-links a { transition: none; }
}
