:root {
    --color-primary: #8b2500;
    --color-accent: #f5e6d3;
    --color-bg: #1a1a1a;
    --color-surface: #2c2c2c;
    --color-text: #f5f0eb;
    --color-text-muted: #a89f95;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 100%);
}

.nav-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 400;
}
.nav-links a:hover { color: white; }
.nav-cta {
    border: 1px solid rgba(255,255,255,0.5) !important;
    padding: 8px 20px;
    border-radius: 2px;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 11; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: white; margin: 6px 0; }

.hero-text {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 300;
}

/* About */
.section-about { padding: 100px 40px; }

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

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

.about-image img {
    border-radius: 4px;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Menu / Content */
.section-menu {
    padding: 80px 40px;
    background: var(--color-surface);
}

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

.menu-container h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.04em;
}

.menu-category { margin-bottom: 40px; }
.menu-category h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-primary);
}

.menu-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.menu-item .item-name { font-weight: 500; font-size: 16px; }
.menu-item .item-price { font-weight: 500; color: var(--color-primary); }
.menu-item .item-description { font-size: 14px; color: var(--color-text-muted); margin-top: 4px; }

/* Atmosphere Grid */
.section-atmosphere { padding: 0; }
.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.atmosphere-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Location */
.section-location { padding: 80px 40px; }
.location-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.location-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 24px;
}

.location-info address {
    font-style: normal;
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.location-hours h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--color-text);
}

.location-map iframe { border-radius: 4px; min-height: 360px; }

/* Contact */
.section-contact {
    padding: 80px 40px;
    background: var(--color-surface);
    text-align: center;
}

.contact-container h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 32px;
}

.contact-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--color-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border: 1px solid var(--color-text);
    text-decoration: none;
    transition: 0.3s;
}
.contact-links a:hover { background: var(--color-text); color: var(--color-bg); }

/* Footer */
.site-footer {
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 18px; }
    .about-container { grid-template-columns: 1fr; gap: 32px; }
    .atmosphere-grid { grid-template-columns: repeat(2, 1fr); }
    .location-container { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; gap: 12px; text-align: center; }
    .nav-overlay { padding: 20px 24px; }
}
