/* Mister Pizza — design system VG (urban food / asporto) */
:root {
  --ink: #1a1410;
  --ink-soft: #3a322c;
  --cream: #f7f1e8;
  --charcoal: #12100e;
  --charcoal-2: #1a1714;
  --red: #c62828;
  --red-deep: #9e1f1f;
  --wa: #1f9b4c;
  --line: rgba(26, 20, 16, 0.14);
  --line-light: rgba(247, 241, 232, 0.14);
  --radius: 4px;
  --radius-sm: 2px;
  --pad-section: clamp(56px, 8vw, 104px);
  --pad-x: clamp(20px, 4vw, 40px);
  --container: 1200px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "PT Serif", Georgia, serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
::selection { background: var(--red); color: #fff; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff; padding: 12px 16px; z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

.container {
  width: min(100% - (var(--pad-x) * 2), var(--container));
  margin-inline: auto;
}

/* —— Header —— */
.header {
  position: fixed; inset: 0 0 auto; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
  padding: 0 var(--pad-x);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, min-height .25s ease;
}
.header.is-solid {
  background: rgba(18, 16, 14, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
  min-height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  position: relative; z-index: 90;
}
.nav__links {
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 28px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  text-decoration: none; color: rgba(255,255,255,.88);
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--red);
  transition: right .25s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: #fff; }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.nav__foot { display: none; }

.header__cta {
  margin-left: 8px;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  .header__cta { display: none; }
}

.menu {
  display: none; width: 48px; height: 48px; border: 0; background: transparent; padding: 12px;
  position: relative; z-index: 90;
}
.menu span {
  display: block; height: 2px; background: #fff; margin: 7px 0;
  transition: transform .25s, opacity .25s;
}
.menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu { display: block; }
  .nav {
    position: fixed; inset: 0;
    background: var(--charcoal);
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-h) + 24px) var(--pad-x) 40px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
    z-index: 85;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .nav__links a { color: #fff; padding: 8px 0; }
  .nav__links a::after { display: none; }
  .nav__foot {
    display: grid;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
  }
  .nav__phone {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
  }
}

/* —— Buttons —— */
.btn {
  --btn-shift: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.btn > span {
  position: relative;
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover > span { transform: translateX(3px); }
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: var(--red-deep);
  transition: width .3s ease;
}
.btn--primary:hover::before { width: 100%; }
.btn--wa {
  background: var(--wa);
  color: #fff;
  gap: 10px;
}
.btn--wa:hover { background: #188740; }
.btn--wa::before { display: none; }
.btn__wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.btn--wa-on-color {
  background: #fff;
  color: var(--wa);
}
.btn--wa-on-color:hover {
  background: var(--cream);
  color: #188740;
}
.btn--wa-soft {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,20,16,.28);
}
.btn--wa-soft:hover { border-color: var(--wa); color: var(--wa); }
.btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--ghost-dark {
  background: transparent; color: var(--ink);
  border-color: rgba(26,20,16,.28);
}
.btn--ghost-dark:hover { border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* —— Hero split —— */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero--split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  min-height: min(90vh, 920px);
}
.hero--compact.hero--split { min-height: min(68vh, 680px); }
.hero--flip { grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr); }
.hero--flip .hero__copy { order: 2; }
.hero--flip .hero__visual { order: 1; }
.hero__copy {
  background: var(--charcoal);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0;
  padding: calc(var(--header-h) + 48px) clamp(28px, 5vw, 72px) clamp(48px, 7vw, 80px);
}
.hero__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--charcoal-2);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: min(90vh, 920px);
}
.hero--compact .hero__visual img { min-height: min(68vh, 680px); }
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,241,232,.72);
  margin: 0 0 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  white-space: nowrap;
  max-width: 100%;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  max-width: 34ch;
  margin: 0 0 28px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}
@media (max-width: 960px) {
  .hero--split,
  .hero--flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero--flip .hero__copy,
  .hero--flip .hero__visual { order: initial; }
  .hero__visual { min-height: 42vh; }
  .hero__visual img,
  .hero--compact .hero__visual img {
    min-height: 42vh;
    aspect-ratio: 4 / 3;
  }
  .hero__copy {
    padding: 40px var(--pad-x) 48px;
  }
  .hero h1 {
    white-space: normal;
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }
}

/* —— Sections —— */
.section { padding: var(--pad-section) 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--ink { background: var(--charcoal-2); color: var(--cream); }
.section--red { background: var(--red); color: #fff; }
.section--tight { padding-block: clamp(32px, 5vw, 52px); }
.section--bleed { padding: 0; }
.section--image {
  position: relative; color: #fff;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.section--image .section__bg {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
}
.section--image .section__shade {
  position: absolute; inset: 0;
  background: rgba(18,16,14,.66);
}
.section--image .container { position: relative; z-index: 1; }
.section--image-cta { min-height: 52vh; display: grid; align-items: end; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.section--dark .eyebrow,
.section--ink .eyebrow,
.section--image .eyebrow,
.finale__media .eyebrow { color: rgba(247,241,232,.7); }
.section--red .eyebrow { color: rgba(255,255,255,.75); }

.section h2, .h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.lead {
  font-size: 1.08rem;
  max-width: 48ch;
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.section--dark .lead,
.section--ink .lead,
.section--image .lead,
.finale__media .lead { color: rgba(247,241,232,.8); }
.section--red .lead { color: rgba(255,255,255,.88); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head--wide { max-width: 720px; }

/* —— Trust —— */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  padding: 12px 24px;
  border-left: 1px solid var(--line-light);
}
.trust__item:first-child {
  border-left: 0;
  padding-left: 4px;
}
.trust__item:last-child { padding-right: 4px; }
.trust__value {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}
.trust__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(247,241,232,.68);
  margin: 0;
  max-width: 18ch;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .trust { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust__item {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding: 20px 16px 8px 4px;
  }
  .trust__item:nth-child(odd) { padding-right: 16px; }
  .trust__item:nth-child(-n+2) { border-top: 0; padding-top: 4px; }
}

/* —— Food board —— */
.food-board {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr 1.05fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: end;
}
.food-shot {
  display: block;
  text-decoration: none;
  color: inherit;
}
.food-shot:nth-child(2) { transform: translateY(-18px); }
.food-shot:nth-child(3) { transform: translateY(12px); }
.food-shot__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
}
.food-shot:nth-child(1) .food-shot__media,
.food-shot:nth-child(4) .food-shot__media { aspect-ratio: 3 / 4; }
.food-shot__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.food-shot:hover .food-shot__media img { transform: scale(1.04); }
.food-shot__body { padding: 16px 0 0; }
.food-shot__kicker {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  margin: 0 0 8px;
}
.food-shot__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin: 0 0 6px;
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .3s ease;
}
.food-shot:hover .food-shot__body h3 { background-size: 100% 1px; }
.food-shot__body p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 28ch;
}
@media (max-width: 960px) {
  .food-board { grid-template-columns: 1fr 1fr; }
  .food-shot:nth-child(2),
  .food-shot:nth-child(3) { transform: none; }
}
@media (max-width: 560px) {
  .food-board { grid-template-columns: 1fr; }
  .food-shot__media { aspect-ratio: 16 / 11; }
}

/* —— Split edge —— */
.split-edge {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(78vh, 760px);
}
.split-edge--flip { grid-template-columns: 0.95fr 1.05fr; }
.split-edge__media {
  min-height: 420px;
  overflow: hidden;
}
.split-edge__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-edge__copy {
  display: grid;
  align-items: center;
  padding: clamp(40px, 7vw, 88px) clamp(28px, 5vw, 72px);
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 28px 0 0;
  max-width: 18ch;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}
@media (max-width: 900px) {
  .split-edge,
  .split-edge--flip { grid-template-columns: 1fr; }
  .split-edge__media { min-height: 280px; aspect-ratio: 16 / 11; }
}

/* —— Cuore typographic —— */
.cuore__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.cuore__copy { padding-right: 8px; }
.cuore__copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 10ch;
}
.cuore__copy .lead,
.cuore__copy .text-narrow {
  max-width: 42ch;
}
.cuore__mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(247,241,232,.12);
  margin: 0;
  text-align: right;
  padding-left: 12px;
}
.cuore--red .cuore__mark { color: rgba(255,255,255,.18); }
.cuore--red .lead,
.cuore--red .text-narrow { color: rgba(255,255,255,.9); }
@media (max-width: 800px) {
  .cuore__grid { grid-template-columns: 1fr; }
  .cuore__mark { text-align: left; font-size: clamp(2rem, 10vw, 3rem); }
}

/* —— Billboard —— */
.section--billboard { padding-bottom: 0; background: var(--cream); }
.billboard__head { margin-bottom: clamp(24px, 4vw, 36px); }
.billboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: min(70vh, 680px);
}
.billboard__item {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  min-height: 360px;
}
.billboard__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.billboard__item:hover img { transform: scale(1.04); }
.billboard__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(18,16,14,.88));
}
.billboard__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 4vw, 40px);
}
.billboard__kicker {
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 10px;
  color: rgba(255,255,255,.75);
}
.billboard__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 8px;
}
.billboard__body p { margin: 0; opacity: .88; max-width: 28ch; }
@media (max-width: 800px) {
  .billboard { grid-template-columns: 1fr; min-height: 0; }
}

/* —— Promo band —— */
.promo-band { overflow: hidden; }
.promo-band__grid,
.promo-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.promo-band__giant {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 11rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0;
  color: rgba(255,255,255,.95);
}
.promo-band__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.promo__list {
  display: grid;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.promo__list p { margin: 0; }
.promo__note {
  opacity: .85;
  font-size: .92rem;
  margin: 14px 0 22px;
}
.promo-noon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.promo-noon h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}
.section--red .btn--primary {
  background: #fff;
  color: var(--red);
}
.section--red .btn--primary::before { background: var(--cream); }
.section--red .btn--ghost { border-color: rgba(255,255,255,.55); }
@media (max-width: 800px) {
  .promo-band__grid,
  .promo-band__inner { grid-template-columns: 1fr; gap: 12px; }
  .promo-band__giant { font-size: clamp(4.2rem, 22vw, 6.5rem); }
}

/* —— Quotes —— */
.quotes--editorial {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 28px;
}
.quotes--editorial .quote--feature {
  grid-row: 1 / span 2;
}
.quote {
  margin: 0;
  padding: 20px 8px 8px 4px;
  border-top: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.7;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.quote p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0 0 16px;
  font-style: italic;
  max-width: 28ch;
  line-height: 1.45;
}
.quote--feature p {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  max-width: 18ch;
}
.quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.quotes--wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.quotes--wall .quote--offset { margin-top: 36px; }
.quotes--compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quotes--compact .quote p {
  font-size: 1.05rem;
  max-width: none;
}
@media (max-width: 860px) {
  .quotes--editorial,
  .quotes--wall,
  .quotes--compact {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .quotes--editorial .quote,
  .quotes--wall .quote,
  .quotes--compact .quote {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: start;
  }
  .quotes--editorial .quote--feature,
  .quotes--wall .quote--offset { grid-row: auto; margin-top: 0; }
}

/* —— Finale —— */
.section--finale { padding: 0; }
.finale {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(88vh, 860px);
}
.finale__media {
  position: relative;
  color: #fff;
  min-height: 480px;
  overflow: hidden;
}
.finale__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.finale__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,.25), rgba(18,16,14,.82));
}
.finale__cta {
  position: relative; z-index: 1;
  height: 100%;
  display: grid;
  align-content: end;
  padding: clamp(32px, 5vw, 64px);
}
.finale__panel {
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  gap: 24px;
  padding: clamp(32px, 5vw, 56px);
  align-content: space-between;
}
.finale__facts {
  display: grid;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.finale__facts a { text-decoration: none; }
.finale__facts a:hover { color: #fff; }
@media (max-width: 960px) {
  .finale { grid-template-columns: 1fr; }
  .finale__media { min-height: 420px; }
}

/* —— Story —— */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: none;
}
.timeline__item {
  padding: 28px 32px 8px 8px;
  border-top: 1px solid var(--line-light);
  position: relative;
}
.timeline__item + .timeline__item {
  padding-left: 32px;
  border-left: 1px solid var(--line-light);
}
.timeline__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}
.timeline__item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 10px;
}
.timeline__item p {
  margin: 0;
  color: rgba(247,241,232,.75);
  max-width: 28ch;
}
@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline__item,
  .timeline__item + .timeline__item {
    padding: 24px 0 0;
    border-left: 0;
  }
}

.story-daily__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.story-daily__mark {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--red);
  margin: 0;
  writing-mode: horizontal-tb;
}
@media (max-width: 800px) {
  .story-daily__grid { grid-template-columns: 1fr; }
}

.gallery--mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, 14vw);
  gap: 8px;
}
.gallery__item {
  display: block;
  overflow: hidden;
  grid-column: span 4;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--1 { grid-column: span 7; grid-row: span 2; }
.gallery__item--2 { grid-column: span 5; grid-row: span 1; }
.gallery__item--3 { grid-column: span 5; grid-row: span 1; }
.gallery__item--4 { grid-column: span 4; grid-row: span 2; }
.gallery__item--5 { grid-column: span 4; grid-row: span 1; }
.gallery__item--6 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 800px) {
  .gallery--mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item,
  .gallery__item--1,
  .gallery__item--2,
  .gallery__item--3,
  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item--1 { grid-column: span 2; grid-row: span 2; }
}

/* Equal-height strip gallery (Storia) */
.section--gallery { padding-bottom: clamp(40px, 6vw, 72px); }
.section--gallery .section-head { margin-bottom: clamp(24px, 4vw, 36px); }
.gallery--equal {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  width: min(100% - (var(--pad-x) * 2), var(--container));
  margin-inline: auto;
}
.gallery--equal .gallery__item {
  grid-column: auto;
  aspect-ratio: 1;
  height: auto;
}
.gallery--equal .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .gallery--equal { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .gallery--equal { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* —— Contatti action —— */
.section--action { padding: 0; }
.action-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.action-split__pane {
  display: grid;
  align-content: center;
  padding: clamp(44px, 6vw, 80px) clamp(32px, 5vw, 72px);
  text-decoration: none;
  color: #fff;
  transition: background .25s ease;
}
.action-split__pane--call { background: var(--red); }
.action-split__pane--call:hover { background: var(--red-deep); }
.action-split__pane--wa { background: var(--charcoal); }
.action-split__pane--wa:hover { background: var(--charcoal-2); }
.action-split__pane h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.action-split__num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wa-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--wa);
  display: inline-block;
}
.contact-core {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}
@media (max-width: 800px) {
  .action-split { grid-template-columns: 1fr; min-height: 0; }
  .action-split__pane { min-height: 200px; }
  .contact-core { grid-template-columns: 1fr; }
}

/* —— Info / map —— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: var(--line);
  padding: 4px 0;
}
.section--dark .info-grid { border-color: var(--line-light); }
.info {
  padding: 24px 24px 24px 8px;
  border-right: 1px solid var(--line);
}
.section--dark .info { border-right-color: var(--line-light); }
.info:first-child { padding-left: 4px; }
.info:last-child { border-right: 0; padding-right: 4px; }
.info h3 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.section--dark .info h3 { color: rgba(247,241,232,.65); }
.info p, .info a {
  margin: 0;
  text-decoration: none;
  font-size: 1rem;
}
.info a:hover { color: var(--red); }
.section--dark .info a:hover { color: #fff; }
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info { border-bottom: 1px solid var(--line); }
  .section--dark .info { border-bottom-color: var(--line-light); }
}
@media (max-width: 560px) {
  .info-grid { grid-template-columns: 1fr; }
  .info { border-right: 0; }
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 280px;
  height: 100%;
  filter: grayscale(0.2) contrast(1.05);
}

/* —— Menu —— */
.menu-nav--sticky {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(247, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0;
}
.menu-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav--sticky a {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 16px 14px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.menu-nav--sticky a + a {
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.menu-nav--sticky a:hover,
.menu-nav--sticky a.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.menu-block { margin-bottom: clamp(36px, 5vw, 56px); }
.menu-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--line);
}
.menu-sheet--dark .menu-block h2 { border-color: var(--line-light); color: #fff; }

.menu-acc { border-bottom: 1px solid var(--line); }
.menu-sheet--dark .menu-acc { border-color: var(--line-light); }
.menu-acc summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  min-height: 56px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
}
.menu-sheet--dark .menu-acc summary { color: #fff; }
.menu-acc summary::-webkit-details-marker { display: none; }
.menu-acc summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--red);
  line-height: 1;
}
.menu-acc[open] summary::after { content: "−"; }
.menu-acc .menu-panel { padding: 0 4px 18px; }

.menu-list { display: grid; gap: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(26,20,16,.1);
}
.menu-sheet--dark .menu-item { border-bottom-color: var(--line-light); }
.menu-item:last-child { border-bottom: 0; }
.menu-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.menu-sheet--dark .menu-name { color: #fff; }
.menu-ingredients {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.menu-sheet--dark .menu-ingredients { color: rgba(247,241,232,.68); }
.menu-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  padding-top: 2px;
}
.menu-sheet--dark .menu-price { color: #fff; }

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.badge--top { background: var(--ink); color: #fff; }
.badge--new { background: var(--red); color: #fff; }
.menu-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 12px 0;
}
.menu-sheet--dark .menu-note { color: rgba(247,241,232,.7); }

.burger-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: sticky;
  top: calc(var(--header-h) + 64px);
}
.media-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.media-stack img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 11;
}
@media (max-width: 960px) {
  .burger-layout { grid-template-columns: 1fr; }
  .media-stack { position: static; margin-bottom: 20px; }
}

/* —— Footer —— */
.footer {
  background: var(--charcoal);
  color: rgba(247,241,232,.78);
  padding: 48px var(--pad-x) 28px;
  border-top: 3px solid var(--red);
}
.footer__grid {
  width: min(100%, var(--container));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}
.footer a {
  color: rgba(247,241,232,.88);
  text-decoration: none;
}
.footer a:hover { color: #fff; }
.footer h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer__sign a { color: rgba(247,241,232,.7); }
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* WhatsApp composer (float + domande precompilate) */
.mp-wa { position: relative; z-index: 95; }
.mp-wa__fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 96;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.mp-wa__fab:hover { transform: scale(1.05); background: #188740; }
.mp-wa__fab:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.mp-wa__fab svg { width: 28px; height: 28px; fill: currentColor; }
.mp-wa__overlay {
  position: fixed; inset: 0;
  background: rgba(18,16,14,.45);
  z-index: 97;
}
.mp-wa__panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 98;
  width: min(100% - 32px, 380px);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  padding: 20px;
  display: grid;
  gap: 14px;
}
.mp-wa__panel[hidden],
.mp-wa__overlay[hidden] { display: none !important; }
.mp-wa__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.mp-wa__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.mp-wa__head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}
.mp-wa__close {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.mp-wa__close:hover { border-color: var(--ink); }
.mp-wa__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.mp-wa__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mp-wa__chip {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.mp-wa__chip:hover { border-color: var(--ink); }
.mp-wa__chip.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.mp-wa__preview {
  padding: 12px;
  background: var(--cream);
  border-left: 2px solid var(--red);
}
.mp-wa__preview-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.mp-wa__preview-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.mp-wa__send {
  width: 100%;
  justify-content: center;
}
button.btn { appearance: none; }

@media (max-width: 390px) {
  .mp-wa__fab { right: 12px; bottom: 12px; width: 52px; height: 52px; }
  .mp-wa__panel { right: 12px; bottom: 76px; }
  .cookie { bottom: 76px; }
}

/* Cookie */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 520px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--cream);
  padding: 20px;
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display: none;
}
.cookie.is-open { display: block; }
.cookie p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: rgba(247,241,232,.85);
}
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Reveal / marquee */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.marquee {
  overflow: hidden;
  background: var(--red);
  color: #fff;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 36s linear infinite;
}
.marquee i { opacity: .55; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .food-shot__media img,
  .billboard__item img,
  .gallery__item img,
  .btn > span { transition: none; }
}

/* Utility */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.text-narrow { max-width: 62ch; }
.list-check { display: grid; gap: 12px; }
.list-check li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1.05rem;
}
.list-check li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 11px;
  background: var(--red);
}
.mp-404 {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  font-family: var(--font-display);
}
.mp-404 a { color: var(--red); }

/* Cards only where still needed (legacy menu leftovers) */
.card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 0;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.card__price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  margin-top: 8px;
}

@media (max-width: 390px) {
  body { font-size: 17px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .promo-band__giant { font-size: 4.2rem; }
  .cookie { bottom: 76px; }
}
