/* =========================================================
   Pizzeria Milano — "MANIFESTO MILANO"
   A vintage Italian advertising poster, brought to the web.
   Flat saturated color-block panels · halftone · rotated photo
   "stamps" · price seals · Anton poster type + Yellowtail script.
   ========================================================= */

:root {
  --red:       #d4351f;
  --red-deep:  #ad2413;
  --ray:       #df471d;
  --cream:     #f4e8d0;
  --cream-2:   #efe0c0;
  --ink:       #221a12;
  --ink-soft:  #4c4031;
  --yellow:    #f4b50a;
  --yellow-2:  #ffd23c;
  --green:     #2f6b43;
  --green-deep:#234f33;

  --anton: "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Yellowtail", cursive;

  --shell: 1200px;
  --head-h: 76px;

  --z-nav: 80; --z-sticky: 50; --z-top: 90;
  --ease: cubic-bezier(.2,.8,.2,1);
  /* halftone dot texture */
  --halftone: radial-gradient(currentColor 1.1px, transparent 1.6px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 14px); }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px; line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; }
em { font-style: normal; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 26px; }

/* ---------- type primitives ---------- */
.poster-title, .poster-h2 { font-family: var(--anton); font-weight: 400; text-transform: uppercase; line-height: .92; letter-spacing: .01em; }
.poster-h2 { font-size: clamp(2.2rem, 5.4vw, 4.2rem); color: var(--ink); }
.poster-h2--cream { color: var(--cream); }
.overline { font-family: var(--script); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--red); line-height: 1; margin-bottom: 4px; }
.overline--cream { color: var(--yellow-2); }

/* ---------- buttons (printed stickers w/ hard shadow) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  font-size: .9rem; padding: .85em 1.45em; border: 2.5px solid var(--ink); border-radius: 3px;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .14s var(--ease), box-shadow .14s var(--ease), background .2s;
}
.btn--lg { font-size: 1rem; padding: 1em 1.7em; }
.btn:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--ink); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--out-cream { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: 4px 4px 0 rgba(0,0,0,.25); }
.btn--out-cream:hover { background: var(--cream); color: var(--ink); }
.btn--out-ink { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 rgba(33,26,18,.25); }
.btn--out-ink:hover { background: var(--ink); color: var(--cream); }

.link-arrow { font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; border-bottom: 3px solid currentColor; padding-bottom: 2px; }

/* ---------- masthead ---------- */
.mast {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: transparent; color: var(--cream);
  transition: background .3s var(--ease), color .3s, box-shadow .3s;
}
.mast.scrolled { background: var(--cream); color: var(--ink); box-shadow: 0 3px 0 var(--ink); }
.mast__in { display: flex; align-items: center; gap: 24px; height: var(--head-h); }
.brand { display: flex; flex-direction: column; line-height: .8; }
.brand__script { font-family: var(--script); font-size: 2rem; color: inherit; }
.brand__sub { font-family: var(--body); font-weight: 800; text-transform: uppercase; letter-spacing: .22em; font-size: .6rem; margin-top: 4px; }
.nav { display: flex; gap: 4px; margin-left: 10px; }
.nav__link { position: relative; padding: 8px 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.mast__act { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lang { display: inline-flex; gap: 6px; font-weight: 800; font-size: .8rem; border: 2px solid currentColor; border-radius: 3px; padding: 5px 9px; }
.lang__opt { opacity: .55; }
.lang__opt.is-active { opacity: 1; color: var(--red); }
.mast.scrolled .lang__opt.is-active { color: var(--red); }
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px 4px; }
.burger span { width: 26px; height: 3px; background: currentColor; transition: transform .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- HERO (red poster) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--red); color: var(--cream);
  margin-top: calc(var(--head-h) * -1);
  padding: calc(var(--head-h) + 40px) 0 0;
}
.hero__rays { position: absolute; inset: -20% -10% auto -10%; width: 120%; height: 150%; opacity: .55; z-index: 0; }
.hero::before { /* halftone */
  content: ""; position: absolute; inset: 0; z-index: 0; color: rgba(0,0,0,.16);
  background-image: var(--halftone); background-size: 9px 9px; pointer-events: none;
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-bottom: 26px; }
.ribbon {
  display: inline-block; background: var(--ink); color: var(--cream);
  font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem;
  padding: 7px 14px; transform: rotate(-1.4deg); box-shadow: 3px 3px 0 rgba(0,0,0,.25);
}
.poster-title { font-size: clamp(3rem, 9.5vw, 7rem); margin-top: 18px; color: var(--cream); text-shadow: 4px 4px 0 var(--red-deep); }
.poster-title span { display: block; }
.poster-title .hl { color: var(--yellow-2); }
.hero__lead { margin-top: 20px; max-width: 42ch; font-size: clamp(1.02rem, 1.5vw, 1.18rem); font-weight: 500; color: #fbeede; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__stamp { position: relative; justify-self: center; width: min(100%, 420px); aspect-ratio: 1; }
.hero__pizza {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 12px solid var(--cream); outline: 3px solid var(--ink); outline-offset: -1px;
  box-shadow: 10px 12px 0 rgba(0,0,0,.28); transform: rotate(-4deg);
  animation: floaty 7s var(--ease) infinite alternate;
}
@keyframes floaty { to { transform: rotate(-2deg) translateY(-10px); } }
.hero__seal { position: absolute; right: -12px; bottom: 4px; width: 116px; height: 116px; filter: drop-shadow(3px 4px 0 rgba(0,0,0,.3)); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__seal text { font-family: var(--body); font-weight: 800; font-size: 7.4px; letter-spacing: .5px; }
.hero__seal .seal__big { font-family: var(--anton); font-size: 30px; }
.hero__seal .seal__small { font-family: var(--body); font-weight: 800; font-size: 8px; letter-spacing: 1px; }

.hero__facts {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px 30px;
  border-top: 3px solid var(--cream); padding: 16px 0 22px; font-size: .9rem; font-weight: 600;
}
.hero__facts li { display: flex; align-items: center; gap: 7px; }
.hero__facts b { font-weight: 800; }
.hero__facts a:hover { color: var(--yellow-2); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cream); display: inline-block; }
#openStatus.is-open .dot { background: #6fe08a; box-shadow: 0 0 0 0 rgba(111,224,138,.6); animation: pulse 2.2s infinite; }
#openStatus.is-closed .dot { background: var(--yellow-2); }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(111,224,138,0); } 100% { box-shadow: 0 0 0 0 rgba(111,224,138,0); } }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: var(--cream); overflow: hidden; border-block: 4px solid var(--yellow); }
.ticker__row { display: inline-flex; align-items: center; gap: 22px; padding: 12px 0; white-space: nowrap; animation: marquee 32s linear infinite; }
.ticker__row span { font-family: var(--anton); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .04em; }
.tk-star { color: var(--yellow) !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- ABOUT (cream paper) ---------- */
.about { position: relative; background: var(--cream); padding: clamp(64px, 9vw, 120px) 0; }
.about::before { content: ""; position: absolute; inset: 0; color: rgba(33,26,18,.05); background-image: var(--halftone); background-size: 11px 11px; pointer-events: none; }
.about__in { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__stamps { position: relative; min-height: 380px; }
.stamp { border-radius: 50%; object-fit: cover; border: 10px solid #fff; outline: 2.5px solid var(--ink); box-shadow: 7px 8px 0 rgba(33,26,18,.18); }
.stamp--a { width: 74%; aspect-ratio: 1; transform: rotate(-5deg); }
.stamp--b { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; transform: rotate(7deg); border-color: var(--yellow); }
.about__burst { position: absolute; left: -6px; top: 6px; color: var(--red); font-size: 3rem; transform: rotate(-12deg); }
.about__txt p { margin-top: 16px; color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }
.checklist { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 700; }
.checklist li::before { content: "✶"; position: absolute; left: 0; top: -2px; color: var(--red); font-size: 1.2rem; }

/* ---------- SPECIALTIES (green panel, photo stamps) ---------- */
.spec { position: relative; background: var(--green); color: var(--cream); padding: clamp(60px, 8vw, 108px) 0; }
.spec::before { content: ""; position: absolute; inset: 0; color: rgba(0,0,0,.14); background-image: var(--halftone); background-size: 10px 10px; pointer-events: none; }
.spec__head { position: relative; text-align: center; margin-bottom: 50px; }
.spec__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 30px; }
.dish { text-align: center; }
.dish__stamp { position: relative; width: min(220px, 70%); margin: 0 auto 16px; aspect-ratio: 1; }
.dish__stamp img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 9px solid var(--cream); outline: 2.5px solid var(--ink); box-shadow: 6px 7px 0 rgba(0,0,0,.28); transform: rotate(-3deg); transition: transform .3s var(--ease); }
.dish:nth-child(even) .dish__stamp img { transform: rotate(3deg); }
.dish:hover .dish__stamp img { transform: rotate(0) scale(1.03); }
.price-seal {
  position: absolute; right: -6px; top: -6px; min-width: 56px; height: 56px; padding: 0 6px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--yellow); color: var(--ink); border: 2.5px solid var(--ink);
  font-family: var(--anton); font-size: 1rem; transform: rotate(8deg); box-shadow: 3px 3px 0 rgba(0,0,0,.3);
}
.price-seal::after { content: " lei"; font-family: var(--body); font-weight: 800; font-size: .5rem; }
.dish h3 { font-family: var(--anton); text-transform: uppercase; font-size: 1.5rem; letter-spacing: .02em; }
.dish p { color: #e7f0e6; margin-top: 6px; font-size: .92rem; max-width: 30ch; margin-inline: auto; }

/* ---------- MENU / LISTINO (cream) ---------- */
.menu { position: relative; background: var(--cream); padding: clamp(64px, 9vw, 116px) 0; }
.menu__head { margin-bottom: 24px; }
.menu__sub { color: var(--ink-soft); margin-top: 6px; font-weight: 600; }
.menu__bar { position: sticky; top: var(--head-h); z-index: var(--z-sticky); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 12px 0; margin-bottom: 14px; background: linear-gradient(var(--cream) 72%, transparent); }
.menu__tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.menu__tab { font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; padding: 8px 13px; border: 2.5px solid var(--ink); border-radius: 3px; background: var(--cream); transition: background .15s, color .15s, box-shadow .12s var(--ease), transform .12s var(--ease); }
.menu__tab:hover { box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px,-1px); }
.menu__tab.is-active { background: var(--red); color: var(--cream); }
.menu__search { display: inline-flex; align-items: center; gap: 8px; padding: 0 13px; border: 2.5px solid var(--ink); border-radius: 3px; background: #fff; min-width: 210px; }
.menu__search input { border: none; outline: none; background: none; padding: 10px 0; width: 100%; color: var(--ink); font-weight: 500; }
.menu__search input::placeholder { color: var(--ink-soft); }

.menu__panel { display: none; }
.menu__panel.is-active { display: block; }
.js .menu__panel.is-active { animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }
.menu__cathead { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 12px 0 6px; padding-bottom: 8px; border-bottom: 4px solid var(--ink); }
.menu__cathead h3 { font-family: var(--anton); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: .02em; }
.menu__note { font-family: var(--script); color: var(--red); font-size: 1.25rem; }
.menu__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(36px, 6vw, 72px); }
.menu__list--one { grid-template-columns: 1fr; }
.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.menu__subhead { font-family: var(--anton); text-transform: uppercase; font-size: 1.3rem; letter-spacing: .02em; margin-bottom: 4px; padding-bottom: 8px; border-bottom: 4px solid var(--ink); }
.mitem { display: flex; align-items: baseline; gap: 10px; padding: 13px 0; border-bottom: 1.5px dotted rgba(33,26,18,.32); }
.mitem__main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mitem__name { font-weight: 800; font-size: 1.04rem; }
.mitem__desc { font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }
.mitem__price { font-family: var(--anton); font-size: 1.15rem; color: var(--red); white-space: nowrap; font-variant-numeric: tabular-nums; }
.mitem__price::after { content: " lei"; font-family: var(--body); font-size: .62rem; font-weight: 800; color: var(--ink-soft); }
/* two-size pizza price (Medie / XXL) */
.mitem:has(.mitem__price--sizes) { align-items: flex-start; }
.mitem__price--sizes { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.mitem__price--sizes::after { content: none; }
.mitem__price--sizes > span { font-family: var(--anton); color: var(--red); font-size: 1rem; line-height: 1.06; }
.mitem__price--sizes > span::after { content: " lei"; font-family: var(--body); font-size: .54rem; font-weight: 800; color: var(--ink-soft); }
.mitem__price--sizes i { font-family: var(--body); font-style: normal; font-weight: 800; font-size: .56rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin-right: 6px; }
/* optional add-on note under a category head */
.menu__addon { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 6px; font-weight: 800; font-size: .82rem; color: var(--red); text-transform: uppercase; letter-spacing: .02em; }
.menu__addon::before { content: "✶"; font-size: 1rem; }
.mitem--mini { padding: 10px 0; }
.menu__empty { text-align: center; font-family: var(--anton); text-transform: uppercase; color: var(--red); padding: 26px; font-size: 1.4rem; }
.menu__foot { margin-top: 42px; padding-top: 26px; border-top: 4px solid var(--ink); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.menu__foot p { font-weight: 600; color: var(--ink-soft); }

/* ---------- ORDER (yellow) ---------- */
.order { position: relative; background: var(--yellow); color: var(--ink); padding: clamp(58px, 8vw, 100px) 0; overflow: hidden; }
.order::before { content: ""; position: absolute; inset: 0; color: rgba(33,26,18,.10); background-image: var(--halftone); background-size: 12px 12px; }
.order__in { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.order__lead p { margin-top: 14px; max-width: 44ch; font-weight: 600; }
.order__ways li { border-top: 3px solid var(--ink); }
.order__ways li:last-child { border-bottom: 3px solid var(--ink); }
.order__ways a { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 16px 4px; transition: padding .25s var(--ease); }
.order__ways a:hover { padding-left: 14px; }
.ow-k { font-family: var(--anton); text-transform: uppercase; font-size: 1.6rem; }
.ow-v { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- GALLERY (ink, taped stamps) ---------- */
.gallery { position: relative; background: var(--ink); color: var(--cream); padding: clamp(60px, 8vw, 104px) 0; }
.gallery__head { text-align: center; margin-bottom: 46px; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.gtile { width: 100%; aspect-ratio: 1; object-fit: cover; border: 8px solid var(--cream); border-radius: 50%; outline: 2px solid #000; box-shadow: 5px 6px 0 rgba(0,0,0,.4); transition: transform .3s var(--ease); }
.gtile--r1 { transform: rotate(-4deg); }
.gtile--r2 { transform: rotate(3deg); }
.gtile--r3 { transform: rotate(-1.5deg); }
.gtile:hover { transform: rotate(0) scale(1.05); }

/* ---------- REVIEWS (red) ---------- */
.reviews { position: relative; background: var(--red); color: var(--cream); padding: clamp(64px, 9vw, 116px) 0; overflow: hidden; }
.reviews::before { content: ""; position: absolute; inset: 0; color: rgba(0,0,0,.14); background-image: var(--halftone); background-size: 10px 10px; }
.reviews__in { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(34px, 6vw, 72px); align-items: start; }
.reviews__stars { color: var(--yellow-2); letter-spacing: 3px; font-size: 1.3rem; }
.reviews__big blockquote { font-family: var(--anton); text-transform: uppercase; font-size: clamp(1.7rem, 3.8vw, 3rem); line-height: 1.04; margin: 16px 0 14px; color: var(--cream); }
.reviews__big cite { font-style: normal; font-weight: 700; color: var(--yellow-2); }
.reviews__side { display: flex; flex-direction: column; gap: 22px; }
.rscore { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-weight: 600; }
.rscore b { font-family: var(--anton); font-size: 2.4rem; line-height: 1; }
.reviews__side blockquote { border-top: 2px solid rgba(255,255,255,.4); padding-top: 16px; font-weight: 500; font-size: 1rem; color: #fbeede; }
.reviews__side cite, .reviews__side blockquote cite { display:block; }
.reviews__side .link-arrow { color: var(--yellow-2); align-self: flex-start; }

/* ---------- CONTACT (cream) ---------- */
.contact { position: relative; background: var(--cream); padding: clamp(60px, 8vw, 108px) 0; }
.contact__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); align-items: stretch; }
.contact__rows { margin: 24px 0; }
.contact__rows > div { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 16px 0; border-top: 2px solid var(--ink); }
.contact__rows > div:last-child { border-bottom: 2px solid var(--ink); }
.contact__rows dt { font-family: var(--anton); text-transform: uppercase; font-size: .92rem; letter-spacing: .03em; padding-top: 2px; }
.contact__rows dd { font-weight: 600; font-variant-numeric: tabular-nums; }
.contact__rows dd a:not(.link-arrow):hover { color: var(--red); }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.contact__map { position: relative; min-height: 430px; border: 4px solid var(--ink); border-radius: 4px; overflow: hidden; box-shadow: 8px 9px 0 rgba(33,26,18,.18); background: var(--cream-2); }
.contact__map iframe { position: relative; z-index: 2; width: 100%; height: 100%; min-height: 430px; border: 0; }
.contact__map-fallback { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 24px; }
.contact__map-fallback strong { font-family: var(--anton); text-transform: uppercase; font-size: 1.5rem; color: var(--red); }
.contact__map-fallback span { color: var(--ink-soft); font-weight: 600; max-width: 240px; }

/* ---------- FOOTER (ink) ---------- */
.foot { background: var(--ink); color: #cdbfa8; padding-top: 56px; }
.foot__in { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; }
.foot__script { font-family: var(--script); font-size: 2.8rem; color: var(--cream); line-height: 1; }
.foot__brand p { margin: 14px 0; max-width: 34ch; font-size: .92rem; }
.foot__social { display: flex; gap: 10px; }
.foot__social a { width: 42px; height: 42px; border: 2px solid #5a4d3a; border-radius: 3px; display: grid; place-items: center; color: var(--cream); transition: background .2s, color .2s, transform .12s var(--ease); }
.foot__social a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); transform: translate(-1px,-1px); }
.foot__col h4 { font-family: var(--anton); text-transform: uppercase; color: var(--cream); font-size: 1.05rem; letter-spacing: .03em; margin-bottom: 13px; }
.foot__col a, .foot__col p { display: block; font-size: .92rem; margin-bottom: 8px; color: #cdbfa8; }
.foot__col a:hover { color: var(--yellow); }
.foot__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid #4a3f2e; font-size: .78rem; color: #9b8d77; }

/* ---------- back to top ---------- */
.totop { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-top); width: 48px; height: 48px; border-radius: 3px; background: var(--red); color: var(--cream); border: 2.5px solid var(--ink); display: grid; place-items: center; box-shadow: 3px 3px 0 var(--ink); opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .3s, transform .14s var(--ease), background .2s; }
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--yellow); color: var(--ink); transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

/* ---------- reveal (visible by default) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__stamp { grid-row: 1; width: min(74%, 340px); }
  .spec__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__in { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; gap: 4px; margin: 0; padding: 100px 26px 40px;
    background: var(--ink); color: var(--cream); box-shadow: -16px 0 0 rgba(0,0,0,.2);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: var(--z-nav);
  }
  .nav.open { transform: none; }
  .nav__link { font-size: 1.1rem; padding: 12px 4px; }
  .nav__link::after { display: none; }
  .burger { display: flex; }
  .mast__cta { display: none; }
  .about__in, .order__in, .contact__in { grid-template-columns: 1fr; }
  .about__stamps { max-width: 460px; }
  .menu__cols { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .menu__list { grid-template-columns: 1fr; }
  .spec__grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .dish h3 { font-size: 1.25rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .menu__bar { position: static; }
  .hero__pizza { border-width: 9px; }
}
@media (max-width: 460px) {
  .shell { padding-inline: 18px; }
  .poster-title { text-shadow: 3px 3px 0 var(--red-deep); }
  .checklist { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; }
  .hero__facts { gap: 8px 18px; }
}

/* ---------- a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .ticker__row { animation: none; }
  .hero__pizza, .hero__seal { animation: none; }
}
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.mast.scrolled :focus-visible, .order :focus-visible, .about :focus-visible, .menu :focus-visible, .contact :focus-visible { outline-color: var(--red); }
::selection { background: var(--yellow); color: var(--ink); }
