@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #050505;
  --paper: #d8d3d4;
  --paper-soft: #b9b1b3;
  --muted: #7e7678;
  --line: rgba(216, 211, 212, .13);
  --line-strong: rgba(216, 211, 212, .31);
  --max: 1120px;
  --prose: 760px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--paper);
  background: #050505;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  z-index: 20;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,.035) 1px, transparent 2px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, .94);
  backdrop-filter: blur(10px);
  border-color: var(--line);
}

.brand {
  color: var(--paper);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .28em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  transition: color .2s;
}

.site-nav a:hover { color: var(--paper); }

.menu-toggle {
  display: none;
  width: 36px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--paper);
  margin: 6px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 24px 76px;
  position: relative;
  background: #050505;
}

.hero-inner {
  width: min(1280px, 100%);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(1180px, 96vw);
  margin: 0 auto;
  filter: contrast(1.03);
}

.kicker {
  margin: 18px 0 0;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .42em;
  color: #777173;
}

.enter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 54px;
  margin-top: 44px;
  padding: 14px 30px;
  border: 1px solid var(--line-strong);
  color: #d5d0d1;
  background: rgba(255,255,255,.012);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .82rem;
  font-weight: 500;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.enter-button:hover,
.enter-button:focus-visible {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.045);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

.section {
  position: relative;
  border-top: 1px solid var(--line);
  background: #050505;
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0;
}

.prose {
  max-width: var(--prose);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 24px;
  color: #716a6c;
  text-transform: uppercase;
  letter-spacing: .30em;
  font-size: .66rem;
  font-weight: 600;
}

.prose > .eyebrow,
.prose > h1,
.prose > h2,
.contact-inner > .eyebrow,
.contact-inner > h2,
.section-title,
.section-heading {
  text-align: center;
}

h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -.025em;
  margin: 0 auto 46px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 40px;
}

h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  margin: 16px 0 10px;
}

.prose > p:not(.eyebrow):not(.lead):not(.closing) {
  margin: 0 0 24px;
  color: var(--paper-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.58;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.manifesto .lead {
  margin: 38px 0 26px;
  color: #e5e0e1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  text-align: center;
}

blockquote {
  margin: 46px 0;
  padding: 24px 28px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: #ddd7d8;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.35;
  text-align: justify;
  text-justify: inter-word;
}

.manifesto .closing {
  margin: 52px 0 0;
  color: #b0a9aa;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  letter-spacing: .22em;
  font-weight: 600;
  text-align: center;
}

.story-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-card {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}

.story-card:hover { background: rgba(255,255,255,.015); }

.story-index {
  color: #777173;
  font-family: "Cormorant Garamond", serif;
  font-size: .95rem;
  letter-spacing: .14em;
}

.story-card p {
  margin: 14px 0 0;
  color: #9f9799;
  font-size: .94rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.story-card .story-subtitle {
  margin-top: 0;
  color: #70696b;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Inter, sans-serif;
  font-size: .63rem;
  text-align: left;
}

.subtitle-dash {
  color: #a39c9e;
  font-size: .78em;
}

.music-inner {
  max-width: 850px;
}

.release {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.release-label {
  margin: 0;
  color: #777173;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
  text-align: center;
}

.release ol {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: tracks;
}

.release li {
  counter-increment: tracks;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.release li::before {
  content: "0" counter(tracks);
  flex: 0 0 34px;
  font-family: Inter, sans-serif;
  font-size: .62rem;
  letter-spacing: .16em;
  color: #6e6769;
}

.release li small {
  display: block;
  margin-top: 3px;
  color: #716a6c;
  font-family: Inter, sans-serif;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact {
  min-height: 58vh;
  display: flex;
  align-items: center;
}

.contact-inner {
  max-width: 760px;
  text-align: center;
}

.contact-copy {
  max-width: 640px;
  margin: 0 auto;
  color: #989092;
  font-size: .94rem;
}

.contact-link {
  display: inline-block;
  margin-top: 26px;
  color: #d8d3d4;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3.2vw, 2.55rem);
  border-bottom: 1px solid var(--line-strong);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 44px 24px 38px;
  border-top: 1px solid var(--line);
  background: #040404;
  color: #746d6f;
  text-align: center;
}

.footer-brand {
  color: #aaa3a5;
  font-size: .67rem;
  letter-spacing: .28em;
  font-weight: 600;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .65rem;
  letter-spacing: .08em;
}

.footer-credit-label {
  color: #625c5e;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .54rem;
}

.footer-credit a {
  color: #a69fa1;
  text-decoration: none;
}

.footer-credit a:hover { color: #fff; }

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 12px;
}

.footer-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: #837c7e;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font: inherit;
  font-size: .57rem;
  cursor: pointer;
  transition: color .2s;
}

.footer-action:hover,
.footer-action:focus-visible {
  color: #d8d3d4;
  outline: none;
}

.footer-action.is-placeholder { opacity: .55; }

.footer-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.footer-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #5f595b;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .52rem;
}

.footer-end strong {
  color: #8f888a;
  font-size: .59rem;
}

@media (max-width: 820px) {
  .site-header { padding: 18px 20px; }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    background: rgba(5,5,5,.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: "Cormorant Garamond", serif;
    text-transform: none;
    letter-spacing: .04em;
    font-size: 2rem;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 12px;
  }

  .hero-logo {
    width: 112%;
    margin-left: -6%;
  }

  .kicker {
    letter-spacing: .24em;
    font-size: .58rem;
  }

  .enter-button {
    min-width: 166px;
    min-height: 56px;
    margin-top: 36px;
    font-size: .82rem;
  }

  .section-inner {
    width: min(100% - 34px, var(--max));
    padding: 86px 0;
  }

  .prose > p:not(.eyebrow):not(.lead):not(.closing) {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .story-grid { grid-template-columns: 1fr; }

  .story-card {
    min-height: auto;
    padding: 30px 26px;
  }

  blockquote {
    margin: 38px 0;
    padding: 20px 18px;
  }

  .release li {
    font-size: 1.3rem;
  }

  .site-footer {
    padding: 34px 18px 30px;
    gap: 14px;
  }

  .footer-actions {
    justify-content: center;
  }
}


/* v4 — titoli sezione in maiuscolo, titoli canzoni nel loro casing */
.section .eyebrow,
.section-title {
  text-transform: uppercase;
}

.bio-more {
  margin-top: 44px;
  text-align: center;
}

.text-link {
  display: inline-block;
  padding: 11px 0 8px;
  color: #b2abad;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .64rem;
  transition: color .2s, border-color .2s;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  outline: none;
}

.related-inner {
  max-width: 900px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-links a {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #aaa3a5;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  transition: color .2s, background .2s;
}

.related-links a:hover,
.related-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.018);
  outline: none;
}

@media (max-width: 720px) {
  .related-links {
    grid-template-columns: 1fr;
  }

  .related-links a {
    min-height: 78px;
  }
}


/* v6 — splash separata, header raccolto, titoli e contatti */
.splash-page {
  min-height: 100svh;
  margin: 0;
  background: #050505;
}

.splash {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.splash-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 62px;
  padding: 16px 34px;
  border: 1px solid rgba(216, 211, 212, .40);
  color: #d8d3d4;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .80rem;
  font-weight: 500;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.splash-enter:hover,
.splash-enter:focus-visible {
  border-color: rgba(255,255,255,.85);
  color: #fff;
  background: rgba(255,255,255,.025);
  transform: translateY(-2px);
  outline: none;
}

/* Header più raccolto verso il centro, senza schiacciarlo */
.site-header {
  padding: 0;
}

.header-inner {
  width: min(1180px, calc(100% - 80px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-site main {
  padding-top: 72px;
}

.manifesto-declaration {
  text-transform: uppercase;
  letter-spacing: .025em;
}

.section-heading {
  text-transform: uppercase;
}

.contact-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #aaa3a5;
  text-transform: uppercase;
  letter-spacing: .20em;
  font: inherit;
  font-size: .66rem;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.02);
  outline: none;
}

/* Footer realmente impilato e centrato */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-brand,
.footer-credit,
.footer-actions,
.footer-end {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.footer-end strong {
  display: none;
}

@media (max-width: 820px) {
  .header-inner {
    width: calc(100% - 38px);
    min-height: 64px;
  }

  .main-site main {
    padding-top: 64px;
  }

  .site-header {
    padding: 0;
  }
}


/* v7 — header più interno */
@media (min-width: 821px) {
  .header-inner {
    width: min(1180px, calc(100% - 80px));
  }

  .site-nav {
    gap: 24px;
  }
}


/* v8 — bilingual */
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch,
.splash-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-switch a,
.lang-switch span,
.splash-lang a,
.splash-lang span {
  color: #645d5f;
  text-decoration: none;
}

.lang-switch .active,
.splash-lang .active {
  color: #cfc9ca;
}

.lang-switch a:hover,
.splash-lang a:hover {
  color: #fff;
}

.splash-entry-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

@media (max-width: 820px) {
  .header-right {
    gap: 10px;
  }

  .lang-switch {
    position: relative;
    z-index: 61;
    margin-right: 6px;
  }

  .site-nav.open + .lang-switch {
    position: fixed;
    right: 24px;
    bottom: 24px;
  }
}


/* v9 — manifesto headline uppercase */
.manifesto h1 {
  text-transform: uppercase;
}


/* v10 — logo on splash */
.splash-entry-wrap {
  width: min(1180px, 100%);
}

.splash-logo {
  display: block;
  width: min(1050px, 92vw);
  max-height: 64vh;
  object-fit: contain;
  margin: 0 auto 34px;
}

@media (max-width: 820px) {
  .splash-logo {
    width: min(1080px, 108vw);
    margin-left: -4vw;
    margin-right: -4vw;
    margin-bottom: 26px;
  }
}


/* v11 — technical SEO */
.seo-h1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* v16 — red toned down + live Facebook */
.splash-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(88, 6, 10, .075) 0%, rgba(40, 0, 0, .035) 28%, rgba(0,0,0,0) 62%);
  opacity: .75;
}

.splash-logo {
  filter: saturate(.84) brightness(.98) contrast(1.02);
}

@media (max-width: 820px) {
  .splash-page::before {
    background:
      radial-gradient(ellipse at center, rgba(88, 6, 10, .06) 0%, rgba(40, 0, 0, .028) 30%, rgba(0,0,0,0) 64%);
  }
}



/* v18 — mobile header a soglia + tendina centrata */
.section {
  scroll-margin-top: 90px;
}

@media (max-width: 820px) {
  .site-header {
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, background .24s ease, border-color .24s ease;
  }

  .site-header.mobile-revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-inner {
    width: min(100% - 28px, 420px);
    min-height: 64px;
    justify-content: center;
    position: relative;
  }

  .brand {
    display: none;
  }

  .header-right {
    display: contents;
  }

  .menu-toggle {
    width: 72px;
    height: 48px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    background: rgba(5,5,5,.86);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
  }

  .menu-toggle span:not(.sr-only) {
    margin: 4px 0;
  }

  .lang-switch {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
    padding-right: 2px;
  }

  .site-nav {
    inset: auto;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    width: min(88vw, 340px);
    max-height: min(66svh, 420px);
    overflow: auto;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(5,5,5,.97);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    box-shadow: 0 18px 60px rgba(0,0,0,.48);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .site-nav a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-family: Inter, system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .68rem;
    line-height: 1.35;
    text-align: center;
    color: #c1bbbd;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #fff;
    background: rgba(255,255,255,.025);
    outline: none;
  }

  .main-site main {
    padding-top: 0;
  }

  .section-inner {
    padding: 92px 0;
  }

  .bio .section-inner,
  .related .section-inner,
  .contact .section-inner {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    margin-bottom: 40px;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
    line-height: 1.02;
    margin-bottom: 28px;
  }

  .prose > p:not(.eyebrow):not(.lead):not(.closing) {
    font-size: 1.03rem;
  }

  .manifesto .lead {
    font-size: 1.45rem;
  }

  .related-links {
    gap: 0;
  }

  .related-links a {
    min-height: 88px;
    font-size: .66rem;
    letter-spacing: .15em;
  }

  .footer-actions {
    gap: 8px 10px;
  }
}



/* v19 — intro video + media hero in home */
body.intro-playing {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .8s ease, visibility 0s linear .8s;
}

.intro-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease;
}

.intro-overlay.is-fading {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.intro-skip {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 10001;
  padding: 10px 14px;
  border: 1px solid rgba(216, 211, 212, .38);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(8px);
  color: #d8d3d4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font: 500 .60rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  border-color: rgba(255,255,255,.78);
  color: #fff;
  outline: none;
}

.home-media {
  background: #050505;
  border-top: 0;
  padding: 102px 20px 96px;
}

.home-media-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-logo-link {
  display: block;
  width: min(940px, 95vw);
  margin: 0 auto 54px;
}

.home-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.84) brightness(.98) contrast(1.02);
}

.home-video-wrap {
  width: min(960px, 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.home-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

@media (max-width: 820px) {
  .home-media {
    padding: 58px 12px 72px;
  }

  .home-logo-link {
    width: min(112%, 760px);
    margin-left: -6%;
    margin-right: -6%;
    margin-bottom: 38px;
  }

  .home-video-wrap {
    width: 100%;
    padding: 10px 0;
  }

  .intro-skip {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    padding: 10px 12px;
  }
}



/* v20 — intro mini-player: piccolo, centrato, con audio, mai fullscreen */
body.intro-playing {
  overflow: auto;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

.intro-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease;
}

.intro-overlay.is-fading {
  opacity: 0;
  transition: opacity 1.05s ease;
}

.intro-video {
  width: min(360px, 78vw);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(216,211,212,.28);
  box-shadow: 0 14px 44px rgba(0,0,0,.58);
}

.intro-skip {
  position: absolute;
  left: 50%;
  top: calc(50% + min(101px, 22vw) + 20px);
  transform: translateX(-50%);
  z-index: 10001;
  min-width: 96px;
  padding: 9px 12px;
  border: 1px solid rgba(216,211,212,.30);
  background: rgba(5,5,5,.90);
  color: #d8d3d4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font: 500 .58rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

@media (max-width: 820px) {
  .intro-overlay {
    padding: 16px;
  }

  .intro-video {
    width: min(300px, 76vw);
  }

  .intro-skip {
    top: calc(50% + min(85px, 21vw) + 18px);
  }
}



/* v21 — home logo in dissolvenza + video only on demand */
.home-logo {
  opacity: .76;
  filter: saturate(.76) brightness(.94) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at center, #000 58%, rgba(0,0,0,.88) 75%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at center, #000 58%, rgba(0,0,0,.88) 75%, transparent 100%);
  transition: opacity .25s ease;
}

.home-logo-link:hover .home-logo,
.home-logo-link:focus-visible .home-logo {
  opacity: .90;
}

.home-media {
  padding-bottom: 82px;
}

.home-logo-link {
  margin-bottom: 28px;
}

.home-video-button {
  appearance: none;
  min-width: 176px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #aaa3a5;
  text-transform: uppercase;
  letter-spacing: .20em;
  font: 500 .64rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}

.home-video-button:hover,
.home-video-button:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.02);
  outline: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease;
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal-window {
  position: relative;
  width: min(620px, 88vw);
  padding: 42px 14px 14px;
  border: 1px solid var(--line-strong);
  background: #050505;
  box-shadow: 0 20px 70px rgba(0,0,0,.65);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  appearance: none;
  border: 0;
  background: transparent;
  color: #8f888a;
  text-transform: uppercase;
  letter-spacing: .16em;
  font: 500 .56rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  color: #fff;
  outline: none;
}

.modal-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

@media (max-width: 820px) {
  .home-media {
    padding-bottom: 66px;
  }

  .home-logo-link {
    margin-bottom: 24px;
  }

  .home-video-button {
    min-width: 164px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal-window {
    width: min(92vw, 470px);
    padding: 40px 10px 10px;
  }
}



/* v22 — top home più compatto + finestra video più piccola */
.home-media {
  padding: 86px 20px 58px;
}

.home-media-inner {
  width: min(900px, 100%);
}

.home-logo-link {
  width: min(760px, 88vw);
  margin: 0 auto 18px;
}

.home-logo {
  opacity: .70;
  filter: saturate(.72) brightness(.93) contrast(1.01);
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at center, #000 54%, rgba(0,0,0,.82) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 74% 70% at center, #000 54%, rgba(0,0,0,.82) 74%, transparent 100%);
}

.home-media-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
}

.home-video-button {
  min-width: 124px;
  min-height: 42px;
  padding: 10px 18px;
  font-size: .60rem;
  letter-spacing: .24em;
}

/* Modal decisamente più contenuta */
.video-modal {
  padding: 18px;
}

.video-modal-window {
  width: min(430px, 82vw);
  padding: 36px 10px 10px;
}

.modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 56vh;
}

.video-modal-close {
  top: 9px;
  right: 10px;
  font-size: .53rem;
}

@media (max-width: 820px) {
  .home-media {
    padding: 42px 10px 54px;
  }

  .home-logo-link {
    width: min(94vw, 560px);
    margin: 0 auto 16px;
  }

  .home-logo {
    opacity: .68;
  }

  .home-video-button {
    min-width: 112px;
    min-height: 40px;
  }

  .video-modal-window {
    width: min(340px, 86vw);
    padding: 34px 8px 8px;
  }

  .modal-video {
    max-height: 44vh;
  }
}



/* v23 — intro continua finché l'utente non preme SALTA */
.intro-skip {
  left: 50%;
  top: calc(50% + min(101px, 22vw) + 14px);
  right: auto;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 7px 10px;
  transform: translateX(-50%);
  border: 1px solid rgba(216,211,212,.28);
  background: rgba(5,5,5,.88);
  color: #aaa3a5;
  letter-spacing: .16em;
  font-size: .52rem;
  line-height: 1;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

@media (max-width: 820px) {
  .intro-skip {
    top: calc(50% + min(85px, 21vw) + 12px);
    padding: 7px 9px;
    font-size: .50rem;
  }
}



/* v24 — titoli brani meglio impaginati */
.release li {
  align-items: flex-start;
}

.release li > span,
.release li .track-main {
  display: block;
}

.release li .track-main {
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .045em;
  line-height: 1.12;
}

.release li small {
  margin-top: 7px;
  font-size: .70rem;
  letter-spacing: .10em;
  text-transform: none;
}

.story-card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .04em;
}

.story-card .story-subtitle {
  margin-bottom: 14px;
  color: #8d8688;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: none;
}

@media (max-width: 820px) {
  .release li {
    flex-direction: row;
    align-items: flex-start;
  }

  .release li .track-main {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .release li small {
    margin-top: 6px;
    font-size: .62rem;
    letter-spacing: .08em;
    line-height: 1.4;
  }

  .story-card h3 {
    font-size: 1.16rem;
    line-height: 1.2;
  }

  .story-card .story-subtitle {
    font-size: .62rem;
  }
}



/* v25 — rifinitura fine sezione MUSICA */
.music-inner {
  max-width: 820px;
}

.release {
  max-width: 720px;
  padding-top: 18px;
}

.release-label {
  margin-bottom: 18px;
  font-size: .64rem;
  letter-spacing: .24em;
}

.release ol {
  margin-top: 10px;
}

.release li {
  gap: 16px;
  padding: 19px 0 18px;
}

.release li::before {
  flex: 0 0 30px;
  padding-top: 2px;
  font-size: .58rem;
  letter-spacing: .14em;
}

.release li .track-main {
  font-size: 1.34rem;
  line-height: 1.12;
  letter-spacing: .05em;
}

.release li small {
  margin-top: 5px;
  color: #817a7c;
  font-size: .66rem;
  letter-spacing: .085em;
  line-height: 1.42;
}

.story-card h3 {
  letter-spacing: .045em;
}

.story-card .story-subtitle {
  margin-top: -2px;
  margin-bottom: 16px;
  color: #877f81;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .music-inner {
    max-width: 100%;
  }

  .release {
    max-width: 100%;
  }

  .release-label {
    margin-bottom: 14px;
    font-size: .60rem;
  }

  .release li {
    gap: 12px;
    padding: 17px 0 16px;
  }

  .release li::before {
    flex-basis: 26px;
    font-size: .54rem;
  }

  .release li .track-main {
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .release li small {
    margin-top: 4px;
    font-size: .60rem;
    letter-spacing: .065em;
    line-height: 1.38;
  }

  .story-card .story-subtitle {
    margin-bottom: 13px;
  }
}
