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

:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #F5E6B8;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --cream: #F0EDE6;
    --gray-100: #F5F5F3;
    --gray-200: #E8E6E1;
    --gray-300: #D1CFC9;
    --gray-400: #A8A59E;
    --gray-500: #7A7770;
    --gray-600: #5A5750;
    --gray-700: #3A3730;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-ghost-light {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--gray-300);
}

.btn-ghost-light:hover {
    border-color: var(--navy);
}

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

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-small {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.625rem 1.25rem;
    font-size: 0.7rem;
}

.btn-outline-small:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-mark {
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
    position: relative;
}

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

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

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.4) 50%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 var(--space-md);
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto var(--space-lg);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Intro ── */
.intro {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.intro-text .section-title {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.intro-text p {
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* ── Divider ── */
.divider-section {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
}

/* ── Menu ── */
.menu-preview {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header .section-lead {
    margin: 0 auto;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu-category {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--gray-200);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-item {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
}

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

.item-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--navy);
}

.item-detail {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.menu-footer {
    margin-top: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.menu-footer p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ── Gallery ── */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.gallery .section-header {
    margin-bottom: var(--space-xl);
}

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

.gallery-item {
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 7;
}

.gallery-item:not(.large) {
    grid-column: span 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    aspect-ratio: 4/3;
}

.gallery-item.large img {
    aspect-ratio: 16/10;
}

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

/* ── Features ── */
.features {
    padding: var(--space-2xl) 0;
    background: var(--navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature {
    text-align: center;
    padding: var(--space-md);
}

.feature-icon {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

/* ── CTA ── */
.cta-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.72);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-eyebrow {
    margin-bottom: var(--space-sm);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ── Visit ── */
.visit-info {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.visit-details .section-title {
    margin-bottom: var(--space-lg);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--navy);
}

.contact-value a {
    color: var(--navy);
    transition: color var(--transition);
}

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

.visit-map {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: var(--space-lg);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
}

.map-icon {
    color: var(--gold);
}

.map-placeholder p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── Newsletter ── */
.newsletter {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 250px;
}

.newsletter-text .section-title {
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 440px;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-right: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--navy);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-success {
    width: 100%;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--navy);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-light {
    color: var(--white);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-top: var(--space-sm);
    max-width: 260px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

.footer-links span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-hours span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.hours-note {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
    margin-top: 0.5rem !important;
}

.footer-bottom {
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: right var(--transition);
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav a {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.75);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .intro-image img {
        height: 350px;
    }
    
    .intro-image::before {
        display: none;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item:not(.large) {
        grid-column: span 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .feature {
        text-align: left;
        padding: var(--space-sm);
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    
    .newsletter-input {
        border-right: 1px solid var(--gray-200);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .hero-headline {
        font-size: clamp(3rem, 15vw, 5rem);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .intro-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
