/* Font ospitati sul sito: nessuna richiesta a Google Fonts. Solo alfabeto latino. */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/figtree.woff2") format("woff2");
}
@font-face {
  font-family: "Kaushan Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/kaushan-script.woff2") format("woff2");
}

:root {
  --giallo: #FCC10B;
  --giallo-2: #E8AE00;
  --notte: #0F0E0C;
  --notte-2: #1A1814;
  --notte-3: #2E2A22;
  --latte: #FFFBF0;
  --carta: #FFFDF6;
  --grigio: #A9A293;
  --grigio-scuro: #5E584C;
  --neon: #5B6CFF;

  --display: "Bricolage Grotesque", "Arial Narrow", "Helvetica Neue", system-ui, sans-serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script: "Kaushan Script", "Brush Script MT", cursive;

  --gutter: clamp(16px, 4vw, 40px);
  --max: 1180px;
  --section: clamp(64px, 9vw, 124px);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--notte);
  color: var(--latte);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--neon); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

.display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75, "opsz" 96;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.005em;
  text-wrap: balance;
  margin: 0;
}
.script { font-family: var(--script); font-weight: 400; text-transform: none; letter-spacing: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin: 0;
}
.eyebrow svg { width: 14px; height: 14px; flex: none; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.5; max-width: 34ch; margin: 0; }

/* segnaposto da confermare */
.tbd {
  text-decoration: underline dashed 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--tbd, currentColor);
  cursor: help;
}

/* bottoni */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: 700 17px/1 var(--body);
  padding: 18px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--notte);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--nero { background: var(--notte); color: var(--giallo); box-shadow: 5px 5px 0 var(--latte); }
.btn--nero:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--latte); }
.btn--giallo { background: var(--giallo); color: var(--notte); border-color: var(--giallo); box-shadow: 5px 5px 0 var(--neon); }
.btn--giallo:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--neon); }
.link-arrow { font-weight: 700; text-underline-offset: 5px; text-decoration-thickness: 2px; }

/* ---------- barra prototipo ---------- */
.proto {
  background: var(--neon); color: #fff;
  font-size: 13.5px; line-height: 1.4;
}
.proto .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px; padding-block: 10px; }
.proto strong { letter-spacing: .12em; font-size: 12px; }
.proto .tbd { --tbd: #fff; }
.proto button {
  font: 700 13px/1 var(--body); color: var(--neon); background: #fff;
  border: 0; border-radius: 999px; padding: 9px 14px; cursor: pointer;
}

/* ---------- note di progetto ---------- */
.nota {
  display: none;
  position: relative;
  max-width: 340px;
  margin-block: 18px 0;
  padding: 14px 16px 14px 44px;
  background: var(--neon); color: #fff;
  font: 500 14px/1.45 var(--body);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 4px 4px 0 var(--notte);
}
.nota::before {
  content: "i"; position: absolute; left: 14px; top: 13px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff; color: var(--neon);
  font: 800 13px/20px var(--body); text-align: center;
}
.note-on .nota { display: block; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  background: var(--notte);
  border-bottom: 1px solid var(--notte-3);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 10px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 44px; height: 44px; }
.brand span { font: 800 20px/1 var(--display); font-stretch: 75%; font-variation-settings: "wdth" 75; text-transform: uppercase; letter-spacing: .02em; }
.nav__links { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 15px; }
.nav__links a { text-decoration: none; color: var(--grigio); }
.nav__links a:hover { color: var(--latte); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--giallo); color: var(--notte) !important;
  padding: 11px 18px; border-radius: 999px; font-weight: 700;
}
.nav__cta small { font-weight: 500; opacity: .75; font-size: 13px; }

/* ---------- hero ---------- */
.hero { background: var(--giallo); color: var(--notte); overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-block: clamp(40px, 6vw, 84px) clamp(56px, 7vw, 96px);
}
.hero__copy { display: grid; gap: 26px; justify-items: start; }
.hero h1 { font-size: clamp(58px, 10.4vw, 138px); }
.hero h1 .script {
  display: block;
  font-size: .56em;
  line-height: 1.1;
  transform: rotate(-4deg) translateX(.1em);
  transform-origin: left;
  margin-top: .12em;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.count {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid currentColor; border-radius: 999px;
  padding: 8px 14px 8px 12px;
  font-size: 14px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.count i { width: 9px; height: 9px; border-radius: 50%; background: #E3262F; box-shadow: 0 0 0 4px rgba(227,38,47,.22); }

.hero__visual { position: relative; justify-self: center; width: min(100%, 320px); }
.phone {
  position: relative;
  border: 9px solid var(--notte);
  border-radius: 34px;
  background: var(--notte);
  box-shadow: 12px 12px 0 var(--notte);
  transform: rotate(3deg);
  overflow: hidden;
}
.phone .reel { width: 100%; border-radius: 24px; }
.sticker {
  position: absolute; z-index: 2;
  width: 118px; height: 118px;
  left: -46px; top: 36px;
  transform: rotate(-14deg);
  filter: drop-shadow(4px 4px 0 var(--notte));
}
.sticker svg { width: 100%; height: 100%; }
.hero__visual .nota { position: absolute; right: -8px; bottom: -40px; transform: rotate(-2deg); z-index: 3; }

/* ---------- reel (segnaposto video) ---------- */
.reel {
  position: relative; isolation: isolate;
  background: var(--notte-2);
  flex: 0 0 auto;
  width: clamp(180px, 44vw, 228px);
  aspect-ratio: 9 / 16;
  border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  padding: 14px;
  color: #fff; text-decoration: none;
  scroll-snap-align: start;
}
.reel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 38%);
}
.reel__top { align-self: stretch; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.reel__top svg { width: 18px; height: 18px; }
.reel__cap { text-align: center; line-height: 1.55; margin-top: -18%; font-size: 14px; font-weight: 600; }
.reel__cap span { background: rgba(12,12,12,.84); padding: 4px 9px; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.reel__foot { align-self: stretch; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; }
.reel__foot em { font-style: normal; font-weight: 500; opacity: .75; font-size: 12px; }
.reel:hover .reel__foot b { text-decoration: underline; text-underline-offset: 3px; }
/* reel con copertina vera: la scritta POV è già nell'immagine */
.reel__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease, transform .4s ease; }
.reel__img--attesa { opacity: 0; }
.reel--foto:hover .reel__img { transform: scale(1.04); }
.reel--foto::after { background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 26%), linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 15%); }
.reel--foto .reel__cap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.reel__video { opacity: 0; transition: opacity .35s ease, transform .4s ease; }
.reel.is-playing .reel__video { opacity: 1; }

.scene-duomo { background: radial-gradient(55% 30% at 50% 26%, #f7ead2 0%, transparent 70%), linear-gradient(180deg, #7eb1ea 0%, #d3dfec 42%, #bba68a 68%, #5f5142 100%); }
.scene-studio { background: linear-gradient(90deg, transparent 12%, #d8ddff 12.4%, transparent 13.4%, transparent 86%, #d8ddff 86.4%, transparent 87.4%), linear-gradient(180deg, transparent 22%, #FCC10B 22%, #FCC10B 38%, transparent 38%) 50% 0 / 62% 100% no-repeat, linear-gradient(180deg, #2f3ff2 0%, #1b25aa 55%, #0c1150 100%); }
.scene-club { background: radial-gradient(40% 28% at 28% 18%, #37ff86 0%, transparent 70%), radial-gradient(45% 32% at 76% 34%, #ff3cb8 0%, transparent 70%), radial-gradient(70% 40% at 50% 92%, #7a2cff 0%, transparent 70%), #07070b; }
.scene-bar { background: radial-gradient(34% 22% at 28% 56%, #ffae42 0%, transparent 70%), radial-gradient(28% 18% at 72% 66%, #ffd88a 0%, transparent 70%), radial-gradient(60% 30% at 50% 10%, #6b5a48 0%, transparent 70%), linear-gradient(180deg, #3b2f25 0%, #17110b 100%); }
.scene-neon { background: radial-gradient(52% 16% at 62% 20%, rgba(252,193,11,.95) 0%, transparent 70%), radial-gradient(60% 40% at 40% 76%, #5a4a2e 0%, transparent 70%), #15110a; }
.scene-viola { background: radial-gradient(50% 32% at 50% 40%, #b690ff 0%, transparent 70%), linear-gradient(180deg, #3a2c8f 0%, #130f33 100%); }
.scene-sera { background: radial-gradient(40% 24% at 70% 30%, #ff7a59 0%, transparent 70%), radial-gradient(50% 30% at 25% 70%, #3b5bff 0%, transparent 70%), #0b0a12; }

/* ---------- marquee ---------- */
.marquee { background: var(--notte); border-bottom: 1px solid var(--notte-3); overflow: hidden; padding-block: 18px; }
.marquee__track { display: flex; width: max-content; animation: scorri 46s linear infinite; }
.marquee__track span {
  font: 800 clamp(22px, 2.6vw, 32px)/1 var(--display); font-stretch: 75%; font-variation-settings: "wdth" 75;
  text-transform: uppercase; color: var(--giallo); white-space: nowrap; padding-right: 28px;
}
.marquee__track span::after { content: "✦"; color: var(--latte); padding-left: 28px; }
@keyframes scorri { to { transform: translateX(-50%); } }

/* ---------- prossima serata ---------- */
.next { padding-block: var(--section); --tbd: var(--giallo); }
.next__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.bigdate { display: grid; gap: 4px; color: var(--giallo); }
.bigdate .eyebrow { color: var(--latte); margin-bottom: 14px; }
.bigdate__day { font-size: clamp(34px, 4vw, 52px); color: var(--latte); }
.bigdate__num { font-size: clamp(170px, 24vw, 300px); line-height: .78; }
.bigdate__month { font-size: clamp(40px, 5.4vw, 72px); }

.ticket {
  position: relative;
  background: var(--notte-2);
  border: 1px solid var(--notte-3);
  border-radius: 22px;
  overflow: hidden;
}
.ticket__head { padding: 26px 28px 22px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px 16px; }
.ticket__head h3 { font-size: clamp(30px, 3.2vw, 40px); color: var(--latte); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pill--ok { background: rgba(252,193,11,.14); color: var(--giallo); }
.pill--ok::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--giallo); }
.pill--es { background: var(--notte-3); color: var(--grigio); }
.ticket__cut { position: relative; height: 0; border-top: 2px dashed var(--notte-3); margin-inline: 22px; }
.ticket__cut::before, .ticket__cut::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--notte); border: 1px solid var(--notte-3);
}
.ticket__cut::before { left: -36px; }
.ticket__cut::after { right: -36px; }
.ticket dl { margin: 0; padding: 10px 28px 6px; display: grid; }
.ticket dl div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--notte-3); }
.ticket dl div:last-child { border-bottom: 0; }
.ticket dt { color: var(--grigio); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding-top: 2px; }
.ticket dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.ticket__foot { padding: 18px 28px 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.ticket__foot .count { color: var(--latte); border-color: var(--notte-3); }

.agenda { margin-top: clamp(48px, 6vw, 72px); }
.agenda h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--grigio); margin: 0 0 8px; font-weight: 700; }
.agenda ul { list-style: none; margin: 0; padding: 0; }
.agenda li {
  display: grid; grid-template-columns: 130px minmax(0, 1fr) auto; gap: 18px; align-items: center;
  padding-block: 20px; border-top: 1px solid var(--notte-3);
}
.agenda li:last-child { border-bottom: 1px solid var(--notte-3); }
.agenda__date { font: 800 26px/1 var(--display); font-stretch: 75%; font-variation-settings: "wdth" 75; text-transform: uppercase; color: var(--giallo); font-variant-numeric: tabular-nums; }
.agenda__title { font-weight: 700; font-size: 19px; }
.agenda__title small { display: block; font-weight: 500; color: var(--grigio); font-size: 14.5px; margin-top: 2px; }

/* ---------- come funziona ---------- */
.how { background: var(--carta); color: var(--notte); padding-block: var(--section); }
.sec-head { display: grid; gap: 16px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(46px, 7vw, 92px); }
.sec-head p { max-width: 52ch; margin: 0; font-size: 18px; }
.how .sec-head p { color: var(--grigio-scuro); }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 64px; height: 3px; background: var(--notte); }
.timeline li { display: grid; gap: 10px; align-content: start; }
.timeline__time { font: 800 50px/1 var(--display); font-stretch: 75%; font-variation-settings: "wdth" 75; text-transform: uppercase; font-variant-numeric: tabular-nums; }
.timeline__dot { width: 22px; height: 22px; border-radius: 50%; background: var(--giallo); border: 3px solid var(--notte); margin-block: 2px 12px; position: relative; z-index: 1; }
.timeline li:last-child .timeline__dot { background: var(--notte); }
.timeline h3 { margin: 0; font-size: 21px; line-height: 1.25; }
.timeline p { margin: 0; color: var(--grigio-scuro); font-size: 16px; max-width: 30ch; }

/* ---------- per chi è ---------- */
.who { background: var(--giallo); color: var(--notte); padding-block: var(--section); }
.who ul { list-style: none; margin: 0; padding: 0; border-bottom: 3px solid var(--notte); }
.who li {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 12px 40px; align-items: center;
  border-top: 3px solid var(--notte);
  padding: clamp(18px, 2.4vw, 28px) 12px;
}
.who li strong { font: 800 clamp(38px, 5.6vw, 76px)/.95 var(--display); font-stretch: 75%; font-variation-settings: "wdth" 75; text-transform: uppercase; }
.who li span { font-size: 17px; font-weight: 500; }

/* ---------- prova sociale ---------- */
.proof { padding-block: var(--section); overflow: hidden; }
.proof .sec-head h2 .script { color: var(--giallo); display: inline-block; transform: rotate(-3deg); font-size: .8em; }
.proof .sec-head p { color: var(--grigio); }
.rail {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-color: var(--notte-3) transparent;
}
.quotes { margin-top: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.quotes figure { margin: 0; border-top: 3px solid var(--giallo); padding-top: 18px; display: grid; gap: 12px; align-content: start; }
.quotes blockquote { margin: 0; font: 700 clamp(21px, 2vw, 25px)/1.25 var(--body); }
.quotes figcaption { color: var(--grigio); font-size: 14px; }

/* ---------- chi siamo + faq ---------- */
.about { background: var(--carta); color: var(--notte); padding-block: var(--section); --tbd: var(--notte); }
.about__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.portrait {
  position: relative; aspect-ratio: 4 / 5; max-width: 100%;
  border-radius: 24px; overflow: hidden;
  background: radial-gradient(60% 45% at 50% 45%, #4656FF 0%, transparent 70%), linear-gradient(180deg, #2F3FF2 0%, #1B25AA 100%);
  display: grid; place-items: center;
}
/* In attesa della foto: il logo come adesivo. Quando arriva, basta un <img> dentro .portrait */
.portrait svg { width: 62%; height: auto; aspect-ratio: 1; transform: rotate(-8deg); filter: drop-shadow(8px 8px 0 var(--notte)); }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__copy { display: grid; gap: 22px; justify-items: start; }
.about__copy h2 { font-size: clamp(48px, 6.4vw, 86px); }
.about__copy p { margin: 0; font-size: 18.5px; max-width: 48ch; color: #2d2a24; }
.crew { display: flex; flex-wrap: wrap; gap: 12px; }
.crew a {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--notte); border-radius: 999px; padding: 9px 16px 9px 10px;
  text-decoration: none; font-weight: 700; font-size: 15px;
}
.crew a:hover { background: var(--notte); color: var(--giallo); }
.crew b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--giallo); color: var(--notte); font-size: 12px; }

.faq { margin-top: var(--section); display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 88px); }
.faq h2 { font-size: clamp(44px, 5.6vw, 76px); }
.faq__intro { display: grid; gap: 18px; align-content: start; }
.faq__intro p { margin: 0; color: var(--grigio-scuro); max-width: 36ch; }
.faq__list { border-top: 2px solid var(--notte); }
.faq details { border-bottom: 2px solid var(--notte); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px; font-weight: 700; font-size: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: var(--giallo); font: 700 22px/1 var(--body);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 4px 24px; max-width: 58ch; color: #2d2a24; }

/* ---------- cta finale ---------- */
.final { background: var(--giallo); color: var(--notte); padding-block: var(--section); text-align: left; }
.final .wrap { display: grid; gap: 28px; justify-items: start; }
.final .script { font-size: clamp(34px, 4.6vw, 58px); transform: rotate(-3deg); display: inline-block; }
.final h2 { font-size: clamp(64px, 12vw, 170px); }
.final__actions { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; }

/* ---------- footer ---------- */
.foot { padding-block: 48px 40px; color: var(--grigio); font-size: 14.5px; }
.foot .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; }
.foot .brand { color: var(--latte); margin-bottom: 14px; }
.foot p { margin: 0; }
.foot nav { display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 600; }
.foot nav a { color: var(--latte); text-decoration: none; }
.foot nav a:hover { color: var(--giallo); }
.foot .tbd { --tbd: var(--grigio); }

/* ---------- barra mobile ---------- */
.mbar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 44px; }
  .timeline::before { display: none; }
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .hero .wrap, .next__grid, .about__grid, .faq { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { width: min(78%, 280px); margin-top: 8px; }
  .hero__visual .nota { position: relative; right: auto; bottom: auto; margin-top: 30px; }
  .sticker { width: 96px; height: 96px; left: -34px; }
  .bigdate { grid-template-columns: auto 1fr; align-items: end; column-gap: 18px; }
  .bigdate .eyebrow { grid-column: 1 / -1; }
  .bigdate__day { grid-column: 2; grid-row: 2; align-self: end; }
  .bigdate__num { grid-column: 1; grid-row: 2 / span 2; }
  .bigdate__month { grid-column: 2; grid-row: 3; }
  .who li { grid-template-columns: minmax(0, 1fr); }
  .portrait { max-width: 380px; }
}
@media (max-width: 760px) {
  body { padding-bottom: 84px; }
  .mbar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--notte); border-top: 2px solid var(--giallo);
  }
  .mbar p { margin: 0; font-size: 14px; line-height: 1.3; color: var(--grigio); }
  .mbar p b { display: block; color: var(--latte); font-size: 15px; }
  .mbar a { background: var(--giallo); color: var(--notte); text-decoration: none; font-weight: 700; padding: 13px 20px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; }
  .mbar a svg { width: 18px; height: 18px; }
  .mbar .nota { position: absolute; bottom: calc(100% + 10px); left: var(--gutter); margin: 0; }
  .ticket dl div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .agenda li { grid-template-columns: minmax(0, 1fr) auto; }
  .agenda__date { grid-column: 1 / -1; }
  .foot .wrap { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px) {
  .timeline { grid-template-columns: minmax(0, 1fr); }
  .quotes { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; }
  .nav__cta small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .btn, .faq summary::after, .reel__img, .reel__video { transition: none; }
}

/* ---------- stati serata (dal foglio Google) ---------- */
.pill--warn { background: var(--giallo); color: var(--notte); }
.pill--sold { background: rgba(227,38,47,.16); color: #FF7A7A; }
.pill--off { background: var(--notte-3); color: var(--grigio); text-decoration: line-through; }
.agenda li.is-off { opacity: .55; }
.proto__dati { opacity: .85; }

/* nessuna serata in programma: "Nuove date / in arrivo" al posto del numero */
.bigdate.is-vuota .bigdate__num { display: none; }
.bigdate.is-vuota .bigdate__day,
.bigdate.is-vuota .bigdate__month { grid-column: 1 / -1; grid-row: auto; }
.bigdate.is-vuota .bigdate__month { font-size: clamp(64px, 9vw, 124px); }

/* il giorno accanto a "Partecipa" compare solo quando arriva dal foglio */
.nav__cta small:empty { display: none; }

/* ---------- pagina privacy ---------- */
.nav__back { color: var(--grigio); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav__back:hover { color: var(--latte); }
.legale { background: var(--carta); color: var(--notte); padding-block: clamp(48px, 7vw, 96px); --tbd: var(--notte); }
.legale .wrap { max-width: 820px; }
.legale h1 { font-size: clamp(52px, 8vw, 96px); margin-bottom: 20px; }
.legale h2 {
  font: 800 clamp(26px, 3vw, 34px)/1.05 var(--display);
  font-stretch: 75%; font-variation-settings: "wdth" 75;
  text-transform: uppercase; margin: 52px 0 14px;
}
.legale p, .legale li { font-size: 17.5px; color: #2d2a24; max-width: 65ch; }
.legale p { margin: 0 0 14px; }
.legale .lead { color: var(--notte); max-width: 52ch; }
.legale ul { padding-left: 1.2em; margin: 0 0 14px; display: grid; gap: 10px; }
.legale .aggiornato { color: var(--grigio-scuro); font-size: 14px; margin-top: 18px; }

/* ---------- pagina 404 ---------- */
.errore { background: var(--giallo); color: var(--notte); padding-block: clamp(64px, 10vw, 140px); }
.errore .wrap { display: grid; gap: 26px; justify-items: start; }
.errore h1 { font-size: clamp(130px, 26vw, 300px); line-height: .8; }
.errore .script { font-size: clamp(40px, 6vw, 72px); transform: rotate(-4deg); display: inline-block; }
.errore__azioni { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; }

/* ---------- reel in attesa del feed ---------- */
/* Niente reel di riserva a schermo mentre arrivano quelli veri: solo un riquadro che "respira" */
.in-attesa .reel > * { visibility: hidden; }
.in-attesa .reel {
  background: linear-gradient(110deg, var(--notte-2) 30%, var(--notte-3) 50%, var(--notte-2) 70%) 0 0 / 300% 100%;
  animation: attesa 1.6s ease-in-out infinite;
}
@keyframes attesa { from { background-position: 100% 0; } to { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) { .in-attesa .reel { animation: none; } }

/* ---------- bottoni social (Instagram e TikTok) ---------- */
.social { display: flex; flex-wrap: wrap; gap: 12px; }
.social a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; border: 2px solid currentColor;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.social svg { width: 20px; height: 20px; flex: none; }
.social small { font-weight: 500; font-size: 14px; opacity: .7; }
.social a:hover { background: var(--giallo); border-color: var(--giallo); color: var(--notte); }
.final .social a:hover { background: var(--notte); border-color: var(--notte); color: var(--giallo); }
.segui { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; }
.segui p { margin: 0; color: var(--grigio); max-width: 44ch; }
@media (prefers-reduced-motion: reduce) { .social a { transition: none; } }
@media (max-width: 520px) { .social { flex-direction: column; width: 100%; } .social a { justify-content: center; } }
