/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-900: #0a1128;
    --navy-800: #0f1c3f;
    --navy-700: #162a54;
    --navy-600: #1e3a6e;
    --gold-500: #c8a45a;
    --gold-400: #d4b76a;
    --gold-300: #e0c97a;
    --gold-100: #f2e8b8;
    --cream: #faf8f4;
    --cream-dark: #f5f0e8;
    --text-dark: #0f1c3f;
    --text-muted: #5a6a80;
    --text-light: #8a9ab0;
    --white: #ffffff;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy-800);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

/* ── Navigation ── */
.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(15, 28, 63, 0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

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

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: -0.02em;
}

.nav-logo-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-500);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--navy-800);
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
    background: var(--navy-700);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--navy-800);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    padding: 2rem 0 4rem;
}

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

.hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--navy-800);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--gold-500);
    font-weight: 300;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 28, 63, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--navy-800);
    border: 1px solid rgba(15, 28, 63, 0.2);
}

.btn-ghost:hover {
    border-color: var(--navy-800);
    background: var(--navy-800);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 0.82rem;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-detail svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 40%;
    border: 1px solid var(--gold-500);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 0.3), transparent);
}

.divider-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ── About ── */
.about {
    padding: 8rem 2rem;
    background: var(--cream);
}

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

.about-content {
    max-width: 520px;
}

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

.about-values {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(15, 28, 63, 0.08);
}

.about-value {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-text {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--navy-800);
    text-transform: uppercase;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 28, 63, 0.1);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.12);
    border: 4px solid var(--cream);
    max-width: 60%;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Menu ── */
.menu {
    padding: 8rem 2rem;
    background: var(--navy-800);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.3;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.menu-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.menu-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 2.5rem;
    transition: background var(--transition);
}

.menu-category:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
}

.menu-category-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 3rem;
    font-style: italic;
}

/* ── Gallery ── */
.gallery {
    padding: 8rem 2rem;
    background: var(--cream);
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.6), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
}

.gallery-item--large {
    grid-column: span 7;
    aspect-ratio: 4/3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    aspect-ratio: 4/3;
}

.gallery-item--wide {
    grid-column: span 5;
    aspect-ratio: 16/9;
}

/* ── Visit ── */
.visit {
    padding: 8rem 2rem;
    background: var(--cream-dark);
}

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

.visit-content {
    max-width: 560px;
}

.visit-title {
    margin-bottom: 1.5rem;
}

.visit-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 3rem;
}

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

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.visit-detail-value {
    font-size: 1rem;
    color: var(--navy-800);
    font-weight: 400;
    line-height: 1.6;
}

.visit-phone:hover {
    color: var(--gold-500);
}

.visit-actions {
    display: flex;
    gap: 1rem;
}

.visit-map {
    width: 100%;
}

.visit-map-placeholder {
    background: var(--navy-800);
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.visit-map-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
}

.visit-map-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    border: 1px solid rgba(200, 164, 90, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    transition: all var(--transition);
}

.visit-map-link:hover {
    background: var(--gold-500);
    color: var(--navy-800);
}

/* ── Footer ── */
.footer {
    background: var(--navy-900);
    padding: 5rem 2rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-logo-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-500);
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.footer-links-group,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.25rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Mobile Menu ── */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(15, 28, 63, 0.06);
    box-shadow: 0 12px 32px rgba(15, 28, 63, 0.08);
}

.nav-links.mobile-open .nav-cta {
    text-align: center;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
    }
    
    .about-container {
        gap: 3rem;
    }
    
    .menu-grid {
        gap: 1.5rem;
    }
    
    .menu-category {
        padding: 2rem;
    }
    
    .gallery-item--large {
        grid-column: span 8;
    }
    
    .gallery-item--wide {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        padding: 0;
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-image-wrapper {
        aspect-ratio: 3/2;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .about {
        padding: 5rem 1.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-stack {
        order: -1;
        max-width: 500px;
    }
    
    .about-img-secondary {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .menu {
        padding: 5rem 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category {
        padding: 1.75rem;
    }
    
    .gallery {
        padding: 5rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        aspect-ratio: 4/3;
    }
    
    .gallery-item-overlay {
        opacity: 1;
    }
    
    .visit {
        padding: 5rem 1.5rem;
    }
    
    .visit-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visit-content {
        max-width: 100%;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .visit-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-values {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    .hero-scroll-indicator {
        animation: none;
        opacity: 0.5;
    }
}
