:root {
  --red: #a31818;
  --red-dark: #7d1010;
  --cream: #f7f1e8;
  --paper: #fffaf3;
  --ink: #2a1a14;
  --muted: #6e5d52;
  --line: #e4d8c8;
  --gold: #c89b3c;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --wrap: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 17px/1.65 var(--sans); }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.eyebrow { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: .6em; }
section { padding: 88px 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--red); color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { font-family: var(--serif); font-size: 1.35rem; text-decoration: none; white-space: nowrap; }
.brand small { display: block; font: 500 .62rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-weight: 500; font-size: .95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-color: #fff; }
.lang { display: flex; gap: 2px; background: rgba(0,0,0,.18); border-radius: 999px; padding: 3px; }
.nav .lang a { border: 0; color: #fff; font: 600 .75rem var(--sans); padding: 6px 9px; border-radius: 999px; }
.nav .lang a:hover { background: rgba(255,255,255,.15); }
.nav .lang a[aria-current="true"] { background: #fff; color: var(--red); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; color: var(--red); padding: 8px 14px; border-radius: 4px; }
.skip:focus { left: 8px; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; background: var(--red-dark); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; display: none; }
  .nav.open { display: flex; }
  .nav > a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav .lang { margin-top: 14px; align-self: flex-start; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; text-decoration: none; font-weight: 600; padding: 13px 26px; border-radius: 999px; border: 2px solid var(--red); transition: .2s; cursor: pointer; font-size: 1rem; font-family: var(--sans); }
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn.ghost { background: transparent; color: #fff; border-color: #fff; }
.btn.ghost:hover { background: #fff; color: var(--red); }
.btn.outline { background: transparent; color: var(--red); }
.btn.outline:hover { background: var(--red); color: #fff; }

/* Hero */
.hero { position: relative; min-height: 72vh; display: grid; place-items: center; text-align: center; color: #fff; padding: 110px 20px; background: #1e120d; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(ellipse at 50% 0%, rgba(163,24,24,.55), transparent 60%),
  repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 2px, transparent 2px 90px); }
.hero > div { position: relative; max-width: 760px; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.2rem); margin-bottom: .2em; }
.hero p { font-size: 1.2rem; opacity: .95; margin: 0 auto 32px; max-width: 560px; }
.hero .eyebrow { color: #f4d9a0; }
.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Info strip */
.strip { background: var(--ink); color: #fff; padding: 22px 0; }
.strip .wrap { display: flex; justify-content: center; gap: 18px 48px; flex-wrap: wrap; font-size: .95rem; }
.strip span { display: flex; align-items: center; gap: 10px; }
.strip svg { color: var(--gold); flex: none; }

/* About */
.about .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about .wrap > * { min-width: 0; }
.about img { width: 100%; max-width: 440px; justify-self: center; border-radius: 6px; box-shadow: 14px 14px 0 var(--red); }
.about p { color: #3d2c24; }
@media (max-width: 860px) { .about .wrap { grid-template-columns: 1fr; gap: 40px; } .about img { box-shadow: 10px 10px 0 var(--red); } }

/* Cicchetti cards */
.cicchetti { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.card { background: var(--cream); border: 1px solid var(--line); padding: 28px 20px; border-radius: 4px; }
.card h3 { font-size: 1.2rem; margin: 0 0 6px; }
.card p { font-size: .92rem; color: var(--muted); margin: 0; }
.card .num { font-family: var(--serif); color: var(--red); font-size: 2rem; font-style: italic; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cards { grid-template-columns: 1fr; } }

/* Reviews */
.reviews { text-align: center; }
.reviews .lead { color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.review-links { display: grid; grid-template-columns: repeat(2, minmax(0, 300px)); gap: 20px; justify-content: center; }
.review-link { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: .2s; }
.review-link:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,26,20,.08); }
.review-link .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.2rem; }
.review-link strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.review-link span:last-child { color: var(--red); font-weight: 600; font-size: .92rem; }
@media (max-width: 560px) { .review-links { grid-template-columns: 1fr; } }

/* Visit */
.visit { background: var(--red); color: #fff; }
.visit .wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
.visit .eyebrow { color: #f4d9a0; }
.visit dl { margin: 24px 0 30px; }
.visit dt { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; opacity: .75; margin-top: 16px; }
.visit dd { margin: 2px 0 0; font-size: 1.1rem; }
.visit iframe { width: 100%; height: 380px; border: 0; border-radius: 4px; }
.social { display: flex; gap: 10px; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transition: .2s; }
.social a:hover { background: #fff; color: var(--red); }
@media (max-width: 860px) { .visit .wrap { grid-template-columns: 1fr; } .visit iframe { height: 300px; } }

/* Page header (inner pages) */
.page-head { background: var(--ink); color: #fff; text-align: center; padding: 72px 20px 60px; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.page-head p { opacity: .85; max-width: 620px; margin: 0 auto; }
.page-head .eyebrow { color: #f4d9a0; }

/* Menu page */
.menu-tabs { position: sticky; top: 68px; z-index: 20; background: var(--cream); border-bottom: 1px solid var(--line); }
.menu-tabs .wrap { display: flex; gap: 8px; overflow-x: auto; padding-top: 12px; padding-bottom: 12px; scrollbar-width: none; }
.menu-tabs a { white-space: nowrap; text-decoration: none; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: .9rem; font-weight: 500; }
.menu-tabs a:hover { border-color: var(--red); color: var(--red); }
.menu-body { padding: 40px 0 88px; }
.weekend-wrap { max-width: 820px; padding-top: 40px; }
.weekend { display: flex; gap: 18px; align-items: flex-start; background: var(--red); color: #fff; padding: 24px 28px; border-radius: 6px; box-shadow: 8px 8px 0 var(--gold); }
.weekend svg { flex: none; color: #f4d9a0; margin-top: 2px; }
.weekend h2 { font-size: 1.45rem; margin: 0 0 6px; }
.weekend p { margin: 0; opacity: .95; }
@media (max-width: 480px) { .weekend { padding: 20px; gap: 14px; } }
.menu-body .wrap { max-width: 820px; }
.menu-cat { margin-bottom: 56px; scroll-margin-top: 150px; }
.menu-cat h2 { font-size: 2rem; text-align: center; margin-bottom: 26px; }
.menu-cat h2::after { content: ""; display: block; width: 48px; height: 2px; background: var(--red); margin: 14px auto 0; }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.dish h3 { font-size: 1.15rem; margin: 0; display: flex; align-items: baseline; gap: 12px; }
.dish .price { font-family: var(--serif); font-weight: 600; color: var(--red); font-size: 1.15rem; white-space: nowrap; }
.dish p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .95rem; }
.menu-sec { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin: 34px 0 4px; padding-bottom: 8px; border-bottom: 2px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.price-head, .price.two { display: flex; justify-content: flex-end; }
.price-head { font-size: .68rem; letter-spacing: .06em; color: var(--muted); }
.price-head span, .price.two > span { display: inline-block; min-width: 76px; text-align: right; }
@media (max-width: 480px) { .price-head span, .price.two > span { min-width: 62px; } }
.al { font-family: var(--sans); font-size: .62rem; font-weight: 500; color: var(--muted); letter-spacing: .02em; cursor: help; position: relative; }
.al:hover::after, .al:focus::after { content: attr(title); position: absolute; left: 0; top: 1.8em; z-index: 5; width: max-content; max-width: 240px; background: var(--ink); color: #fff; font-size: .78rem; line-height: 1.4; padding: 6px 10px; border-radius: 4px; white-space: normal; }
.legend { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 4px 12px; text-align: left; margin-top: 12px !important; font-size: .85rem; }
.legend strong { grid-column: 1 / -1; }
.legend b { color: var(--red); display: inline-block; min-width: 1.4em; }
.menu-sub-note { font-style: italic; color: var(--muted); font-size: .92rem; margin: 10px 0 2px; }
.menu-note p { margin: 4px 0; }
.legend span { display: inline-block; margin: 0 10px 0 0; white-space: nowrap; }
.menu-note { text-align: center; color: var(--muted); font-size: .9rem; border: 1px solid var(--line); background: var(--paper); padding: 18px; border-radius: 4px; }
.state { text-align: center; color: var(--muted); padding: 40px 0; }

/* Shop */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.product img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.product div { padding: 16px 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.product h2 { font-size: 1.1rem; margin: 0; }
.product span { font-family: var(--serif); color: var(--red); font-weight: 600; }
.shop-note { text-align: center; margin-top: 36px; color: var(--muted); }
@media (max-width: 860px) { .shop-grid { grid-template-columns: 1fr 1fr; } }

/* Contact */
.contact .wrap { max-width: 640px; }
.form { display: grid; gap: 18px; }
.form label { font-weight: 600; font-size: .9rem; display: grid; gap: 6px; }
.form input, .form textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--ink); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: transparent; }
.form textarea { min-height: 160px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-msg { padding: 14px; border-radius: 4px; display: none; }
.form-msg.ok { display: block; background: #e2f5ec; color: #0b5a38; }
.form-msg.err { display: block; background: #fbe4e4; color: var(--red-dark); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 40px 0; font-size: .9rem; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-footer .brand { color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
