:root {
    --bg-black: #0a0a0a;
    --gold: #c5a059;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --text-gray: #a0a0a0;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button, select, input[type="submit"], .tab-btn {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 50px;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

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

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-fallback {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero h1 { font-size: clamp(4rem, 10vw, 8rem); margin-bottom: 10px; }
.hero p { font-size: 1.1rem; color: var(--text-gray); letter-spacing: 2px; margin-bottom: 30px; }

.btn-premium {
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
    background: transparent;
}

.btn-premium:hover {
    background: var(--gold);
    color: black;
}

/* Story Section */
.story-section { padding: 120px 0; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; display: block; margin-bottom: 15px; }
.story-text h2 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.2; }
.story-img img { width: 100%; border-radius: 2px; filter: contrast(1.1); }

/* Menu Section (FIXED GRID) */
.menu-section { padding: 100px 0; background: #0c0c0c; text-align: center; }
.menu-tabs { display: flex; justify-content: center; gap: 30px; margin: 40px 0; }
.tab-btn {
    background: none; border: none; color: var(--text-gray);
    font-family: inherit; text-transform: uppercase; letter-spacing: 2px;
    padding-bottom: 8px; border-bottom: 1px solid transparent; transition: 0.3s;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-container { min-height: 400px; }
.menu-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px 60px;
    text-align: left;
}
.menu-grid.active { display: grid; animation: fadeIn 0.8s ease; }

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}
.menu-item h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--gold); }
.menu-item p { font-size: 0.9rem; color: var(--text-gray); }
.price { font-family: 'Playfair Display'; font-size: 1.2rem; margin-left: 15px; }

/* Gallery (FIXED MOSAIC) */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 450px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
    filter: grayscale(0.5) brightness(0.8);
}
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0) brightness(1); }

/* Reservations (FIXED INPUTS) */
.reservations { padding: 120px 0; }
.reservation-box {
    background: #050505;
    padding: 60px;
    border: 1px solid #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
}
.res-header { text-align: center; margin-bottom: 40px; }
.res-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

.res-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { color: var(--gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

input, select {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}
input:focus, select:focus { outline: none; border-color: var(--gold); }

/* Footer (FIXED LAYOUT) */
.footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid #111;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
}
.footer-brand h2 { margin-bottom: 10px; }
.footer-contact p, .footer-social p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 8px; }
.social-links a { color: white; text-decoration: none; margin: 0 10px; font-size: 0.8rem; text-transform: uppercase; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #333;
    font-size: 0.75rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .story-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); height: auto; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}