/* Amici Per Sempre – Pooh Official Tribute Band | stile.css */

/* =========================================
   1. VARIABILI GLOBALI
   ========================================= */
:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gold: #C9A84C;
  --gold-light: #E2C370;
  --gold-dark: #A07830;
  --gray-900: #111111;
  --gray-800: #1C1C1C;
  --gray-700: #2D2D2D;
  --gray-500: #6B6B6B;
  --gray-300: #B0B0B0;
  --gray-100: #F2F2F2;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1200px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  --header-h: 80px;
  --t: 0.3s ease;
  --t-slow: 0.65s ease;

  --stripe-w: 38px;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.75;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =========================================
   3. TIPOGRAFIA
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); }

p { max-width: 68ch; }

.gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   4. LAYOUT
   ========================================= */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-py); }
.section-white { background: var(--white); color: var(--black); }
.section-black { background: var(--black); color: var(--white); }
.section-dark  { background: var(--gray-900); color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* =========================================
   5. PATTERN ZEBRE
   ========================================= */
@keyframes zebre-scivola {
  from { background-position: 0 0; }
  to   { background-position: calc(var(--stripe-w) * 2) calc(var(--stripe-w) * 2); }
}

.section-zebra {
  position: relative;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--black) 0,
    var(--black) var(--stripe-w),
    rgba(255,255,255,0.10) var(--stripe-w),
    rgba(255,255,255,0.10) calc(var(--stripe-w) * 2)
  );
  background-size: calc(var(--stripe-w) * 2) calc(var(--stripe-w) * 2);
  animation: zebre-scivola 6s linear infinite;
  color: var(--white);
}

.section-zebra::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}

.section-zebra .container { position: relative; z-index: 1; }

/* Separatore oro */
.gold-separator {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* =========================================
   6. BOTTONI
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background var(--t), color var(--t), transform var(--t);
  border-radius: 1px;
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  outline: none;
}

.btn-white { border-color: var(--white); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--black); }

.btn-filled { background: var(--gold); color: var(--black); }
.btn-filled:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* =========================================
   7. BADGE
   ========================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 1em;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  white-space: nowrap;
  font-family: var(--font-body);
}

.badge-filled { background: var(--gold); color: var(--black); }

/* =========================================
   8. HEADER & NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.10);
  transition: background var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo { height: 48px; width: auto; flex-shrink: 0; }

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

.nav-list a {
  display: block;
  padding: 0.5em 0.75em;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--t);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active { color: var(--gold); }

.nav-cta {
  margin-left: 0.5rem;
  font-size: 0.74rem !important;
  padding: 0.45em 1.1em !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background var(--t), color var(--t) !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1rem;
  transition: color var(--t);
}

.nav-mobile a:hover { color: var(--gold); }

.nav-mobile .mobile-contact {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-align: center;
}

/* =========================================
   9. HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--black) 0,
    var(--black) var(--stripe-w),
    rgba(255,255,255,0.09) var(--stripe-w),
    rgba(255,255,255,0.09) calc(var(--stripe-w) * 2)
  );
  background-size: calc(var(--stripe-w) * 2) calc(var(--stripe-w) * 2);
  animation: zebre-scivola 7s linear infinite;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.72) 55%,
    rgba(10,10,10,0.94) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem var(--pad);
  max-width: 920px;
  width: 100%;
}

.hero-logo {
  height: clamp(160px, 26vw, 320px);
  width: auto;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 32px rgba(201,168,76,0.5));
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.9);
}

.hero h1 .subtitle-span {
  display: block;
  font-size: 0.55em;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-top: 0.2em;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.hero-claim {
  font-size: clamp(0.97rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =========================================
   10. SECTION HEADER
   ========================================= */
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-black .section-header h2,
.section-dark .section-header h2,
.section-zebra .section-header h2 { color: var(--white); }

.section-white .section-header h2 { color: var(--black); }

.gold-line {
  display: block;
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin-top: 1.25rem;
}

.text-center .gold-line { margin-inline: auto; }

/* =========================================
   11. FEATURE CARDS
   ========================================= */
.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}

.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-num {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 { color: var(--gold); margin-bottom: 0.75rem; font-size: 1.2rem; }
.feature-card p { font-size: 0.93rem; opacity: 0.78; max-width: 100%; line-height: 1.65; }

/* =========================================
   12. VIDEO EMBED
   ========================================= */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-item .video-title {
  color: var(--gold);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 0.85rem;
  letter-spacing: 0.03em;
}

/* =========================================
   13. YOUTUBE PLAYLIST PLAYER
   ========================================= */
.yt-player-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid rgba(201,168,76,.25);
  background: var(--gray-900);
  overflow: hidden;
}

.yt-playlist {
  overflow-y: auto;
  border-right: 1px solid rgba(201,168,76,.15);
}

.yt-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
  border-left: 3px solid transparent;
  transition: background var(--t), border-color var(--t);
  text-align: left;
  background: none;
  width: 100%;
  font-family: inherit;
}

.yt-item:last-child { border-bottom: none; }
.yt-item:hover { background: rgba(201,168,76,.08); }
.yt-item.active { background: rgba(201,168,76,.14); border-left-color: var(--gold); }

.yt-item-thumb {
  width: 84px;
  height: 54px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}

.yt-item-num {
  display: block;
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .2rem;
}

.yt-item-title {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  line-height: 1.35;
}

.yt-item.active .yt-item-title { color: var(--gold); }

.yt-embed-wrap .video-wrapper { border: none; margin: 0; }

@media (max-width: 768px) {
  .yt-player-wrap { grid-template-columns: 1fr; }
  .yt-embed-wrap { order: -1; }
  .yt-playlist { border-right: none; border-top: 1px solid rgba(201,168,76,.15); }
}

/* =========================================
   14. AUDIO PLAYER
   ========================================= */
.audio-player {
  background: var(--gray-800);
  border: 1px solid rgba(201,168,76,0.28);
  max-width: 720px;
  margin-inline: auto;
}

.player-header {
  background: var(--gray-900);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.player-track-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.player-track-meta {
  font-size: 0.78rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.player-btn {
  color: var(--gold);
  transition: transform var(--t), color var(--t);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  font-size: 1rem;
}

.player-btn:hover { color: var(--gold-light); transform: scale(1.15); }

.btn-play-pause {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t) !important;
}

.btn-play-pause:hover { background: var(--gold) !important; color: var(--black) !important; transform: none !important; }

.player-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }

.progress-bar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--gray-700);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(201,168,76,0.5);
}

.progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--gray-300);
  font-variant-numeric: tabular-nums;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 4px;
  background: var(--gray-700);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.tracklist { }

.tracklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background var(--t);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tracklist-item:last-child { border-bottom: none; }
.tracklist-item:hover { background: rgba(201,168,76,0.07); }
.tracklist-item.active { background: rgba(201,168,76,0.12); }

.track-num { font-size: 0.78rem; color: var(--gray-300); width: 1.5rem; flex-shrink: 0; }
.tracklist-item.active .track-num { color: var(--gold); }
.track-info { flex: 1; }
.track-title { font-weight: 600; font-size: 0.93rem; color: var(--white); }
.tracklist-item.active .track-title { color: var(--gold); }
.track-desc { font-size: 0.76rem; color: var(--gray-300); margin-top: 0.1rem; }

/* =========================================
   15. GALLERY
   ========================================= */

/* Masonry layout */
.masonry {
  columns: 3 240px;
  column-gap: 0.85rem;
}

.masonry .gallery-item {
  aspect-ratio: auto;
  break-inside: avoid;
  margin-bottom: 0.85rem;
}

.masonry .gallery-item img {
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .masonry { columns: 2 160px; column-gap: 0.6rem; }
  .masonry .gallery-item { margin-bottom: 0.6rem; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
}

/* Standard grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--gray-800);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--t), background var(--t);
}

.gallery-item:hover .gallery-overlay { background: rgba(10,10,10,0.35); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--t);
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  transition: color var(--t);
  line-height: 1;
  background: none;
  border: none;
}

.lightbox-nav:hover { color: var(--gold); }
.lightbox-nav.prev { left: 0.5rem; }
.lightbox-nav.next { right: 0.5rem; }

/* =========================================
   15. BIO CARDS
   ========================================= */
.bio-grid { display: flex; flex-direction: column; gap: 3rem; }

.bio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 3rem;
}

.bio-card:last-child { border-bottom: none; padding-bottom: 0; }
.bio-card.flip { grid-template-columns: 1fr 260px; }
.bio-card.flip .bio-photo { order: 2; }
.bio-card.flip .bio-text  { order: 1; }

.bio-photo { position: relative; }

.bio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.bio-alter-ego {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.88);
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
}

.bio-text h3 { color: var(--gold); margin-bottom: 0.2rem; }

.bio-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.bio-text p { font-size: 0.95rem; opacity: 0.83; margin-bottom: 1rem; line-height: 1.75; }
.bio-text p:last-of-type { margin-bottom: 0; }

/* =========================================
   16. TIMELINE
   ========================================= */
.timeline { position: relative; padding-left: 2.5rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2.5rem + 0.5rem - 5px);
  top: 0.5rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.28);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.timeline-item h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.2rem; }
.timeline-item p { opacity: 0.78; font-size: 0.95rem; }

/* =========================================
   17. STRUMENTAZIONE
   ========================================= */
.strumento-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.strumento-block:last-child { border-bottom: none; }
.strumento-block.flip .strumento-imgs { order: 2; }
.strumento-block.flip .strumento-text { order: 1; }

.strumento-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.strumento-imgs img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.strumento-imgs img:first-child:last-child { grid-column: 1/-1; aspect-ratio: 4/3; }

.strumento-text .strumento-owner {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.strumento-text h3 { color: var(--white); margin-bottom: 0.5rem; }
.strumento-text .strumento-sub {
  font-size: 0.82rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.strumento-text p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 1rem; }

/* =========================================
   18. REPERTORIO
   ========================================= */
.brani-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}

.brano-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.brano-item::before {
  content: '♩';
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brano-item.special {
  color: var(--gold);
  font-weight: 600;
}

.brano-item.special::before { content: '★'; }

/* =========================================
   19. GIORNI INFINITI
   ========================================= */
.luoghi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.luogo-card {
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.18);
  background: var(--gray-800);
  transition: border-color var(--t), transform var(--t);
}

.luogo-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.luogo-venue {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.luogo-city {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

/* =========================================
   20. FORM & CONTATTI
   ========================================= */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--gray-700);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white);
  font-size: 0.95rem;
  border-radius: 1px;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--gray-800); }

.gdpr-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gdpr-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.gdpr-wrap label {
  font-size: 0.83rem;
  color: var(--gray-300);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-status {
  padding: 1rem 1.5rem;
  border-radius: 1px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
}

.form-status.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.4);
  color: #f87171;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-body h2 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--gray-800);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(201,168,76,.3);
}
.privacy-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.privacy-body p,
.privacy-body li {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.privacy-body ul {
  padding-left: 1.4rem;
  margin-top: .5rem;
}
.privacy-body li {
  margin-bottom: .35rem;
}
.privacy-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--gray-900);
  border-top: 2px solid rgba(201,168,76,.4);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.cookie-notice p {
  flex: 1;
  min-width: 200px;
  font-size: .82rem;
  color: var(--gray-300);
  margin: 0;
  line-height: 1.55;
}
.cookie-notice a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-notice-btn {
  flex-shrink: 0;
  padding: .5rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-notice-btn:hover {
  background: #b8922e;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 8999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.65);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: var(--gray-800);
  height: 100%;
}

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.contact-item p,
.contact-item a {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  transition: color var(--t);
  display: block;
}

.contact-item a:hover { color: var(--gold); }

/* =========================================
   21. FAQ ACCORDION
   ========================================= */
.faq-list { max-width: 820px; }

.faq-item { border-bottom: 1px solid rgba(201,168,76,0.18); }

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-align: left;
  gap: 1rem;
  transition: color var(--t);
  background: none;
  border: none;
}

.faq-btn:hover,
.faq-btn[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-answer-body {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

/* =========================================
   22. POOH OFFICIAL — scheda
   ========================================= */
.official-card {
  background: var(--gray-900);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 3rem;
  position: relative;
}

.official-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

.official-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.official-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  margin-block: 2rem;
}

.official-detail dt {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.2rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.official-detail dd { font-size: 0.95rem; color: rgba(255,255,255,0.82); }

/* =========================================
   23. FOOTER
   ========================================= */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(201,168,76,0.18);
}

.footer-main {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 4rem var(--pad) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo { height: 110px; margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  transition: border-color var(--t), color var(--t), background var(--t);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1.25rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.55rem; max-width: 100%; }

.footer-bottom {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.5rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================
   24. FADE-IN ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }
.fade-in.d4 { transition-delay: 0.4s; }

/* =========================================
   25. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .bio-card { grid-template-columns: 220px 1fr; }
  .bio-card.flip { grid-template-columns: 1fr 220px; }
}

@media (max-width: 768px) {
  :root { --header-h: 65px; }

  .nav-list { display: none; }
  .hamburger { display: flex; }

  .two-col,
  .bio-card,
  .bio-card.flip,
  .strumento-block,
  .strumento-block.flip { grid-template-columns: 1fr; gap: 2rem; }

  .bio-card.flip .bio-photo,
  .bio-card.flip .bio-text,
  .strumento-block.flip .strumento-imgs,
  .strumento-block.flip .strumento-text { order: unset; }

  .three-col,
  .four-col { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brani-grid { grid-template-columns: 1fr; }
  .luoghi-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .official-details { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3rem 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .player-controls { padding: 1rem 1.25rem; gap: 0.75rem; }
  .tracklist-item { padding: 0.8rem 1.25rem; }
  .player-header { padding: 1.25rem; }

  .official-card { padding: 2rem; }
}

@media (max-width: 540px) {
  .three-col,
  .four-col,
  .luoghi-grid { grid-template-columns: 1fr; }

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

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; text-align: center; }

  .strumento-imgs { grid-template-columns: 1fr; }
}
