/* =====================================================
   STEFANO SANTIN — Design System
   Palette: Deep ink, warm gold, off-white cream
   Aesthetic: Refined editorial / luxury-minimal
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --ink:       #0f0e0c;
  --ink-soft:  #1e1c18;
  --gold:      #b8943a;
  --gold-lt:   #d4ac58;
  --cream:     #f5f0e8;
  --cream-dk:  #ece5d6;
  --mid:       #6b6456;
  --light-mid: #a09585;
  --white:     #fdfcf9;
  --shadow:    rgba(15,14,12,.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;

  --nav-h: 70px;
  --r: 3px;
  --tr: .28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dk); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== NAV ===================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  width: 100%;
  height: var(--nav-h);
  background: rgba(15,14,12,.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(184,148,58,.25);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .04em;
  margin-right: auto;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > span.nav-parent {
  display: block;
  padding: .45rem .9rem;
  color: var(--cream-dk);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--tr);
  white-space: nowrap;
  user-select: none;
}
.nav-links > li > a:hover,
.nav-links > li > span.nav-parent:hover,
.nav-links > li > a.active,
.nav-links > li > span.nav-parent.active {
  color: var(--gold);
}

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  min-width: 200px;
  background: var(--ink-soft);
  border: 1px solid rgba(184,148,58,.2);
  border-top: 2px solid var(--gold);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--tr), transform var(--tr);
  z-index: 901;
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1rem;
  color: var(--light-mid);
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--tr), background var(--tr);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold); background: rgba(184,148,58,.06); }

/* sub-dropdown for EXTRA */
.has-sub { position: relative; }
.sub-dropdown {
  position: absolute; left: 100%; top: 0;
  min-width: 190px;
  background: var(--ink-soft);
  border: 1px solid rgba(184,148,58,.2);
  border-top: 2px solid var(--gold);
  opacity: 0; pointer-events: none;
  transform: translateX(-4px);
  transition: opacity var(--tr), transform var(--tr);
  z-index: 902;
}
.has-sub:hover .sub-dropdown { opacity: 1; pointer-events: all; transform: translateX(0); }
.sub-dropdown a { color: var(--light-mid); }
.sub-dropdown a:hover { color: var(--gold); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { width: 24px; height: 2px; background: var(--cream); transition: var(--tr); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--ink);
  z-index: 800;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  border-top: 1px solid rgba(184,148,58,.15);
}
.mobile-nav.open { max-height: 90vh; overflow-y: auto; }
.mobile-nav a {
  display: block;
  padding: .85rem 1.5rem;
  color: var(--cream-dk);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-section-label {
  display: block;
  padding: .5rem 1.5rem .3rem;
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===================== PAGE WRAPPER ===================== */
main { flex: 1; padding-top: var(--nav-h); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(184,148,58,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 75% 30%, rgba(184,148,58,.05) 0%, transparent 60%),
    linear-gradient(160deg, #0f0e0c 0%, #1a1710 50%, #0f0e0c 100%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(184,148,58,.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(184,148,58,.04) 60px);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--light-mid);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: .75rem 1.9rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--tr);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,148,58,.3); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===================== SECTIONS ===================== */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-wide { max-width: 1300px; }

.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .5rem;
}
.section-title em { font-style: italic; }
.section-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2.5rem;
}
.section-intro {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ===================== ALBUM GRID ===================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2rem;
}
.album-card {
  background: var(--white);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cream-dk);
  transition: all .3s ease;
  overflow: hidden;
}
.album-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); border-color: var(--gold); }
.album-card-cover {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}
.album-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.album-card:hover .album-card-cover img { transform: scale(1.04); }
.album-card-cover-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
}
.album-card-cover-placeholder svg { opacity: .25; }
.album-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.album-card-date {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.album-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .2rem;
}
.album-card-count {
  font-size: .72rem;
  color: var(--light-mid);
}

/* ===================== TRACKLIST / PLAYER ===================== */
.page-header {
  background: var(--ink);
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header-meta {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--cream);
  line-height: 1.1; margin-bottom: 1rem;
}
.page-header-title em { font-style: italic; }
.page-header-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--light-mid);
}

.album-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media(max-width:760px){ .album-layout { grid-template-columns: 1fr; } }

.album-cover-box img {
  width: 100%; display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.album-cover-box .cover-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  display: flex; align-items: center; justify-content: center;
  opacity: .6;
}

.tracklist { list-style: none; }
.track-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .55rem .4rem;
  border-bottom: 1px solid var(--cream-dk);
  cursor: pointer;
  transition: background var(--tr);
  border-radius: var(--r);
}
.track-item:last-child { border-bottom: none; }
.track-item:hover { background: var(--cream-dk); }
.track-item.playing { background: rgba(184,148,58,.08); }
.track-num {
  font-size: .72rem; font-weight: 700;
  color: var(--light-mid); min-width: 22px;
  font-family: var(--font-body);
}
.track-title {
  flex: 1;
  font-family: var(--font-body);
  font-size: .9rem; color: var(--ink);
  text-transform: capitalize;
}
.track-item.playing .track-title { color: var(--gold); font-weight: 700; }
.track-play-icon { width: 28px; height: 28px; flex-shrink: 0; }
.track-duration { font-size: .72rem; color: var(--light-mid); min-width: 36px; text-align: right; }

/* Audio Player */
.audio-player {
  position: sticky; bottom: 0; z-index: 50;
  background: rgba(15,14,12,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(184,148,58,.2);
  padding: .9rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
}
.player-info { flex: 1; min-width: 140px; }
.player-track-num { font-size: .62rem; color: var(--gold); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.player-track-name { font-size: .88rem; color: var(--cream); font-family: var(--font-display); font-weight: 600; }
.player-controls { display: flex; align-items: center; gap: .6rem; }
.player-btn {
  background: none; border: none; cursor: pointer;
  color: var(--cream-dk); padding: .3rem;
  transition: color var(--tr);
}
.player-btn:hover { color: var(--gold); }
.player-btn.play-pause {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.player-btn.play-pause:hover { background: var(--gold-lt); transform: scale(1.05); }
.player-progress { flex: 1; min-width: 120px; }
.progress-bar {
  width: 100%; height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px; cursor: pointer; position: relative;
}
.progress-fill {
  height: 100%; background: var(--gold);
  border-radius: 2px; width: 0%; pointer-events: none;
  transition: width .2s linear;
}
.player-time { font-size: .68rem; color: var(--light-mid); margin-top: .3rem; letter-spacing: .04em; }
.player-vol { display: flex; align-items: center; gap: .4rem; }
.player-vol input[type=range] {
  width: 70px; cursor: pointer; accent-color: var(--gold);
}

/* ===================== QUOTE BLOCKS ===================== */
.quote-section {
  background: var(--ink);
  padding: 5rem 2rem;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: .6;
  color: var(--gold); opacity: .3;
  margin-bottom: .5rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  max-width: 680px; margin: 0 auto;
  line-height: 1.6;
}
.quote-author {
  margin-top: 1.5rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

/* ===================== TIMELINE ===================== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 1px; background: rgba(184,148,58,.3);
}
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.5rem; top: .45rem;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184,148,58,.15);
}
.timeline-year {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem;
}
.timeline-text { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); line-height: 1.65; }

/* ===================== CARDS GENERIC ===================== */
.card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  padding: 2rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: .5rem;
}

/* ===================== PROSE ===================== */
.prose {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.85;
  max-width: 680px;
}
.prose p { margin-bottom: 1.3rem; }
.prose p:last-child { margin-bottom: 0; }

/* ===================== PAGE SUBTITLE SECTION ===================== */
.page-intro {
  max-width: 1100px; margin: 0 auto;
  padding: 3.5rem 2rem 0;
}

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  background: var(--ink-soft);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,.15);
  font-family: var(--font-body);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ===================== POSTS ===================== */
.post-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dk);
  align-items: start;
  text-decoration: none; color: inherit;
}
.post-card:last-child { border-bottom: none; }
.post-card-date-block {
  background: var(--ink);
  padding: 1rem;
  text-align: center;
}
.post-card-day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.post-card-month { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dk); margin-top: .2rem; }
.post-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; line-height: 1.3; }
.post-card-excerpt { font-family: var(--font-serif); font-size: .95rem; color: var(--mid); line-height: 1.6; }
.post-card:hover .post-card-title { color: var(--gold); }

/* ===================== LINK LIST ===================== */
.link-list { list-style: none; }
.link-list li { border-bottom: 1px solid var(--cream-dk); }
.link-list li:last-child { border-bottom: none; }
.link-list a {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 0;
  text-decoration: none;
  color: var(--ink);
  font-size: .95rem;
  transition: color var(--tr);
}
.link-list a:hover { color: var(--gold); }
.link-list .link-arrow { color: var(--gold); flex-shrink: 0; }

/* ===================== AFORISMI ===================== */
.aforisma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.aforisma-card {
  background: var(--ink);
  padding: 2rem 2rem 2rem;
  position: relative;
}
.aforisma-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute; top: .5rem; left: 1.2rem;
  line-height: 1;
}
.aforisma-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-top: 1.8rem;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  max-width: 1100px; margin: 0 auto;
  padding: 1rem 2rem 0;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--light-mid);
}
.breadcrumb a { color: var(--light-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .4rem; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(184,148,58,.15);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
@media(max-width:700px){ .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: .8rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: .95rem; font-style: italic;
  color: var(--light-mid); line-height: 1.65;
}
.footer-col-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--light-mid); text-decoration: none; font-size: .85rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .72rem; color: var(--mid); }
.footer-claim {
  font-family: var(--font-serif);
  font-size: .85rem; font-style: italic;
  color: rgba(184,148,58,.6);
  text-align: right;
}

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.hidden { display: none; }

/* ===================== RESPONSIVE ===================== */
@media(max-width:900px){
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media(max-width:600px){
  .section { padding: 3.5rem 1.2rem; }
  .page-header { padding: calc(var(--nav-h) + 2rem) 1.2rem 2.5rem; }
  .album-layout { padding: 2rem 1.2rem; }
  .audio-player { padding: .7rem 1rem; gap: .8rem; }

  /* BIO STRIP index.html: 2 colonne → 1 colonna */
  .bio-strip-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* Stats grid bio: rimane 2 col ma con gap ridotto */
  .bio-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .8rem !important;
  }
  /* About e album: griglie a 2 colonne → 1 colonna */
  .album-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .22s; }
.fade-up-d3 { animation-delay: .36s; }
.fade-up-d4 { animation-delay: .5s; }

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* playing indicator */
@keyframes pulse {
  0%,100% { transform: scaleY(.5); }
  50%      { transform: scaleY(1); }
}
.playing-bars {
  display: flex; align-items: flex-end; gap: 2px; height: 14px;
}
.playing-bars span {
  width: 3px; background: var(--gold); border-radius: 1px;
  animation: pulse .7s ease infinite;
}
.playing-bars span:nth-child(2) { animation-delay: .2s; height: 10px; }
.playing-bars span:nth-child(3) { animation-delay: .4s; height: 8px; }
