/* ============================================================
   MASALA STREET — Halal South Asian Street Food (demo)
   Light / warm theme · gold + ink · street-food energy
   ============================================================ */

/* ---------- Fonts: caricati via <link> in index.html (Anton · Hanken Grotesk · Pacifico) ---------- */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --gold:        #E0A33E;          /* primary gold from logo */
  --gold-deep:   #C5811F;          /* darker gold for text on cream */
  --gold-soft:   #F4D79A;
  --gold-glow:   #FBE9C0;
  --ink:         #19150E;          /* warm near-black */
  --ink-soft:    #4a4234;
  --ink-faint:   #8a8170;
  --cream:       #FFFBF1;          /* page background */
  --cream-2:     #FBF2DF;          /* alt section */
  --paper:       #FFFFFF;
  --chili:       oklch(0.58 0.18 35);   /* spice / accent red */
  --leaf:        oklch(0.58 0.13 145);  /* veg marker green */
  --line:        #EADFC6;

  --shadow-sm: 0 2px 8px rgba(60,42,10,.08);
  --shadow-md: 0 14px 34px -14px rgba(80,55,10,.30);
  --shadow-lg: 0 30px 60px -22px rgba(70,48,8,.40);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --maxw: 1500px;
  --pad: clamp(20px, 4.5vw, 80px);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-hand: 'Pacifico', cursive;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* ---------- Helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.display { font-family: var(--font-display); font-weight: 400; line-height: 0.95; letter-spacing: .5px; text-transform: uppercase; }
.hand { font-family: var(--font-hand); font-weight: 700; }
.gold-text { color: var(--gold-deep); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gold); border-radius: 3px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--cream-2); }
.section--ink { background: var(--ink); }
.section--ink .section-title { color: var(--cream); }
.section--ink .eyebrow { color: var(--gold); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: .92; letter-spacing: .5px;
  margin: 14px 0 0;
}
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: .98rem; letter-spacing: .02em;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-md); }
.btn--gold:hover { background: #ecb14d; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ink { background: var(--ink); color: var(--gold-soft); }
.btn--ink:hover { background: #2a2316; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--gold-soft); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* ---------- Badges ---------- */
.halal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--leaf); background: color-mix(in srgb, var(--leaf) 12%, white);
  padding: 4px 10px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--leaf) 30%, white);
}
.halal-badge::before { content: "✓"; font-size: .85em; }

/* spice dots */
.spice { display: inline-flex; gap: 3px; vertical-align: middle; }
.spice i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); display: inline-block; }
.spice i.on { background: var(--chili); }

.veg-dot { width: 13px; height: 13px; border: 2px solid var(--leaf); border-radius: 3px; display: inline-grid; place-items: center; }
.veg-dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; justify-self: start; }
.brand img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: .5px; text-transform: uppercase; white-space: nowrap; }
.brand-txt span { font-size: .6rem; font-weight: 700; letter-spacing: .18em; color: var(--gold-deep); text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; gap: 4px; align-items: center; justify-self: center; }
.nav-links a {
  font-weight: 700; font-size: .92rem; padding: 9px 14px; border-radius: 999px;
  color: var(--ink-soft); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }

.nav-actions { display: flex; align-items: center; gap: 12px; justify-self: end; }

/* language toggle — pillola scorrevole */
.lang {
  position: relative; display: inline-flex; background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; font-weight: 800; font-size: .78rem;
}
.lang::before {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: calc(50% - 3px); height: calc(100% - 6px);
  background: var(--ink); border-radius: 999px;
  transition: transform .35s var(--ease);
}
.lang.en::before { transform: translateX(100%); }
.lang button {
  position: relative; z-index: 1; padding: 6px 12px; border-radius: 999px;
  color: var(--ink-faint); letter-spacing: .04em;
  transition: color .25s var(--ease), transform .2s var(--ease);
}
.lang button:hover { color: var(--ink); }
.lang button:active { transform: scale(.92); }
.lang button.active { color: var(--gold-soft); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(22px,2.6vw,40px) 0 clamp(26px,3vw,48px); overflow: hidden; text-align: center; }
/* prima schermata esatta: header (85) + hero + order-bar (132) = 100svh */
@media (min-width: 981px) {
  .hero {
    min-height: calc(100svh - 217px);
    display: flex; flex-direction: column; justify-content: center;
  }
}
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }

/* mani cutout che sbordano dai lati (stile riferimento) */
.hero-hand { position: absolute; z-index: 1; pointer-events: none; user-select: none; }
.hero-hand img { width: 100%; height: auto; display: block; }
/* mano-samosa che esce da un buco laterale a sinistra (speculare alla destra) */
.hero-hand--left {
  left: clamp(4px, 2.5vw, 56px); bottom: clamp(24px, 4.5vw, 64px);
  width: clamp(190px, 22vw, 340px); aspect-ratio: 1 / 1;
}
.hero-hand--left::before {
  content: ""; position: absolute; left: -6%; top: 44%; transform: translateY(-50%);
  width: 46%; height: 92%;
  background: var(--ink); border-radius: 50%;
}
/* maschera NON ruotata: banda di sfumatura verticale stretta, solo verso il buco */
.hero-hand--left .hand-mask {
  position: absolute; inset: -8% -30% -12% 0;
  -webkit-mask-image: linear-gradient(to right, transparent 4%, #000 13%);
  mask-image: linear-gradient(to right, transparent 4%, #000 13%);
}
.hero-hand--left img {
  position: absolute; right: 2%; top: 6%; width: 75%; height: auto;
  transform: rotate(52deg) scaleX(-1);
}
/* mano-burger che esce da un buco laterale (ellisse verticale) */
.hero-hand--right {
  right: clamp(4px, 2.5vw, 56px); top: clamp(36px, 6.5vw, 90px);
  width: clamp(190px, 22vw, 340px); aspect-ratio: 1 / 1;
}
.hero-hand--right::before {
  content: ""; position: absolute; right: -6%; top: 42%; transform: translateY(-50%);
  width: 46%; height: 88%;
  background: var(--ink); border-radius: 50%;
}
.hero-hand--right > img {
  position: absolute; left: -16%; top: 2%; width: 98%; height: auto;
  transform: rotate(-48deg);
  -webkit-mask-image: linear-gradient(to bottom, #000 91%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 91%, transparent 99%);
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content; max-width: 100%;
  background: var(--ink); color: var(--gold-soft); white-space: nowrap;
  padding: 9px 18px; border-radius: 999px; font-weight: 800; font-size: clamp(.68rem,1.6vw,.8rem); letter-spacing: .07em; text-transform: uppercase;
}
.hero-kicker b { color: var(--gold); }
.hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.6rem, 6.2vw, 5.1rem); line-height: .98; letter-spacing: .5px;
  margin: 18px 0 0;
}
.hero h1 .accent {
  background: var(--gold); color: var(--ink); display: inline-block; white-space: nowrap;
  padding: .02em .16em; border-radius: 8px; transform: rotate(-1deg);
}
.hero-tag { font-family: var(--font-hand); font-size: clamp(1.2rem,2.3vw,1.6rem); color: var(--gold-deep); margin-top: 16px; line-height: 1.4; }
.hero p.lead { margin-top: 14px; font-size: 1.08rem; color: var(--ink-soft); max-width: 52ch; margin-inline: auto; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; justify-content: center; }

.hero-strip { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; align-items: center; justify-content: center; }
.hero-strip .meta { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.hero-strip .meta b { color: var(--ink); }
.hero-strip svg { width: 19px; height: 19px; }

/* pill 100% HALAL — stile kicker, sotto il sottotitolo del menu */
.halal-pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  background: var(--ink); color: var(--gold);
  font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.halal-pill::before { content: "✓"; color: var(--gold-soft); font-size: .9em; }

/* ---------- Image placeholder ---------- */
.ph {
  width: 100%; height: 100%; min-height: 120px;
  background:
    repeating-linear-gradient(45deg, #f0e4c8 0 12px, #f6edd6 12px 24px);
  display: grid; place-content: center; gap: 6px; text-align: center;
  color: var(--gold-deep);
}
.ph span { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .72rem; letter-spacing: .05em; opacity: .8; padding: 2px 8px; }
.ph svg { width: 30px; height: 30px; opacity: .5; }

/* ============================================================
   DELIVERY / ORDER STRIP
   ============================================================ */
.order-bar { background: var(--ink); color: var(--cream); border-block: 3px solid var(--gold); }
.order-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding-block: 26px; flex-wrap: wrap; }
.order-bar h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem,3vw,2rem); color: var(--gold-soft); }
.order-bar p { color: #d8cdb4; font-size: .95rem; margin-top: 2px; }
.order-platforms { display: flex; gap: 12px; flex-wrap: wrap; }
.plat {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(224,163,62,.4); color: var(--cream);
  padding: 12px 18px; border-radius: 999px; font-weight: 800;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .25s var(--ease);
}
.plat:active { transform: scale(.97); }
.plat:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }
.plat svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold); transition: color .2s var(--ease); }
.plat:hover svg { color: var(--ink); }

/* ============================================================
   MENU
   ============================================================ */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.menu-tab {
  font-weight: 800; font-size: .92rem; padding: 11px 20px; border-radius: 999px;
  background: var(--paper); border: 2px solid var(--line); color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .25s var(--ease);
}
.menu-tab:active { transform: scale(.97); }
.menu-tab:hover { border-color: var(--gold); color: var(--ink); }
.menu-tab.active { background: var(--ink); color: var(--gold-soft); border-color: var(--ink); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
/* card "menu board": ink scuro, foto che si fonde nella card, prezzo a sticker */
.dish {
  background: #181208; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-md); border-bottom: 3px solid var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dish-img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.dish-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  transition: transform .5s var(--ease);
}
.dish:hover .dish-img img { transform: scale(1.06); }
.dish-img .tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 1; }
.dish-price {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  font-family: var(--font-display); font-size: 1.02rem; letter-spacing: .02em; white-space: nowrap;
  background: var(--gold); color: var(--ink); padding: 5px 13px; border-radius: 999px;
  transform: rotate(3deg); box-shadow: var(--shadow-sm);
}
.dish-body { padding: 0 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish-name {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 1.16rem; letter-spacing: .04em; color: var(--cream);
}
.dish-desc { color: #cfc6b2; font-size: .92rem; line-height: 1.5; flex: 1; }
.dish-foot { display: flex; align-items: center; gap: 8px; margin-top: 2px; flex-wrap: wrap; }
.dish .spice i { background: rgba(255,255,255,.18); }
.dish .spice i.on { background: var(--chili); }
/* chip leggibili: piccantezza e vegetariano direttamente in card */
.dish-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: #cfc6b2; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 5px 11px; border-radius: 999px;
}
.dish-chip--veg { color: #a8d8ae; border-color: rgba(130,195,140,.4); }
.dish-chip--veg::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7cc287; }


/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.about-art { display: flex; justify-content: center; align-items: center; }
/* la mano sfonda la pagina: buco ink + mano che ne esce (braccio troncato nel buco) */
.punch-hole { position: relative; width: clamp(250px, 80%, 430px); padding-bottom: 5%; }
.punch-hole::before {
  content: ""; position: absolute; left: 57%; bottom: -5%; transform: translateX(-50%);
  width: 66%; height: 17%;
  background: var(--ink); border-radius: 50%;
}
/* finestra di clipping: il bordo basso cade dentro il nero, il taglio è invisibile */
.punch-clip {
  position: relative; z-index: 1; overflow: hidden;
  padding-bottom: 4%; margin-bottom: -4%;
}
.punch-hole img {
  position: relative; display: block;
  width: 66%; height: auto; margin-left: 16%;
  transform: rotate(-5deg) translateY(3%);
  -webkit-mask-image: linear-gradient(to bottom, #000 93%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 93%, transparent 99%);
}
/* animazione: la mano esce dal buco al reveal (stato nascosto solo dietro html.anim) */
html.anim .punch-hole img {
  transform: rotate(-5deg) translateY(90%);
  transition: transform 1.15s cubic-bezier(0.22, 1.18, 0.36, 1) .12s;
}
html.anim .about-art.is-in .punch-hole img {
  transform: rotate(-5deg) translateY(3%);
}
.about-text h2 { margin-bottom: 6px; }
.about-text p { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }
.about-stats {
  display: flex; margin-top: 30px; flex-wrap: wrap;
  background: var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 22px 28px; width: fit-content;
  border-bottom: 3px solid var(--gold);
}
.about-stats .stat { padding-inline: clamp(18px, 2.4vw, 34px); }
.about-stats .stat:first-child { padding-left: 0; }
.about-stats .stat:last-child { padding-right: 0; }
.about-stats .stat + .stat { border-left: 1px solid rgba(255,255,255,.16); }
.about-stats .stat b { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; }
.about-stats .stat span { font-weight: 700; font-size: .82rem; color: #cfc6b2; letter-spacing: .05em; text-transform: uppercase; }

/* ============================================================
   REVIEWS — score + bacheca di biglietti
   ============================================================ */
.reviews-layout { display: grid; grid-template-columns: .85fr 1.3fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.rev-score .section-title { color: var(--cream); }
.rev-big { font-family: var(--font-display); font-size: clamp(4.4rem, 8vw, 7rem); color: var(--gold); line-height: 1; margin-top: 22px; }
.rev-big span { font-size: .35em; color: var(--gold-soft); }
.rev-stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 5px; margin-top: 6px; }
.rev-sub { color: #cfc6b2; margin: 10px 0 24px; font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review {
  background: var(--paper); border-radius: var(--r-md);
  padding: 24px; box-shadow: var(--shadow-md); position: relative;
  transform: rotate(var(--rot, 0deg));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-lg); }
.review .tape {
  position: absolute; top: -11px; left: 50%;
  width: 78px; height: 24px;
  background: color-mix(in srgb, var(--gold) 82%, transparent);
  transform: translateX(-50%) rotate(-3deg);
  border-radius: 2px;
}
.review .stars { color: var(--gold-deep); letter-spacing: 2px; font-size: 1.05rem; }
.review p { margin: 12px 0 16px; color: var(--ink-soft); font-size: .98rem; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; font-weight: 800; color: var(--gold-deep); }
.review .who b { font-size: .98rem; }
.review .who small { display: block; color: var(--ink-faint); font-weight: 600; }

/* ============================================================
   FIND US / HOURS / CONTACT — mappa + scontrino orari + azioni
   ============================================================ */
.contact-shell {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "map    side"
    "cta    side";
}
.contact-shell .map-card { grid-area: map; height: auto; min-height: 380px; }
.find-col-b { grid-area: side; display: flex; flex-direction: column; gap: 26px; }
.find-col-b .contact-info { flex: 1; }
.contact-shell .cta-banner {
  grid-area: cta; margin-top: 0;
  flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 6px; padding: clamp(26px, 2.6vw, 38px);
}
.contact-shell .cta-banner h3 { font-size: clamp(1.8rem, 2.6vw, 2.7rem); }
.contact-shell .cta-banner-txt { max-width: 62%; }
.contact-shell .cta-banner p { font-size: 1rem; margin-top: 6px; }
.contact-shell .cta-order { margin-top: 14px; }
.contact-shell .cta-thumb { width: clamp(165px, 15vw, 235px); right: -2%; bottom: -14%; }

/* orari a scontrino */
.hours-ticket {
  background: var(--paper); border-radius: var(--r-sm) var(--r-sm) 0 0;
  padding: 22px 26px 26px; box-shadow: var(--shadow-md);
  position: relative;
}
.hours-ticket::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 10px;
  background-image:
    linear-gradient(45deg, var(--paper) 50%, transparent 50%),
    linear-gradient(-45deg, var(--paper) 50%, transparent 50%);
  background-size: 16px 10px;
  background-position: 0 0, 8px 0;
  background-repeat: repeat-x;
}
.hours-ticket h4 {
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .05em;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 2px dashed var(--line);
}
.hours-ticket h4 svg { width: 19px; color: var(--gold-deep); flex-shrink: 0; }
.hours-ticket .hours-list { font-variant-numeric: tabular-nums; }

/* card contatti: azioni grandi */
.contact-info {
  background: var(--ink); color: var(--cream); border-radius: var(--r-md);
  padding: clamp(22px,3vw,30px); box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--gold);
  display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.contact-info h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .05em; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.contact-info h4 svg { width: 19px; color: var(--gold); flex-shrink: 0; }
.contact-info .addr { color: #d8cdb4; font-weight: 600; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.contact-actions .btn { padding: 13px 14px; font-size: .9rem; gap: 8px; }
.contact-actions .btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--line { background: transparent; color: var(--cream); border: 2px solid rgba(255,255,255,.22); }
.btn--line:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }
.contact-info .socials { margin-top: auto; }
.contact-info .socials a { background: rgba(255,255,255,.08); color: var(--gold-soft); }
.contact-info .socials a:hover { background: var(--gold); color: var(--ink); }

/* app delivery dentro la card contatti */
.contact-delivery { margin-top: 6px; }
.contact-delivery .lbl {
  display: block; font-size: .7rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: #a89e8a; margin-bottom: 10px;
}
.delivery-row { display: flex; gap: 8px; flex-wrap: wrap; }
.plat--sm { padding: 9px 14px; font-size: .82rem; gap: 7px; }
.plat--sm svg { width: 14px; height: 14px; }

/* gold call-to-action banner */
.cta-banner {
  margin-top: 22px; background: var(--gold); border-radius: var(--r-lg);
  padding: clamp(24px,3.5vw,40px) clamp(26px,4vw,52px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
/* pollicione dentro la banner (clippato ai suoi bordi) */
.cta-banner { position: relative; }
.cta-banner-txt { position: relative; z-index: 1; }
.cta-thumb-clip {
  position: absolute; inset: 0; overflow: hidden;
  border-radius: var(--r-lg); pointer-events: none;
}
.cta-thumb {
  position: absolute; bottom: -14%; right: clamp(170px, 24%, 340px);
  width: clamp(130px, 15vw, 200px); height: auto;
  transform: rotate(-4deg);
}

/* popover "Ordina ora": le app sbocciano dal bottone */
.cta-order { position: relative; z-index: 2; }
.order-pop {
  position: absolute; bottom: calc(100% + 12px); right: 0; min-width: 220px;
  background: var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(224,163,62,.35);
  padding: 8px; display: grid; gap: 2px;
  opacity: 0; transform: scale(.95) translateY(8px); transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .3s var(--ease);
}
.order-pop.open { opacity: 1; transform: none; pointer-events: auto; }
.pop-item {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border-radius: 10px;
  color: var(--cream); font-weight: 800; font-size: .94rem;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.pop-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.pop-item:hover { background: rgba(255,255,255,.09); color: var(--gold); }
.pop-item:active { transform: scale(.98); }
.cta-banner h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem,3.4vw,2.6rem); color: var(--ink); line-height: 1; }
.cta-banner p { color: #6b551f; font-weight: 600; margin-top: 6px; }
.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 3px solid var(--gold); position: relative; }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.hours-list li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li.today { font-weight: 800; color: var(--gold-deep); }
.hours-list li span:first-child { white-space: nowrap; }
.hours-list li span:last-child { font-weight: 700; white-space: nowrap; font-size: .88rem; }
.closed { color: var(--chili); font-weight: 800; }

.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--gold-soft); display: grid; place-items: center; transition: .18s; }
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 20px; }

/* ============================================================
   FOOTER — wordmark gigante + colonne
   ============================================================ */
.footer { background: var(--ink); color: #cfc6b2; padding: clamp(48px,6vw,72px) 0 26px; border-top: 3px solid var(--gold); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
  padding-bottom: clamp(28px,3.5vw,44px); border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-word {
  font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem);
  line-height: .92; color: var(--cream); letter-spacing: .01em;
}
.footer-word span { color: var(--gold); }
.footer-brand p { color: #a89e8a; margin-top: 14px; max-width: 46ch; font-size: .95rem; }
.footer .socials a { background: rgba(255,255,255,.08); color: var(--gold-soft); }
.footer .socials a:hover { background: var(--gold); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr 1.1fr; gap: 36px; padding-top: clamp(28px,3.5vw,44px); }
.footer h5 { color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; margin-bottom: 14px; }
.footer-links li { padding: 5px 0; }
.footer-links a { color: #cfc6b2; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }
.footer-contacts li { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-weight: 600; font-size: .95rem; }
.footer-contacts svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-contacts a:hover { color: var(--gold); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #8a8170; }
.back-top { color: var(--gold-soft); font-weight: 800; transition: color .2s var(--ease); }
.back-top:hover { color: var(--gold); }
.credit-link { color: var(--gold-soft); font-weight: 700; transition: color .2s var(--ease); }
.credit-link:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .find-col-b { display: contents; }
  .contact-shell .map-card, .contact-shell .cta-banner { grid-area: auto; }
  .contact-shell .map-card { height: clamp(320px, 60vw, 420px); min-height: 0; }
  .contact-shell .cta-banner { flex-direction: row; align-items: center; }
  .contact-shell .cta-banner-txt { max-width: none; }
  .contact-shell .cta-thumb { width: 120px; right: 4px; bottom: -10%; }
  .reviews-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nav { display: flex; justify-content: space-between; height: 72px; }
  .brand img { width: 52px; height: 52px; }
  .brand-txt b { font-size: 1.25rem; }
  .nav-links, .nav-actions .btn { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    justify-self: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px var(--pad) 22px; gap: 4px;
  }
  .nav-links.open a { padding: 13px 14px; font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { gap: 22px; }
}
/* fascia media: titolo largo, mani più piccole e basse */
@media (min-width: 641px) and (max-width: 1080px) {
  .hero-hand--right { top: auto; bottom: 8px; width: 19vw; right: -3vw; }
  .hero-hand--left { bottom: 8px; width: 19vw; left: -3vw; }
}
@media (max-width: 640px) {
  .hero { padding-top: 36px; padding-bottom: 150px; }
  .hero-hand--left { width: 122px; left: -26px; bottom: 8px; }
  .hero-hand--right { width: 126px; right: -6px; top: auto; bottom: 10px; }
  .about-stats { flex-direction: column; gap: 14px; width: 100%; }
  .about-stats .stat { padding-inline: 0; }
  .about-stats .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.16); padding-top: 14px; }
  .cta-banner { padding-top: 30px; }
  .cta-thumb { right: 6px; width: 110px; bottom: -10%; }
  .order-pop { right: auto; left: 0; transform-origin: bottom left; }
}

/* ============================================================
   FOCUS & SCROLL REVEAL
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-deep); outline-offset: 2px; border-radius: 6px;
}

/* stato nascosto SOLO dietro html.anim (aggiunta da JS): no-JS mostra tutto */
html.anim [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.anim [data-reveal].is-in { opacity: 1; transform: none; }
