/* =============================================
   EMILIO AVERSANO – PIANISTA
   style.css
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Lato:wght@400;700&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Poppins:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #DCA54A;
  --gold-dark:   #D09A40;
  --dark:        #0F172A;
  --text:        #4A4A4A;
  --cream:       #FAF5E5;
  --white:       #FFFFFF;
  --cream-light: #F0E6C5;
  --black:       #141004;
  --charcoal:    #222222;
  --border:      #dddddd;

  --font-body:    'Lato', sans-serif;
  --font-heading: 'Old Standard TT', serif;
  --font-ui:      'Poppins', sans-serif;
  --font-script:  'Alex Brush', cursive;

  --container-width: 1200px;
  --header-height:   70px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }

p { margin-bottom: 1em; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1em;
  text-transform: capitalize;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3em;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3em;
  text-transform: uppercase;
}
h4 {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
}
h5 {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
}
h6 {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25em;
  text-transform: capitalize;
  letter-spacing: 0.08em;
}

blockquote {
  color: var(--text);
  border-left: 5px solid rgba(0,0,0,.05);
  margin: 1.5em;
  padding-left: 1em;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
.section--cream  { background-color: var(--cream); }
.section--white  { background-color: var(--white); }
.section--dark   { background-color: var(--dark); }
.section--charcoal { background-color: var(--charcoal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 40px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  background-color: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.btn:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.4);
}
.btn--outline:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--dark);
}
.btn--sm { padding: 12px 24px; }

/* ---------- HEADER / NAV ---------- */
#masthead {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#masthead.nav-hidden {
  transform: translateY(0);
}
#masthead.scrolled {
  background: transparent;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--header-height);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

/* Primary nav */
.primary-nav { display: flex; }
.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.primary-nav ul li { position: relative; }
.primary-nav ul li a {
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: color .2s;
}
/* no gold highlight on hover or active nav item */
.primary-nav ul li a:hover { opacity: .7; }
.primary-nav ul li.current a { opacity: 1; }

/* Chevron arrow next to dropdown trigger */
.nav-arrow {
  display: inline-block;
  font-size: 0.7rem;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1;
  opacity: .75;
}

/* Dropdown */
.primary-nav ul li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;          /* allineato al bordo sinistro del trigger */
  background: var(--charcoal);
  min-width: 160px;
  border-top: 2px solid var(--gold);
  flex-direction: column;
}
.primary-nav ul li:hover ul.submenu { display: flex; }
.primary-nav ul li ul.submenu li a {
  display: block;        /* sovrascrive il flex ereditato dalla regola base */
  height: auto;
  padding: 12px 20px;
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 1;
  text-align: left;
}
.primary-nav ul li ul.submenu li a:hover { color: var(--cream); opacity: .7; }

/* Contact button in header */
.header-contact-btn {
  flex-shrink: 0;
}
.header-contact-btn .btn {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 12px 24px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}

.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 menu drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav ul li ul { padding-left: 16px; }

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: calc(78vh + 75px);
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 140px;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 40px;   /* più vicino al bordo sinistro */
}
/* "Pianista" in Alex Brush script */
.hero-text .label {
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
  margin-bottom: 20px;   /* spazio tra Pianista e Emilio Aversano */
  line-height: 1.3;
  display: block;
}
/* "EMILIO" e "AVERSANO" su due righe separate, Old Standard TT italic */
.hero-text h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.95;
}
/* Social icons: bordo destro dell'hero, più in basso */
.hero-social {
  position: absolute;
  right: 24px;
  bottom: 80px;          /* ancorate in basso invece che al centro */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.hero-social a {
  color: var(--white);
  opacity: .8;
  transition: opacity .2s;
}
.hero-social a:hover { opacity: 1; color: var(--white); } /* niente gold */
.hero-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- INTRO / PRESS QUOTES ---------- */
.press-section {
  background-color: var(--cream);
  padding: 100px 0;
}
.press-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.press-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.press-source {
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 8px;
}
.press-source-name {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
}
.press-source-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
}
.press-rubric {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: normal;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.press-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.press-spacer { height: 32px; }
.press-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.press-link:hover { color: var(--dark); }

/* ---------- AMADEUS FEATURE SECTION ---------- */
.feature-section {
  padding: 100px 0 160px;
  background-color: var(--cream);
}
.feature-section--bio {
  background: transparent;
}
.feature-section--bio-reverse {
  background-color: var(--cream);
  padding: 0;
  overflow: visible;
}
.feature-section--bio-reverse .feature-image {
  margin-top: -60px;
}
.feature-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-image img {
  width: 100%;
  object-fit: cover;
}
.feature-content .label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-content h2 { margin-bottom: 20px; font-style: italic; }
.feature-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.feature-content p { color: var(--text); margin-bottom: 32px; }
.feature-content .btn {
  background-color: var(--cream);
  border-color: var(--gold);
  color: var(--gold);
}
.feature-content .btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- PHOTO TRIO ---------- */
.photo-trio {
  padding: 0;
  background-color: var(--white);
}
.photo-trio-inner {
  display: flex;
  align-items: stretch;
}
.photo-trio-item {
  flex: 1;
  overflow: hidden;
}
.photo-trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- ZIGZAG SCORE SECTION ---------- */
.zigzag-section {
  position: relative;
  background-image: url('foto/home-piano-tutor-program-bg.jpg');
  background-size: 160%;
  background-position: center 30%;
  background-attachment: fixed;
  padding: 80px 0;
}
.zigzag-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 3, 0.70);
  pointer-events: none;
}
.zigzag-row {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 16px 10%;
}
.zigzag-left  { justify-content: flex-start; }
.zigzag-right { justify-content: flex-end; }
.zigzag-photo {
  width: 40%;
  box-shadow: 0 12px 50px rgba(0,0,0,0.7);
  transition: transform .35s, box-shadow .35s;
}
.zigzag-left .zigzag-photo  { margin-left: 8%; }
.zigzag-right .zigzag-photo { margin-right: 8%; }
.zigzag-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.85);
}
.zigzag-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .zigzag-photo { width: 75%; }
  .zigzag-left .zigzag-photo, .zigzag-right .zigzag-photo { margin: 0; }
  .zigzag-row { padding: 24px 20px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--cream);
}
.testimonials-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.testimonials-header h2 { margin-bottom: 24px; font-style: italic; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  padding: 48px 40px;
}
.testimonial-card {
  background: var(--white);
  padding: 0 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
  font-family: Georgia, serif;
  position: absolute;
  top: -8px;
  left: 24px;
}
.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
  padding-top: 32px;
  flex-grow: 1;
}
.testimonial-footer {
  margin-top: 24px;
}
.testimonial-author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.testimonial-pub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold);
}
.testimonials-header .btn {
  background-color: var(--cream);
  border-color: var(--gold);
  color: var(--gold);
}
.testimonials-header .btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: 100px 0;
  background-color: var(--dark);
  background-image: url('foto/banner.webp');
  background-size: cover;
  background-position: left center;
  text-align: center;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-section h2 { color: var(--white); margin-bottom: 16px; font-style: italic; }
.contact-section .email-link {
  font-size: 0.88rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  display: block;
  opacity: .85;
  pointer-events: none;
}
.contact-section .btn {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark);
}
.contact-section .btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- SELECTION ---------- */
::selection { background: var(--gold); color: var(--black); }

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 80px 20px 60px;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  text-align: center;
}
.footer-social-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer-social-wrap a {
  color: var(--dark);
  transition: color .2s;
  display: flex;
  align-items: center;
}
.footer-social-wrap a:hover { color: var(--gold); }
.footer-social-wrap svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* ---------- PAGE BANNER ---------- */
.page-banner {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.6));
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.page-banner-inner h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

/* ---------- CONTENT PAGES GENERAL ---------- */
.content-page {
  padding-top: var(--header-height);
}
.content-section {
  padding: 80px 0;
}

/* ---------- BIOGRAPHY PAGE ---------- */
.bio-page-wrapper {
  background: linear-gradient(to right, var(--cream) 33.33%, var(--white) 33.33%);
}
.home-page-wrapper {
  background: linear-gradient(to right, var(--cream) 33.33%, #ffffff 33.33%);
}
.bio-banner {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('foto/bio.jpg');
  background-size: auto, 60%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #000;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.bio-banner-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
}
.bio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-top: var(--header-height);
}
.bio-hero-image { overflow: hidden; }
.bio-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.bio-hero-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.bio-hero-text .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.bio-hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 32px;
}
.bio-hero-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.bio-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.bio-photo-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.9);
  transition: filter .3s;
}
.bio-photo-grid img:hover { filter: brightness(1); }

/* ---------- DISCOGRAPHY PAGE ---------- */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}
/* ---------- DISCOGRAPHY FEATURE TITLE ---------- */
h3.disc-feature-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.album-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.album-info { padding: 24px; }
.album-info h3 {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 6px;
}
.album-info p { font-size: 0.875rem; color: var(--text); margin: 0; }

/* ---------- EVENTS PAGE ---------- */
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.event-date {
  text-align: center;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
}
.event-date .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
}
.event-date .month {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-date .year {
  display: block;
  font-size: 0.8rem;
  opacity: .8;
}
.event-info h3 {
  font-size: 1.2rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 8px;
}
.event-info .venue {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.event-info p { font-size: 0.9rem; color: var(--text); margin: 0; }

/* ---------- EVENTS SEASONS ---------- */
.events-seasons-section { padding: 60px 20px 80px; overflow-x: hidden; }
.events-seasons-inner { max-width: 720px; margin: 0 auto 0 10%; }
.events-page-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.events-season { margin-bottom: 64px; }
.events-season-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
}
.event-season-entry {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15,23,42,0.1);
}
.event-season-entry:last-child { border-bottom: none; margin-bottom: 0; }
.event-venue-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--dark);
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  white-space: nowrap;
}
.event-season-divider { display: none; }
.event-date-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.event-body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.event-body-text strong a { color: var(--gold); text-decoration: underline; transition: color .2s; }
.event-body-text strong a:hover { color: var(--dark); }
.event-program-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 4px 0 10px;
}
.event-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: underline;
  margin-top: 4px;
  transition: color .2s;
}
.event-link:hover { color: var(--dark); }

/* ---------- RASSEGNA STAMPA PAGE ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.press-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .3s;
  cursor: pointer;
}
.press-card:hover { transform: translateY(-3px); }
.press-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.press-card-body { padding: 20px; }
.press-card-body .source {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.press-card-body h3 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

/* ---------- RECENSIONI PAGE ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.review-card {
  background: var(--white);
  padding: 40px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
  font-family: Georgia, serif;
  position: absolute;
  top: 8px;
  left: 24px;
}
.review-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  padding-top: 40px;
}
.review-author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.review-source {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, filter .4s;
  filter: brightness(.9);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(0,0,0,.3);
  border: none;
  padding: 16px 20px;
  line-height: 1;
  transition: background .2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(0,0,0,.6); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ---------- VIDEO PAGE ---------- */
.video-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.video-card { background: var(--white); overflow: hidden; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.video-thumb:hover img { transform: scale(1.04); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background .2s;
}
.video-thumb:hover .video-play-btn { background: rgba(0,0,0,.5); }
.video-play-btn svg {
  width: 56px;
  height: 56px;
  fill: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.video-card-body { padding: 20px; }
.video-card-body h3 {
  font-size: 0.95rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 4px;
}
.video-card-body p { font-size: 0.85rem; color: var(--text); margin: 0; }

/* YouTube embed section */
.yt-channel-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.yt-channel-section h2 { color: var(--white); margin-bottom: 16px; }
.yt-channel-section p { color: var(--cream-light); margin-bottom: 32px; }

/* ---------- SECTION HEADER UTILITY ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text); max-width: 600px; margin: 0 auto; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .press-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .bio-hero { grid-template-columns: 1fr; }
  .bio-hero-image { min-height: 50vh; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .photo-trio-inner img { height: 400px; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .header-contact-btn { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .hero { min-height: 100svh; padding-bottom: 60px; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 32px; }

  .photo-trio-inner { grid-template-columns: 1fr; }
  .photo-trio-inner img { height: 300px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .bio-photo-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-below-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-below-social { justify-content: center; }

  .press-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .discography-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 80px 1fr; gap: 20px; }

  .bio-hero-text { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .btn { padding: 14px 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .bio-photo-grid { grid-template-columns: 1fr 1fr; }
  .discography-grid { grid-template-columns: 1fr; }
}

/* ---------- UTILITIES ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
