/* YANSO Korean BBQ × Macelleria Sirtori — demo Voost Vision.
   Identità: carbone (nero caldo), rosso Yanso/Macelleria, ottone della sala di via Sarpi, carta crema.
   Serif Fraunces per i titoli (bottega), Manrope per il testo, DM Mono per etichette e prezzi. */
:root {
  --char: #161210;
  --char-2: #1f1915;
  --char-3: #2a221c;
  --paper: #f3ead7;
  --paper-2: #e8dcc2;
  --cream: #f3ead7;
  --ink: #1b1512;
  --red: #963a2f;
  --sign: #c7402a;
  --ember: #ff7a3d;
  --brass: #d4a656;
  --brass-2: #a67c34;
  --muted: rgba(243, 234, 215, .62);
  --line: rgba(243, 234, 215, .14);
  --line-dark: rgba(27, 21, 18, .14);
  --wrap: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t0: 0s;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--char); color: var(--cream); font-family: var(--sans); font-size: 17px; line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .15em; }
a:hover { color: var(--brass); }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: 1; font-variation-settings: "SOFT" 50, "opsz" 144; }
h1 { font-size: clamp(2.7rem, 7vw, 6.6rem); line-height: .96; }
h2 { font-size: clamp(2rem, 4.6vw, 3.9rem); line-height: 1.02; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h1 .em, h2 .em, .em { font-style: italic; font-weight: 500; color: var(--brass); }
p { margin: 0 0 1em; }
.mono { font-family: var(--mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.muted { color: var(--muted); }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--sign); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.ph { border-bottom: 1px dashed currentColor; opacity: .8; }
.tag { display: inline-block; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; border: 1px solid currentColor; padding: 4px 9px; border-radius: 999px; line-height: 1; }
.tag-red { color: var(--sign); }
.tag-brass { color: var(--brass); }
.tag-demo { color: var(--muted); border-style: dashed; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.45; max-width: 58ch; }
.eyebrow { font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); }
.eyebrow .kr { font-family: var(--sans); letter-spacing: 0; color: var(--muted); font-size: .8rem; text-transform: none; white-space: nowrap; }
::selection { background: var(--sign); color: #fff; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; border-radius: 4px; background: var(--sign); color: #fff; font-weight: 700; text-decoration: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .98rem; line-height: 1; letter-spacing: .01em; transition: transform .25s var(--ease-out), background .2s, box-shadow .3s; }
.btn:hover { background: #b0341f; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(199, 64, 42, .35); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 18px; height: 18px; }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(243, 234, 215, .35); }
.btn-ghost:hover { background: rgba(243, 234, 215, .08); color: var(--cream); box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: #e0b56a; color: var(--ink); box-shadow: 0 12px 28px rgba(212, 166, 86, .3); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(22, 18, 16, .92); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); transition: background .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(22, 18, 16, .97); box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--cream); white-space: nowrap; }
.brand img { height: 34px; width: auto; transition: filter .3s; }
.brand:hover img { filter: drop-shadow(0 0 10px rgba(255, 122, 61, .7)); }
.brand-sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-left: 1px solid var(--line); padding-left: 14px; line-height: 1.35; max-width: 15ch; white-space: normal; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav > a:not(.btn) { position: relative; padding: 8px 11px; text-decoration: none; font-size: .93rem; font-weight: 600; opacity: .82; transition: opacity .2s, color .2s; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out); }
.nav > a:not(.btn):hover { opacity: 1; color: var(--cream); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav > a[aria-current="page"] { opacity: 1; color: var(--brass); }
.nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-hours { display: none; color: var(--muted); margin-inline: 8px; }
.nav .btn { padding: 11px 16px; font-size: .88rem; margin-left: 12px; }
.hdr-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.lang { display: flex; gap: 2px; font-family: var(--mono); font-size: .74rem; }
.lang a { padding: 6px 8px; text-decoration: none; opacity: .6; border-radius: 4px; }
.lang a[aria-current="true"] { opacity: 1; color: var(--brass); background: rgba(243, 234, 215, .08); }
.nav-toggle { display: none; background: transparent; color: var(--cream); border: 1px solid rgba(243, 234, 215, .35); border-radius: 4px; padding: 9px 16px; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg, var(--sign), var(--ember)); box-shadow: 0 0 10px rgba(255, 122, 61, .7); transition: width .1s linear; }

/* Sections */
section { padding-block: clamp(56px, 8vw, 120px); }
.sec-paper { background: var(--paper); color: var(--ink); }
.sec-paper .muted { color: rgba(27, 21, 18, .62); }
.sec-paper .eyebrow { color: var(--red); } .sec-paper .eyebrow::before { background: var(--red); }
.sec-paper .em { color: var(--red); }
.sec-paper .btn-ghost { color: var(--ink); border-color: rgba(27, 21, 18, .35); }
.sec-paper .btn-ghost:hover { background: rgba(27, 21, 18, .06); color: var(--ink); }
.sec-paper a:hover { color: var(--red); }
.sec-char2 { background: var(--char-2); }
.sec-black { background: #0f0c0b; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 56px); }
.sec-head p { margin: 0; }
.sec-head .lead { max-width: 48ch; }
.rule { display: flex; align-items: center; gap: 18px; color: var(--brass); margin: 0; }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--brass-2)); }
.rule::after { background: linear-gradient(90deg, var(--brass-2), transparent); }
.rule img { height: 28px; width: auto; opacity: .9; }

/* Hero — testo su carbone a sinistra (con la trama del marchio), foto con punto di fuoco a destra */
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 54%) minmax(0, 46%); min-height: min(88vh, 880px); align-items: center; padding: 0; overflow: hidden; background: var(--char); isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: url(/img/mark-cream.png) 0 0 / 84px auto repeat; opacity: .035; pointer-events: none; }
.hero .wrap { grid-column: 1; grid-row: 1; width: auto; max-width: 780px; margin: 0; padding: clamp(48px, 7vw, 104px) clamp(24px, 3vw, 48px) clamp(48px, 7vw, 104px) var(--gutter); display: grid; gap: 22px; z-index: 2; }
.hero h1 { max-width: 12ch; font-size: clamp(2.7rem, 6.4vw, 6.4rem); }
.hero h1 .em { text-shadow: 0 0 24px rgba(255, 122, 61, .25); }
.hero .lead { max-width: 50ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--paper-2); }
.hero-meta span::before { content: "◆ "; color: var(--brass); font-size: .7em; vertical-align: .1em; }
.hero .media { position: relative; grid-column: 2; grid-row: 1; align-self: stretch; min-height: 520px; overflow: hidden; z-index: 1; }
.hero .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 40%); }
.hero .media::after { content: ""; position: absolute; inset: -2px; z-index: 1; pointer-events: none; background: linear-gradient(90deg, var(--char) 0%, var(--char) 3%, rgba(22, 18, 16, .66) 16%, rgba(22, 18, 16, 0) 46%), linear-gradient(180deg, rgba(22, 18, 16, .18) 0%, rgba(22, 18, 16, 0) 30%, rgba(22, 18, 16, .55) 100%); }
.hero .media::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-left: 1px solid rgba(212, 166, 86, .35); }
.hero-page { min-height: min(68vh, 680px); }
.hero-page h1 { max-width: 14ch; }
.hero-page .media { min-height: 440px; }
/* Braci: puntini che salgono nel lato carbone (sempre attivi: è una demo) */
.embers { position: absolute; left: 0; bottom: 0; width: 54%; height: 70%; z-index: 1; pointer-events: none; overflow: hidden; }
.embers i { position: absolute; left: var(--x); bottom: -10px; width: var(--s); height: var(--s); border-radius: 50%; background: var(--ember); box-shadow: 0 0 10px 2px rgba(255, 122, 61, .55); opacity: 0; animation: ember var(--d) linear var(--w) infinite; }
@keyframes ember { 0% { transform: translate(0, 0) scale(1); opacity: 0; } 12% { opacity: .9; } 60% { opacity: .5; } 100% { transform: translate(var(--dx, 24px), -110vh) scale(.2); opacity: 0; } }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--sign); color: #fff; padding: 12px 0; font-family: var(--mono); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.marquee .track { display: inline-flex; gap: 40px; padding-left: 40px; animation: ticker 34s linear infinite; }
.marquee .track span::after { content: "◆"; margin-left: 40px; font-size: .7em; vertical-align: .15em; }
.marquee .track .kr { font-family: var(--sans); letter-spacing: .1em; }
@keyframes ticker { to { transform: translateX(-50%); } }
.marquee:hover .track { animation-play-state: paused; }
.marquee.brass { background: var(--brass); color: var(--ink); }

/* Grids and cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.card { position: relative; border-radius: 6px; overflow: hidden; background: var(--char-2); display: grid; color: var(--cream); text-decoration: none; border: 1px solid var(--line); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0, 0, 0, .4); border-color: rgba(212, 166, 86, .4); color: var(--cream); }
.card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform .8s var(--ease); }
.card:hover img { transform: scale(1.03); }
.card .body { padding: 22px 22px 26px; display: grid; gap: 8px; align-content: start; }
.card .body h3 { font-size: 1.45rem; color: var(--cream); }
.card .body p { margin: 0; color: var(--muted); }
.card .num { font-family: var(--mono); font-size: .72rem; color: var(--brass); letter-spacing: .12em; text-transform: uppercase; }
.card-photo { aspect-ratio: 4 / 5; }
.card-photo img { height: 100%; }
.card-photo .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(180deg, transparent, rgba(15, 12, 11, .85)); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.sec-paper .card { background: #fff; color: var(--ink); border-color: var(--line-dark); }
.sec-paper .card .body h3 { color: var(--ink); } .sec-paper .card .body p { color: rgba(27, 21, 18, .66); } .sec-paper .card .num { color: var(--red); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 80px); align-items: center; }
.split > * { min-width: 0; }
.split.rev > :first-child { order: 2; }
.split figure { margin: 0; border-radius: 6px; overflow: hidden; position: relative; }
.split figure img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.split figure figcaption { position: absolute; left: 14px; bottom: 14px; font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream); background: rgba(22, 18, 16, .7); padding: 6px 10px; border-radius: 3px; }
.split .copy { display: grid; gap: 18px; }
.split .copy h2 { max-width: 16ch; }
.split .copy p { margin: 0; }
.stack { display: grid; gap: 14px; }
.frame { border: 1px solid rgba(212, 166, 86, .35); padding: 8px; border-radius: 8px; }
.frame img { border-radius: 4px; }

/* Formule: lavagna prezzi della bottega */
.formule { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.formula { position: relative; background: var(--paper); color: var(--ink); border-radius: 6px; padding: clamp(22px, 3vw, 34px); display: grid; gap: 12px; align-content: start; border-top: 4px solid var(--brass); overflow: hidden; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.formula:hover { transform: translateY(-4px); box-shadow: 0 24px 44px rgba(0, 0, 0, .35); }
.formula.feat { border-top-color: var(--sign); background: #fff; }
.formula .when { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(27, 21, 18, .6); display: flex; justify-content: space-between; gap: 10px; }
.formula .when .tag { color: var(--sign); }
.formula h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.formula .price { font-family: var(--serif); font-size: clamp(3.2rem, 5.4vw, 4.6rem); font-weight: 600; line-height: .9; letter-spacing: -.04em; color: var(--red); font-variation-settings: "SOFT" 50, "opsz" 144; display: flex; align-items: baseline; gap: 8px; }
.formula .price small { font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; color: rgba(27, 21, 18, .6); font-weight: 400; }
.formula ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; font-size: .95rem; }
.formula li { padding-left: 20px; position: relative; }
.formula li::before { content: "◆"; position: absolute; left: 0; top: .15em; color: var(--brass-2); font-size: .6em; }
.formula .note { font-size: .85rem; color: rgba(27, 21, 18, .62); margin: 4px 0 0; }
.formula .btn { justify-self: start; margin-top: 6px; }
.formule-note { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.sec-paper .formule-note { color: rgba(27, 21, 18, .55); }
.sec-paper .formula { border: 1px solid var(--line-dark); border-top: 4px solid var(--brass); }
.sec-paper .formula.feat { border-top-color: var(--sign); }

/* Passi: come funziona il tavolo */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 32px); counter-reset: step; }
.step { display: grid; gap: 12px; align-content: start; padding-top: 18px; border-top: 1px solid var(--line); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--brass); line-height: 1; }
.step .ring { width: 54px; height: 54px; border-radius: 50%; background: radial-gradient(circle, var(--ember) 0 3px, transparent 4px), repeating-radial-gradient(circle, rgba(212, 166, 86, .8) 0 1px, transparent 1px 8px); border: 1px solid rgba(212, 166, 86, .5); position: absolute; right: 0; top: 18px; opacity: .8; }
.step h3 { font-size: 1.35rem; }
.step p { margin: 0; color: var(--muted); }
.sec-paper .step { border-top-color: var(--line-dark); } .sec-paper .step p { color: rgba(27, 21, 18, .66); } .sec-paper .step::before { color: var(--red); }

/* Regole del tavolo */
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.rules div { padding: 20px 22px; border: 1px solid var(--line); border-radius: 6px; background: rgba(243, 234, 215, .03); display: grid; gap: 6px; }
.rules b { font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: -.03em; color: var(--brass); line-height: 1; }
.rules span { font-size: .95rem; color: var(--muted); }
.sec-paper .rules div { border-color: var(--line-dark); background: #fff; } .sec-paper .rules span { color: rgba(27, 21, 18, .66); } .sec-paper .rules b { color: var(--red); }

/* Reviews */
.stars { color: var(--brass); letter-spacing: .1em; font-size: .9rem; }
.quote { display: grid; gap: 14px; padding: 26px; border-radius: 6px; background: rgba(243, 234, 215, .04); border: 1px solid var(--line); transition: transform .4s var(--ease-out), border-color .3s; }
.quote:hover { transform: translateY(-3px); border-color: rgba(212, 166, 86, .5); }
.sec-paper .quote { background: #fff; border-color: var(--line-dark); }
.quote p { margin: 0; font-size: 1.05rem; line-height: 1.5; font-family: var(--serif); font-weight: 400; font-variation-settings: "SOFT" 50, "opsz" 18; }
.quote cite { font-style: normal; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.sec-paper .quote cite { color: rgba(27, 21, 18, .55); }
.score { display: grid; gap: 6px; align-content: start; }
.score .big { font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); font-weight: 600; line-height: .9; letter-spacing: -.04em; }
.score .big small { font-size: .3em; letter-spacing: 0; font-weight: 500; margin-left: 6px; font-style: italic; }
.grid-reviews { display: grid; grid-template-columns: .7fr 1fr 1fr; gap: clamp(16px, 2.5vw, 32px); }
.count { font-variant-numeric: tabular-nums; }

/* Menu completo */
.menu-tabs { position: sticky; top: 74px; z-index: 40; background: rgba(243, 234, 215, .96); color: var(--ink); border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(8px); }
.menu-tabs .wrap { display: flex; align-items: center; gap: 16px; min-height: 58px; }
.menu-tabs .tabs { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 8px 0; }
.menu-tabs .tabs::-webkit-scrollbar { display: none; }
.menu-tabs .tabs a { flex: 0 0 auto; text-decoration: none; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; border: 1px solid transparent; display: inline-flex; gap: 6px; align-items: center; transition: background .2s, border-color .2s, color .2s; }
.menu-tabs .tabs a small { font-size: .85em; opacity: .5; }
.menu-tabs .tabs a:hover { border-color: var(--line-dark); color: var(--ink); }
.menu-tabs .tabs a.on { background: var(--ink); color: var(--cream); }
.menu-search { flex: 0 0 auto; }
.menu-search input { font: inherit; font-family: var(--sans); font-size: .9rem; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-dark); background: #fff; color: var(--ink); width: 200px; transition: border-color .2s, box-shadow .2s, width .3s var(--ease-out); }
.menu-search input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(150, 58, 47, .15); width: 240px; }
.menu-wrap { padding-block: clamp(20px, 3vw, 40px) clamp(40px, 5vw, 80px); }
.menu-cat { padding-block: clamp(28px, 4vw, 48px); border-top: 1px solid var(--line-dark); scroll-margin-top: 140px; }
.menu-cat:first-child { border-top: 0; }
.menu-cat-head { display: grid; grid-template-columns: auto 1fr auto; gap: 8px 24px; align-items: baseline; margin-bottom: 22px; }
.menu-cat-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.menu-cat-head p { margin: 0; color: rgba(27, 21, 18, .62); font-size: .95rem; }
.menu-cat-head .mono { color: rgba(27, 21, 18, .5); font-size: .7rem; }
.menu-grid { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 22px; }
.menu-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 4px 14px; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line-dark); transition: padding-left .3s var(--ease-out), background .3s; }
.menu-item:hover { padding-left: 6px; }
.menu-item img, .menu-item .noimg { width: 64px; height: 64px; border-radius: 4px; object-fit: cover; background: var(--paper-2); }
.menu-item .noimg { background: repeating-linear-gradient(45deg, var(--paper-2) 0 4px, transparent 4px 8px); }
.menu-item .nm { font-weight: 600; font-size: .95rem; line-height: 1.25; }
.menu-item .p { font-family: var(--mono); font-size: .85rem; white-space: nowrap; }
.menu-item .inc { font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--brass-2); border: 1px solid rgba(166, 124, 52, .5); border-radius: 999px; padding: 4px 8px; white-space: nowrap; }
.menu-item[hidden] { display: none; }
.menu-cat[hidden] { display: none; }
.menu-none { color: rgba(27, 21, 18, .55); padding: 40px 0; text-align: center; }
.menu-note { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(27, 21, 18, .55); margin-top: 18px; }
.menu-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.menu-list li { display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; padding: 14px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.menu-list li strong { font-weight: 700; font-size: 1rem; }
.menu-list li span.desc { grid-column: 1; color: var(--muted); font-size: .92rem; }
.menu-list li .p { font-family: var(--mono); font-size: .88rem; white-space: nowrap; }
.sec-paper .menu-list li { border-bottom-color: var(--line-dark); } .sec-paper .menu-list li span.desc { color: rgba(27, 21, 18, .66); }

/* Gallery */
.gallery { columns: 3; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; border-radius: 4px; overflow: hidden; break-inside: avoid; background: var(--char-2); transition: transform .4s var(--ease-out); }
.gallery a:hover { transform: translateY(-3px); }
.gallery img { width: 100%; transition: transform .6s var(--ease), opacity .3s; }
.gallery a:hover img { transform: scale(1.02); opacity: .92; }
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(15, 12, 11, .95); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1200px); max-height: 92vh; width: auto; height: auto; border-radius: 4px; }
.lightbox button { position: absolute; top: 16px; right: 16px; background: var(--sign); color: #fff; border: 0; border-radius: 999px; width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer; transition: transform .2s, background .2s; }
.lightbox button:hover { transform: scale(1.08); }
.lightbox .prev, .lightbox .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(243, 234, 215, .12); color: var(--cream); border: 0; border-radius: 999px; width: 48px; height: 48px; font-size: 1.4rem; cursor: pointer; }
.lightbox .prev { left: 16px; right: auto; } .lightbox .next { right: 16px; }
.lightbox .prev:hover, .lightbox .next:hover { background: rgba(243, 234, 215, .22); }
.lightbox.open img { animation: pop .4s var(--ease-out); }
.lightbox img.swap { animation: pop .35s var(--ease-out); }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* Hours / contact */
.hours { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .84rem; text-transform: uppercase; letter-spacing: .04em; }
.hours li.closed { color: var(--muted); }
.hours li.today { color: var(--brass); }
.hours li.today span:first-child::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ember); margin-right: 10px; vertical-align: middle; box-shadow: 0 0 0 0 rgba(255, 122, 61, .6); animation: pulse 1.8s ease-out infinite; }
.hours li .today-tag { font-size: .62rem; color: var(--brass); border: 1px solid currentColor; border-radius: 999px; padding: 1px 7px; margin-left: 10px; vertical-align: middle; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 122, 61, .6); } 100% { box-shadow: 0 0 0 10px rgba(255, 122, 61, 0); } }
.sec-paper .hours, .sec-paper .hours li { border-color: var(--line-dark); }
.sec-paper .hours li.today { color: var(--red); }
.map { border-radius: 6px; overflow: hidden; background: var(--char-2); aspect-ratio: 16 / 10; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.info-grid.info-2 { grid-template-columns: 1fr 1fr; }
.info-grid h3 { font-size: .74rem; font-family: var(--mono); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.sec-paper .info-grid h3 { color: var(--red); }
.info-grid p { margin: 0 0 8px; }
.contact-list { display: grid; gap: 10px; }
.contact-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: border-color .3s, transform .3s var(--ease-out), background .3s; }
.contact-list a:hover { border-color: rgba(212, 166, 86, .6); transform: translateX(4px); background: rgba(243, 234, 215, .04); color: var(--cream); }
.contact-list a b { display: block; font-weight: 700; }
.contact-list a small { display: block; color: var(--muted); font-size: .85rem; }
.contact-list a .mono { color: var(--brass); font-size: .68rem; }
.sec-paper .contact-list a { border-color: var(--line-dark); background: #fff; } .sec-paper .contact-list a:hover { color: var(--ink); } .sec-paper .contact-list a small { color: rgba(27, 21, 18, .6); } .sec-paper .contact-list a .mono { color: var(--red); }

/* Big CTA */
.cta-band { text-align: center; display: grid; gap: 22px; justify-items: center; }
.cta-band h2 { max-width: 18ch; font-size: clamp(2.2rem, 6vw, 5.2rem); }
.cta-band img { height: 60px; width: auto; }
.cta-band .kr { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--brass); letter-spacing: .3em; }

/* Footer */
.site-footer { background: #0f0c0b; color: var(--cream); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.foot-grid h3 { color: var(--brass); font-size: .72rem; letter-spacing: .12em; margin-bottom: 10px; font-weight: 500; }
.foot-grid p { margin: 0 0 8px; }
.foot-brand img { height: 44px; width: auto; }
.foot-brand .mono { color: var(--muted); margin-top: 14px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 18px 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }
.foot-bottom a { text-decoration: none; }

/* Demo popup (isolated) */
.demo-popup { position: fixed; inset: 0; z-index: 200; background: rgba(15, 12, 11, .82); display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn .4s ease both; }
.demo-popup .box { background: var(--paper); color: var(--ink); max-width: 540px; padding: 28px; border-radius: 6px; display: grid; gap: 12px; border-top: 4px solid var(--sign); animation: pop .55s var(--ease-out) .1s both; }
.demo-popup h2 { font-size: 1.7rem; }
.demo-popup p { margin: 0; font-size: .95rem; }
.demo-popup .tag { color: var(--red); justify-self: start; }
.demo-popup small { color: rgba(27, 21, 18, .55); font-family: var(--mono); font-size: .68rem; }
.demo-popup .row { margin-top: 6px; }

/* ===== Motion =====
   Le animazioni partono sempre (demo): nessun gate su prefers-reduced-motion. Senza JS tutto resta visibile. */
html.first { --t0: 1.5s; }
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .32s; }
/* Sipario: pannello carbone su html::before; marchio e sottotitolo su body::before/::after */
html.first::before { content: ""; position: fixed; inset: 0; z-index: 299; background: var(--char); pointer-events: none; animation: curtainOut .9s cubic-bezier(.76, 0, .24, 1) 1.3s forwards; }
.first body::before, .first body::after { position: fixed; left: 0; right: 0; z-index: 300; pointer-events: none; text-align: center; }
.first body::before { content: ""; top: 50%; height: 120px; margin-top: -78px; background: url(/img/logo-cream.png) center / contain no-repeat; animation: brandIn .8s var(--ease-out) .05s both, glow 1.2s ease-in-out .5s 1, textOut .5s ease-in 1.2s forwards; }
.first body::after { content: "Korean BBQ × Macelleria Sirtori"; top: calc(50% + 62px); font-family: var(--mono); font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); animation: brandIn .8s var(--ease-out) .25s both, textOut .5s ease-in 1.15s forwards; }
@keyframes textOut { to { opacity: 0; transform: translateY(-24px); visibility: hidden; } }
@keyframes brandIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes glow { 0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 122, 61, 0)); } 50% { filter: drop-shadow(0 0 22px rgba(255, 122, 61, .8)); } }
@keyframes curtainOut { to { transform: translateY(-102%); visibility: hidden; } }
/* Hero: ingresso a cascata */
.js .hero .wrap > * { opacity: 0; animation: fadeUp .9s var(--ease-out) forwards; }
.js .hero .wrap > :nth-child(1) { animation-delay: calc(var(--t0) + .05s); }
.js .hero .wrap > :nth-child(2) { animation-delay: calc(var(--t0) + .15s); }
.js .hero .wrap > :nth-child(3) { animation-delay: calc(var(--t0) + .38s); }
.js .hero .wrap > :nth-child(4) { animation-delay: calc(var(--t0) + .5s); }
.js .hero .wrap > :nth-child(5) { animation-delay: calc(var(--t0) + .62s); }
.js .hero .wrap > :nth-child(6) { animation-delay: calc(var(--t0) + .78s); }
.js .hero h1 { animation-name: clipUp; animation-duration: 1.1s; }
.js .hero h1 .em { animation: emberGlow 2.6s ease-in-out calc(var(--t0) + .9s) 1; }
.js .hero .media img { opacity: 0; animation: heroImg 1.5s var(--ease-out) calc(var(--t0) + .05s) forwards, drift 28s ease-in-out calc(var(--t0) + 1.55s) infinite alternate; }
.js .hero .media::after, .js .hero .media::before { opacity: 0; animation: fadeIn 1.2s ease-out calc(var(--t0) + .1s) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes clipUp { from { opacity: 1; clip-path: inset(0 0 100% 0); transform: translateY(40px); } to { opacity: 1; clip-path: inset(-10% 0 -20% 0); transform: none; } }
@keyframes heroImg { from { opacity: 0; transform: scale(1.12); } to { opacity: 1; transform: scale(1); } }
@keyframes drift { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.07) translate(-1.5%, -1%); } }
@keyframes emberGlow { 0%, 100% { text-shadow: 0 0 24px rgba(255, 122, 61, .25); } 10% { text-shadow: 0 0 34px rgba(255, 122, 61, .9), 0 0 70px rgba(255, 122, 61, .45); } 14% { text-shadow: 0 0 12px rgba(255, 122, 61, .2); } 22% { text-shadow: 0 0 34px rgba(255, 122, 61, .85), 0 0 70px rgba(255, 122, 61, .4); } 45% { text-shadow: 0 0 24px rgba(255, 122, 61, .25); } }
/* Reveal allo scroll (JS aggiunge .in; fallback: tutto visibile dopo 3.5s) */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal] > h2, .js [data-reveal] > div > h2 { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease-out) calc(var(--d, 0s) + .1s); }
.js [data-reveal].in > h2, .js [data-reveal].in > div > h2 { clip-path: inset(-10% 0 -20% 0); }
.js img[loading="lazy"] { opacity: 0; transition: opacity .7s ease; }
.js img[loading="lazy"].ld { opacity: 1; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-size: .68rem; letter-spacing: .16em; margin-top: 8px; }
.scroll-cue::after { content: ""; width: 48px; height: 1px; background: linear-gradient(90deg, var(--brass), transparent); animation: cue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes cue { 0% { transform: scaleX(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: scaleX(1); opacity: 0; } }

/* Responsive */
@media (max-width: 1240px) { .brand-sub { display: none; } }
@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 58%) minmax(0, 42%); }
  .nav > a:not(.btn) { padding: 8px 8px; font-size: .88rem; }
  .nav .btn { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .formule { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr 1fr; }
  .grid-reviews { grid-template-columns: 1fr 1fr; } .grid-reviews .score { grid-column: 1 / -1; }
  .menu-cat-head { grid-template-columns: 1fr auto; } .menu-cat-head p { grid-column: 1 / -1; }
  .menu-tabs { top: 64px; }
  .menu-search input { width: 140px; }
}
@media (max-width: 760px) {
  .site-header { backdrop-filter: none; }
  .site-header .wrap { min-height: 64px; gap: 12px; }
  .eyebrow .kr { display: none; }
  .brand img { height: 28px; }
  .nav-toggle { display: inline-block; }
  .nav { position: fixed; inset: 64px 0 0 0; background: var(--char); flex-direction: column; align-items: stretch; padding: 20px var(--gutter); gap: 4px; display: none; z-index: 60; overflow: auto; }
  .nav.open { display: flex; animation: fadeIn .25s ease; }
  .nav.open > * { opacity: 0; animation: fadeUp .5s var(--ease-out) forwards; }
  .nav.open > :nth-child(1) { animation-delay: .05s; } .nav.open > :nth-child(2) { animation-delay: .1s; } .nav.open > :nth-child(3) { animation-delay: .15s; }
  .nav.open > :nth-child(4) { animation-delay: .2s; } .nav.open > :nth-child(5) { animation-delay: .25s; } .nav.open > :nth-child(6) { animation-delay: .3s; }
  .nav.open > :nth-child(7) { animation-delay: .38s; } .nav.open > :nth-child(8) { animation-delay: .44s; }
  .nav > a:not(.btn) { font-family: var(--serif); font-size: 1.9rem; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 500; letter-spacing: -.01em; }
  .nav > a:not(.btn)::after { display: none; }
  .nav > a[aria-current="page"] { color: var(--brass); font-style: italic; }
  .nav-hours { display: block; margin: 18px 0 6px; }
  .nav .btn { display: inline-flex; margin: 8px 0 0; justify-self: start; width: fit-content; }
  body.nav-open { overflow: hidden; }
  .grid-2, .grid-3, .grid-4, .info-grid, .info-grid.info-2, .steps, .rules, .grid-reviews, .menu-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero, .hero-page { grid-template-columns: 1fr; min-height: 0; }
  .hero .media { grid-column: 1; grid-row: 1; min-height: 0; height: 62vh; max-height: 560px; }
  .hero-page .media { height: 46vh; max-height: 420px; }
  .hero .media::after { background: linear-gradient(180deg, rgba(22, 18, 16, .05) 0%, rgba(22, 18, 16, 0) 38%, rgba(22, 18, 16, .85) 80%, var(--char) 96%, var(--char) 100%); }
  .hero .media::before { border-left: 0; }
  .hero .wrap { grid-column: 1; grid-row: 2; margin-top: -48px; padding-top: 0; padding-right: var(--gutter); max-width: none; }
  .embers { width: 100%; height: 50%; }
  .card img { aspect-ratio: 4 / 3; }
  .gallery { columns: 2; column-gap: 8px; }
  .gallery a { margin-bottom: 8px; border-radius: 4px; }
  .score .big { font-size: 4rem; }
  .menu-tabs .wrap { flex-wrap: wrap; gap: 0; }
  .menu-tabs .tabs { flex: 1 1 100%; width: 100%; order: 2; padding: 4px 0 8px; }
  .menu-search { width: 100%; padding-top: 10px; order: 1; } .menu-search input, .menu-search input:focus { width: 100%; }
  .menu-cat { scroll-margin-top: 196px; }
  .menu-item { grid-template-columns: 56px 1fr auto; }
  .menu-item img, .menu-item .noimg { width: 56px; height: 56px; }
  .step .ring { width: 40px; height: 40px; }
}
