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

:root {
    --bg: #0f0d0a;
    --surface: #181410;
    --surface-2: #221e18;
    --ink: #f5f0e8;
    --muted: rgba(245, 240, 232, 0.55);
    --line: rgba(245, 240, 232, 0.1);
    --terra: #c8583a;
    --terra-soft: rgba(200, 88, 58, 0.15);
    --gold: #d4a84b;
    --shadow: 0 32px 80px rgba(0,0,0,0.6);
    --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    padding-top: 58px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
h1 { font-size: clamp(48px, 6.5vw, 96px); font-weight: 400; }
h2 { font-size: clamp(36px, 4.5vw, 68px); font-weight: 400; }
h3 { font-size: 20px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'Inter', sans-serif; }

h1 em { font-style: italic; color: var(--terra); }
p { color: var(--muted); line-height: 1.75; }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* DEMO BAR */
.demo-bar {
    position: fixed; inset: 0 0 auto 0; height: 58px; z-index: 140;
    background: #000; color: white;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 max(18px, calc((100vw - 1200px) / 2));
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: 'Inter', sans-serif;
}
.demo-bar div:first-child { display: flex; align-items: baseline; gap: 12px; }
.demo-bar span { color: rgba(255,255,255,0.45); font-size: 13px; }
.demo-links { display: flex; align-items: center; gap: 12px; }
.demo-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.demo-cta { background: var(--terra); color: white !important; padding: 8px 14px; border-radius: 999px; font-weight: 600; }

/* HEADER */
.header {
    position: sticky; top: 58px; z-index: 120;
    background: rgba(15, 13, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}
.nav {
    width: min(1200px, calc(100% - 40px));
    min-height: 76px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px; font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--terra); color: white !important;
    padding: 10px 20px; border-radius: 999px; font-weight: 600;
}
.menu-toggle {
    display: none; width: 40px; height: 40px;
    border: 1px solid var(--line); border-radius: 999px;
    background: var(--surface);
    flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.menu-toggle span { width: 16px; height: 1.5px; background: var(--ink); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 52px; padding: 0 28px; border-radius: 999px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--terra); color: white; }
.btn.primary:hover { box-shadow: 0 8px 28px rgba(200,88,58,0.4); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: rgba(245,240,232,0.4); }
.full { width: 100%; }

/* HERO */
.hero {
    position: relative;
    min-height: calc(100vh - 134px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,13,10,0.2) 0%,
        rgba(15,13,10,0.1) 30%,
        rgba(15,13,10,0.7) 70%,
        rgba(15,13,10,0.95) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 56px;
    max-width: 860px;
}
.eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 18px; }
.hero-content p { font-size: 18px; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-info {
    position: relative; z-index: 2;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 40px;
    border-top: 1px solid var(--line);
    display: flex; gap: 48px; align-items: center;
}
.hero-info div { display: flex; flex-direction: column; gap: 3px; }
.hero-info span { font-size: 12px; color: var(--muted); font-weight: 500; }
.hero-info strong { font-size: 14px; font-weight: 600; }
.hero-info a { margin-left: auto; font-weight: 600; color: var(--terra); font-size: 14px; white-space: nowrap; }

/* INTRO STRIP */
.intro-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.intro-strip-inner {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0;
    text-align: center;
}
.intro-strip p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 16px;
}
.intro-strip span { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; }

/* MENU */
.menu-section { background: var(--bg); padding: 96px 0; }
.menu-inner { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.menu-head { max-width: 660px; margin-bottom: 64px; }
.menu-head span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 14px;
}
.menu-head p { font-size: 16px; margin-top: 14px; }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.menu-col { display: flex; flex-direction: column; gap: 0; }
.menu-col h3 {
    font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--terra);
    padding: 0 0 12px; border-bottom: 1px solid var(--line);
    margin: 36px 0 0; font-family: 'Inter', sans-serif;
}
.menu-col h3:first-child { margin-top: 0; }

.menu-items { display: flex; flex-direction: column; }
.menu-item {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.menu-item div { flex: 1; }
.menu-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.menu-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.menu-item b { font-size: 15px; font-weight: 600; white-space: nowrap; color: var(--gold); padding-top: 2px; }
.menu-note { font-size: 13px; text-align: center; margin-top: 48px; }

/* DISH FEATURE */
.dish-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.dish-img { overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-copy {
    background: var(--surface);
    padding: 72px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.dish-copy span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 16px;
}
.dish-copy h2 { margin-bottom: 20px; }
.dish-copy p { font-size: 16px; margin-bottom: 32px; }

/* STORIA */
.storia-section { background: var(--bg); padding: 96px 0; }
.storia-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}
.storia-copy span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 16px;
}
.storia-copy h2 { margin-bottom: 22px; }
.storia-copy p { font-size: 16px; margin-bottom: 16px; }

.storia-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.storia-stats div {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
}
.storia-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 44px; font-weight: 400;
    color: var(--ink); line-height: 1;
    margin-bottom: 6px;
}
.storia-stats strong small { font-size: 24px; color: var(--gold); }
.storia-stats span { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* REVIEWS */
.reviews-section { background: var(--surface); padding: 96px 0; }
.reviews-inner { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.reviews-head { margin-bottom: 52px; }
.reviews-head span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 14px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 17px;
    color: var(--ink); line-height: 1.6; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-author strong { display: block; font-size: 13px; font-weight: 600; }
.review-author span { font-size: 12px; color: var(--muted); }

/* PRENOTA */
.prenota-section { background: var(--bg); border-top: 1px solid var(--line); padding: 96px 0; }
.prenota-inner {
    width: min(1200px, calc(100% - 40px)); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 0.9fr; gap: 80px; align-items: start;
}
.prenota-copy span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 16px;
}
.prenota-copy h2 { margin-bottom: 18px; }
.prenota-copy > p { font-size: 16px; margin-bottom: 32px; }
.prenota-info { display: grid; gap: 12px; }
.prenota-info div {
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
}
.prenota-info strong { font-size: 14px; font-weight: 600; }
.prenota-info span { font-size: 13px; color: var(--muted); }

.prenota-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    display: grid; gap: 14px;
    box-shadow: var(--shadow);
}
.prenota-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(245,240,232,0.8); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prenota-form input,
.prenota-form select,
.prenota-form textarea {
    width: 100%; min-height: 46px;
    border: 1.5px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    border-radius: 12px; padding: 0 14px; outline: 0;
    font-size: 15px; transition: border-color 0.2s;
}
.prenota-form textarea { min-height: 90px; padding-top: 12px; resize: vertical; }
.prenota-form input:focus,
.prenota-form select:focus,
.prenota-form textarea:focus { border-color: var(--terra); }
.prenota-form select option { background: var(--surface-2); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); }

/* FOOTER */
.footer { background: #080604; border-top: 1px solid var(--line); }
.footer-inner {
    width: min(1200px, calc(100% - 40px)); margin: 0 auto;
    padding: 56px 0 40px;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start;
}
.footer-brand { font-size: 26px; display: inline-block; margin-bottom: 14px; }
.footer > .footer-inner > div:first-child > p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--terra); }
.footer-address strong { display: block; font-size: 14px; margin-bottom: 6px; }
.footer-address span { display: block; font-size: 13px; color: var(--muted); line-height: 1.8; }
.footer-bottom {
    border-top: 1px solid var(--line);
    width: min(1200px, calc(100% - 40px)); margin: 0 auto;
    padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(245,240,232,0.2); }

/* TOAST */
.toast {
    position: fixed; right: 22px; bottom: 22px;
    background: var(--terra); color: white;
    padding: 14px 20px; border-radius: 999px;
    box-shadow: 0 8px 32px rgba(200,88,58,0.4);
    opacity: 0; transform: translateY(12px);
    pointer-events: none; transition: 0.25s ease;
    font-weight: 600; font-size: 14px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* CURSORS */
h1,h2,h3,p,span,strong,small,div,section,article,blockquote { cursor: default; }
a,button,.btn,.menu-toggle { cursor: pointer; }
input,textarea { cursor: text; }
select { cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 1080px) {
    .menu-cols { grid-template-columns: 1fr; gap: 0; }
    .dish-feature { grid-template-columns: 1fr; }
    .dish-img { height: 400px; }
    .storia-inner { grid-template-columns: 1fr; }
    .prenota-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-info { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 820px) {
    .nav-links {
        position: fixed; inset: 134px 20px auto 20px;
        background: var(--surface); border: 1px solid var(--line);
        border-radius: var(--radius); box-shadow: var(--shadow);
        display: none; flex-direction: column; align-items: stretch; padding: 18px; gap: 4px;
    }
    .nav-links.open { display: flex; }
    .menu-toggle { display: flex; }
    .reviews-grid { grid-template-columns: 1fr; }
    .storia-stats { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    body { padding-top: 92px; }
    .demo-bar { height: 92px; align-items: flex-start; flex-direction: column; padding: 12px 16px; gap: 8px; }
    .demo-bar div:first-child { flex-direction: column; gap: 1px; }
    .demo-links { width: 100%; justify-content: space-between; }
    .header { top: 92px; }
    .nav { width: min(100% - 28px, 1200px); }
    .nav-links { inset: 168px 14px auto 14px; }
    .hero-content { width: min(100% - 28px, 1200px); }
    .hero-info { width: min(100% - 28px, 1200px); flex-direction: column; gap: 16px; }
    .hero-info a { margin-left: 0; }
    .hero-actions { flex-direction: column; }
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    .menu-inner, .storia-inner, .reviews-inner, .prenota-inner { width: min(100% - 28px, 1200px); }
    .dish-copy { padding: 40px 24px; }
    .footer-inner, .footer-bottom { width: min(100% - 28px, 1200px); }
    .form-row { grid-template-columns: 1fr; }
}
