﻿/* ─── RESET & TOKENS ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #09090B;
  --s1:        #111111;
  --s2:        #1A1A1A;
  --white:     #FAFAF8;
  --grey:      #A09880;
  --accent:    #C9A96E;
  --purple:    #8B6914;
  --accent-lo: rgba(201,169,110,.12);
  --purple-lo: rgba(139,105,20,.10);
  --glass:     rgba(255,255,255,.04);
  --glass-b:   rgba(255,255,255,.07);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Lora', serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* ─── AMBIENT ORBS ─── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.18) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,105,20,.14) 0%, transparent 70%);
  bottom: 20%; left: -150px;
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,.10) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.97); }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease);
}
nav.scrolled {
  background: rgba(9,9,11,.92);
  padding: 14px 60px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 8px 32px rgba(0,0,0,.5);
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-sep { display: none; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: rgba(60,35,20,.6);
  font-family: 'Lora', serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: #3D2215; }
.nav-links a.active { color: #3D2215; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 16px; right: 16px;
  height: 1px;
  background: #5C4033;
}
/* Scrolled nav: sfondo scuro → link chiari */
nav.scrolled .nav-links a { color: rgba(250,250,248,.65); }
nav.scrolled .nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a.active { color: var(--white); }
nav.scrolled .nav-links a.active::after { background: var(--accent); }

.nav-cta {
  background: linear-gradient(135deg, #D4B97E 0%, var(--accent) 100%) !important;
  color: #09090B !important;
  border-radius: 6px !important;
  padding: 10px 26px !important;
  font-family: 'Lora', serif !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .25s var(--ease) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #E0C88E 0%, #D4A85E 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(201,169,110,.3) !important;
}

/* ─── SECTIONS WRAPPER ─── */
.section-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── LABEL ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.label::before {
  content: '';
  width: 20px; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--purple));
  border-radius: 99px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: visible; /* il fondo dello sfondo scende sopra la sezione about */
  padding: 0;
  isolation: isolate;
  z-index: 10;
}

/* Sfondo — altezza naturale proporzionale, nessun taglio in basso */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto; /* segue le proporzioni naturali dell'immagine */
  z-index: 0;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0s forwards;
}

/* Layer testo: dietro al soggetto */
.hero-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 25vh;
  padding-left: 10vh; /* allineato con la testa del soggetto (parte da 17vh) */
}

/* Riga nome: "Aversente" sinistra, "Asia" destra */
.hero-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
   padding-right: 15vh;
  line-height: .88;
  margin: 0;
}

.ht-surname,
.ht-firstname {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  color: #1C1208;
  font-size: clamp(3rem, 11.5vw, 15rem);
  letter-spacing: -.02em;
  opacity: 0;
  animation: fadeIn .7s var(--ease) .1s forwards;
}

/* Riga generi — tutti a sinistra */
.hero-genre-row {
  display: flex;
  justify-content: flex-start;
  gap: .5em;
  padding: .35em 0 0;
}

.hero-genre-left,
.hero-genre-right {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(4rem, 1.3vw, 1.3rem);
  color: var(--accent);
  letter-spacing: .08em;
  opacity: 0;
  animation: fadeIn .7s var(--ease) .3s forwards;
}

/* Soggetto: davanti al testo, centrato, ancorato in basso */
.hero-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 83vh;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(0 12px 40px rgba(80,50,30,.18));
  opacity: 0;
  animation: fadeIn 1s var(--ease) .15s forwards;
}

/* CTA: in basso a sinistra, sopra tutto */
.hero-ctas {
  position: absolute;
  bottom: 7vh;
  left: 3vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 4px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn .7s var(--ease) .5s forwards;
}

.hcta-primary {
  background: #5C4033;
  color: #F5EFE6;
}
.hcta-primary:hover { background: #3D2A22; transform: translateY(-1px); }

.hcta-ghost {
  border: 1px solid rgba(92,64,51,.45);
  color: #5C4033;
}
.hcta-ghost:hover {
  border-color: #5C4033;
  background: rgba(92,64,51,.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 16px 32px;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #D4B97E, var(--accent));
  color: var(--bg);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #E0C88E, #D4A85E);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201,169,110,.28);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,169,110,.25);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(201,169,110,.07);
  border-color: rgba(201,169,110,.55);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── STATS BAR ─── */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 40px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.stats-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--purple), transparent);
  opacity: .5;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--grey) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: .05em;
}

/* ─── ABOUT ─── */
.about-section {
  position: relative;
  z-index: 1; /* sotto l'hero — scivola sotto le tende */
  margin-top: 20vh; /* spazio sotto il tendaggio */
  padding: 160px 40px;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-area {
  position: relative;
}
.about-img-card {
  aspect-ratio: 4/5;
  background: var(--s1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-b);
  overflow: hidden;
  position: relative;
}
.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .8s var(--ease);
}
.about-img-card:hover img { transform: scale(1.04); }
.about-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(9,9,11,.7) 100%);
  pointer-events: none;
}

.about-img-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: rgba(9,9,11,.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.float-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-text .top {
  font-weight: 700;
  font-size: .9rem;
  display: block;
}
.float-text .bot {
  font-size: .7rem;
  color: var(--grey);
  display: block;
  margin-top: 2px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.about-content h2 span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 18px;
}

.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.pill {
  font-size: .72rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--glass-b);
  color: var(--grey);
  background: var(--glass);
  transition: all .25s var(--ease);
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.pill.accent {
  background: var(--accent-lo);
  border-color: rgba(201,169,110,.3);
  color: var(--accent);
}

/* ─── SOUND ─── */
.sound-section {
  position: relative;
  z-index: 1;
  padding: 80px 40px 160px;
}
.sound-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sound-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1.05;
}
.sound-title span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mix-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mix-card {
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s var(--ease);
}
.mix-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-lo), var(--purple-lo));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mix-card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,.2); }
.mix-card:hover::before { opacity: 1; }

.mix-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.mix-card:hover .mix-num { color: rgba(201,169,110,.15); }

.mix-genre {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lo);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mix-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.mix-meta {
  font-size: .75rem;
  color: var(--grey);
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.mix-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s var(--ease);
}
.mix-card:hover .mix-play-btn { opacity: 1; transform: translateY(0); }

.play-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(201,169,110,0);
  transition: box-shadow .3s;
}
.mix-card:hover .play-circle {
  box-shadow: 0 0 20px rgba(201,169,110,.5);
}

/* ─── EVENTS ─── */
.events-section {
  position: relative;
  z-index: 1;
  padding: 0 40px 160px;
}
.events-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.events-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
}
.events-title span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.event-card:hover {
  border-color: rgba(201,169,110,.2);
  background: var(--s2);
  transform: translateX(8px);
}

.event-date-block { text-align: center; }
.event-day {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.event-month {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 4px;
}

.event-venue {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.event-loc {
  font-size: .78rem;
  color: var(--grey);
}

.event-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lo);
  border-radius: 99px;
  padding: 8px 16px;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.event-card:hover .event-tag {
  background: var(--accent);
  color: var(--white);
}

/* ─── BOOKING ─── */
.booking-section {
  position: relative;
  z-index: 1;
  padding: 0 40px 160px;
}
.booking-card {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.booking-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.25) saturate(.8);
  z-index: -2;
}
.booking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9,9,11,.55) 0%, rgba(9,9,11,.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,.2) 0%, transparent 70%);
  z-index: -1;
}
.booking-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), var(--purple), transparent);
  z-index: 1;
}

.booking-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.booking-card h2 span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.booking-card p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}

.booking-contacts {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}
.contact-block { text-align: center; }
.contact-lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 8px;
}
.contact-val {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.01em;
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}
.contact-val:hover { color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--white), var(--grey));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy {
  font-size: .72rem;
  color: rgba(161,161,170,.4);
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-size: .72rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  transition: color .25s;
}
.footer-socials a:hover { color: var(--white); }

/* ─── VENUES / ESPERIENZA ─── */
.venues-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
  overflow: hidden;
}
.venues-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  padding: 0 40px;
}
.venues-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.venues-title span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.venues-sub {
  font-size: .88rem;
  color: var(--grey);
  font-weight: 300;
}

.marquee-outer {
  position: relative;
  margin-bottom: 20px;
}
.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.marquee-viewport {
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
}
.track-l { animation: m-left  42s linear infinite; }
.track-r { animation: m-right 56s linear infinite; }
.marquee-outer:hover .marquee-track { animation-play-state: paused; }

@keyframes m-left  {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes m-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.venue-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  height: 130px;
  opacity: .7;
  transition: opacity .4s var(--ease);
  cursor: default;
}
.venue-logo:hover { opacity: 1; }

.venue-logo img {
  display: block;
  max-height: 90px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.venue-logo img.invert { filter: invert(1); }

/* ─── CUSTOM CURSOR ─── */
.has-cursor * { cursor: none !important; }
.cursor-vinyl { display: none; }
.has-cursor .cursor-vinyl { display: block; }

.cursor-vinyl {
  position: fixed;
  width: 72px; height: 72px;
  pointer-events: none;
  z-index: 99999;
  will-change: left, top;
  transform: translate(-6px, -6px);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.75))
          drop-shadow(0 0 14px rgba(201,169,110,.4));
  transition: filter .2s;
}
.cursor-vinyl.ring-hover {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.8))
          drop-shadow(0 0 24px rgba(201,169,110,.85));
}
.cursor-vinyl.ring-click {
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.6))
          drop-shadow(0 0 8px rgba(201,169,110,.3));
}

/* ─── INTRO LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#loader.ld-hide { opacity: 0; visibility: hidden; pointer-events: none; }

.ld-content { text-align: center; }

.ld-vinyl {
  width: 160px; height: 160px;
  animation: ld-spin 1.4s linear infinite;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.7))
          drop-shadow(0 0 22px rgba(201,169,110,.3));
}

@keyframes ld-spin { to { transform: rotate(360deg); } }

/* ─── WAVEFORM ─── */
.mix-waveform {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 30px;
  margin: 20px 0 14px;
}
.wf-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--purple));
  border-radius: 2px 2px 0 0;
  opacity: .18;
  transform-origin: bottom center;
  transition: opacity .5s var(--ease);
}
.mix-card:hover .wf-bar {
  opacity: .85;
  animation: wf-bounce var(--dur, .6s) ease-in-out var(--del, 0s) infinite alternate;
}
@keyframes wf-bounce {
  from { transform: scaleY(.12); }
  to   { transform: scaleY(1); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent); opacity: 1; }
  50%       { box-shadow: 0 0 16px var(--accent); opacity: .6; }
}
@keyframes scrollThumb {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── REVEAL ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--glass-b); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
  pointer-events: none;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(9,9,11,.97);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
#mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 32px;
}

.mm-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--white) 0%, var(--grey) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .45;
}

.mm-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .5;
}

.mm-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.mm-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: -.02em;
  color: rgba(250,250,248,.5);
  text-decoration: none;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), opacity .2s;
}
.mm-link:hover,
.mm-link:focus-visible { color: var(--accent); outline: none; }

.mm-cta-wrap { margin-top: 8px; }

/* Staggered entrance for menu items */
.mm-brand, .mm-divider, .mm-link, .mm-cta-wrap {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s var(--ease);
}
#mobile-menu.is-open .mm-brand     { opacity: .45; transform: none; transition-delay: .04s; }
#mobile-menu.is-open .mm-divider   { opacity: .5;  transform: none; transition-delay: .08s; }
#mobile-menu.is-open .mm-link:nth-child(1) { opacity: 1; transform: none; transition-delay: .12s; }
#mobile-menu.is-open .mm-link:nth-child(2) { opacity: 1; transform: none; transition-delay: .18s; }
#mobile-menu.is-open .mm-link:nth-child(3) { opacity: 1; transform: none; transition-delay: .24s; }
#mobile-menu.is-open .mm-link:nth-child(4) { opacity: 1; transform: none; transition-delay: .30s; }
#mobile-menu.is-open .mm-cta-wrap  { opacity: 1;  transform: none; transition-delay: .36s; }
#mobile-menu .mm-link:hover,
#mobile-menu .mm-link:focus-visible { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav {
    padding: 16px 24px;
    background: rgba(9,9,11,.7);
    backdrop-filter: blur(20px);
  }
  .nav-logo img { height: 48px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero-bg {
    height: 130svh;
    object-fit: cover;
    object-position: center top;
  }
  .hero-text {
    padding-top: 18vh;
    padding-left: 0;
    align-items: center;
  }
  .hero-name-row {
    padding: 0 4vw;
    justify-content: center;
    gap: 4vw;
  }
  .ht-surname, .ht-firstname { font-size: clamp(2.2rem, 11vw, 8rem); }
  .hero-genre-row {
    padding: .4em 0 0;
    justify-content: center;
  }
  .hero-genre-left, .hero-genre-right { font-size: clamp(.65rem, 2.8vw, .9rem); }
  .hero-person { height: 68vh; }
  .hero-ctas {
    bottom: auto; top: auto;
    left: 50%; transform: translateX(-50%);
    bottom: 4vh;
    flex-direction: row;
    gap: 10px;
  }
  .about-section { margin-top: 25svh; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-area { max-width: 400px; margin: 0 auto; }
  .mix-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .event-card { grid-template-columns: 80px 1fr; }
  .event-tag { display: none; }
  .booking-card { padding: 60px 30px; }
  .booking-contacts { flex-direction: column; gap: 28px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-text { padding-top: 15vh; align-items: center; }
  .hero-name-row {
    flex-direction: column;
    align-items: center;
    padding: 0;
    line-height: .85;
    gap: 0;
  }
  .ht-surname, .ht-firstname { font-size: clamp(2.8rem, 16vw, 5rem); }
  .hero-genre-row {
    padding: .5em 0 0;
    justify-content: center;
  }
  .hero-genre-left, .hero-genre-right { font-size: clamp(.7rem, 3.5vw, 1rem); }
  .hero-person {
    height: 55vh;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}