/* ============================================
   LEON — Homepage — Design Cinematografico
   Niente template, niente slop. Solo fuoco.
   ============================================ */

/* --- HERO: IMMERSIVO, BRUTALE, CINEMATOGRAFICO --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay cinematografico: pesante in basso per leggibilita, leggero in alto */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 35%, rgba(10,10,10,0.1) 55%, rgba(10,10,10,0.3) 100%);
}

/* Vignette laterale cinematografica */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}

/* Grain overlay sottile */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(24px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Logo posizionato in alto a sinistra nel hero, non centrato */
.hero-brand {
  position: absolute;
  top: clamp(100px, 14vh, 160px);
  left: clamp(24px, 5vw, 80px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-brand img {
  width: clamp(120px, 16vw, 200px);
  height: auto;
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
}

.hero-brand-text .brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.25em;
  padding-left: 0.25em;
  line-height: 1;
  text-align: center;
}

.hero-brand-text .brand-sub {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.95rem);
  letter-spacing: 0.35em;
  padding-left: 0.35em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
}

/* Titolo hero: proporzionato, leggibile, cinematografico */
.hero-headline {
  margin-bottom: 24px;
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  max-width: 14ch;
}

.hero-headline h1 strong {
  font-weight: 700;
  color: #fff;
  display: block;
  font-style: normal;
  padding-left: clamp(0px, 1.5vw, 24px);
  font-size: 1.05em;
  text-shadow: 0 2px 40px rgba(201, 168, 76, 0.5), 0 0 80px rgba(201, 168, 76, 0.15);
}

/* Dettagli sotto il titolo: riga orizzontale con info */
.hero-details {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-detail-line {
  width: clamp(40px, 6vw, 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--leon-red), var(--gold));
}

.hero-detail-text {
  font-family: var(--font-sub);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero-detail-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.35);
}

/* CTA: allineati a sinistra, non centrati */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll cue nell'angolo in basso a destra */
.scroll-cue {
  position: absolute;
  bottom: clamp(30px, 5vh, 60px);
  right: clamp(24px, 5vw, 80px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.scroll-cue-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.scroll-cue-line {
  width: 1px;
  height: 60px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  51% { top: -100%; }
  100% { top: -100%; }
}

/* Braci che salgono dal basso — z-index sopra overlay */
.hero .embers-container {
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  /* Su mobile il brand è integrato nel flusso, non assoluto */
  .hero-brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
  }
  .hero-brand img {
    width: 90px;
  }
  .hero-brand-text {
    align-items: center;
  }
  .hero-brand-text .brand-name {
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
  }
  .hero-brand-text .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    padding-left: 0.25em;
    opacity: 0.85;
  }
  .hero-content {
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-headline h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    text-shadow: 0 3px 30px rgba(0,0,0,0.8);
  }
  .hero-headline h1 strong {
    padding-left: 0;
    text-shadow: 0 3px 30px rgba(0,0,0,0.8), 0 0 60px rgba(201, 168, 76, 0.2);
  }
  .hero-details {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-detail-line {
    display: none;
  }
  .hero-detail-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.7);
  }
  .hero-detail-tag {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
  }
  .hero-cta {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-cta .btn {
    font-size: 0.85rem;
    padding: 16px 36px;
    width: 80%;
    max-width: 300px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.55) 100%);
  }
}

/* ============================================
   SEZIONE: MANIFESTO (ex about)
   Layout editoriale con overlap e asimmetria
   ============================================ */
.manifesto {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.manifesto-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  min-height: 500px;
}

.manifesto-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Grande numero decorativo sovrapposto */
.manifesto-visual::before {
  content: '01';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  position: relative;
}

/* Linea laterale decorativa */
.manifesto-text::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.manifesto-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.manifesto-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.manifesto h2 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.manifesto-body {
  font-family: var(--font-sub);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.manifesto-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s ease-in-out infinite;
}

.manifesto-badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Pillole valori — in riga, stile tag */
.manifesto-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.manifesto-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.manifesto-tag:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.manifesto-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .manifesto-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .manifesto-visual {
    min-height: 300px;
  }
  .manifesto-text::before {
    display: none;
  }
}

/* ============================================
   SEZIONE: TAGLI — Horizontal scroll showcase
   Niente grid banali — scorrimento orizzontale
   ============================================ */
.tagli-showcase {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.tagli-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: clamp(32px, 5vw, 60px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.tagli-header-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.tagli-header-left h2 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.tagli-header-left p {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 8px;
}

.tagli-header-right {
  display: flex;
  gap: 8px;
}

.tagli-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tagli-arrow:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.tagli-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* Scroll track orizzontale */
.tagli-track {
  display: flex;
  gap: 20px;
  padding: 0 clamp(24px, 5vw, 80px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 20px;
}

.tagli-track::-webkit-scrollbar {
  display: none;
}

.tagli-track:active {
  cursor: grabbing;
}

/* Singola card taglio — tall, cinematica */
.taglio-slide {
  flex: 0 0 clamp(260px, 22vw, 320px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.taglio-slide:hover {
  border-color: var(--gold);
}

.taglio-slide-image {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.taglio-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.taglio-slide:hover .taglio-slide-image img {
  transform: scale(1.06);
}

/* Fallback background se immagine non carica */

/* Numero grande sovrapposto alla card */
.taglio-slide-number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.taglio-slide:hover .taglio-slide-number {
  color: rgba(201,168,76,0.12);
}

/* Badge posizionato */
.taglio-slide-image .badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}

/* Overlay dal basso sulla card */
.taglio-slide-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}

.taglio-slide-body {
  padding: 20px;
  background: var(--bg-warm);
}

.taglio-slide-origin {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.taglio-slide-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.taglio-slide-body .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.taglio-slide-body .price small {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

/* CTA slide finale nella track */
.taglio-slide-cta {
  flex: 0 0 clamp(200px, 16vw, 260px);
  border: 1px solid var(--border-gold);
  background: var(--bg-warm);
  display: flex;
}

.taglio-cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.4s ease;
}

.taglio-cta-inner:hover {
  background: rgba(201, 168, 76, 0.06);
}

.taglio-cta-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.taglio-cta-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
}

.taglio-cta-arrow {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.taglio-cta-inner:hover .taglio-cta-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .tagli-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .tagli-header-right {
    display: none;
  }
}

/* ============================================
   SEZIONE: MENU FISSI — Layout editoriale
   Striscia orizzontale con card grandi
   ============================================ */
.menu-section-home {
  background: var(--bg-primary);
  padding: var(--section-padding) 0;
  position: relative;
}

/* Grande numero decorativo di sfondo */
.menu-section-home::before {
  content: '02';
  position: absolute;
  top: -30px;
  right: clamp(20px, 5vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.025);
  line-height: 1;
  pointer-events: none;
}

.menu-home-header {
  padding: 0 clamp(24px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto clamp(32px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.menu-home-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.menu-home-header h2 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.menu-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.menu-home-card {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.menu-home-card:hover {
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.menu-home-card-visual {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.menu-home-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-home-card:hover .menu-home-card-visual img {
  transform: scale(1.05);
}

/* Fallback background menu card */

/* Overlay hover sulla visual */
.menu-home-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.08);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-home-card:hover .menu-home-card-visual::after {
  opacity: 1;
}

/* Prezzo grande sovrapposto — ben visibile */
.menu-home-card-price {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  z-index: 3;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 60%, transparent 100%);
}

.menu-home-card-price span {
  color: var(--gold);
}

.menu-home-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-gold);
}

.menu-home-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.menu-home-card-list {
  list-style: none;
  flex: 1;
}

.menu-home-card-list li {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  padding: 3px 0;
}

/* --- Menu Brief (rimando alla pagina) --- */
.menu-home-brief {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.menu-home-brief > p {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: clamp(28px, 4vw, 44px);
  line-height: 1.7;
}

.menu-home-brief-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.menu-brief-card {
  background: var(--bg-warm);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--border-gold);
  transition: all 0.4s ease;
}

.menu-brief-card:hover {
  border-color: var(--gold);
}

.menu-brief-card--accent {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.menu-brief-card-price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.menu-brief-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}

.menu-brief-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .menu-home-brief-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================
   SEZIONE — Social (Instagram / TikTok)
   ============================================ */
.social-section {
  background: var(--bg-primary);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.social-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

.social-header {
  margin-bottom: clamp(32px, 5vw, 50px);
}

.social-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-top: 12px;
}

.social-header h2 strong {
  font-weight: 700;
  font-style: italic;
}

.social-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.social-reel {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-warm);
}

.social-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-reel:hover video {
  filter: brightness(1.1);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.3);
  color: #fff;
}

.btn-tiktok {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: #fff;
}

@media (max-width: 600px) {
  .social-reels {
    gap: 10px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-social {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SEZIONE: MANIFESTO / CITAZIONE CENTRALE
   Fullwidth, drammatica
   ============================================ */
.statement {
  position: relative;
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}


.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.statement-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 50px;
  position: relative;
}

/* Virgoletta decorativa, spostata */
.statement-quote::before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
}

.statement-quote em {
  color: var(--gold);
  font-style: italic;
}

/* Contatori — stile dashboard, non banali */
.statement-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
}

.statement-stat {
  text-align: center;
}

.statement-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.statement-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

/* Separatore tra stats */
.statement-stat + .statement-stat {
  position: relative;
}

.statement-stat + .statement-stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(20px, 4vw, 50px));
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-gold);
}

/* CTA sotto le stats */
.statement-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 60px);
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .statement-stats {
    flex-direction: column;
    gap: 28px;
  }
  .statement-stat + .statement-stat::before {
    display: none;
  }
  .statement-cta {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   SEZIONE: PRENOTA — Layout cinematografico
   ============================================ */
.prenota-section {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
  position: relative;
}

.prenota-section::before {
  content: '03';
  position: absolute;
  top: -30px;
  left: clamp(20px, 5vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.025);
  line-height: 1;
  pointer-events: none;
}

.prenota-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.prenota-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.prenota-left h2 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.prenota-left > p {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.prenota-form {
  background: rgba(26, 21, 8, 0.4);
  border: 1px solid var(--border-gold);
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-control {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Info contatti — stile compatto */
.prenota-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.prenota-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.prenota-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
}

.prenota-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.prenota-contact-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.prenota-contact-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Mappa Google Maps embed */
.mappa-link {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-gold);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.mappa-link:hover {
  border-color: var(--gold);
}

.mappa-embed {
  width: 100%;
  height: 100%;
}

.mappa-embed iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}

.mappa-link:hover .mappa-embed iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

.mappa-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.mappa-overlay svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.mappa-overlay span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

@media (max-width: 768px) {
  .prenota-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mappa-link {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .prenota-form {
    padding: 20px 16px;
  }
  .prenota-form .form-group {
    margin-bottom: 16px;
  }
  .prenota-form .form-group label {
    margin-bottom: 4px;
  }
}

/* ============================================
   SEZIONE — Il Locale (galleria fotografica)
   ============================================ */
.locale-section {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.locale-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 25%, var(--leon-red-dark) 50%, transparent 75%);
  opacity: 0.35;
}

.locale-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: 0 clamp(20px, 4vw, 40px);
}

.locale-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-top: 12px;
}

.locale-header h2 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.locale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.locale-item {
  position: relative;
  overflow: hidden;
}

.locale-item--wide {
  grid-column: span 2;
}

.locale-item--full {
  grid-column: 1 / -1;
  max-height: 340px;
}

.locale-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.locale-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.1);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.locale-item:hover::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .locale-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

@media (max-width: 480px) {
  .locale-grid {
    gap: 2px;
  }
}

/* ============================================
   POPUP — All You Can Eat
   Appare all'ingresso, drammatico e convincente
   ============================================ */
.ayce-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ayce-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ayce-popup {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #111;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.ayce-popup-overlay.active .ayce-popup {
  transform: scale(1) translateY(0);
}

.ayce-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ayce-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ayce-popup-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ayce-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ayce-popup-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111 0%, transparent 60%);
}

.ayce-popup-content {
  padding: 0 28px 28px;
  text-align: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.ayce-popup-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.ayce-popup-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6px;
  color: #fff;
}

.ayce-popup-content h2 strong {
  font-weight: 700;
  color: var(--gold);
}

.ayce-popup-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 22px;
}

.ayce-popup-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ayce-popup-price {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.ayce-popup-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.ayce-popup-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
}

.ayce-popup-btn {
  width: 100%;
}

@media (max-width: 480px) {
  .ayce-popup {
    max-width: 100%;
  }
  .ayce-popup-content {
    padding: 0 20px 24px;
  }
  .ayce-popup-price strong {
    font-size: 1.3rem;
  }
}

/* ============================================
   SEZIONE — All You Can Eat
   Prima sezione dopo la hero, massimo impatto
   ============================================ */
.ayce-section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.ayce-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ayce-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.4);
}

.ayce-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 30%, transparent 70%, var(--bg-primary) 100%),
    linear-gradient(to right, rgba(10,10,10,0.8), transparent, rgba(10,10,10,0.8));
}

.ayce-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.ayce-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.ayce-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--leon-red);
  font-weight: 600;
  padding: 6px 18px;
  border: 1px solid rgba(178, 34, 52, 0.4);
  margin-bottom: 20px;
  background: var(--leon-red-glow);
}

.ayce-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ayce-header h2 strong {
  font-weight: 700;
  color: var(--gold);
}

.ayce-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* --- Card formule --- */
.ayce-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ayce-card {
  position: relative;
  background: var(--bg-warm);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.ayce-card:hover {
  z-index: 2;
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

/* Badge "Piu scelta" sulla card popolare */
.ayce-card-popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 8px;
}

.ayce-card--popular {
  border-color: var(--gold);
}

.ayce-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.ayce-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ayce-card:hover .ayce-card-image img {
  transform: scale(1.08);
}

.ayce-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-warm) 0%, rgba(26, 21, 8, 0.3) 50%, transparent 100%);
}

.ayce-card-body {
  padding: clamp(20px, 3vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ayce-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 3px 12px;
  margin-bottom: 10px;
  align-self: center;
}

.ayce-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 8px;
}

.ayce-card-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.ayce-card-price span {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
}

.ayce-card-list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.ayce-card-list li {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.ayce-card-list li:last-child {
  border-bottom: none;
}

.ayce-card-btn {
  width: 100%;
  margin-top: auto;
}

.ayce-disclaimer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: clamp(24px, 4vw, 40px);
}

.ayce-rules {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  margin-top: clamp(24px, 4vw, 40px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ayce-rules h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.ayce-rules p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.ayce-rules p:last-child {
  margin-bottom: 0;
}

.ayce-cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
}

/* --- AYCE Responsive --- */
@media (max-width: 1024px) {
  .ayce-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
  }

  .ayce-card:hover {
    transform: none;
  }

  .ayce-card-image {
    aspect-ratio: 2/1;
  }
}

@media (max-width: 480px) {
  .ayce-section {
    padding: clamp(50px, 10vh, 80px) 0;
  }

  .ayce-card-body {
    padding: 20px 16px;
  }

  .ayce-card-price {
    font-size: 2.5rem;
  }
}

/* ============================================
   CARICAMENTO AL CLICK (privacy) — mappa e DISH
   ============================================ */
.mappa-consent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: rgba(26, 21, 8, 0.5);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
}

.mappa-consent:hover {
  background: rgba(26, 21, 8, 0.75);
}

.mappa-consent svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.mappa-consent span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.mappa-consent small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-secondary);
  max-width: 340px;
  line-height: 1.5;
}

.mappa-consent small a {
  color: var(--gold);
  text-decoration: underline;
}

a.mappa-overlay--link {
  pointer-events: auto;
  text-decoration: none;
  cursor: pointer;
}

.dish-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  min-height: 320px;
  padding: 16px 0;
}

.dish-consent h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.dish-consent p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 380px;
}

.dish-consent p a {
  color: var(--gold);
  text-decoration: underline;
}

.dish-consent-alt {
  font-size: 0.82rem;
}

.dish-consent-alt a {
  color: var(--gold);
}
