:root {
    --bg: #0f0c0a;
    --bg-alt: #15110e;
    --text: #f2ebe4;
    --muted: #b9a79a;
    --accent: #d9a441;
    --accent-soft: rgba(217, 164, 65, 0.2);
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top, rgba(217, 164, 65, 0.08), transparent 40%),
                linear-gradient(180deg, var(--bg), #0b0908 70%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 12, 10, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-family: var(--font-title);
    font-size: 1.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}
.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--muted);
}
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
    min-height: 78vh;
    position: relative;
    display: grid;
    align-items: center;
    padding: 80px 0 40px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.2) 0%, rgba(15, 12, 10, 0.85) 70%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?q=80&w=1600') center/cover no-repeat;
    z-index: 0;
    filter: saturate(1.1) contrast(1.05);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 20px;
    max-width: 650px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
}
.hero p {
    color: var(--muted);
    font-size: 1.1rem;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: 0.25s ease;
}
.btn-primary {
    background: var(--accent);
    color: #23160a;
    border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(217, 164, 65, 0.25); }
.btn-ghost {
    background: transparent;
    color: var(--text);
}

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.highlight-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 16px;
}
.highlight-card span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}
.highlight-card p { color: var(--muted); margin-top: 6px; }

/* Section */
.section {
    padding: 90px 0;
}
.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.menu-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    gap: 14px;
}
.menu-card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
}
.menu-card p { color: var(--muted); font-size: 0.95rem; }
.menu-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}
.badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story */
.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}
.story-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: grid;
    gap: 16px;
}
.story-card ul {
    display: grid;
    gap: 10px;
    color: var(--muted);
    list-style: none;
}
.story-card li::before {
    content: '•';
    color: var(--accent);
    margin-right: 8px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    border: 1px solid var(--border);
    background-size: cover;
    background-position: center;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.1), rgba(15, 12, 10, 0.7));
}

/* Reservation */
.reservation {
    background: linear-gradient(120deg, rgba(217, 164, 65, 0.1), rgba(15, 12, 10, 0.7));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: center;
}
.reservation h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
}
.reservation p { color: var(--muted); }

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: #7f6e61;
    font-size: 0.85rem;
}
.footer a { color: var(--accent); }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 120px 0 60px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .reservation { padding: 24px; }
    .highlight-card { text-align: center; }
}
