/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

/* ---------- Tokens ---------- */
:root {
  --ink: #0E0E10;
  --ink-soft: #18181B;
  --paper: #F5F3EF;
  --paper-soft: #EAE5DA;
  --red: #E30613;
  --red-dark: #A80410;
  --cyan: #4BA3E3;
  --apricot: #F6C177;

  --on-dark: #F5F3EF;
  --on-dark-muted: rgba(245, 243, 239, .68);
  --on-light: #17171A;
  --on-light-muted: rgba(23, 23, 26, .64);

  --line-dark: rgba(245, 243, 239, .16);
  --line-light: rgba(23, 23, 26, .14);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1220px;
  --gap: clamp(1rem, 2vw, 2rem);
  --radius: 2px;
  --ease: cubic-bezier(.22, .7, .3, 1);
}

body {
  background: var(--paper);
  color: var(--on-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--red); color: #fff; padding: .75em 1.25em; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--red);
  margin-bottom: .6em;
}
.eyebrow-light { color: var(--apricot); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  margin-bottom: .6em;
}
.section-title.on-dark { color: var(--on-dark); }
.section-title.huge { font-size: clamp(3.5rem, 13vw, 8rem); display: flex; align-items: baseline; gap: .15em; }
.gsk-num { color: var(--apricot); -webkit-text-stroke: 2px var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.05rem;
  padding: .85em 1.6em;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { background: transparent; border-color: var(--on-light); color: var(--on-light); }
.btn-ghost:hover { background: var(--on-light); color: var(--paper); }
.btn-ghost-light { background: transparent; border-color: var(--on-dark); color: var(--on-dark); }
.btn-ghost-light:hover { background: var(--on-dark); color: var(--ink); }
.btn-gsk { background: var(--apricot); border-color: var(--apricot); color: var(--ink); }
.btn-gsk:hover { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }
.btn-large { font-size: 1.2rem; padding: 1em 2em; }

.link-more {
  display: inline-block; margin-top: 1.5em;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--red); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .18s var(--ease);
}
.link-more:hover { border-color: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 243, 239, .97);
  border-bottom: 1px solid var(--line-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand-logo { height: 34px; width: auto; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--on-light); transition: transform .25s var(--ease), opacity .25s var(--ease); }

.site-nav ul { display: flex; align-items: center; gap: clamp(.9rem, 1.6vw, 1.6rem); flex-wrap: wrap; }
.site-nav a {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: .95rem; text-decoration: none; color: var(--on-light);
  padding: .3em 0; border-bottom: 2px solid transparent;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.site-nav a:hover { border-color: var(--red); color: var(--red); }
.nav-cta { color: var(--red) !important; }

.lang-switch { display: flex; align-items: center; gap: .35rem; list-style: none; }
.lang-item {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-display) !important; font-weight: 700 !important; font-size: .82rem !important; letter-spacing: .04em;
  padding: .28rem .55rem; border: 1px solid var(--line-light); border-radius: var(--radius);
  text-decoration: none; color: var(--on-light-muted) !important;
}
.lang-item:hover { color: var(--red) !important; border-color: var(--red); }
.lang-item.is-active { color: var(--red) !important; border-color: var(--red); background: rgba(227,6,19,.06); }
.flag-icon { width: 15px; height: 15px; border-radius: 2px; flex-shrink: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 0; top: 62px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding: 2rem;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .site-nav a { color: var(--on-dark); font-size: 1.6rem; }
  .lang-switch { margin-top: .5rem; }
  .lang-item { color: var(--on-dark-muted) !important; font-size: .95rem !important; border-color: var(--line-dark); }
  .lang-item.is-active, .lang-item:hover { color: var(--apricot) !important; border-color: var(--apricot); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Halftone textures ---------- */
.gsk-halftone, .numeri-halftone {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px);
  background-size: 7px 7px;
}
.gsk-halftone { color: var(--apricot); opacity: .1; }
.numeri-halftone { color: var(--on-dark); opacity: .06; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 780px);
  display: flex; align-items: flex-end;
  padding-block: clamp(3rem, 8vh, 5rem);
  background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--ink); }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; animation: hero-kenburns 8s ease-out forwards; }
@keyframes hero-kenburns {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(14,14,16,.92) 0%, rgba(14,14,16,.55) 42%, rgba(14,14,16,.22) 68%, rgba(14,14,16,.35) 100%),
    linear-gradient(100deg, rgba(227,6,19,.28) 0%, rgba(227,6,19,0) 38%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .3s ease; transform: none; }
  .hero-slide.is-active { animation: none; }
}

.hero-inner { position: relative; z-index: 2; color: var(--on-dark); }
.logo-sticker {
  display: inline-block; background: var(--paper); padding: .8rem 1.4rem;
  border-radius: var(--radius); transform: rotate(-3deg);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  margin-bottom: 1.4rem;
}
.logo-sticker img { width: 220px; height: auto; display: block; }
.hero-claim {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.75rem, 8vw, 5.5rem); line-height: .92; letter-spacing: -.01em;
  margin-bottom: .5em; text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-lede { max-width: 560px; font-size: 1.1rem; color: var(--on-dark-muted); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }

.hero-dots { display: flex; gap: .6rem; }
.hero-dot {
  width: 28px; height: 4px; border-radius: 2px; background: rgba(245,243,239,.32);
  cursor: pointer; padding: 0; border: 0; transition: background-color .2s var(--ease);
}
.hero-dot.is-active { background: var(--apricot); }
.hero-dot:hover { background: rgba(245,243,239,.6); }

@media (max-width: 700px) {
  .logo-sticker img { width: 160px; }
  .hero-inner { text-align: left; }
}

/* ---------- Graffiskate ---------- */
.gsk {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.gsk .wrap { position: relative; z-index: 1; }
.gsk-head { max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gsk-lede { font-size: 1.15rem; color: var(--on-dark-muted); margin-top: 1rem; }

.gsk-poster-row { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.gsk-poster-link { display: block; border: 1px solid var(--line-dark); transition: transform .25s var(--ease); }
.gsk-poster-link:hover { transform: translateY(-4px); }
.gsk-poster { width: 100%; height: auto; }

.gsk-program { display: flex; flex-direction: column; gap: 2.2rem; }
.gsk-day-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.5rem; color: var(--apricot);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .6em;
  border-bottom: 2px solid var(--line-dark); padding-bottom: .5em; margin-bottom: 1em;
}
.gsk-day-title span { font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .95rem; color: var(--on-dark-muted); }

.gsk-cinedinner { display: flex; gap: 1.2rem; background: rgba(75,163,227,.1); border: 1px solid rgba(75,163,227,.35); padding: 1.2rem; border-radius: var(--radius); }
.gsk-time { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--cyan); white-space: nowrap; min-width: 3.4em; }
.gsk-event-title { font-weight: 700; margin-bottom: .3em; }
.gsk-event-desc { color: var(--on-dark-muted); font-size: .95rem; margin-bottom: .5em; }
.gsk-event-note { font-size: .85rem; color: var(--on-dark-muted); }
.gsk-event-note a { color: var(--apricot); }

.gsk-list { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem; }
.gsk-list li { display: flex; gap: 1rem; }
.gsk-list .gsk-time { font-size: 1.05rem; min-width: 3em; }

.gsk-lineup { display: flex; flex-direction: column; gap: .35rem; border-top: 1px solid var(--line-dark); padding-top: .9rem; }
.gsk-lineup li { display: flex; gap: .8rem; font-size: .95rem; color: var(--on-dark-muted); }
.gsk-lineup li span { font-family: var(--font-display); font-weight: 700; color: var(--cyan); min-width: 3.2em; }

.gsk-footnote { color: var(--on-dark-muted); font-size: .9rem; border-top: 1px solid var(--line-dark); padding-top: 1.4rem; margin-bottom: 2rem; }
.gsk-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.gsk-credits p { font-size: .85rem; color: var(--on-dark-muted); margin-bottom: .4em; }
.gsk-credits strong { color: var(--on-dark); }

@media (max-width: 800px) {
  .gsk-poster-row { grid-template-columns: 1fr; }
  .gsk-poster { max-width: 280px; margin-inline: auto; }
}

/* ---------- Documenti ---------- */
.documenti { padding-block: clamp(4rem, 8vw, 6rem); }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.doc-card {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.6rem; border: 2px solid var(--on-light); border-radius: var(--radius);
  text-decoration: none; color: var(--on-light);
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.doc-card:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); transform: translateY(-3px); }
.doc-icon { width: 40px; height: 40px; }
.doc-icon svg { width: 100%; height: 100%; }
.doc-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .01em; }
.doc-desc { color: var(--on-light-muted); font-size: .92rem; }
.doc-card:hover .doc-desc { color: var(--on-dark-muted); }
.doc-cta { margin-top: auto; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .06em; color: var(--red); }
.doc-card:hover .doc-cta { color: var(--apricot); }

/* ---------- Storia ---------- */
.storia { padding-block: clamp(4rem, 8vw, 6rem); background: var(--paper-soft); }
.storia-intro { max-width: 760px; font-size: 1.1rem; color: var(--on-light-muted); margin-bottom: 2.5rem; }
.storia-hero-figure { position: relative; margin-bottom: 3rem; border: 1px solid var(--line-light); }
.storia-hero-figure img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; object-position: center; }
.logo-stamp {
  position: absolute; bottom: -18px; left: 24px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--paper);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transform: rotate(-6deg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-stamp img { width: 100%; height: 100%; }

.timeline-wrap { position: relative; }
.timeline-wrap::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 48px; pointer-events: none; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--paper-soft));
}
.timeline {
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  border-top: 2px solid var(--on-light); border-bottom: 2px solid var(--on-light);
  scrollbar-width: none;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline-item {
  flex: 0 0 auto; width: min(84vw, 340px);
  padding: 2.2rem 1.6rem;
  border-right: 1px solid var(--line-light);
  scroll-snap-align: start;
}
.timeline-item:last-child { border-right: none; }
.timeline-year {
  display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--red); line-height: 1; margin-bottom: .5rem;
}
.timeline-item h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.2rem; margin-bottom: .5em; letter-spacing: .005em; line-height: 1.15; }
.timeline-item p { color: var(--on-light-muted); font-size: .93rem; }
.timeline-figure { margin-top: 1.2rem; }
.timeline-figure img { width: 100%; height: 170px; object-fit: cover; border: 1px solid var(--line-light); }

.timeline-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-block: 1.2rem;
}
.timeline-nav-btn {
  display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: .95rem; letter-spacing: .03em;
  padding: .65rem 1.3rem; border-radius: var(--radius); border: none;
  background: var(--red); color: #fff; cursor: pointer;
  box-shadow: 0 6px 16px rgba(227,6,19,.3);
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.timeline-nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.timeline-nav-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.timeline-hint { flex: 1; text-align: center; font-size: .85rem; color: var(--on-light-muted); font-style: italic; }

@media (max-width: 640px) {
  .timeline-toolbar { flex-wrap: wrap; justify-content: center; }
  .timeline-hint { order: 3; flex-basis: 100%; margin-top: .4rem; }
  .timeline-nav-btn { font-size: .82rem; padding: .55rem 1rem; }
}

.storia-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 3rem; }
.storia-strip img { width: 100%; height: 220px; object-fit: cover; }
@media (max-width: 700px) { .storia-strip { grid-template-columns: 1fr; } .storia-strip img { height: 260px; } }

.storia-closing {
  margin-top: 2.5rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--on-light-muted); font-size: 1rem;
}

/* ---------- Numeri ---------- */
.numeri { position: relative; overflow: hidden; background: var(--ink); padding-block: clamp(4rem, 8vw, 6rem); }
.numeri .wrap { position: relative; z-index: 1; }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.counter-num {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--apricot); line-height: 1;
}
.counter-label { display: block; margin-top: .4em; color: var(--on-dark-muted); font-size: .95rem; }

/* ---------- Galleria ---------- */
.galleria { padding-block: clamp(4rem, 8vw, 6rem); }
.galleria-intro { max-width: 700px; color: var(--on-light-muted); font-size: 1.05rem; margin-bottom: 2.2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .6rem; }
.gallery-item { display: block; aspect-ratio: 1; overflow: hidden; background: var(--paper-soft); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Palagiovani ---------- */
.palagiovani { padding-block: clamp(4rem, 8vw, 6rem); background: var(--paper-soft); }
.palagiovani-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.palagiovani-text p { color: var(--on-light-muted); margin-bottom: 1.1em; }
.palagiovani-stat { color: var(--on-light) !important; font-size: 1.05rem; }
.palagiovani-media { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.palagiovani-media img { width: 100%; height: 100%; object-fit: cover; }
.pg-main { grid-column: 1 / -1; aspect-ratio: 16/9; }
.palagiovani-media img:not(.pg-main) { aspect-ratio: 1; }
@media (max-width: 860px) { .palagiovani-grid { grid-template-columns: 1fr; } }

/* ---------- Servizi ---------- */
.servizi { padding-block: clamp(4rem, 8vw, 6rem); }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.impact-card { border-left: 3px solid var(--red); padding-left: 1.2rem; }
.impact-kicker { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--red); font-size: .95rem; margin-bottom: .6em; }
.impact-figure { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; margin-bottom: .3em; }
.impact-figure span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .85rem; color: var(--on-light-muted); text-transform: none; letter-spacing: 0; }
.impact-note { color: var(--on-light-muted); font-size: .92rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.service-card { position: relative; padding: 1.6rem; background: var(--paper-soft); border-radius: var(--radius); overflow: hidden; }
.service-sticker { position: absolute; top: .8rem; right: .8rem; width: 46px; height: auto; opacity: .9; }
.service-kicker { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); font-size: .82rem; margin-bottom: .5em; }
.service-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; margin-bottom: .5em; max-width: 85%; }
.service-card p:not(.service-kicker) { color: var(--on-light-muted); font-size: .92rem; }
.service-figures { font-weight: 600; color: var(--on-light) !important; }

/* ---------- Video / Musicclub ---------- */
.video-atm, .musicclub { padding-block: clamp(4rem, 8vw, 6rem); background: var(--paper-soft); }
.musicclub { background: var(--paper); }
.musicclub-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.musicclub-lede { max-width: 60ch; color: var(--on-light-muted); font-size: 1.05rem; }
.musicclub-photo { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); transform: rotate(1.5deg); box-shadow: 0 16px 32px rgba(0,0,0,.18); }
@media (max-width: 800px) { .musicclub-head { grid-template-columns: 1fr; } .musicclub-photo { order: -1; } }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.podcast-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

.video-facade { position: relative; }
.video-play { position: relative; display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.video-play img { width: 100%; height: 100%; object-fit: cover; }
.play-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(14,14,16,.35); transition: background-color .2s var(--ease);
}
.play-icon svg { width: 52px; height: 52px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); transition: transform .2s var(--ease); }
.video-play:hover .play-icon { background: rgba(227,6,19,.55); }
.video-play:hover .play-icon svg { transform: scale(1.12); }
.video-caption { margin-top: .6rem; font-size: .9rem; font-weight: 600; }
.video-facade iframe { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); }

.musicclub-links { margin-top: 2rem; font-size: .92rem; color: var(--on-light-muted); }
.musicclub-links a { color: var(--red); font-weight: 600; }

/* ---------- Contatto ---------- */
.contatto { padding-block: clamp(4rem, 8vw, 6rem); background: var(--ink); color: var(--on-dark); }
.contatto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.contatto p { color: var(--on-dark-muted); margin-bottom: 1.5em; }
.contact-card { background: rgba(245,243,239,.05); border: 1px solid var(--line-dark); padding: 1.8rem; border-radius: var(--radius); }
.contact-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; margin-bottom: .6em; }
.contact-card p { margin-bottom: 1em; color: var(--on-dark); }
.contact-card a { color: var(--apricot); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
@media (max-width: 800px) { .contatto-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-soft); padding-block: 3rem; border-top: 1px solid var(--line-light); }
.partner-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3rem); margin-bottom: 2.5rem; }
.partner-row img { max-height: 52px; width: auto; filter: grayscale(1); opacity: .65; transition: filter .2s var(--ease), opacity .2s var(--ease); }
.partner-row img:hover { filter: grayscale(0); opacity: 1; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; text-align: center; border-top: 1px solid var(--line-light); padding-top: 2rem; }
.footer-logo { height: 28px; width: auto; }
.footer-bottom p { font-size: .85rem; color: var(--on-light-muted); }
.footer-bottom a { color: var(--red); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(14,14,16,.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }

.lightbox-slide {
  display: flex; width: 100%; max-width: 1100px; max-height: 88vh;
  background: var(--ink); border: 1px solid var(--line-dark);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-image-wrap { position: relative; flex: 1 1 68%; min-width: 0; background: #000; display: flex; align-items: center; justify-content: center; }
.lightbox-image-wrap img { display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto; object-fit: contain; }

.lightbox-info {
  flex: 0 0 260px; padding: 2rem 1.75rem; color: var(--on-dark);
  border-left: 1px solid var(--line-dark);
  display: flex; flex-direction: column; justify-content: flex-end; gap: .9rem;
}
.lightbox-mark { width: 40px; height: 40px; }
.lightbox-caption { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; line-height: 1.25; letter-spacing: .01em; }
.lightbox-count { font-size: .8rem; color: var(--on-dark-muted); letter-spacing: .08em; }

.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2; color: #fff; font-size: 2.2rem; cursor: pointer;
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  color: #fff; font-size: 2rem; cursor: pointer; background: rgba(0,0,0,.4); border-radius: 50%;
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: .6rem; }
.lightbox-next { right: .6rem; }
.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover { color: var(--red); }

@media (max-width: 760px) {
  .lightbox-slide { flex-direction: column; max-height: 92vh; overflow-y: auto; }
  .lightbox-image-wrap { flex: 0 0 auto; }
  .lightbox-image-wrap img { max-height: 52vh; }
  .lightbox-info { border-left: 0; border-top: 1px solid var(--line-dark); flex: 0 0 auto; justify-content: flex-start; }
}
