@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --nero: #0e0b09;
  --carbone: #1a1510;
  --crema: #f5f0e8;
  --crema-scura: #e8e0d0;
  --rosso: #c0392b;
  --rosso-vivo: #e74c3c;
  --oro: #d4a843;
  --grigio: #8a8178;
  --bianco: #faf8f5;
  --ombra: 0 20px 60px rgba(0,0,0,0.15);
  --ombra-forte: 0 30px 80px rgba(0,0,0,0.25);
  --radius: 4px;
  --trans: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--crema);
  color: var(--nero);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: var(--trans);
}
.navbar .nav-brand,
.navbar .nav-links a {
  color: var(--crema);
}
.navbar:not(.scrolled) .nav-logo img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)) brightness(1.1);
}
.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-links a {
  color: var(--nero);
}
.navbar.scrolled .nav-logo img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  transition: var(--trans);
}
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--nero);
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nero);
  text-decoration: none;
  position: relative;
  transition: var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rosso);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--rosso); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--rosso) !important;
  color: var(--crema) !important;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.12em !important;
  transition: var(--trans) !important;
}
.nav-cta:hover { background: var(--rosso-vivo) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.35); }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.navbar:not(.scrolled) .nav-toggle span {
  background: var(--crema);
}
.navbar.scrolled .nav-toggle span {
  background: var(--nero);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--nero);
  transition: var(--trans);
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banner.jpg') center/cover no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}
@keyframes subtle-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.3s forwards;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--oro);
}
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.88;
  color: var(--crema);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fade-up 1s ease 0.5s forwards;
}
.hero-title .accent {
  color: var(--rosso);
  display: block;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--crema-scura);
  margin-top: 1.5rem;
  opacity: 0;
  animation: fade-up 1s ease 0.7s forwards;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rosso);
  color: var(--crema);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: var(--trans);
  border: 2px solid var(--rosso);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.btn-primary:hover {
  background: transparent;
  color: var(--rosso);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--crema);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 1.5px solid rgba(245,240,232,0.4);
  border-radius: 2px;
  transition: var(--trans);
}
.btn-secondary:hover {
  border-color: var(--crema);
  background: rgba(245,240,232,0.08);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}
.scroll-line {
  width: 60px; height: 1px;
  background: rgba(245,240,232,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--rosso);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { left: -100%; }
  100% { left: 100%; }
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* INFO BAR */
.info-bar {
  background: var(--nero);
  color: var(--crema);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.info-icon {
  width: 36px; height: 36px;
  background: rgba(192,57,43,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosso);
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grigio);
  margin-bottom: 2px;
}
.info-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
}

/* SEZIONI GENERALI */
section { padding: 7rem 5%; }

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--rosso);
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--nero);
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--grigio);
  max-width: 520px;
  line-height: 1.7;
}

/* CHI SIAMO */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--crema);
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--ombra-forte);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--ombra-forte);
  border: 6px solid var(--crema);
}
.about-badge-3d {
  position: absolute;
  top: 55%; left: 60%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--rosso);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--crema);
  box-shadow: 0 8px 0 #7b1f15, 0 12px 24px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
.about-badge-3d .num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  line-height: 1;
}
.about-badge-3d .badge-icon {
  width: 28px;
  height: 28px;
  stroke: var(--crema);
  fill: none;
}
.about-badge-3d .label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0.8;
  padding: 0 8px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--nero);
  color: var(--crema);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 3px; height: 0;
  background: var(--rosso);
  transition: height 0.4s ease;
}
.stat-card:hover::before { height: 100%; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--ombra-forte); }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--oro);
  line-height: 1;
}
.stat-desc {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grigio);
  margin-top: 4px;
}

/* PIZZE HIGHLIGHT */
.pizze-section {
  background: var(--nero);
  color: var(--crema);
}
.pizze-section .section-title { color: var(--crema); }
.pizze-section .section-subtitle { color: var(--grigio); }
.pizze-section .section-eyebrow { color: var(--oro); }
.pizze-section .section-eyebrow::before { background: var(--oro); }

.pizze-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.pizza-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.pizza-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pizza-card:hover img { transform: scale(1.08); }
.pizza-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,9,0.95) 0%, rgba(14,11,9,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transform: translateY(10px);
  transition: var(--trans);
}
.pizza-card:hover .pizza-card-overlay { transform: translateY(0); }
.pizza-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.5rem;
}
.pizza-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--crema);
  line-height: 1;
}
.pizza-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rosso);
  margin-top: 0.5rem;
}
.pizza-ingredients {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.5rem;
  line-height: 1.5;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.pizza-card:hover .pizza-ingredients {
  transform: translateY(0);
  opacity: 1;
}

/* FORNO */
.forno-section {
  background: var(--crema);
  overflow: hidden;
  padding: 0;
}
.forno-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.forno-img {
  position: relative;
  overflow: hidden;
}
.forno-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.forno-content {
  background: var(--nero);
  color: var(--crema);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.forno-content .section-title { color: var(--crema); }
.forno-content .section-eyebrow { color: var(--oro); }
.forno-content .section-eyebrow::before { background: var(--oro); }
.forno-list {
  margin-top: 2.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forno-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.8);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.forno-list li span.icon {
  width: 40px; height: 40px;
  background: rgba(192,57,43,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rosso);
}
.forno-list li span.icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* RECENSIONI */
.recensioni {
  background: var(--crema-scura);
}
.recensioni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.recensione-card {
  background: var(--crema);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  transition: var(--trans);
  border: 1px solid transparent;
}
.recensione-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombra);
  border-color: rgba(192,57,43,0.12);
}
.recensione-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--rosso);
  opacity: 0.15;
  line-height: 1;
}
.stars {
  color: var(--oro);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.recensione-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nero);
  margin-bottom: 1.5rem;
}
.recensione-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 36px; height: 36px;
  background: var(--rosso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  color: var(--crema);
}
.author-name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--nero);
}
.author-source {
  font-size: 0.65rem;
  color: var(--grigio);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CTA SECTION */
.cta-section {
  background: var(--rosso);
  text-align: center;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'PIZZA';
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: 25vw;
  color: rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-section .section-eyebrow { color: rgba(255,255,255,0.6); justify-content: center; }
.cta-section .section-eyebrow::before { background: rgba(255,255,255,0.4); }
.cta-section .section-title { color: var(--crema); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; text-align: center; }
.cta-phone {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--crema);
  letter-spacing: 0.05em;
  display: block;
  margin: 1.5rem 0;
  text-decoration: none;
  transition: var(--trans);
}
.cta-phone:hover { color: var(--nero); letter-spacing: 0.1em; }

/* FOOTER */
footer {
  background: var(--carbone);
  color: var(--crema);
  padding: 5rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 60px;
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--grigio);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--oro);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--grigio);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--crema); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--grigio);
}
.footer-contact-item span:first-child {
  color: var(--rosso);
  margin-top: 1px;
  display: flex;
  align-items: center;
}
.footer-contact-item span:first-child svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.72rem;
  color: rgba(138,129,120,0.6);
}

/* ANIMAZIONI */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* PAGE HEADER (per pagine interne) */
.page-header {
  background: var(--nero);
  padding: 10rem 5% 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-header > *:not(.page-header-bg):not(.page-header-img) {
  position: relative;
  z-index: 2;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rosso), transparent);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
}
.page-header-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.page-header .section-eyebrow { color: var(--oro); }
.page-header .section-eyebrow::before { background: var(--oro); }
.page-header .section-title { color: var(--crema); }
.page-header .section-subtitle { color: var(--grigio); }

/* MENU PAGE */
.menu-nav {
  display: flex;
  gap: 0;
  background: var(--nero);
  overflow-x: auto;
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 60px;
  z-index: 100;
}
.menu-nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grigio);
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--trans);
}
.menu-nav-btn:hover, .menu-nav-btn.active {
  color: var(--crema);
  border-bottom-color: var(--rosso);
}
.menu-section {
  padding: 4rem 5%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.menu-section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--nero);
  margin-bottom: 0.5rem;
}
.menu-section-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--grigio);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 1rem 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 1rem;
  transition: var(--trans);
}
.menu-item:hover { padding-left: 6px; }
.menu-item-left { flex: 1; min-width: 0; }
.menu-item-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--nero);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.menu-item-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--grigio);
  line-height: 1.4;
}
.menu-item-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: var(--rosso);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* CONTATTI */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-card {
  background: var(--crema);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--trans);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--ombra); }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--rosso);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 0 #7b1f15;
  color: var(--crema);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grigio);
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--nero);
}
.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}
.orari-table {
  width: 100%;
  margin-top: 1.5rem;
}
.orari-table tr {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
}
.orari-table td:first-child { font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.orari-table td:last-child { color: var(--rosso); font-family: 'Playfair Display', serif; font-style: italic; }

/* MOBILE */
@media (max-width: 1024px) {
  .pizze-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .navbar {
    background: var(--nero) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  .navbar .nav-brand,
  .navbar .nav-links a {
    color: var(--crema) !important;
  }
  .navbar .nav-logo img {
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  .navbar .nav-toggle span {
    background: var(--rosso) !important;
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--nero);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { color: var(--crema); font-size: 1rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 400px; }
  .pizze-grid { grid-template-columns: 1fr; }
  .forno-inner { grid-template-columns: 1fr; }
  .forno-img { height: 50vw; }
  .forno-content { padding: 4rem 5%; }
  .recensioni-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .contatti-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 5.5rem; }
  section { padding: 5rem 5%; }
}
