/* ============================================================
   LOKO Smash & Fries — design system "LA PRESSA"
   piastra (carbone caldo) ✕ cartoccio (carta paglia)
   Archivo Variable (wdth 62–125) + Space Mono
   ============================================================ */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/spacemono-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/spacemono-700-latin.woff2') format('woff2');
}

:root {
  --carbone: #0D0A08;
  --fumo: #1A1410;
  --cenere: #A89C90;
  --arancio: #FF6A00;
  --cheddar: #FFC53D;
  --carta: #F3EBDC;
  --carta-scura: #E5D9C3;
  --inchiostro: #171310;
  --glovo: #FFC244;

  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body: 'Archivo', Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --wide: 'wdth' 125;
  --smashed: 'wdth' 62;

  --container: 72rem;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--carbone);
  color: var(--carta);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip, non hidden: taglia lo sbordo degli elementi ruotati (.tape) senza
     rendere la pagina un contenitore di scroll, cosa che su mobile fa
     perdere l'aggancio alla navbar fixed. */
  overflow-x: clip;
}

/* film grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--arancio);
  outline-offset: 3px;
}

::selection { background: var(--arancio); color: var(--carbone); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 3000;
  background: var(--arancio);
  color: var(--carbone);
  padding: .6rem 1rem;
  font-family: var(--font-mono);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------------- type ---------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--arancio);
  margin-bottom: 1.1rem;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}
.h2 em {
  font-style: normal;
  color: var(--arancio);
}
.paper .h2 { color: var(--inchiostro); }
.paper .h2 em { color: var(--arancio); }

.section-sub {
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--cenere);
  margin-bottom: 3rem;
}
.paper .section-sub { color: #5d5344; }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  padding: .95rem 1.8rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(.98); }

.btn-solid {
  background: var(--arancio);
  color: var(--carbone);
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}
.btn-solid:hover { background: var(--cheddar); box-shadow: 6px 6px 0 rgba(0,0,0,.35); }

.btn-ghost {
  border-color: currentColor;
  color: var(--carta);
  background: transparent;
}
.paper .btn-ghost { color: var(--inchiostro); }
.btn-ghost:hover { border-color: var(--arancio); color: var(--arancio); }

.btn-ink {
  background: var(--inchiostro);
  color: var(--carta);
  box-shadow: 4px 4px 0 rgba(0,0,0,.25);
}
.btn-ink:hover { background: #000; }

.btn-glovo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--glovo);
  color: var(--inchiostro);
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}
.btn-glovo:hover { background: #FFD670; box-shadow: 6px 6px 0 rgba(0,0,0,.35); }
.btn-glovo .ico-scooter { flex: none; }

.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.btn-big { font-size: 1rem; padding: 1.15rem 2.2rem; }
.btn-small { font-size: .78rem; padding: .6rem 1.1rem; }

/* ---------------- navbar ---------------- */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background-color .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
/* Copre la fessura che le toolbar mobili scoprono sopra la navbar durante
   lo scroll. Tinta piatta ereditata dal padre: niente blur, che qui non ha
   nulla da sfocare e su mobile fa cadere il layer mentre si scrolla. */
.navbar::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 100%;
  height: 100px;
  background-color: inherit;
  pointer-events: none;
}
.navbar.is-scrolled {
  background: rgba(13, 10, 8, .92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(243, 235, 220, .08);
  padding-block: .7rem;
}

.navbar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: 1.9rem;
  line-height: 1;
  text-decoration: none;
  color: var(--carta);
  letter-spacing: .01em;
}
.logo-dot { color: var(--arancio); }

.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 235, 220, .72);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--arancio); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  color: rgba(243, 235, 220, .72);
  border: 1px solid rgba(243, 235, 220, .3);
  border-radius: var(--radius);
  padding: .35rem .6rem;
  transition: color .18s ease, border-color .18s ease;
}
.lang-switch:hover { color: var(--arancio); border-color: var(--arancio); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .4rem;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--carta);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(13, 10, 8, .97);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; display: grid; gap: 1.4rem; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(2rem, 9vw, 3rem);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--carta);
}
.mobile-menu ul a:hover { color: var(--arancio); }
.mobile-menu-foot { display: grid; gap: 1.2rem; justify-items: center; }

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 42%, rgba(255, 106, 0, .14), transparent 65%),
    linear-gradient(to bottom, rgba(13,10,8,.55), rgba(13,10,8,.25) 40%, var(--carbone) 96%);
}

.hero-content {
  text-align: center;
  padding: 7rem 1.25rem 4rem;
  max-width: 62rem;
}

.hero-eyebrow { color: var(--cheddar); }

.hero-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(5.2rem, 24vw, 17rem);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--carta);
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
  will-change: font-variation-settings, transform;
}

.hero-splat {
  position: relative;
  height: 0;
}
.hero-splat i {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--arancio);
  opacity: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cheddar);
  margin-top: 1.6rem;
}

.hero-sub {
  max-width: 36rem;
  margin: .9rem auto 0;
  color: var(--cenere);
  font-size: 1.02rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2.2rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--cenere);
  text-decoration: none;
}
.hero-rating:hover { color: var(--carta); }
.stars { color: var(--cheddar); letter-spacing: .18em; }
.stars.big { font-size: 1.5rem; }

.sticker {
  position: absolute;
  z-index: 5;
  width: 8.5rem; height: 8.5rem;
  border-radius: 50%;
  background: var(--arancio);
  color: var(--carbone);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .05em;
  transform: rotate(9deg);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.hero-sticker { right: clamp(1rem, 7vw, 7rem); bottom: 16vh; }

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cenere);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: .7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------------- marquee tape ---------------- */

.tape {
  background: var(--arancio);
  color: var(--carbone);
  overflow: hidden;
  padding-block: .8rem;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 10;
  border-block: 3px solid var(--carbone);
}
.tape-track {
  display: flex;
  width: max-content;
  animation: tape 28s linear infinite;
}
.tape-track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  white-space: nowrap;
}
@keyframes tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- sections ---------------- */

.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }

.section.dark { background: var(--carbone); color: var(--carta); }

.section.paper {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.055' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.42 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E"),
    var(--carta);
  color: var(--inchiostro);
}

/* ---------------- menu ---------------- */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  margin-bottom: 4.5rem;
}

.menu-card {
  background: #FCF7EC;
  border: 1px solid rgba(23, 19, 16, .12);
  border-radius: var(--radius);
  padding: .9rem .9rem 1.4rem;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 24px rgba(23, 19, 16, .12);
  position: relative;
}
.menu-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 40px rgba(23, 19, 16, .18);
}

.menu-tag {
  position: absolute;
  top: -0.85rem;
  left: 1.1rem;
  z-index: 2;
  background: var(--cheddar);
  color: var(--inchiostro);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .35rem .7rem;
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(23,19,16,.25);
}

.menu-card-img {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 1.2rem .4rem 0; }
.menu-card-body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: 1.55rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .5rem;
}
.menu-card-body p {
  font-size: .92rem;
  color: #5d5344;
  min-height: 3.4em;
}

.menu-price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
}
.menu-price .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(23, 19, 16, .35);
}
.menu-price .price {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--arancio);
}

/* scontrino */
.receipt {
  width: min(21rem, 100%);
  margin-inline: auto;
  background: #FFFDF6;
  color: var(--inchiostro);
  font-family: var(--font-mono);
  font-size: .82rem;
  line-height: 1.7;
  padding: 1.6rem 1.4rem 2rem;
  transform: rotate(-1.5deg);
  box-shadow: 0 14px 34px rgba(23, 19, 16, .2);
  /* zig-zag torn edges */
  clip-path: polygon(0 8px, 4% 0, 8% 8px, 12% 0, 16% 8px, 20% 0, 24% 8px, 28% 0, 32% 8px, 36% 0, 40% 8px, 44% 0, 48% 8px, 52% 0, 56% 8px, 60% 0, 64% 8px, 68% 0, 72% 8px, 76% 0, 80% 8px, 84% 0, 88% 8px, 92% 0, 96% 8px, 100% 0, 100% calc(100% - 8px), 96% 100%, 92% calc(100% - 8px), 88% 100%, 84% calc(100% - 8px), 80% 100%, 76% calc(100% - 8px), 72% 100%, 68% calc(100% - 8px), 64% 100%, 60% calc(100% - 8px), 56% 100%, 52% calc(100% - 8px), 48% 100%, 44% calc(100% - 8px), 40% 100%, 36% calc(100% - 8px), 32% 100%, 28% calc(100% - 8px), 24% 100%, 20% calc(100% - 8px), 16% 100%, 12% calc(100% - 8px), 8% 100%, 4% calc(100% - 8px), 0 100%);
}
.receipt-head { text-align: center; font-weight: 700; letter-spacing: .04em; }
.receipt-rule { border-bottom: 1px dashed rgba(23,19,16,.4); margin-block: .8rem; }
.receipt-items { width: 100%; border-collapse: collapse; }
.receipt-items td:last-child { text-align: right; font-weight: 700; }
.receipt-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  letter-spacing: .04em;
}
.receipt-total strong { color: var(--arancio); font-size: 1.1rem; }
.receipt-foot { text-align: center; margin-top: 1rem; font-size: .72rem; color: #6b6152; }

/* ---------------- metodo ---------------- */

.method { overflow: hidden; }

.method-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.method-word span {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(8rem, 30vw, 26rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 106, 0, .16);
  display: inline-block;
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.method-img {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 26rem;
  border: 1px solid rgba(243, 235, 220, .1);
}
.method-img img { filter: saturate(1.05); }

.steps {
  list-style: none;
  display: grid;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.4rem;
  align-items: baseline;
  padding-block: 1.5rem;
  border-bottom: 1px dashed rgba(243, 235, 220, .16);
  opacity: .38;
  transition: opacity .4s ease, transform .4s ease;
}
.step:first-child { border-top: 1px dashed rgba(243, 235, 220, .16); }
.step.is-active { opacity: 1; transform: translateX(6px); }

.step-n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cheddar);
  min-width: 2.2rem;
}
.step.is-active .step-n { color: var(--arancio); }

.step h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.step p { color: var(--cenere); font-size: .95rem; margin-top: .3rem; }

/* ---------------- recensioni ---------------- */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.reviews-panel { display: grid; justify-items: start; gap: .4rem; }

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cenere);
  border: 1px solid rgba(243, 235, 220, .18);
  border-radius: 99px;
  padding: .4rem .9rem .4rem .5rem;
  margin-bottom: .8rem;
}
.g-circle {
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: var(--carta);
  color: var(--carbone);
  font-family: var(--font-display);
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.reviews-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  color: var(--carta);
}
.reviews-src {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--cenere);
  margin-bottom: 1.6rem;
}

.carousel { position: relative; }
.quote-mark {
  position: absolute;
  top: -4.5rem;
  right: -.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11rem;
  line-height: 1;
  color: rgba(255, 106, 0, .16);
  pointer-events: none;
  user-select: none;
}
.carousel-viewport { position: relative; min-height: 13rem; }

.review-card {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--fumo);
  border: 1px solid rgba(243, 235, 220, .09);
  border-left: 3px solid var(--arancio);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
.review-card.is-active { display: flex; }

.review-head {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.avatar {
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--carbone);
  flex: none;
}
.review-who { display: grid; gap: .15rem; }
.review-who strong {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.review-who .stars { font-size: .8rem; }

.review-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.3;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.carousel-btn {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  border: 2px solid rgba(243, 235, 220, .3);
  background: transparent;
  color: var(--carta);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.carousel-btn:hover { border-color: var(--arancio); color: var(--arancio); transform: scale(1.08); }
.carousel-count {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--cenere);
}

/* ---------------- instagram ---------------- */

.instagram .container { margin-bottom: 2rem; }

.ig-handle {
  font-family: var(--font-mono);
  font-size: .9rem;
  letter-spacing: .12em;
  margin-top: -.6rem;
}
.ig-handle a { color: var(--cheddar); text-decoration: none; }
.ig-handle a:hover { color: var(--arancio); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .6rem;
  padding-inline: .6rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ig-tile:hover img { transform: scale(1.07); }
.ig-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--carbone);
  background: rgba(255, 106, 0, .82);
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-tile:hover .ig-hover { opacity: 1; }
.ig-play {
  position: absolute;
  top: .5rem; right: .5rem;
  z-index: 2;
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: rgba(13, 10, 8, .75);
  color: var(--carta);
  font-size: .7rem;
  display: grid;
  place-items: center;
}
.ig-cta { text-align: center; margin-top: 2.2rem; }

/* ---------------- delivery ---------------- */

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-block: 1.5rem 3rem;
}

.delivery-card {
  background: #FCF7EC;
  border: 2px dashed rgba(23, 19, 16, .25);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s ease, border-color .25s ease;
}
.delivery-card:hover { transform: rotate(0deg) translateY(-4px); border-color: var(--arancio); }

.delivery-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--arancio);
  border: 2px solid var(--arancio);
  border-radius: 3px;
  padding: .4rem .8rem;
  transform: rotate(-2deg);
  margin-bottom: 1.1rem;
}
.delivery-card p { color: #5d5344; font-size: .95rem; }

.delivery-cta { text-align: center; }

/* ---------------- LOKO ✕ Glovo strip ---------------- */

.glovo-strip {
  background: var(--carbone);
  color: var(--carta);
  border-radius: 8px;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.8rem;
  align-items: center;
  box-shadow: 0 18px 44px rgba(23, 19, 16, .28);
  overflow: hidden;
  position: relative;
}
.glovo-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--glovo) 0 22px, var(--carbone) 22px 34px);
}

.glovo-brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--glovo);
  margin-bottom: .7rem;
}
.glovo-copy h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.glovo-copy p { color: var(--cenere); font-size: .96rem; }

.glovo-action {
  display: grid;
  gap: .8rem;
  justify-items: center;
}
.glovo-alt {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--cenere);
  text-decoration-color: var(--glovo);
  text-underline-offset: 4px;
}
.glovo-alt:hover { color: var(--carta); }

.glovo-route {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .6rem;
}
.route-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cenere);
  white-space: nowrap;
}
.route-line {
  position: relative;
  flex: 1;
  height: 44px;
}
.route-line::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  border-bottom: 2px dashed rgba(243, 235, 220, .28);
}
.route-scooter {
  position: absolute;
  left: 0;
  bottom: 6px;
  color: var(--glovo);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.5));
}

/* ---------------- galleria ---------------- */

.gallery .container { margin-bottom: 2.5rem; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 16vw, 240px);
  gap: .6rem;
  padding-inline: .6rem;
}
.mosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.mosaic .t-big { grid-column: span 2; grid-row: span 2; }
.mosaic .t-tall { grid-row: span 2; }
.mosaic .t-wide { grid-column: 1 / -1; }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.95);
}
.mosaic figure:hover img { transform: scale(1.05); filter: saturate(1.15); }
.mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .7rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--carta);
  background: linear-gradient(to top, rgba(13,10,8,.85), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.mosaic figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------------- contatti ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-list { list-style: none; display: grid; gap: 1.4rem; margin-block: 2.2rem; }
.contact-list li { display: grid; gap: .25rem; font-size: 1.08rem; }
.contact-list a { color: var(--carta); text-decoration-color: var(--arancio); text-underline-offset: 4px; }
.contact-list a:hover { color: var(--arancio); }
.contact-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--arancio);
}

.contact-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(243, 235, 220, .1);
  transform: rotate(1.2deg);
}
.contact-img img { width: 100%; }

/* ---------------- final CTA ---------------- */

.final-cta {
  background: var(--arancio);
  color: var(--inchiostro);
  text-align: center;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  border-block: 3px solid var(--carbone);
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(2.8rem, 9.5vw, 7.5rem);
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.final-cta-actions {
  display: grid;
  gap: .9rem;
  justify-items: center;
}
.final-cta-alt {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--inchiostro);
  text-underline-offset: 4px;
}
.final-cta-alt:hover { text-decoration-thickness: 2px; }

/* ---------------- footer ---------------- */

.footer {
  background: var(--carbone);
  padding-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.footer-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: var(--wide);
  font-size: clamp(6rem, 24vw, 22rem);
  line-height: .8;
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(243, 235, 220, .14);
  user-select: none;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.footer-word span { -webkit-text-stroke-color: rgba(255, 106, 0, .4); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--arancio);
  margin-bottom: 1rem;
}
.footer-text { color: var(--cenere); font-size: .92rem; max-width: 24rem; }

.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-links a, .footer-links li {
  color: var(--cenere);
  font-size: .92rem;
  text-decoration: none;
}
.footer-links a:hover { color: var(--carta); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(243, 235, 220, .08);
  padding-block: 1.4rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--cenere);
}
.footer-bottom a { color: var(--cenere); }
.footer-bottom a:hover { color: var(--carta); }

/* ---------------- reveal (JS adds .is-in) ---------------- */

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1); }
.no-js .reveal, .reduced-motion .reveal { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .glovo-strip { grid-template-columns: 1fr; text-align: center; }
  .glovo-route { flex-direction: row; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-mark { top: -3rem; font-size: 7rem; }
  .carousel-viewport { min-height: 15rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid, .delivery-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .menu-grid { margin-bottom: 3.5rem; }
  .method-grid, .contact-grid { grid-template-columns: 1fr; }
  .method-img { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-sticker { right: 1rem; bottom: 10vh; width: 7rem; height: 7rem; font-size: .72rem; }
}

@media (max-width: 700px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn { display: none; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-sticker { display: none; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-viewport { min-height: 17rem; }
}

/* ---------------- reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .step { opacity: 1; }
}
