/* ═══════════════════════════════════════════════════════
   LA BELLA NAPOLI — Pizzeria Artigianale
   Design System — Sharp Edition
═══════════════════════════════════════════════════════ */

:root {
  --bg-dark:    #0d0c0a;
  --bg-section: #f9f6f1;
  --bg-card:    #ffffff;
  --primary:    #c93427;
  --primary-h:  #a82820;
  --gold:       #c9a96e;
  --gold-light: #e8cc9b;
  --text-dark:  #1a1815;
  --text-mid:   #5a5550;
  --text-light: #9a948e;
  --white:      #ffffff;
  --cream:      #fdf9f4;
  --border:     #ede8e0;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.14);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-sans); font-size: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ══════════════════════════════════════════════
   BUTTONS — sharp
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s var(--ease-spring), transform .4s var(--ease-spring);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-h);
  transform: translateX(-101%);
  transition: transform .5s var(--ease-expo);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(201,52,39,.4);
  transform: translateY(-2px);
}
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease-spring), border-color .4s var(--ease-spring);
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform .5s var(--ease-expo);
}
.btn-outline:hover { color: var(--text-dark); border-color: var(--white); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline.light:hover { color: var(--text-dark); }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  position: relative;
}
.section-tag::before {
  content: '—';
  margin-right: 8px;
  opacity: .5;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: .01em;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--primary); font-weight: 400; }
.section-title.light em { color: var(--gold); }

.section-desc { margin-top: 16px; font-size: 1rem; color: var(--text-mid); max-width: 560px; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,.55); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 16px auto 0; }
.section-header::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  margin: 24px auto 0;
  transition: width 1s var(--ease-expo);
}
.section-header.revealed::after { width: 80px; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,12,10,.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.4);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { color: var(--gold); transition: transform .6s var(--ease-spring), filter .6s ease; flex-shrink: 0; }
.logo:hover .logo-icon { transform: rotate(-10deg) scale(1.08); filter: drop-shadow(0 4px 12px rgba(201,169,110,.5)); }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-link {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  transition: color .35s var(--ease-spring);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-expo);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: .78rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,12,10,.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: rgba(255,255,255,.85);
  transition: color .4s var(--ease-spring), letter-spacing .4s var(--ease-spring);
}
.mobile-link:hover { letter-spacing: .06em; }
.mobile-link:hover { color: var(--gold); }
.mobile-link.cta {
  margin-top: 8px;
  padding: 14px 36px;
  background: var(--primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: transform, opacity;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide.leaving { opacity: 0; transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,12,10,.2) 0%, rgba(13,12,10,.52) 50%, rgba(13,12,10,.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,.3);
  padding: 9px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,.12) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3.5s var(--ease-expo) 1.2s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
.badge-star { color: var(--gold); font-size: .6rem; opacity: .8; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: .01em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title .line { display: block; }
.hero-title .accent { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.9); font-style: italic; font-weight: 400; }

.hero-subtitle {
  font-size: clamp(.92rem, 1.8vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  margin-bottom: 44px;
  letter-spacing: .02em;
}

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

.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  animation: fadeUp .9s var(--ease-expo) forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .32s; }
.delay-3 { animation-delay: .52s; }
.delay-4 { animation-delay: .72s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.indicator {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.3);
  transition: background var(--transition), width var(--transition);
}
.indicator.active { width: 44px; background: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 44px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-wheel {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,.3);
  position: relative;
}
.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: rgba(255,255,255,.6);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  70%  { top: 16px; opacity: .2; }
  100% { top: 5px; opacity: 1; }
}

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 48px 0;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item { flex: 1; text-align: center; color: var(--white); padding: 0 24px; }
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-unit { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--gold); }
.stat-label {
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: var(--bg-section); padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visuals { position: relative; }
.about-img-main { overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.about-img-secondary {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 200px; height: 200px;
  overflow: hidden;
  border: 4px solid var(--bg-section);
  box-shadow: var(--shadow-md);
}
.about-badge-years {
  position: absolute;
  top: -24px; left: -24px;
  width: 110px; height: 110px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(201,52,39,.4);
}
.badge-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.badge-sub { font-size: .6rem; font-weight: 500; letter-spacing: .06em; text-align: center; text-transform: uppercase; opacity: .85; line-height: 1.5; }

.about-content { padding-right: 20px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; font-size: .97rem; }
.about-text.lead { font-size: 1.06rem; color: var(--text-dark); font-weight: 400; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0 36px; }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-left-color .4s var(--ease-spring), box-shadow .4s var(--ease-spring), transform .4s var(--ease-spring);
}
.feature:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.feature-ico {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .4s var(--ease-spring);
}
.feature:hover .feature-ico { transform: scale(1.15); }
.feature strong { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 3px; letter-spacing: .01em; }
.feature p { font-size: .76rem; color: var(--text-mid); line-height: 1.45; }

/* ══════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════ */
.menu-section {
  background: #0f0e0c;
  padding: 120px 0 100px;
}

/* ── Menu Navigation ── */
.menu-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 0;
  max-width: 700px;
  margin: 0 auto 0;
}
.mnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 32px 18px;
  gap: 3px;
  color: rgba(255,255,255,.35);
  border-bottom: 2px solid transparent;
  position: relative;
  bottom: -1px;
  transition: all var(--transition);
}
.mnav-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 8px 0;
  flex-shrink: 0;
}
.mnav-num {
  font-family: var(--font-serif);
  font-size: .7rem;
  font-style: italic;
  letter-spacing: .08em;
  color: rgba(255,255,255,.2);
  transition: color var(--transition);
}
.mnav-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mnav:hover { color: rgba(255,255,255,.7); }
.mnav:hover .mnav-num { color: rgba(255,255,255,.4); }
.mnav.active { color: var(--gold); border-bottom-color: var(--gold); }
.mnav.active .mnav-num { color: rgba(201,169,110,.5); }

/* ── Menu Book ── */
.menu-book {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: #131210;
  border: 1px solid rgba(201,169,110,.2);
  padding: clamp(32px, 5vw, 72px);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  margin-top: 0;
}

/* Corner ornaments */
.corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .5;
}
.corner.tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.corner.tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
.corner.bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
.corner.br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

/* ── Panel ── */
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panelIn .65s var(--ease-expo) forwards; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
  padding-top: 4px;
}
.panel-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,.4), transparent);
}
.panel-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.panel-num {
  font-family: var(--font-serif);
  font-size: .85rem;
  font-style: italic;
  color: var(--gold);
  opacity: .6;
  letter-spacing: .04em;
}
.panel-header h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.panel-note {
  text-align: center;
  font-size: .76rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ── Menu Items Grid ── */
.menu-items-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 0;
}

.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.menu-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.menu-item:hover .mi-name { color: var(--gold-light); }

.mi-header {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 7px;
}
.mi-name {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: #f0ece4;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .4s var(--ease-spring);
}
.mi-dots {
  flex: 1;
  min-width: 20px;
  margin: 0 10px;
  border-bottom: 1px dotted rgba(255,255,255,.18);
  position: relative;
  top: -4px;
}
.mi-price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.mi-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 9px;
}
.mi-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mtag {
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
}
.mtag.veg  { border-color: rgba(74,140,92,.6); color: #7dc896; }
.mtag.best { border-color: rgba(201,169,110,.5); color: var(--gold); }
.mtag.spicy { border-color: rgba(201,52,39,.5); color: #e07067; }
.mtag.prem { border-color: rgba(201,169,110,.4); color: var(--gold-light); }

.panel-footer-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
  text-align: center;
  font-style: italic;
}

.menu-allergen {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
}
.menu-allergen svg { color: rgba(255,255,255,.25); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FORNO BANNER
══════════════════════════════════════════════ */
.forno-section {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
}
.forno-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.forno-section:hover .forno-bg { transform: scale(1); }
.forno-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13,12,10,.5), rgba(13,12,10,.72));
}
.forno-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
}
.forno-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 12px 0 20px;
  letter-spacing: .01em;
}
.forno-content h2 em { color: var(--gold); font-style: italic; }
.forno-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery-section { background: var(--bg-section); padding: 120px 0 0; }
.gallery-section .container { margin-bottom: 52px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 3px;
}
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item img { transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.g-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.g-item:hover .g-overlay { background: rgba(13,12,10,.45); }
.g-item:hover .g-overlay span { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section { background: var(--cream); padding: 120px 0; }

.testi-wrapper { overflow: hidden; margin: 0 -12px; }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  flex: 0 0 calc(50% - 24px);
  margin: 0 12px;
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}
.testi-stars { color: var(--gold); font-size: .95rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card > p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; }
.testi-author span { font-size: .75rem; color: var(--text-light); }

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testi-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.testi-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.testi-dots { display: flex; gap: 6px; }
.dot { width: 8px; height: 2px; background: var(--border); transition: all var(--transition); }
.dot.active { background: var(--primary); width: 24px; }

/* ══════════════════════════════════════════════
   RESERVATION
══════════════════════════════════════════════ */
.reservation-section { background: var(--bg-dark); padding: 120px 0; }
.reservation-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.res-info { color: var(--white); }
.res-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 8px 0 36px;
}
.res-info h2 em { font-style: italic; color: var(--gold); }

.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.contact-row strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-row p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.contact-row a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.contact-row a:hover { color: var(--gold); }

.res-form {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-section);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,52,39,.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.btn-primary.w-full { width: 100%; justify-content: center; padding: 16px; font-size: .88rem; letter-spacing: .1em; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: #080807; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px clamp(20px,5vw,60px) 60px;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 24px; }
.logo-light .logo-icon { color: var(--gold); }
.logo-light .logo-text { color: var(--white); }

.social-row { display: flex; gap: 8px; }
.soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.soc:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: .83rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold); }
.hours li { font-size: .83rem; color: rgba(255,255,255,.4); }
.hours .hours-time { color: rgba(255,255,255,.25); font-size: .78rem; padding-left: 8px; }
.hours .mt { margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px clamp(20px,5vw,60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-credit {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo), filter .8s ease;
  filter: blur(4px);
}
.reveal-up    { transform: translateY(48px); }
.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-fade  { transform: translateY(16px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-fade.revealed { opacity: 1; transform: none; filter: blur(0); }

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .32s !important; }
.delay-4 { transition-delay: .46s !important; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .menu-items-cols { column-gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid, .reservation-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visuals { max-width: 560px; margin: 0 auto; }
  .about-img-secondary { right: -16px; bottom: -16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.g-tall { grid-row: span 1; }
  .g-item.g-wide { grid-column: span 1; }
  .testi-card { flex: 0 0 calc(100% - 24px); }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; padding: 12px; }
  .stat-sep { display: none; }
  .menu-items-cols { grid-template-columns: 1fr; }
  .menu-nav { max-width: 100%; }
  .mnav { padding: 12px 16px 16px; }
  .mnav-label { font-size: .66rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4.5rem); }
  .scroll-hint { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item { height: 250px; }
  .menu-book { padding: 28px 20px; }
  .mnav-divider { display: none; }
  .menu-nav { gap: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .res-form { padding: 20px; }
  .about-img-secondary { display: none; }
  .panel-header h3 { font-size: .82rem; letter-spacing: .12em; }
}

/* ══════════════════════════════════════════════
   MENU CTA SECTION (homepage)
══════════════════════════════════════════════ */
.menu-cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.menu-cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.menu-cta-inner .section-title {
  color: var(--white);
  margin-bottom: 18px;
}
.menu-cta-inner .section-title em {
  color: var(--gold);
}
.menu-cta-inner .section-tag {
  color: var(--gold);
}
.menu-cta-inner .section-desc {
  color: rgba(255,255,255,.6);
  font-size: clamp(.88rem, 2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════
   MENU PAGE HEADER
══════════════════════════════════════════════ */
.menu-page-header {
  position: relative;
  height: 42vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.mph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.mph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,12,10,.72) 0%, rgba(13,12,10,.55) 100%);
}
.mph-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 20px;
}
.mph-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 10px 0 12px;
}
.mph-content h1 em {
  color: var(--gold);
  font-style: italic;
}
.mph-content p {
  font-size: clamp(.85rem, 2vw, 1rem);
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}
.menu-page-header .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.navbar.scrolled + .mobile-menu + .menu-page-header,
.menu-page-header { padding-top: 80px; }

/* ══════════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════════ */
.team-section {
  background: var(--cream);
  padding: 110px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.team-img-wrap img {
  transition: transform .7s var(--ease-expo);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}
.team-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,12,10,.75) 0%, transparent 100%);
}
.team-since {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-info {
  padding: 28px 28px 32px;
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.team-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 4px 10px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   EVENTI SECTION
══════════════════════════════════════════════ */
.eventi-section {
  background: var(--bg-dark);
  padding: 110px 0;
}
.eventi-section .section-title {
  color: var(--white);
}
.eventi-section .section-title em {
  color: var(--gold);
}
.eventi-section .section-tag {
  color: var(--gold);
}
.eventi-section .section-desc {
  color: rgba(255,255,255,.55);
}
.eventi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.evento-card {
  background: #171614;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color var(--transition), transform var(--transition);
}
.evento-card:hover {
  border-color: rgba(201,169,110,.35);
  transform: translateY(-4px);
}
.evento-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.evento-img img {
  transition: transform .7s var(--ease-expo);
}
.evento-card:hover .evento-img img {
  transform: scale(1.05);
}
.evento-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-dark);
  border: 1px solid rgba(201,169,110,.4);
  padding: 8px 14px;
  text-align: center;
}
.edb-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}
.edb-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.evento-body {
  padding: 24px 28px 28px;
}
.evento-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}
.evento-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.evento-desc {
  font-size: .86rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.evento-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.evento-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.evento-meta svg {
  flex-shrink: 0;
  color: var(--gold);
}
.evento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,.4);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.evento-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.eventi-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}
.eventi-note svg { color: var(--gold); flex-shrink: 0; }
.eventi-note a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,169,110,.4);
}
.eventi-note a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════
   BEVANDE — tab Bevande nel menu
══════════════════════════════════════════════ */
.bev-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.bev-cat {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
}
.bev-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.bev-cat-title svg {
  flex-shrink: 0;
  opacity: .8;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .eventi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .team-img-wrap { height: 260px; }
  .evento-img { height: 180px; }
  .evento-body { padding: 20px; }
}
