/* ===== HOME PAGE REDESIGN 2026 - Dark Modern Design System ===== */
/* Uniformed with concerts.css, news-base.css, and buttons-base.css styles */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-elevated: #252525;
  --bg-glass: rgba(26, 26, 26, 0.6);
  --accent-gold: #d4af37;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-subtle: rgba(212, 175, 55, 0.2);
  --gradient-gold: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* .section-title gestito da base.css */

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== PERSONAL INTRO SECTION ===== */
.intro-personal-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.intro-personal-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.intro-personal-section::after {
  content: '"';
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.intro-personal-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.intro-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

.intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.intro-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ===== NEXT CONCERT HERO ===== */
.next-concert-hero {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.concert-hero-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concert-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concert-hero-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

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

.concert-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concert-hero-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.concert-hero-card:hover .concert-hero-media img {
  transform: scale(1.05);
}

.concert-hero-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.concert-meta-large {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.concert-date-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.concert-place-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.concert-title-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.concert-description-preview {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
  max-width: 800px;
}

.concert-actions-hero {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== ANIMATED STATS BAR ===== */
.stats-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent-gold) 50%,
    transparent 100%
  );
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

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

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Counter animation */
@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.counting {
  animation: count-up 0.6s ease-out;
}

/* ===== LATEST UPDATES GRID ===== */
.latest-updates-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.updates-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.update-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

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

.update-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.update-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.update-excerpt,
.update-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.empty-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 0;
}

.update-media {
  margin: 0 0 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.update-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.update-card:hover .update-media img {
  transform: scale(1.05);
}

/* Bandcamp embed responsive nella card release */
.update-media--audio {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, #0a0a0a 100%);
  min-height: 300px;
}

.update-media--audio iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 300px;
  aspect-ratio: 350 / 470;
  border: none !important;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .update-media--audio {
    min-height: 350px;
  }

  .update-media--audio iframe {
    min-height: 350px;
    aspect-ratio: 1 / 1.4;
  }
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.projects-grid-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.project-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

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

.project-card--coming-soon {
  opacity: 0.6;
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #0a0a0a;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.project-image {
  width: 100%;
  min-height: 140px;
  max-height: 220px;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
}

.project-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== REPERTOIRE SECTION ===== */
.repertoire-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.composers-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.composer-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.composer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.composer-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

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

/* Featured composer (Mozart) */
.composer-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.2);
}

.composer-card--featured:hover {
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.3);
}

.composer-portrait {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.composer-card--featured .composer-portrait {
  height: 400px;
}

.composer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.composer-card:hover .composer-portrait img {
  transform: scale(1.08);
}

.composer-portrait--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.composer-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.composer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 1.5rem 0.5rem;
  line-height: 1.2;
}

.composer-card--featured .composer-name {
  font-size: 2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.composer-stats {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 1rem;
  margin: 0 1.5rem 1.5rem;
}

.composer-works {
  font-weight: 600;
}

.composer-badge {
  margin: 0 1.5rem 1.5rem;
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== UPCOMING CONCERTS SECTION ===== */
.upcoming-concerts-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.concerts-list-compact {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concert-card-compact {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.concert-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.concert-card-compact:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 175, 55, 0.2);
}

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

.concert-compact-media {
  width: 250px;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concert-compact-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.concert-card-compact:hover .concert-compact-media img {
  transform: scale(1.05);
}

.concert-compact-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concert-compact-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.concert-compact-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.concert-compact-place {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.concert-compact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.concert-compact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 15, 0.95) 15%, rgba(15, 15, 15, 0.95) 85%, transparent 100%);
  position: relative;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.social-proof-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Layout: quote left, collaborations right */
.social-proof-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* === Quote Block === */
.social-proof__quote-block {
  flex: 1.2;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.social-proof__quote-icon {
  flex-shrink: 0;
  color: var(--accent-color, #d4af37);
  opacity: 0.4;
  margin-top: 0.2rem;
}

.press-quote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.press-quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.press-quote__footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.press-quote__source {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color, #d4af37);
  font-style: normal;
  letter-spacing: 0.02em;
}

.press-quote__role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.press-quote__role::before {
  content: '—';
  margin-right: 0.4rem;
  opacity: 0.5;
}

/* === Collaborations Block === */
.social-proof__collab-block {
  flex: 1;
  padding-left: 3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.collaborations__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
}

/* Legacy list style (kept for backward compatibility) */
.collaborations__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0;
  line-height: 1.9;
}

.collaborations__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 0;
  border: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.collaborations__name:hover {
  color: var(--accent-color, #d4af37);
}

.collaborations__separator {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
  font-size: 0.9rem;
  user-select: none;
}

/* ===== NEW: Collaboration Chips Design ===== */
@keyframes chipFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title link */
.collaborations__title-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.collaborations__title-link:hover {
  color: var(--accent-gold, #d4af37);
}

.collaborations__title-arrow {
  font-size: 0.6rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}

.collaborations__title-link:hover .collaborations__title-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Chips container */
.collaborations__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.4rem;
}

/* Single chip - elegant minimal style */
.collab-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  animation: chipFadeIn 0.4s ease forwards;
  opacity: 0;
}

.collab-chip:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--accent-gold, #d4af37);
}

.collab-chip__name {
  white-space: nowrap;
}

.collab-chip__count {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.7);
  opacity: 0.8;
}

.collab-chip__count::before {
  content: '×';
  margin-right: 0.1rem;
}

/* === Responsive === */
@media (max-width: 968px) {
  .social-proof-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .social-proof__collab-block {
    padding-left: 0;
    border-left: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
}

@media (max-width: 640px) {
  .social-proof-section {
    padding: 2rem 0 2.5rem;
  }

  .social-proof__quote-icon svg {
    width: 24px;
    height: 24px;
  }

  .press-quote__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .press-quote__role::before {
    display: none;
  }

  .collaborations__list {
    gap: 0.1rem 0;
  }

  .collaborations__name {
    font-size: 0.75rem;
  }

  .collaborations__separator {
    margin: 0 0.4rem;
  }

  /* Chips responsive */
  .collaborations__chips {
    gap: 0.35rem;
  }

  .collab-chip {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 3px;
  }

  .collab-chip__count {
    font-size: 0.62rem;
  }

  .collaborations__title-arrow {
    display: none;
  }
}

/* ===== NEXT CONCERT SECTION (Featured) ===== */
.next-concert-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 15, 15, 0.98) 100%);
}

.next-concert-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.next-concert__poster {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.next-concert__poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  background: #000;
}

.next-concert-card:hover .next-concert__poster img {
  transform: scale(1.05);
}

.next-concert__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.next-concert__badge .badge-icon {
  font-size: 0.85rem;
}

.next-concert__info {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.next-concert__date-location {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.next-concert__date,
.next-concert__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.next-concert__date i,
.next-concert__location i {
  color: var(--accent-color, #d4af37);
  font-size: 1rem;
}

.next-concert__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.next-concert__description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.next-concert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.next-concert__actions .btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.next-concert__actions .btn-lg i {
  margin-right: 0.5rem;
}

/* Next Concert Responsive */
@media (max-width: 768px) {
  .next-concert-section {
    padding: 2.5rem 0;
  }

  .next-concert-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .next-concert__poster {
    min-height: 280px;
    max-height: 320px;
  }

  .next-concert__info {
    padding: 1.5rem;
  }

  .next-concert__date-location {
    flex-direction: column;
    gap: 0.75rem;
  }

  .next-concert__actions {
    flex-direction: column;
  }

  .next-concert__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== HIGHLIGHTS SECTION (Content-Rich Previews) ===== */
.highlights-section {
  padding: 4rem 0 3rem;
  background: transparent;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Highlight Card */
.highlight-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.highlight-card__image {
  position: relative;
  width: 100%;
  min-height: 140px;
  max-height: 220px;
  background: #1a1a1a;
}

.highlight-card__image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  background: #111;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-card__image img {
  transform: scale(1.05);
}

/* Press card - newspaper vignette effect */
.highlight-card__image--press {
  position: relative;
}

.highlight-card__image--press::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.highlight-card__image--press img {
  filter: sepia(15%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.highlight-card--press:hover .highlight-card__image--press img {
  filter: sepia(5%) contrast(1.1);
}

.highlight-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.highlight-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color, #d4af37);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.highlight-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.highlight-card__excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.highlight-card__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color, #d4af37);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: gap 0.3s ease;
}

.highlight-card:hover .highlight-card__cta {
  gap: 0.6rem;
}

/* Quick Links Grid - Premium Cards with Hero Images */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-link-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.quick-link-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: background 0.4s ease;
}

.quick-link-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.quick-link-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.quick-link-card__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Hover Effects */
.quick-link-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 175, 55, 0.15);
}

.quick-link-card:hover .quick-link-card__bg img {
  transform: scale(1.08);
}

.quick-link-card:hover .quick-link-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.quick-link-card:hover .quick-link-card__title {
  color: var(--accent-gold, #d4af37);
}

/* Gold accent line on hover */
.quick-link-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold, #d4af37), transparent);
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card:hover::after {
  transform: scaleX(1);
}

/* Repertoire Card - 3 Composers Collage */
.quick-link-card--composers .quick-link-card__bg--composers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 100%;
}

.composer-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: grayscale(30%);
}

.quick-link-card--composers:hover .composer-portrait-img {
  filter: grayscale(0%);
}

.quick-link-card--composers:hover .composer-portrait-img {
  transform: scale(1.05);
}

/* Highlights Responsive */
@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlight-card {
    flex-direction: row;
  }

  .highlight-card__image {
    width: 140px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
  }

  .highlight-card__content {
    padding: 1rem;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quick-link-card {
    aspect-ratio: 21 / 9;
  }

  .quick-link-card__content {
    padding: 1.25rem;
  }

  .quick-link-card__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .highlights-section {
    padding: 3rem 0 2rem;
  }

  .highlight-card {
    flex-direction: column;
  }

  .highlight-card__image {
    width: 100%;
    height: 160px;
  }

  .quick-links-grid {
    gap: 0.75rem;
    padding: 1.5rem 0;
  }

  .quick-link-card {
    aspect-ratio: 16 / 7;
  }

  .quick-link-card__content {
    padding: 1rem;
  }

  .quick-link-card__title {
    font-size: 1.15rem;
  }

  .quick-link-card__subtitle {
    font-size: 0.75rem;
  }
}

/* ===== PROJECTS COMPACT ===== */
.projects-section--compact {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.projects-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card-compact {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card-compact:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.project-card-compact--coming-soon {
  opacity: 0.7;
}

.project-badge-small {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-color, #d4af37);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  z-index: 1;
}

.project-image-compact {
  min-height: 100px;
  max-height: 180px;
}

.project-image-compact img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  background: #111;
}

.project-card-compact:hover .project-image-compact img {
  transform: scale(1.08);
}

.project-content-compact {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-title-compact {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.project-desc-compact {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.project-content-compact .btn-small {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Projects Responsive */
@media (max-width: 600px) {
  .projects-section--compact {
    padding: 2.5rem 0;
  }

  .projects-grid-compact {
    grid-template-columns: 1fr;
  }

  .project-image-compact {
    height: 120px;
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-box h2,
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.newsletter-box p,
.newsletter-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.newsletter-message--success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.newsletter-message--error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

/* Newsletter button - fix text visibility */
.newsletter-btn {
  min-width: 140px;
  padding: 1rem 1.5rem;
}

.newsletter-btn .btn-text,
.newsletter-btn .btn-loading {
  color: #181818 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-weight: 700;
}

.newsletter-btn .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.newsletter-btn .loading-inline__dot {
  background: #181818;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .composer-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .intro-personal-section::after {
    font-size: 12rem;
    left: -10%;
  }

  .intro-content {
    padding: 2.5rem 2rem;
  }

  .intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .concert-hero-card {
    grid-template-columns: 1fr;
  }

  .concert-hero-media {
    min-height: 300px;
  }

  .concert-hero-content {
    padding: 2rem;
  }

  .concert-card-compact {
    grid-template-columns: 1fr;
  }

  .concert-compact-media {
    width: 100%;
    height: 200px;
  }

  .concert-compact-content {
    padding: 1.5rem;
  }

  .concert-compact-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Fix projects cards in mobile */
  .projects-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .intro-personal-section::after {
    font-size: 8rem;
    left: -20%;
  }

  .intro-content {
    padding: 2rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

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

  .concert-actions-hero {
    flex-direction: column;
  }

  /* Fix projects cards - force single column on small screens */
  .projects-grid-new {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
  }

  .project-card {
    max-width: 100%;
  }

  /* Reduce font-size for card titles on mobile */
  .update-title,
  .project-title,
  .composer-name,
  .concert-compact-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .concert-title-large {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .concert-description-preview {
    font-size: 1rem;
    margin: 1rem 0 1.5rem;
  }
}

/* ===== GALLERY PREVIEW SECTION ===== */

.gallery-preview-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-photo-card {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-photo-card:hover::before {
  opacity: 1;
}

.gallery-photo-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.gallery-photo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-card:hover .gallery-photo-img {
  transform: scale(1.08);
}

.gallery-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.gallery-photo-card:hover .gallery-photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-collection-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* ===== GALLERY COLLECTIONS GRID (2026) ===== */
.gallery-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-collection-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gallery-collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-collection-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.gallery-collection-card:hover::before {
  opacity: 1;
}

.gallery-collection-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gallery-collection-card__icon i {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.gallery-collection-card:hover .gallery-collection-card__icon {
  background: rgba(212, 175, 55, 0.2);
}

.gallery-collection-card:hover .gallery-collection-card__icon i {
  transform: scale(1.15);
}

.gallery-collection-card__content {
  flex: 1;
  min-width: 0;
}

.gallery-collection-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.25rem;
  letter-spacing: 0.01em;
}

.gallery-collection-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin: 0;
}

.gallery-collection-card__arrow {
  color: rgba(212, 175, 55, 0.5);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gallery-collection-card:hover .gallery-collection-card__arrow {
  color: var(--accent-gold);
  transform: translateX(4px);
}

/* Type-specific accents */
.gallery-collection-card--photos .gallery-collection-card__icon {
  background: rgba(212, 175, 55, 0.12);
}

.gallery-collection-card--videos .gallery-collection-card__icon {
  background: rgba(220, 38, 38, 0.08);
}

.gallery-collection-card--videos .gallery-collection-card__icon i {
  color: #ef4444;
}

.gallery-collection-card--audio .gallery-collection-card__icon {
  background: rgba(139, 92, 246, 0.08);
}

.gallery-collection-card--audio .gallery-collection-card__icon i {
  color: #8b5cf6;
}

/* Responsive gallery collections */
@media (max-width: 900px) {
  .gallery-collections-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
  }

  .gallery-collection-card {
    padding: 1.25rem 1.5rem;
  }

  .gallery-collection-card__icon {
    width: 48px;
    height: 48px;
  }

  .gallery-collection-card__icon i {
    font-size: 1.25rem;
  }

  .gallery-collection-card__title {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .gallery-preview-section {
    padding: 4rem 0;
  }
}

/* ===== DYNAMIC GALLERY COLLECTIONS WITH COVER IMAGES ===== */
.gallery-collections-grid--dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
}

.gallery-collections-grid--dynamic .gallery-collection-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-collection-card__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.gallery-collection-card__cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-collection-card:hover .gallery-collection-card__cover img {
  transform: scale(1.08);
}

.gallery-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: opacity 0.3s ease;
}

.gallery-collection-card:hover .gallery-collection-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.gallery-collection-card__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%);
}

.gallery-collection-card__cover--placeholder i {
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.5;
}

.gallery-collection-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-collection-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  opacity: 0.9;
}

.gallery-collection-card__type i {
  font-size: 0.65rem;
}

.gallery-collections-grid--dynamic .gallery-collection-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-collection-card__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Dynamic grid with >3 collections: first 3 larger */
.gallery-collections-grid--dynamic:has(:nth-child(4)) {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-collections-grid--dynamic:has(:nth-child(4)) .gallery-collection-card {
  aspect-ratio: 4/3;
}

/* Responsive dynamic gallery */
@media (max-width: 900px) {
  .gallery-collections-grid--dynamic {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-collections-grid--dynamic {
    grid-template-columns: 1fr;
  }

  .gallery-collections-grid--dynamic .gallery-collection-card {
    aspect-ratio: 16/9;
  }

  .gallery-collections-grid--dynamic .gallery-collection-card__title {
    font-size: 1.3rem;
  }
}

/* Legacy gallery photo grid (keep for fallback) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .update-card,
  .composer-card,
  .concert-hero-card,
  .concert-card-compact,
  .project-card,
  .gallery-photo-card {
    transition: none !important;
    animation: none !important;
  }

  .stat-card::before,
  .update-card::before,
  .composer-card::before,
  .concert-hero-card::before,
  .concert-card-compact::before,
  .project-card::before,
  .gallery-photo-card::before {
    transition: none !important;
  }

  .gallery-photo-img,
  .gallery-photo-overlay {
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .stat-card,
  .update-card,
  .composer-card,
  .concert-hero-card,
  .concert-card-compact,
  .project-card,
  .gallery-photo-card {
    border-width: 2px;
  }
}

/* ===== IMAGE PRESERVATION - CLS Prevention ===== */
/* Ensures images maintain aspect ratio and don't get cut or deformed */
/* Using object-fit: contain to show full image without cutting */

/* Concert poster - show full image */
.next-concert__poster img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Card images - contain to show full image */
.highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Quick link background images - contain */
.quick-link-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Composer portraits - these can be cover since they're circular crops */
.composer-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Project images - contain to show full */
.project-image-compact img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* News cover images - contain */
.news-card__image img,
.update-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Gallery images - contain */
.gallery-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
