/* ═══════════════════════════════════════
   Panico Pizza — style.css
   ═══════════════════════════════════════ */

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

:root {
  --green:      #144A3A;
  --green-dark: #0e3329;
  --black:      #0B110F;
  --fire:       #D4501A;
  --fire-light: #E8673A;
  --cream:      #F5F0E8;
  --cream-muted:#C8BFB0;
  --white:      #FFFFFF;
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(11,17,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20,74,58,0.4);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* logo bianco su sfondo scuro */
  transition: opacity 0.25s;
}
.nav-logo-img:hover { opacity: 0.75; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--fire);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  text-decoration: none;
  border: 1px solid var(--fire);
  padding: 0.5rem 1.3rem;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--fire); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--cream); display: block; transition: 0.3s; }

/* ══════════════════════════════
   MOBILE MENU
══════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--fire); }
.mobile-cta {
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  color: var(--fire) !important;
  letter-spacing: 0.18em;
  margin-top: 0.5rem !important;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream-muted);
  font-size: 1.5rem;
  cursor: pointer;
}


/* ══════════════════════════════
   TRANSLATE
══════════════════════════════ */


/* ==========================================
   DROPDOWN MULTILINGUA SOLO CSS (qTranslate)
   ========================================== */

/* ===== DROPDOWN LANGUAGE CHOOSER - qTranslate ===== */

.lang_wrap { position: absolute; right: 180px; top: 22px; }
/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .lang_wrap { right: 50px; top: 15px; }
  #qtranslate-chooser li a {
    padding: 10px 12px;
    font-size: 12px;
  }
}

#qtranslate-chooser {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
}

/* Nasconde tutto tranne l'attivo */
#qtranslate-chooser li {
  display: none;
}

#qtranslate-chooser li.active {
  display: block;
  color: var(--cream-muted);
}

/* Freccia sulla lingua attiva */
#qtranslate-chooser li.active a::after {
  content: ' ▾';
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.2s ease;
  display: inline-block;
}

/* Ruota freccia quando aperto */
#qtranslate-chooser.open li.active a::after {
  transform: rotate(180deg);
}

/* Apre il dropdown — sia hover (desktop) che classe .open (mobile) */
#qtranslate-chooser:hover li,
#qtranslate-chooser.open li {
  display: block;
}

#qtranslate-chooser:hover,
#qtranslate-chooser.open {
  background: #fff;
  border: 1px solid var(--cream);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 140px;
  z-index: 9999;
}

/* Link base */
#qtranslate-chooser li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Hover sui singoli item */
#qtranslate-chooser li a:hover {
  background-color: #f5f7ff;
  color: var(--cream);
}

/* Lingua attiva */
#qtranslate-chooser li.active a {
  color: var(--cream);
  font-weight: 600;
}
/* Bandierina qTranslate */
#qtranslate-chooser .qtranxs_flag {
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 18px auto;
  padding-left: 38px;
}


/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 7rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,17,15,0.94) 0%,
    rgba(20,74,58,0.3) 50%,
    rgba(11,17,15,0.25) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s var(--ease) 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; opacity: 0; transform: translateY(100%); }
.hero-title .line:nth-child(1) span { animation: line-up 0.9s var(--ease) 0.5s forwards; }
.hero-title .line:nth-child(2) span { animation: line-up 0.9s var(--ease) 0.7s forwards; }
.hero-title .line:nth-child(3) span { animation: line-up 0.9s var(--ease) 0.9s forwards; }
.hero-title em { font-style: italic; color: var(--white); font-weight: 500; }
.hero-sub {
  font-size: 0.97rem;
  color: var(--cream-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s var(--ease) 1.1s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s var(--ease) 1.3s forwards;
}
.btn-primary {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  background: var(--fire);
  color: var(--white);
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--fire-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-muted);
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: ' →'; }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: reveal 1s ease 2s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: var(--cream-muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--fire);
  animation: scroll-pulse 2s ease infinite 2.5s;
}

/* ══════════════════════════════
   STORIA — sfondo verde
══════════════════════════════ */
#storia {
  background: var(--green);
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.storia-image-wrap { position: relative; max-width: 520px; margin: 0 auto; }
.storia-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.5s;
}
.storia-img:hover { filter: brightness(0.95) saturate(1); }
.storia-accent {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 70px; height: 70px;
  background: var(--fire);
  z-index: -1;
}
.storia-number {
  position: absolute;
  bottom: -1.5rem; left: -1rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none; user-select: none;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--fire);
  display: inline-block;
}
.section-label--light { color: var(--cream-muted); }
.section-label--light::before { background: var(--cream-muted); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.section-title em { font-style: italic; color: var(--fire-light); }
.section-title--light { color: var(--cream); }
.section-body {
  font-size: 0.95rem;
  color: rgba(200,191,176,0.85);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.storia-quote {
  margin-top: 2.5rem;
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 2px solid var(--fire);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}
.storia-quote small {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
  font-family: var(--sans);
}

/* ══════════════════════════════
   IL LOCALE — nero con verde
══════════════════════════════ */
#locale {
  background: var(--black);
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.locale-testo {}
.locale-image-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.locale-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.5s;
}
.locale-img:hover { filter: brightness(0.95) saturate(1); }
.locale-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 70px;
  height: 70px;
  background: var(--green);
  z-index: -1;
}
.locale-tag {
  position: absolute;
  top: 1.5rem;
  right: -1px;
  background: var(--fire);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}
.btn-locale {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--green);
  padding: 0.85rem 2rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-locale:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ══════════════════════════════
   LA NOSTRA PIZZA — sfondo onde
══════════════════════════════ */
#pizza {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.pizza-wave-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/background-panico.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.pizza-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 8rem 3rem;
}
.pizza-intro {
  max-width: 680px;
  margin-bottom: 6rem;
}
.pizza-lead {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-weight: 300;
}

/* Storia + schede laterali */
.pizza-story {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
}
.pizza-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(20,74,58,0.4);
}
.pizza-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pizza-block-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pizza-block-title::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--fire);
  display: inline-block;
  flex-shrink: 0;
}
.pizza-block-body {
  font-size: 0.93rem;
  color: var(--cream-muted);
  line-height: 1.85;
}

/* Schede ingredienti */
.pizza-story-side {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: sticky;
  top: 100px;
}
.ingrediente-card {
  background: var(--green);
  padding: 1.4rem 1.6rem;
  transition: background 0.25s, transform 0.25s;
  cursor: default;
}
.ingrediente-card:hover {
  background: var(--green-dark);
  transform: translateX(-4px);
}
.ingrediente-card-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ingrediente-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.25rem;
}
.ingrediente-card-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
}
.ingrediente-card-origin {
  font-size: 0.75rem;
  color: rgba(200,191,176,0.6);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

/* Galleria foto atmosferiche */
.pizza-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3px;
  margin-bottom: 5rem;
}
.pizza-gallery-main { overflow: hidden; }
.pizza-gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.85);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
  aspect-ratio: unset;
}
.pizza-gallery-main .gallery-img { aspect-ratio: 4/5; }
.pizza-gallery-side .gallery-img { aspect-ratio: 3/2; }
.pizza-gallery-main,
.pizza-gallery-side > * { overflow: hidden; }
.gallery-img:hover {
  filter: brightness(0.92) saturate(1.05);
  transform: scale(1.03);
}

@media (max-width: 700px) {
  .pizza-gallery { grid-template-columns: 1fr; }
  .pizza-gallery-side { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
  .pizza-gallery-main .gallery-img { aspect-ratio: 4/3; }
}

/* Chiusura citazione */
.pizza-chiusura {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
}
.pizza-chiusura-line { flex: 1; height: 1px; background: rgba(20,74,58,0.5); }
.pizza-chiusura-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-muted);
  text-align: center;
  white-space: nowrap;
}

/* ══════════════════════════════
   CONTATTI — sfondo verde
══════════════════════════════ */
#contatti {
  background: var(--green);
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 100%;
}
.map-container { position: relative; }
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.6) invert(0.85) hue-rotate(150deg) brightness(0.65);
}
.map-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-pin-note {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--green-dark);
  padding: 0.8rem 1.2rem;
  border-left: 2px solid var(--fire);
  font-size: 0.8rem;
  color: var(--cream-muted);
}
.map-pin-note strong { color: var(--cream); display: block; margin-bottom: 0.2rem; font-weight: 400; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 2.5rem 0;
  background: rgba(255,255,255,0.06);
}
.contact-item {
  background: var(--green-dark);
  padding: 1.4rem;
  transition: background 0.25s;
}
.contact-item:hover { background: #0a2820; }
.contact-item-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.5rem;
}
.contact-item-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.4;
}
.contact-item-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--fire); }
.orari-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.9rem;
}
.orari-table { width: 100%; border-collapse: collapse; }
.orari-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.orari-table tr:last-child { border-bottom: 0; }
.orari-table td { padding: 0.65rem 0; font-size: 0.87rem; color: var(--cream-muted); }
.orari-table td:last-child { text-align: right; color: var(--cream); }
.social-row { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-btn {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-muted);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-btn:hover { border-color: var(--fire); color: var(--fire); }

/* ══════════════════════════════
   FOOTER — verde scuro
══════════════════════════════ */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.footer-copy { font-size: 0.73rem; color: rgba(200,191,176,0.35); letter-spacing: 0.06em; }
.footer-top {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-top:hover { color: var(--fire); }

/* ══════════════════════════════
   FADE-UP (scroll reveal)
══════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   KEYFRAMES
══════════════════════════════ */
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes line-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-pulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .pizza-story { grid-template-columns: 1fr; }
  .pizza-story-side { position: static; flex-direction: row; flex-wrap: wrap; gap: 1px; }
  .ingrediente-card { flex: 1 1 calc(50% - 0.5px); }
  .pizza-chiusura-text { white-space: normal; text-align: center; }
}
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 0 1.5rem 5rem; }
  .scroll-indicator { right: 1.5rem; }
  #storia {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
    gap: 3rem;
  }
  .storia-accent, .storia-number { display: none; }
  #locale {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
    gap: 3rem;
  }
  .locale-accent { display: none; }
  /* su mobile metti la foto sopra il testo */
  #locale { display: flex; flex-direction: column; }
  #locale .locale-testo { order: 2; }
  #locale .locale-image-wrap { order: 1; }
  .pizza-inner { padding: 5rem 1.5rem; }
  .pizza-chiusura { flex-direction: column; gap: 1.2rem; }
  .pizza-chiusura-line { width: 60px; height: 1px; flex: none; }
  #contatti { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 560px) {
  .ingrediente-card { flex: 1 1 100%; }
  .pizza-chiusura-text { font-size: 1rem; }
}
