/* ═══════════════════════════════════════════════════
   KUSKUS AI LEONI — "Fucina Mediterranea" Design v2
   Bordeaux · Oro Antico · Oliva · Pergamena
   ═══════════════════════════════════════════════════ */


:root {
  /* ── Palette principale ── */
  --bordeaux:       #7A1C35;
  --bordeaux-mid:   #5C1225;
  --bordeaux-dark:  #3D0A18;
  --bordeaux-pale:  #F5E8EC;
  --gold:           #B8841A;
  --gold-light:     #D4A94A;
  --gold-pale:      #F5E5B0;
  --olive:          #2C4A2D;
  --olive-mid:      #3D6640;
  --olive-pale:     #E8F0E8;
  --terra:          #B84030;
  --parchment:      #FAF5E8;   /* sfondo principale */
  --parchment-deep: #EEE4CA;   /* sezioni alternate */
  --sand:           #F0E4C4;
  --ink:            #1C1008;   /* nero caldo */
  --ink-mid:        #4A3828;   /* corpo testo */
  --ink-light:      #8A7460;   /* testo muted */
  --white:          #FFFFFF;
  --nav-dark:       rgba(28,16,8,0.92);

  /* ── Font ── */
  --serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, -apple-system, sans-serif;

  /* ── Spacing modulare ── */
  --s1: 0.5rem;   --s2: 1rem;    --s3: 1.5rem;
  --s4: 2rem;     --s5: 3rem;    --s6: 4.5rem;
  --s7: 6rem;     --s8: 9rem;

  /* ── Raggi ── */
  --r1: 4px;   --r2: 8px;   --r3: 16px;
  --r4: 24px;  --r5: 40px;  --rp: 999px;

  /* ── Ombre ── */
  --sh-xs: 0 1px 3px rgba(28,16,8,0.06);
  --sh-sm: 0 2px 8px  rgba(28,16,8,0.08);
  --sh-md: 0 6px 24px rgba(28,16,8,0.12);
  --sh-lg: 0 16px 56px rgba(28,16,8,0.16);
  --sh-gold: 0 4px 20px rgba(184,132,26,0.28);
  --sh-bordeaux: 0 4px 20px rgba(122,28,53,0.28);

  /* ── Nav ── */
  --nav-h: 72px;
}

/* ─────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* safe-area custom property */
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
}

body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink-mid);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─────────────────────────────────────────────────
   UTILITY
   ───────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--s3);
}

/* Sezioni */
.section         { padding: var(--s7) 0; }
.section--dark   { background: var(--ink); color: var(--parchment); }
.section--olive  { background: var(--olive); color: var(--white); }
.section--parch  { background: var(--parchment-deep); }
.section--sand   { background: var(--sand); }

/* Etichetta di sezione */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: var(--s2);
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Titoli di sezione */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.section-title em {
  font-style: italic;
  color: var(--bordeaux);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 520px;
  line-height: 1.75;
}
.section-header { margin-bottom: var(--s5); }

/* Divisore decorativo */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin: var(--s3) 0;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.ornament-symbol { font-size: 1.1rem; }

/* ─────────────────────────────────────────────────
   BOTTONI
   ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--rp);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  box-shadow: var(--sh-bordeaux);
}
.btn-primary:hover {
  background: var(--bordeaux-mid);
  box-shadow: 0 6px 28px rgba(122,28,53,0.38);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline-dark {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--parchment); }

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--olive);
  box-shadow: var(--sh-sm);
}
.btn-white:hover { background: var(--parchment); transform: translateY(-1px); }

.btn-sm  { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-lg  { padding: 1rem 2.4rem; font-size: 1rem; }

/* ── GloriaFood global override — tutte le pagine ── */
.btn.glf-button {
  border-radius: 999px !important;
  transition: filter 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease !important;
  cursor: pointer !important;
}
.btn.glf-button:hover {
  filter: brightness(1.18) !important;
  transform: translateY(-2px) !important;
}

.btn-primary.glf-button,
.btn-gold.glf-button {
  background: linear-gradient(135deg, #6B0F22 0%, #A8243D 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(107,15,34,0.35) !important;
}
.btn-primary.glf-button:hover,
.btn-gold.glf-button:hover {
  box-shadow: 0 8px 36px rgba(107,15,34,0.62) !important;
  filter: brightness(1.22) !important;
}

.btn-outline-dark.glf-button,
.btn-outline-light.glf-button {
  background: transparent !important;
  border: 1.5px solid #D4A94A !important;
  color: #D4A94A !important;
  box-shadow: none !important;
}
.btn-outline-dark.glf-button:hover,
.btn-outline-light.glf-button:hover {
  background: rgba(212,169,74,0.12) !important;
  border-color: #e8c66a !important;
  color: #e8c66a !important;
  box-shadow: 0 0 22px rgba(212,169,74,0.28) !important;
  filter: none !important;
}

/* ─────────────────────────────────────────────────
   NAVIGAZIONE
   ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled,
.nav--opaque {
  background: var(--nav-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.28);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--s3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

/* Logo */
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  /* Nessun filtro: mantieni il bordeaux originale */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
  transition: opacity 0.2s, transform 0.2s;
}
.nav-logo:hover img { opacity: 0.88; transform: scale(1.02); }

/* Links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta { margin-left: var(--s1); }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--s2);
  background: rgba(255,255,255,0.08);
  border-radius: var(--rp);
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  padding: 3px 7px;
  border-radius: var(--rp);
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--white); }
.lang-btn--active { background: rgba(255,255,255,0.18); color: var(--white); }
.nav--opaque .lang-switcher { background: rgba(28,16,8,0.06); }
.nav--opaque .lang-btn { color: var(--ink-light); }
.nav--opaque .lang-btn:hover { color: var(--bordeaux); }
.nav--opaque .lang-btn--active { background: var(--bordeaux-pale); color: var(--bordeaux); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r2);
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: 0.28s cubic-bezier(.4,0,.2,1);
}
.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; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--nav-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s3) var(--s4) var(--s4);
    gap: var(--s1);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; padding: var(--s1) 0; width: 100%; }
  .nav-cta { width: 100%; margin-left: 0; margin-top: var(--s2); }
  .nav-cta .btn { width: 100%; }
  .lang-switcher { margin-left: 0; margin-top: var(--s2); width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}

/* Immagine di sfondo con trattamento warm */
.hero-bg-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  filter: sepia(0.18) saturate(1.15) brightness(0.42);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Overlay sfumato stratificato */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(28,16,8,0.88) 0%, rgba(28,16,8,0.52) 60%, rgba(28,16,8,0.18) 100%),
    linear-gradient(to top,    rgba(28,16,8,0.8)  0%, transparent 50%);
}

/* Ornamento laterale bordeaux */
.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--bordeaux), var(--gold), transparent);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + var(--s5)) 0 var(--s7);
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--s3);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1.5px;
  background: var(--gold-light);
  box-shadow: 0 0 6px rgba(212,169,74,0.6);
}

.hero-headline {
  font-family: var(--display);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--s4);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s ease forwards;
}
.hero-headline .line-sm {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.hero-headline .line-lg {
  display: block;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
}
.hero-headline .line-lg em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-headline .line-md {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

.hero-tagline {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin-bottom: var(--s4);
  padding: 0.3em 0.8em;
  background: rgba(0,0,0,0.45);
  border-left: 3px solid var(--gold-light);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.55s ease forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: var(--s5);
  animation: fadeSlideUp 0.9s 0.7s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.9s ease forwards;
}

/* Barra info in fondo all'hero */
.hero-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(28,16,8,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--s2) var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.hero-info {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}
.hero-info strong { color: var(--white); font-weight: 500; }
.hero-info-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 80px;
  right: var(--s4);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────────
   WAVE / DIAGONAL DIVIDERS
   ───────────────────────────────────────────────── */
.wave-divider {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* Divisore diagonale (clip-path) */
.diagonal-top    { clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); margin-top: -6vw; padding-top: 6vw; }
.diagonal-bottom { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); margin-bottom: -6vw; padding-bottom: 6vw; }

/* ─────────────────────────────────────────────────
   FEATURES BAR
   ───────────────────────────────────────────────── */
.features {
  background: var(--bordeaux-dark);
  padding: var(--s4) 0;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.features-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.feature-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s4);
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: saturate(1.4);
}
.feature-label { font-size: 0.95rem; font-weight: 600; color: var(--white); display: block; }
.feature-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.45); display: block; margin-top: 1px; }

@media (max-width: 820px) {
  .features-row { display: grid; grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 480px) {
  .features-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────
   CHI SIAMO (About)
   ───────────────────────────────────────────────── */
.about {
  padding: var(--s7) 0;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
/* Elemento decorativo di sfondo */
.about::before {
  content: '"';
  position: absolute;
  top: var(--s4);
  right: -20px;
  font-family: var(--display);
  font-size: clamp(180px, 25vw, 320px);
  color: var(--parchment-deep);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--s7);
  align-items: center;
  position: relative;
}

.about-visual { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r3);
  filter: sepia(0.12) saturate(1.1);
  box-shadow: var(--sh-lg);
}
/* Badge decorativo in basso a destra */
.about-badge {
  position: absolute;
  bottom: -var(--s3);
  right: -var(--s4);
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r3);
  padding: var(--s3) var(--s4);
  text-align: center;
  box-shadow: var(--sh-bordeaux);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.about-badge:hover { transform: rotate(0deg) scale(1.04); }
.about-badge-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-badge-txt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

.about-content { position: relative; }

.about-pull {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: var(--s4);
  padding-left: var(--s4);
  border-left: 3px solid var(--bordeaux);
}

.about-text {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: var(--s4);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.about-chip {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding: 0.5rem var(--s2);
  background: var(--parchment-deep);
  border-radius: var(--r2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.about-chip:hover { background: var(--white); border-color: var(--gold); }
.about-chip-icon { font-size: 1.1rem; }

@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .about-photo  { aspect-ratio: 16/10; }
  .about-badge  { right: 0; bottom: -var(--s2); }
}

/* ─────────────────────────────────────────────────
   SPECIALITÀ — Layout editoriale
   ───────────────────────────────────────────────── */
.specialita { background: var(--ink); color: var(--white); padding: var(--s7) 0; }
.specialita .eyebrow  { color: var(--gold-light); }
.specialita .eyebrow::before, .specialita .eyebrow::after { background: var(--gold-light); }

.spec-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s3);
}
.spec-card {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.spec-card--feature { grid-row: span 2; }

.spec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: sepia(0.1) saturate(1.1) brightness(0.65);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.spec-card:hover .spec-img { filter: sepia(0) saturate(1.2) brightness(0.7); transform: scale(1.04); }

.spec-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.spec-card--feature .spec-img-wrap { aspect-ratio: unset; height: 100%; min-height: 380px; }

.spec-body {
  position: relative;
  z-index: 2;
  padding: var(--s4);
  background: linear-gradient(to top, rgba(28,16,8,0.95) 0%, rgba(28,16,8,0.4) 50%, transparent 100%);
  margin-top: auto;
  /* stacked layout */
}
.spec-card--feature { display: flex; flex-direction: column; }
.spec-card--feature .spec-body { flex: 0; }

.spec-num {
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: var(--s2);
  right: var(--s3);
  pointer-events: none;
  user-select: none;
}
.spec-tag  { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: var(--s1); display: block; }
.spec-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.spec-card--feature .spec-name { font-size: 1.8rem; }
.spec-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; line-height: 1.6; }

@media (max-width: 900px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-card--feature { grid-row: span 1; grid-column: span 2; }
  .spec-card--feature .spec-img-wrap { min-height: 260px; }
}
@media (max-width: 560px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-card--feature { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────
   PROMO BANNER — Stile "sigillo artigianale"
   ───────────────────────────────────────────────── */
.promo {
  padding: var(--s7) 0;
  background: var(--olive);
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(184,132,26,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.promo-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s5);
  position: relative;
}

/* Badge circolare con il 10% */
.promo-seal {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-gold), inset 0 0 0 6px rgba(255,255,255,0.1);
  flex-shrink: 0;
  position: relative;
  transform: rotate(-6deg);
}
.promo-seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.3);
}
.promo-seal-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.promo-seal-txt {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.promo-text { color: var(--white); }
.promo-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--s2);
}
.promo-text h2 em { font-style: italic; color: var(--gold-light); }
.promo-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; max-width: 420px; }

.promo-cta { display: flex; flex-direction: column; gap: var(--s2); flex-shrink: 0; }

@media (max-width: 820px) {
  .promo-layout { grid-template-columns: auto 1fr; }
  .promo-cta { grid-column: span 2; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .promo-layout { grid-template-columns: 1fr; }
  .promo-seal { margin: 0 auto; }
  .promo-cta { grid-column: 1; }
}

/* ─────────────────────────────────────────────────
   CONTATTI & MAPPA
   ───────────────────────────────────────────────── */
.contacts { padding: var(--s7) 0; background: var(--parchment); }

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s5);
  align-items: start;
}
.map-frame {
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--sh-md);
  height: 440px;
  border: 4px solid var(--parchment-deep);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-panel {
  background: var(--white);
  border-radius: var(--r3);
  padding: var(--s5);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--parchment-deep);
}
.contact-panel-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.contact-list { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s4); }
.contact-row { display: flex; gap: var(--s2); align-items: flex-start; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail { line-height: 1.6; }
.contact-detail strong { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 2px; }
.contact-detail a:hover { color: var(--bordeaux); }

.orari {
  background: var(--parchment);
  border-radius: var(--r2);
  padding: var(--s3);
  margin-bottom: var(--s4);
}
.orari-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: var(--s2); }
.orari-row { display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px solid var(--parchment-deep); font-size: 0.9rem; }
.orari-row:last-child { border-bottom: none; }
.orari-row strong { color: var(--ink); }
.orari-row span { color: var(--ink-mid); }
.contact-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }

@media (max-width: 900px) {
  .contacts-layout { grid-template-columns: 1fr !important; }
  .map-frame { height: 320px; }
}

/* ─────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: var(--s7) 0 var(--s4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: var(--s6);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--s4);
}
.footer-logo-img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
  margin-bottom: var(--s3);
}
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: var(--s3); max-width: 280px; }
.footer-socials { display: flex; gap: var(--s2); }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--bordeaux); color: var(--white); }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: var(--s2);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; transition: color 0.18s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links button { color: inherit; font-size: 0.88rem; transition: color 0.18s; text-align: left; }
.footer-links button:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
  font-size: 0.78rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────
   MENU PAGE — Nav sempre visibile
   ───────────────────────────────────────────────── */
.nav--opaque {
  position: sticky;
  background: rgba(250,245,232,0.97) !important; /* parchment quasi opaco */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(28,16,8,0.1);
}
/* Sul nav crema, i link diventano scuri */
.nav--opaque .nav-links a { color: var(--ink-mid); }
.nav--opaque .nav-links a:hover { color: var(--bordeaux); }
.nav--opaque .nav-links a.active { color: var(--bordeaux); }
.nav--opaque .nav-links a::after { background: var(--bordeaux); }
.nav--opaque .nav-burger span { background: var(--ink); }
/* Su mobile il menu aperto ha sfondo scuro — link sempre bianchi */
@media (max-width: 820px) {
  .nav--opaque .nav-links a { color: var(--white); }
  .nav--opaque .nav-links a:hover,
  .nav--opaque .nav-links a.active { color: var(--gold-light); }
}

/* ─────────────────────────────────────────────────
   MENU PAGE — Category Tabs
   ───────────────────────────────────────────────── */
.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--parchment-deep);
  box-shadow: 0 2px 12px rgba(28,16,8,0.06);
}
.cat-tabs {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--s3);
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: var(--s2) var(--s3);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-light);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cat-tab:hover  { color: var(--bordeaux); }
.cat-tab.active { color: var(--bordeaux); border-bottom-color: var(--bordeaux); font-weight: 600; }

/* ─────────────────────────────────────────────────
   MENU PAGE — Dish Cards
   ───────────────────────────────────────────────── */
.menu-body {
  background: var(--parchment);
  padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) { .menu-body { padding-bottom: 0; } }

.menu-section {
  padding: var(--s6) 0 var(--s2);
}

.menu-section-header {
  margin-bottom: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.menu-cat-label {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.menu-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bordeaux);
  opacity: 0.2;
}
.menu-section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.menu-section-icon { font-size: 1.6rem; }

/* Griglia piatti */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--parchment-deep);
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--parchment-deep);
}

.dish-card {
  background: var(--white);
  padding: var(--s3) var(--s4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background 0.18s;
}
.dish-card:hover { background: var(--parchment); }

.dish-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s3);
}
.dish-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  font-style: italic;
}
.dish-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bordeaux);
  flex-shrink: 0;
  white-space: nowrap;
}
.dish-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.55;
}
.dish-tags { display: flex; gap: var(--s1); flex-wrap: wrap; margin-top: 0.2rem; }
.dish-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: var(--rp);
  background: var(--parchment-deep);
  color: var(--ink-mid);
}
.dish-tag--popular { background: #FCE8E8; color: #8B1A1A; }
.dish-tag--new     { background: #E8F4E8; color: #1A5C1A; }
.dish-tag--sign    { background: var(--gold-pale); color: #6B4A00; }

/* Strip scarica PDF */
.pdf-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r3);
  padding: var(--s3) var(--s4);
  margin: var(--s5) 0;
}
.pdf-strip-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.pdf-strip-btns { display: flex; gap: var(--s2); flex-shrink: 0; }
@media (max-width: 560px) {
  .pdf-strip { flex-direction: column; text-align: center; }
  .pdf-strip-btns { justify-content: center; }
}

/* Slot pubblicitario — nascosto finché AdSense non è attivo */
.ad-slot { display: none; }

/* Categoria "Special banner" dentro il menu */
.menu-category-feature {
  background: linear-gradient(135deg, var(--olive) 0%, var(--bordeaux-dark) 100%);
  border-radius: var(--r3);
  padding: var(--s3) var(--s4);
  color: var(--white);
  margin-bottom: var(--s3);
  font-size: 0.9rem;
}
.menu-category-feature strong { display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.menu-category-feature p { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────
   STICKY ORDER BAR (solo mobile)
   ───────────────────────────────────────────────── */
.order-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(28,16,8,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: var(--s2) var(--s3) calc(var(--s2) + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: var(--s2);
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.order-bar .btn { flex: 1; max-width: 220px; }
@media (min-width: 900px) { .order-bar { display: none; } }

/* ─────────────────────────────────────────────────
   FIX GLORIAFOOD iOS — pulsante X sempre visibile
   ───────────────────────────────────────────────── */
.glf-close,
.glf-btn-close,
[class*="glf"][class*="close"],
[class*="glf"][class*="Close"],
[id*="glf-close"] {
  position: fixed !important;
  top: max(16px, env(safe-area-inset-top, 20px)) !important;
  right: max(16px, env(safe-area-inset-right, 16px)) !important;
  z-index: 2147483647 !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
[class*="glf"] iframe,
[id*="glf"] iframe {
  max-height: 100dvh !important;
  max-height: -webkit-fill-available !important;
}

/* ─────────────────────────────────────────────────
   ANIMAZIONI SCROLL
   ───────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
/* Stagger sui figli */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────────
   ABOUT BADGE — fix posizionamento mobile
   Il badge non deve uscire dal contenitore su schermi piccoli
   ───────────────────────────────────────────────── */
@media (max-width: 820px) {
  .about-badge {
    position: absolute;
    bottom: var(--s2) !important;
    right: var(--s2) !important;
    transform: rotate(-2deg);
    /* rimane dentro il box immagine */
    max-width: 120px;
  }
  .about-badge-num { font-size: 2rem; }
  .about-badge-txt { font-size: 0.62rem; }
}

/* ─────────────────────────────────────────────────
   PULSANTE THEFORK — brand identity
   Color: #00848A (teal TheFork ufficiale)
   ───────────────────────────────────────────────── */
.btn-thefork {
  background: #00848A;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,132,138,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rp);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-thefork:hover {
  background: #006A6F;
  box-shadow: 0 6px 22px rgba(0,132,138,0.45);
  transform: translateY(-1px);
  color: #ffffff;
}
.btn-thefork:active { transform: scale(0.97); }
/* Logotipo testuale TheFork inline */
.btn-thefork-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   PULSANTE GLOVO — brand identity
   Color: #FFC244 (giallo Glovo ufficiale)
   ───────────────────────────────────────────────── */
.btn-glovo {
  background: #FFC244;
  color: #1C1008;
  box-shadow: 0 4px 16px rgba(255,194,68,0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rp);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-glovo:hover {
  background: #E6A800;
  box-shadow: 0 6px 22px rgba(255,194,68,0.55);
  transform: translateY(-1px);
  color: #1C1008;
}
.btn-glovo:active { transform: scale(0.97); }

/* ─────────────────────────────────────────────────
   ACCORDION MENU
   Design: header colorato per categoria,
   body animato max-height, ottimizzato mobile
   ───────────────────────────────────────────────── */

/* Wrapper accordion */
.acc-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Singolo item accordion */
.acc-item {
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--parchment-deep);
  transition: box-shadow 0.2s;
}
.acc-item.open {
  box-shadow: var(--sh-md);
  border-color: transparent;
}

/* Header cliccabile */
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 0 var(--s3);
  min-height: 64px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  border: none;
  font: inherit;
  transition: background 0.18s;
  position: relative;
  border-left: 4px solid transparent;
  border-radius: 0; /* già gestito dal padre */
}
.acc-header:hover  { background: var(--parchment); }
.acc-item.open .acc-header {
  background: var(--parchment);
}

/* Icona categoria */
.acc-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  filter: saturate(1.2);
}

/* Info centrali */
.acc-info { flex: 1; min-width: 0; }
.acc-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.acc-meta {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-top: 2px;
  flex-wrap: wrap;
}
.acc-count {
  font-size: 0.72rem;
  color: var(--ink-light);
}
.acc-price-range {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bordeaux);
  opacity: 0.75;
}

/* Freccia animata */
.acc-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--parchment-deep);
  color: var(--ink-light);
  font-size: 0.75rem;
  transition: transform 0.3s ease, background 0.2s, color 0.2s;
}
.acc-item.open .acc-arrow {
  transform: rotate(180deg);
  background: var(--bordeaux);
  color: var(--white);
}

/* Body accordion — animato */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lista piatti dentro accordion */
.acc-dishes {
  border-top: 1px solid var(--parchment-deep);
}

/* Singola riga piatto */
.acc-dish {
  display: flex;
  flex-direction: column;
  padding: var(--s2) var(--s3) var(--s2) calc(var(--s3) + 4px); /* 4px = border-left width */
  border-bottom: 1px solid var(--parchment-deep);
  gap: 3px;
  transition: background 0.15s;
}
.acc-dish:last-child { border-bottom: none; }
.acc-dish:hover { background: var(--parchment); }

.acc-dish-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s2);
}
.acc-dish-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}
.acc-dish-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bordeaux);
  flex-shrink: 0;
  white-space: nowrap;
}
.acc-dish-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.acc-dish-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.acc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--rp);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.acc-tag--sign    { background: var(--gold-pale); color: #6B4500; }
.acc-tag--popular { background: #FCE8E8; color: #8B1A1A; }
.acc-tag--new     { background: #E3F5E3; color: #1A5C1A; }
.acc-tag--veg     { background: #E8F5E3; color: #2A5C1A; }

/* Note legali/allergeni al fondo sezione */
.acc-footer-note {
  padding: var(--s2) var(--s3);
  font-size: 0.75rem;
  color: var(--ink-light);
  background: var(--parchment);
  border-top: 1px solid var(--parchment-deep);
  font-style: italic;
}

/* Sottocategorie accordion */
.acc-subcat-label {
  padding: 0.75rem var(--s3) 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--parchment-deep);
}

/* Colori per categoria (border-left) */
.acc-item[data-cat="antipasti"]   .acc-header { border-left-color: #4A90A4; }
.acc-item[data-cat="couscous"]    .acc-header { border-left-color: #B8841A; }
.acc-item[data-cat="busiata"]     .acc-header { border-left-color: #C04030; }
.acc-item[data-cat="paella"]      .acc-header { border-left-color: #D4A030; }
.acc-item[data-cat="secondi"]     .acc-header { border-left-color: #3A7A5A; }
.acc-item[data-cat="contorni"]    .acc-header { border-left-color: #6AAF45; }
.acc-item[data-cat="pizzeria"]    .acc-header { border-left-color: #C04030; }
.acc-item[data-cat="dessert"]     .acc-header { border-left-color: #9A4090; }
.acc-item[data-cat="bevande"]     .acc-header { border-left-color: #4A7AB8; }
.acc-item[data-cat="vini"]        .acc-header { border-left-color: #7A1C35; }
.acc-item[data-cat="cocktails"]   .acc-header { border-left-color: #E84A6A; }

/* Piccolo dot colorato a fianco del nome nel menu fisso/speciale */
.acc-special-header {
  background: linear-gradient(135deg, var(--olive), var(--bordeaux-dark)) !important;
  color: var(--white);
}
.acc-special-header .acc-name { color: var(--white) !important; }
.acc-special-header .acc-count, .acc-special-header .acc-price-range { color: rgba(255,255,255,0.6) !important; }
.acc-special-header .acc-arrow { background: rgba(255,255,255,0.15) !important; color: var(--white) !important; }

/* ─────────────────────────────────────────────────
   PIZZERIA — dishes grid
   ───────────────────────────────────────────────── */
.pizza-dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
@media (max-width: 900px) {
  .pizza-dishes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pizza-dishes-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE GRID HELPERS
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .responsive-grid-1 {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE HELPERS
   ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .btn { padding: 0.7rem 1.4rem; }
  .hero-headline .line-sm { letter-spacing: 0.03em; }
  .acc-name { font-size: 1rem; }
  .acc-dish-name { font-size: 0.95rem; }
}
