/* ═══════════════════════════════════════════════════
   MANGIARE ROSTICCERIA — v5
   Light Italian theme, tricolore accents
   ═══════════════════════════════════════════════════ */

:root {
  /* Italian flag */
  --verde:       #1a6b3c;
  --verde-light: #2d8a54;
  --verde-pale:  #e8f5ec;
  --bianco:      #ffffff;
  --rosso:       #c8102e;
  --rosso-light: #e04050;
  --rosso-pale:  #fde8ec;

  /* Warm neutrals */
  --cream:       #faf6f0;
  --cream-dark:  #f2ece2;
  --parchment:   #f7f3ec;
  --warm-100:    #f0e6d6;
  --warm-200:    #e0d2bc;
  --warm-300:    #c4aa82;
  --warm-400:    #a68a5b;
  --warm-500:    #8b6f42;
  --warm-600:    #6e5530;

  /* Text */
  --text-dark:   #2c2420;
  --text-body:   #504840;
  --text-muted:  #8a7e74;
  --text-light:  #b0a498;

  /* Fonts */
  --serif:   'Playfair Display', Georgia, serif;
  --body:    'Raleway', 'Segoe UI', sans-serif;
  --script:  'Great Vibes', cursive;
  --reading: 'Libre Baskerville', Georgia, serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --fast:   .3s var(--ease);
  --medium: .5s var(--ease);
  --slow:   .7s var(--ease);
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

em { font-style: italic; color: var(--verde); }


/* ══════════════════════════════════════
   SHARED
   ══════════════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--verde-light);
  line-height: 1.2;
}

.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 400;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.section-ornament span {
  width: 40px; height: 1px;
  background: var(--warm-200);
}

.section-ornament i {
  font-size: .7rem;
  color: var(--verde);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--fast);
}

.btn-primary {
  background: var(--verde);
  color: var(--bianco);
  border: 2px solid var(--verde);
}
.btn-primary:hover {
  background: var(--verde-light);
  border-color: var(--verde-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,107,60,.25);
}

.btn-outline {
  background: transparent;
  color: var(--bianco);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--bianco);
  color: var(--text-dark);
  border-color: var(--bianco);
  transform: translateY(-2px);
}

/* Reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════
   TRICOLORE BAR
   ══════════════════════════════════════ */
.tricolore {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 4px;
  display: flex;
  z-index: 1001;
}
.tri-green { flex: 1; background: var(--verde); }
.tri-white { flex: 1; background: var(--bianco); }
.tri-red   { flex: 1; background: var(--rosso); }


/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: fixed;
  top: 4px; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--fast);
}

.header.scrolled {
  background: rgba(250,246,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(44,36,32,.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 46px; width: auto;
  transition: height var(--fast);
}
.header.scrolled .header-logo img { height: 36px; }

.header-nav { display: flex; gap: 36px; }

.header-link {
  font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 4px 0;
  position: relative;
  transition: color var(--fast);
}

.header.scrolled .header-link {
  color: var(--text-muted);
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--verde);
  transition: width var(--fast);
}

.header-link:hover,
.header-link.active { color: var(--bianco); }

.header.scrolled .header-link:hover,
.header.scrolled .header-link.active { color: var(--text-dark); }

.header-link:hover::after,
.header-link.active::after { width: 100%; }

.header-cta {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bianco);
  background: var(--verde);
  padding: 10px 22px;
  border-radius: 4px;
  transition: all var(--fast);
}
.header-cta i { margin-right: 6px; }
.header-cta:hover {
  background: var(--verde-light);
  transform: translateY(-1px);
}

.header-burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.header-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--bianco);
  border-radius: 1px;
  transition: all var(--fast);
}
.header.scrolled .header-burger span { background: var(--text-dark); }
.header-burger.active span:nth-child(1){transform:rotate(45deg) translate(5px,4px)}
.header-burger.active span:nth-child(2){opacity:0}
.header-burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-4px)}


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(44,36,32,.5) 0%,
      rgba(44,36,32,.3) 40%,
      rgba(44,36,32,.5) 75%,
      rgba(44,36,32,.7) 100%);
}

/* Hero logo watermark */
.hero-logo-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2vw;
  pointer-events: none;
}

.hero-logo-watermark img {
  width: min(45vw, 420px);
  height: auto;
  opacity: .35;
  filter: brightness(2) grayscale(.3);
  animation: heroLogoIn 1.8s var(--ease) both;
}

@keyframes heroLogoIn {
  0%   { opacity: 0; transform: scale(.85); }
  100% { opacity: .35; transform: scale(1); }
}

.hero-body {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-eyebrow {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--bianco);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-script {
  display: block;
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--warm-100);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-ornament span {
  width: 40px; height: 1px;
  background: rgba(255,255,255,.35);
}
.hero-ornament i {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}

.hero-sub {
  font-family: var(--reading);
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════
   DESTAQUES
   ══════════════════════════════════════ */
.tradizione {
  padding: 100px 0;
  background: var(--cream);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: var(--bianco);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,36,32,.06);
  transition: transform var(--fast), box-shadow var(--fast);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(44,36,32,.1);
}

.pillar-img {
  position: relative;
  overflow: hidden;
}

.pillar-img img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform var(--medium);
}

.pillar:hover .pillar-img img {
  transform: scale(1.05);
}

/* Mini flag ribbon */
.pillar-flag {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.pillar-flag span {
  width: 10px; height: 22px;
}
.pf-g { background: var(--verde); }
.pf-w { background: var(--bianco); }
.pf-r { background: var(--rosso); }

.pillar-body {
  padding: 28px 24px;
}

.pillar-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pillar-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ══════════════════════════════════════
   VETRINA — HORIZONTAL GALLERY
   ══════════════════════════════════════ */
.vetrina {
  padding: 90px 0 80px;
  background: var(--bianco);
}

.vetrina-track {
  display: flex;
  gap: 18px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}
.vetrina-track::-webkit-scrollbar { display: none; }
.vetrina-track:active { cursor: grabbing; }

.vetrina-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.vetrina-item img {
  width: 100%; height: 380px;
  object-fit: cover;
  transition: transform var(--medium);
}

.vetrina-item:hover img {
  transform: scale(1.05);
}

.vetrina-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(44,36,32,.8) 0%, transparent 100%);
}

.vetrina-label span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-100);
  display: block;
  margin-bottom: 4px;
}

.vetrina-label h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bianco);
}


/* ══════════════════════════════════════
   CITAZIONE — QUOTE
   ══════════════════════════════════════ */
.citazione {
  padding: 80px 0;
  background: var(--verde-pale);
}

.citazione-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.citazione-deco {
  color: var(--verde);
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: .4;
}

.citazione blockquote {
  font-family: var(--reading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.citazione-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.citazione-ornament span {
  width: 30px; height: 1px;
  background: var(--verde);
  opacity: .3;
}
.citazione-ornament i {
  font-size: .65rem;
  color: var(--verde);
  opacity: .5;
}


/* ══════════════════════════════════════
   CARDÁPIO — TILES
   ══════════════════════════════════════ */
.cardapio {
  padding: 100px 0;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.menu-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  aspect-ratio: 1/1;
}

.menu-tile--large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.menu-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--medium);
}

.menu-tile:hover img {
  transform: scale(1.07);
}

.menu-tile-info {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(44,36,32,.7) 0%, rgba(44,36,32,.05) 50%, transparent 100%);
  transition: background var(--fast);
}

.menu-tile:hover .menu-tile-info {
  background: linear-gradient(to top, rgba(44,36,32,.8) 0%, rgba(44,36,32,.15) 60%, transparent 100%);
}

.menu-tile-info span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-100);
  margin-bottom: 4px;
}

.menu-tile-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bianco);
}

.menu-tile--vegan .menu-tile-info span { color: #a5d6a7; }
.menu-tile--vegan .menu-tile-info h3 { color: #c8e6c9; }

/* button reset for menu tiles */
button.menu-tile {
  font-family: inherit;
  text-align: left;
  color: inherit;
  border: none;
  padding: 0;
}


/* ══════════════════════════════════════
   MENU MODAL
   ══════════════════════════════════════ */
.menu-modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fast), visibility var(--fast);
}

.menu-modal.open {
  opacity: 1;
  visibility: visible;
}

.menu-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(44,36,32,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.menu-modal-content {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 12px;
  max-width: 860px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(44,36,32,.3);
  transform: translateY(30px);
  transition: transform var(--fast);
}

.menu-modal.open .menu-modal-content {
  transform: translateY(0);
}

.menu-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--warm-100);
}

.menu-modal-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-modal-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--fast);
}

.menu-modal-close:hover {
  background: var(--warm-100);
  color: var(--text-dark);
}

.menu-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-modal-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1/1;
  transition: transform var(--fast), box-shadow var(--fast);
}

.menu-modal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,36,32,.15);
}

.menu-modal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--medium);
}

.menu-modal-item:hover img {
  transform: scale(1.05);
}

.menu-modal-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(44,36,32,.75) 0%, transparent 100%);
}

.menu-modal-item-label span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bianco);
}


/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(20,16,14,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fast), visibility var(--fast);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: opacity .3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.3rem;
  border-radius: 50%;
  transition: all var(--fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,.1);
  color: var(--bianco);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all var(--fast);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,.1);
  color: var(--bianco);
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  text-align: center;
}


/* ══════════════════════════════════════
   STORIA — ABOUT SPLIT
   ══════════════════════════════════════ */
.storia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--bianco);
  scroll-margin-top: 65px;
}

.storia-img {
  position: relative;
  overflow: hidden;
}

.storia-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.storia-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.storia-body h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.storia-divider {
  width: 40px; height: 3px;
  background: var(--verde);
  border-radius: 2px;
  margin: 18px 0 24px;
}

.storia-body p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.storia-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-100);
}

.storia-sign img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.storia-sign strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}

.storia-sign span {
  font-size: .78rem;
  color: var(--text-muted);
}


/* ══════════════════════════════════════
   CONTATO
   ══════════════════════════════════════ */
.contato {
  padding: 100px 0;
  background: var(--cream);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--bianco);
  border-radius: 8px;
  border: 1px solid var(--warm-100);
  transition: border-color var(--fast), box-shadow var(--fast);
}

.contato-card:hover {
  border-color: var(--verde);
  box-shadow: 0 4px 16px rgba(26,107,60,.08);
}

.contato-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--verde-pale);
  color: var(--verde);
  font-size: .95rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.contato-card h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contato-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contato-card p a { color: var(--text-muted); transition: color var(--fast); }
.contato-card p a:hover { color: var(--verde); }

.contato-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 2px 16px rgba(44,36,32,.08);
}

.contato-map iframe {
  display: block; width: 100%; height: 100%;
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: var(--warm-200);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand img {
  height: 46px; width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex; gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: var(--warm-200);
  font-size: .85rem;
  transition: all var(--fast);
}

.footer-social a:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--bianco);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bianco);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--verde);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .85rem;
  color: var(--text-light);
  transition: all var(--fast);
}

.footer-col ul li a:hover {
  color: var(--verde-light);
  padding-left: 4px;
}

.footer-info li {
  display: flex; gap: 10px;
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-info li i {
  color: var(--verde-light);
  font-size: .78rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Footer tricolore strip */
.footer-tricolore {
  display: flex;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.footer-tricolore span:nth-child(1) { flex: 1; background: var(--verde); }
.footer-tricolore span:nth-child(2) { flex: 1; background: var(--bianco); }
.footer-tricolore span:nth-child(3) { flex: 1; background: var(--rosso); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .78rem;
  color: var(--text-light);
}

.footer-bottom .fa-heart {
  color: var(--rosso);
  font-size: .68rem;
}


/* ══════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--bianco);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  z-index: 999;
  transition: all var(--fast);
}
.wpp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

.to-top {
  position: fixed;
  bottom: 28px; right: 92px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--verde);
  color: var(--bianco);
  font-size: .85rem;
  border-radius: 8px;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--fast);
}
.to-top.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--verde-light);
  transform: translateY(-3px);
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-modal-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-heading { font-size: 3.5rem; }
  .section-title { font-size: 2.2rem; }
  .pillars { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-tile--large { grid-column: span 1; aspect-ratio: 1/1; }
  .storia-body { padding: 60px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header — logo maior no hero */
  .header-logo img { height: 64px; }
  .header.scrolled .header-logo img { height: 36px; }

  /* Header */
  .header-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 36px 40px;
    gap: 0;
    transition: right var(--fast);
    box-shadow: -4px 0 30px rgba(44,36,32,.1);
  }
  .header-nav.open { right: 0; }
  .header-link {
    display: block;
    padding: 16px 0;
    font-size: .9rem;
    color: var(--text-body) !important;
    border-bottom: 1px solid var(--warm-100);
  }
  .header-burger { display: flex; }
  .header-cta { display: none; }

  /* Hero */
  .hero-logo-watermark { display: none; }
  .hero-heading { font-size: 2.6rem; }
  .hero-script { font-size: 1.2rem; }
  .hero-scroll-hint { display: none; }

  /* Sections */
  .tradizione { padding: 70px 0; }
  .section-title { font-size: 2rem; }

  /* Vetrina */
  .vetrina { padding: 70px 0; }
  .vetrina-item { flex: 0 0 260px; }
  .vetrina-item img { height: 320px; }

  /* Citazione */
  .citazione blockquote { font-size: 1.2rem; }

  /* Menu */
  .cardapio { padding: 70px 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-tile--large { grid-column: span 2; aspect-ratio: 2/1; }
  .menu-modal-content { padding: 24px; }
  .menu-modal-title { font-size: 1.4rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  /* Storia */
  .storia { grid-template-columns: 1fr; }
  .storia-img { min-height: 50vh; }
  .storia-body { padding: 60px 24px; }
  .storia-body h2 { font-size: 2rem; }

  /* Contato */
  .contato { padding: 70px 0; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-map { min-height: 320px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Floating */
  .wpp-float { bottom: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.3rem; }
  .to-top { bottom: 20px; right: 76px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .hero-sub { font-size: .88rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tile--large { grid-column: span 1; aspect-ratio: 16/9; }
  .menu-tile { aspect-ratio: 16/9; }
}
