/* =================================================================
   BULLY CHICKEN — Sito principale (Home + Menu + Eventi)
   Mobile-first · Brand: BLU NAVY + GIALLO + ROSSO accent
   ================================================================= */

:root {
  --blu: #1b2a6b;
  --blu-2: #243787;
  --blu-scuro: #0f1840;
  --rosso: #e21d2b;
  --rosso-scuro: #b71721;
  --giallo: #ffd400;
  --giallo-scuro: #f0c200;
  --oro: #d4af37;
  --crema: #fdfaf1;
  --crema-2: #f5eee0;
  --nero: #0a0a0a;
  --grigio: #6c6c6c;
  --grigio-2: #2a2a2a;
  --grigio-3: #4a4a4a;
  --linea: rgba(10,10,10,.1);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--crema); }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--nero);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--giallo); color: var(--nero); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============================ TIPOGRAFIA ============================ */
.h-mega {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 11vw, 144px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0;
}
.h-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 7.5vw, 96px);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 .3em;
}
.h-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.015em;
  margin: 0 0 .3em;
}
.h-md {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 .4em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 14px;
}
.eyebrow.giallo { color: var(--giallo-scuro); }
.eyebrow.blu { color: var(--blu); }

/* ============================ BOTTONI ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.005em;
  border: 0;
  background: var(--giallo);
  color: var(--nero);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--giallo-scuro);
  box-shadow: 0 14px 30px rgba(255,212,0,.32);
}
.btn:active { transform: translateY(0); }
.btn-giallo { background: var(--giallo); color: var(--nero); }
.btn-blu { background: var(--blu); color: var(--crema); }
.btn-blu:hover { background: var(--blu-scuro); }
.btn-bianco { background: var(--crema); color: var(--nero); }
.btn-ghost-bianco { background: transparent; color: var(--crema); border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-bianco:hover { background: var(--crema); color: var(--blu); border-color: var(--crema); }
.btn-block { width: 100%; }
.btn-lg { padding: 22px 36px; font-size: 18px; }

/* ============================ ANNOUNCE ============================ */
.announce {
  background: var(--nero);
  color: var(--giallo);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announce a { color: var(--giallo); text-decoration: underline; }

/* ============================ HEADER ============================ */
.site-header {
  background: rgba(253, 250, 241, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linea);
  position: sticky; top: 0; z-index: 50;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw); margin: 0 auto;
  gap: 12px;
}
.brand-link img { height: 42px; width: auto; }
.nav-desktop {
  display: none;
  gap: 26px;
  align-items: center;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  color: var(--blu);
  transition: color .2s ease;
}
.nav-desktop a:hover { color: var(--rosso); }
.nav-desktop a.active { color: var(--rosso); }
.header-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
  transition: background .2s ease;
}
.header-wa svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }
.header-wa:hover { background: #1ebe5a; }

@media (max-width: 540px) {
  .header-wa span { display: none; }
  .header-wa {
    width: 40px; height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .header-wa svg { width: 22px; height: 22px; }
}

@media (min-width: 900px) {
  .nav-desktop { display: inline-flex; }
}

/* Mobile nav button */
.nav-toggle {
  background: var(--blu);
  color: var(--crema);
  border: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile menu sheet */
.nav-sheet {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blu);
  color: var(--crema);
  z-index: 100;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-sheet.open { transform: translateX(0); }
.nav-sheet .close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,.1);
  color: var(--crema);
  border: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
}
.nav-sheet a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -.02em;
  padding: 18px 0;
  color: var(--crema);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-sheet a.gold { color: var(--giallo); }

/* ============================ SECTION COMUNI ============================ */
.section { padding: 70px 0; }
.section--crema { background: var(--crema); }
.section--blu { background: var(--blu); color: var(--crema); }
.section--blu .h-xl, .section--blu .h-lg, .section--blu .h-mega { color: var(--giallo); }
.section--giallo { background: var(--giallo); color: var(--nero); }
.section--nero { background: var(--nero); color: var(--crema); }
.section--nero .h-xl, .section--nero .h-lg { color: var(--giallo); }

.section-head { text-align: center; margin-bottom: 36px; }
.section-head p {
  font-size: 16px;
  max-width: 580px;
  margin: 8px auto 0;
  color: var(--grigio-3);
  line-height: 1.55;
}
.section--blu .section-head p { color: rgba(253,250,241,.78); }

/* ============================ HOME HERO ============================ */
.home-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,212,0,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(226,29,43,.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--blu) 0%, var(--blu-scuro) 100%);
  color: var(--crema);
  padding: 50px 0 70px;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-repeat: repeat;
  background-size: 90px auto;
  opacity: .08;
  pointer-events: none;
}
.home-hero .wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.home-hero__copy { text-align: center; }
.home-hero__pill {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 11vw, 124px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}
.home-hero h1 .yel { color: var(--giallo); }
.home-hero h1 .stroke {
  -webkit-text-stroke: 2px var(--giallo);
  color: transparent;
}
.home-hero .lead {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(253,250,241,.86);
}
.home-hero .lead strong { color: var(--giallo); font-weight: 600; }
.home-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}
.home-hero__visual {
  position: relative;
  text-align: center;
}
.home-hero__visual img {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
}
.home-hero__stamp {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--giallo);
  color: var(--nero);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
  padding: 8px;
  transform: rotate(-12deg);
  box-shadow: 0 10px 30px rgba(255,212,0,.4);
}

@media (min-width: 900px) {
  .home-hero { padding: 90px 0 110px; }
  .home-hero .wrap {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
  }
  .home-hero__copy { text-align: left; }
  .home-hero__cta { margin: 0; }
  .home-hero__visual img { max-width: 460px; }
  .home-hero__stamp {
    width: 130px; height: 130px;
    font-size: 17px;
    top: 30px; right: 0;
  }
}

/* ============================ POLLO GIALLO MANIFESTO ============================ */
.manifesto {
  background: var(--giallo);
  color: var(--nero);
  padding: 70px 0;
  text-align: center;
}
.manifesto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 96px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.manifesto p {
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.55;
  color: var(--grigio-2);
}
.manifesto strong { color: var(--rosso); }
.manifesto .sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nero);
  margin-top: 30px;
}

/* ============================ EVENTI GRID ============================ */
.eventi-section { background: var(--crema); padding: 80px 0; }
.eventi-head { text-align: center; margin-bottom: 40px; }
.eventi-head h2 { color: var(--blu); }
.eventi-head p {
  font-size: 16px;
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--grigio-3);
}

.eventi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.evento-card {
  display: block;
  background: var(--nero);
  color: var(--crema);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.evento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.evento-card__media {
  aspect-ratio: 16/10;
  background: var(--blu);
  overflow: hidden;
  position: relative;
}
.evento-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.evento-card:hover .evento-card__media img { transform: scale(1.05); }
.evento-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--giallo);
  color: var(--nero);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.evento-card__badge.live {
  background: var(--rosso);
  color: var(--crema);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,29,43,.5); }
  50% { box-shadow: 0 0 0 8px rgba(226,29,43,0); }
}
.evento-card__body { padding: 24px 24px 28px; }
.evento-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--giallo);
}
.evento-card__desc {
  font-size: 14px;
  color: rgba(253,250,241,.75);
  line-height: 1.5;
  margin: 0 0 16px;
}
.evento-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--giallo);
}

@media (min-width: 740px) {
  .eventi-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}

/* ============================ MENU PREVIEW ============================ */
.menu-preview { padding: 80px 0; background: var(--crema-2); }
.menu-preview .wrap { text-align: center; }
.menu-preview h2 { color: var(--blu); }
.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.menu-cards .card {
  background: var(--crema);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--linea);
}
.menu-cards .card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.menu-cards .card .lbl {
  padding: 12px 14px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blu);
}
@media (min-width: 740px) {
  .menu-cards { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .menu-cards .card .lbl { font-size: 16px; padding: 14px 16px 18px; }
}

/* ============================ BULLY 2 TEASER ============================ */
.b2-section {
  background: var(--nero);
  color: var(--crema);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.b2-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-repeat: repeat;
  background-size: 80px auto;
  opacity: .1;
}
.b2-section .wrap { position: relative; z-index: 2; }
.b2-section .lbl {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.b2-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 96px);
  line-height: .9;
  letter-spacing: -.025em;
  color: var(--giallo);
  margin: 0 0 18px;
}
.b2-section p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 26px;
  line-height: 1.5;
  color: rgba(253,250,241,.82);
}
.b2-section .city-guess {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,212,0,.1);
  border: 1.5px solid rgba(255,212,0,.4);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--giallo);
  letter-spacing: .03em;
}

/* ============================ POLLO GIALLO CLAIM (no spiegazione scientifica) ============================ */
.giallo-claim {
  background: var(--giallo);
  color: var(--nero);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.giallo-claim::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-size: 70px auto;
  opacity: .08;
  pointer-events: none;
}
.giallo-claim .wrap { position: relative; z-index: 2; }
.giallo-claim h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 96px);
  line-height: .9;
  letter-spacing: -.025em;
  margin: 0 0 30px;
}
.giallo-claim h2 .rosso { color: var(--rosso); }
.giallo-claim__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 30px auto 0;
}
.giallo-claim__bullet {
  background: rgba(0,0,0,.06);
  border: 1.5px solid rgba(10,10,10,.12);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: center;
}
.giallo-claim__bullet .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--rosso);
  flex-shrink: 0;
  line-height: 1;
}
.giallo-claim__bullet .txt {
  font-size: 16px;
  line-height: 1.45;
  color: var(--nero);
}
.giallo-claim__bullet strong { font-weight: 700; }
@media (min-width: 740px) {
  .giallo-claim__bullets { grid-template-columns: 1fr 1fr; }
  .giallo-claim__bullet .txt { font-size: 17px; }
}

/* ============================ INAUGURAZIONE ============================ */
.inau-home {
  background: var(--crema);
  padding: 90px 0;
  text-align: center;
}
.inau-home h2 { color: var(--blu); }
.inau-home .lead {
  font-size: 17px;
  max-width: 620px;
  margin: 14px auto 36px;
  color: var(--grigio-3);
  line-height: 1.55;
}
.inau-home .lead strong { color: var(--rosso); }
.inau-home__big-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 16vw, 180px);
  color: var(--rosso);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}
.inau-home__caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blu);
  margin-bottom: 30px;
}
.inau-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 26px;
}
.inau-home__grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r-md);
}
.inau-home__grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
@media (min-width: 740px) {
  .inau-home__grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 14px;
  }
  .inau-home__grid img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
  .inau-home__grid img {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* ============================ XL BULLY CHALLENGE HOME ============================ */
.xl-home {
  background: var(--crema-2);
  padding: 90px 0;
  text-align: center;
}
.xl-home h2 { color: var(--blu); }
.xl-home .lead {
  font-size: 17px;
  max-width: 660px;
  margin: 14px auto 36px;
  color: var(--grigio-3);
  line-height: 1.55;
}
.xl-home .lead strong { color: var(--rosso); }
.xl-home__big-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 16vw, 180px);
  color: var(--rosso);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}
.xl-home__caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blu);
  margin-bottom: 30px;
}
.xl-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 26px;
}
.xl-home__grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
}
.xl-home__grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
@media (min-width: 740px) {
  .xl-home__grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 280px;
    gap: 14px;
  }
  .xl-home__grid img {
    aspect-ratio: auto;
    height: 100%;
  }
  .xl-home__grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }
}

/* ============================ BIGLIETTO D'ORO HOME ============================ */
.golden-home {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,212,0,.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(212,175,55,.35) 0%, transparent 55%),
    linear-gradient(135deg, var(--nero) 0%, var(--grigio-2) 100%);
  color: var(--crema);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.golden-home::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-size: 90px auto;
  opacity: .07;
  pointer-events: none;
}
.golden-home .wrap { position: relative; z-index: 2; }
.golden-home .eyebrow { color: var(--giallo); }
.golden-home h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 104px);
  line-height: .9;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.golden-home h2 .gold {
  background: linear-gradient(135deg, #ffd400 0%, #ffb800 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.golden-home .lead {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(253,250,241,.85);
  line-height: 1.55;
}
.golden-home__ticket {
  max-width: 540px;
  margin: 30px auto 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 2px solid rgba(255,212,0,.4);
}
.golden-home__ticket img { width: 100%; height: auto; display: block; }
.golden-home__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.golden-home__stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,212,0,.25);
  border-radius: var(--r-lg);
  padding: 18px 12px;
}
.golden-home__stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
  color: var(--giallo);
  letter-spacing: -.02em;
}
.golden-home__stat .l {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,250,241,.7);
  margin-top: 8px;
  line-height: 1.3;
}

/* ============================ PANINI VETRINA (no link) ============================ */
.vetrina {
  background: var(--crema-2);
  padding: 90px 0;
}
.vetrina .section-head { margin-bottom: 40px; }
.vetrina h2 { color: var(--blu); }
.vetrina__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vetrina__card {
  background: var(--crema);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--linea);
  position: relative;
}
.vetrina__card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.vetrina__card .body {
  padding: 14px 16px 18px;
}
.vetrina__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  color: var(--blu);
  letter-spacing: -.01em;
}
.vetrina__card .pill {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
@media (min-width: 740px) {
  .vetrina__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .vetrina__card h3 { font-size: 22px; }
}

/* ============================ BULLY 2 — sezione grande ============================ */
.b2-big {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,212,0,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(226,29,43,.16) 0%, transparent 60%),
    linear-gradient(135deg, var(--blu) 0%, var(--blu-scuro) 100%);
  color: var(--crema);
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.b2-big::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-size: 80px auto;
  opacity: .1;
  pointer-events: none;
}
.b2-big .wrap { position: relative; z-index: 2; }
.b2-big__pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rosso);
  color: var(--crema);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: pulse 2s ease-in-out infinite;
}
.b2-big__pulse::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--crema);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.b2-big h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 13vw, 180px);
  line-height: .85;
  letter-spacing: -.035em;
  margin: 0 0 24px;
  color: var(--giallo);
}
.b2-big h2 .stroke {
  -webkit-text-stroke: 3px var(--giallo);
  color: transparent;
  display: block;
}
.b2-big .lead {
  font-size: clamp(17px, 2.5vw, 22px);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
  color: rgba(253,250,241,.88);
}
.b2-big .lead strong { color: var(--giallo); font-weight: 700; }
.b2-big__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--giallo);
  color: var(--blu);
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
  margin-top: 14px;
}
.b2-big__cta:hover { transform: translateY(-2px); background: #fff; }
.b2-big__city-strip {
  margin-top: 50px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 18px 26px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,212,0,.3);
  border-radius: var(--r-xl);
}
.b2-big__city-strip span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 3vw, 22px);
  color: rgba(255,212,0,.5);
  letter-spacing: .02em;
}
.b2-big__city-strip span:nth-child(odd) { color: rgba(255,255,255,.4); }
.b2-big__city-strip .q {
  color: var(--giallo);
  font-size: clamp(22px, 4vw, 32px);
}

/* ============================ GLOVO STRIP ============================ */
.glovo-strip {
  background: var(--giallo);
  color: var(--nero);
  padding: 30px 0;
  text-align: center;
}
.glovo-strip h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 32px);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.glovo-strip p { font-size: 14px; color: var(--grigio-2); margin: 0 0 16px; }
.glovo-strip .btn { background: var(--nero); color: var(--giallo); }
.glovo-strip .btn:hover { background: var(--blu-scuro); color: var(--giallo); }

/* ============================ LOCALE STRIP ============================ */
.locale-strip {
  background: var(--blu);
  color: var(--crema);
  padding: 80px 0;
}
.locale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.locale-copy h2 { color: var(--giallo); }
.locale-copy p { color: rgba(253,250,241,.85); font-size: 16px; line-height: 1.6; margin: 0 0 16px; }
.locale-copy .info-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 20px;
  margin: 24px 0;
}
.locale-copy .info-card strong { color: var(--giallo); display: block; font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.locale-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.locale-img-grid img {
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.locale-img-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
@media (min-width: 900px) {
  .locale-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .locale-img-grid img:first-child { aspect-ratio: 4/5; grid-column: auto; }
  .locale-img-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================ FOOTER ============================ */
.site-footer {
  background: var(--blu-scuro);
  color: var(--crema);
  padding: 60px 0 40px;
  text-align: center;
}
.site-footer .brand-link img { height: 40px; margin: 0 auto 18px; }
.site-footer p { color: rgba(253,250,241,.7); font-size: 14px; margin: 6px 0; }
.site-footer p strong { color: var(--giallo); }
.site-footer .socials {
  display: inline-flex; gap: 14px;
  margin: 22px 0 18px;
}
.site-footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--crema);
  transition: background .2s ease;
}
.site-footer .socials a:hover { background: var(--giallo); color: var(--blu); }
.site-footer .nav-foot {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 8px;
}
.site-footer .nav-foot a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--crema);
  opacity: .9;
}
.site-footer .nav-foot a:hover { color: var(--giallo); }
.site-footer .small { font-size: 12px; opacity: .55; margin-top: 12px; }

/* ============================ MENU PAGE ============================ */
.menu-hero {
  background: var(--giallo);
  color: var(--nero);
  padding: 70px 0 50px;
  text-align: center;
}
.menu-hero .eyebrow { color: var(--rosso); }
.menu-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 120px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0 0 14px;
}
.menu-hero p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--grigio-2);
}

.menu-section { padding: 70px 0; background: var(--crema); }
.menu-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1;
  color: var(--blu);
  margin: 0 0 28px;
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.menu-item {
  background: var(--crema-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  position: relative;
}
.menu-item__img {
  background: var(--crema);
  aspect-ratio: 1/1;
}
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__body { padding: 16px 18px; }
.menu-item__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  color: var(--blu);
}
.menu-item__body p {
  font-size: 14px;
  color: var(--grigio-3);
  line-height: 1.5;
  margin: 0;
}
.menu-item__body .pill {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.menu-item__body .pill.giallo { background: var(--giallo); color: var(--nero); }
.menu-item__body .pill.blu { background: var(--blu); }
@media (min-width: 740px) {
  .menu-list { grid-template-columns: 1fr 1fr; gap: 22px; }
  .menu-item { grid-template-columns: 180px 1fr; }
  .menu-item__body { padding: 24px; }
  .menu-item__body h3 { font-size: 24px; }
  .menu-item__body p { font-size: 15px; }
}

/* ============================ EVENTO PAGE (Chiara + XL) ============================ */
.evento-hero {
  position: relative;
  background: var(--blu);
  color: var(--crema);
  padding: 50px 0 70px;
  overflow: hidden;
}
.evento-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('/assets/img/brand/raster.svg');
  background-size: 90px auto;
  opacity: .08;
}
.evento-hero .wrap { position: relative; z-index: 2; text-align: center; }
.evento-hero .pill {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.evento-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 10vw, 120px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  color: var(--crema);
}
.evento-hero h1 .yel { color: var(--giallo); }
.evento-hero .lead {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 26px;
  color: rgba(253,250,241,.85);
}
.evento-hero .lead strong { color: var(--giallo); font-weight: 600; }

.evento-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.evento-meta__box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,212,0,.3);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  min-width: 160px;
}
.evento-meta__box .lbl {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,212,0,.85);
  display: block;
  margin-bottom: 4px;
}
.evento-meta__box .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.015em;
  color: var(--giallo);
}

/* Video frame */
.evento-video {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--nero);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.evento-video video {
  width: 100%; height: auto; display: block;
}
.evento-video .play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: var(--giallo);
  color: var(--blu);
  border: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.evento-video .play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.evento-video .play-btn svg { width: 36px; height: 36px; fill: currentColor; }
.evento-video.playing .play-btn { display: none; }

/* Storia */
.evento-storia { padding: 80px 0; background: var(--crema); }
.evento-storia .wrap { max-width: 760px; }
.evento-storia h2 { color: var(--blu); text-align: center; }
.evento-storia .body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grigio-2);
  margin: 30px auto 0;
}
.evento-storia .body p { margin: 0 0 20px; }
.evento-storia .body strong { color: var(--rosso); }

/* Gallery */
.evento-gallery { padding: 70px 0 90px; background: var(--crema-2); }
.evento-gallery h2 { text-align: center; color: var(--blu); margin-bottom: 30px; }
.evento-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.evento-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
}
@media (min-width: 740px) {
  .evento-gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

/* CTA prossimo evento */
.next-event-cta {
  background: var(--giallo);
  color: var(--nero);
  padding: 70px 0;
  text-align: center;
}
.next-event-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.next-event-cta p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--grigio-2);
}
.next-event-cta .btn { background: var(--nero); color: var(--giallo); }
.next-event-cta .btn:hover { background: var(--blu-scuro); color: var(--giallo); }

/* ============================ UTILITIES ============================ */
.center { text-align: center; }
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
