/* ============================================
   LUCIO RAGGIUNTI — Modern Redesign
   Clean, elegant, musician portfolio
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #fafafa;
  --color-bg-alt: #f5f5f5;
  --color-dark: #1a1a1a;
  --color-dark-soft: #2d2d2d;
  --color-text: #333;
  --color-text-light: #666;
  --color-text-muted: #999;
  --color-accent: #c0392b;
  --color-accent-hover: #a93226;
  --color-accent-light: rgba(192, 57, 43, 0.08);
  --color-gold: #d4a853;
  --color-gold-light: rgba(212, 168, 83, 0.1);
  --color-white: #fff;
  --color-border: #e8e8e8;
  --color-border-light: #f0f0f0;

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

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-out;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

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

.text-accent {
  color: var(--color-accent);
}

.text-gold {
  color: var(--color-gold);
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

/* Ensure SVG icons inside buttons stay crisp and aligned */
.btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn--gold:hover {
  background: #c49a42;
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

/* Transparent on hero pages */
.nav--transparent {
  background: transparent;
}

/* Solid after scroll */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav--scrolled .nav__logo {
  color: var(--color-dark);
}

.nav--scrolled .nav__link {
  color: var(--color-text);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--color-accent);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

/* Prevent global a:hover red on logo */
.nav__logo:hover {
  color: var(--color-white);
}

.nav--scrolled .nav__logo:hover {
  color: var(--color-dark);
}

/* Last name: sans-serif uppercase for contrast */
.nav__logo span {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.75em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
}

/* CTA in nav */
.nav__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--color-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Parallax-ready hero background */
.hero__bg--parallax {
  will-change: transform;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* ============================================
   BIO / ABOUT SECTION
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Album wrapper — clip the zoomed image cleanly */
.about__image-wrapper--album {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Square variant for album art — slight zoom to crop black border */
.about__image--square {
  aspect-ratio: 1/1;
  scale: 1.02;
}

/* Decorative accent behind image */
.about__image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__text h2 {
  margin-bottom: 24px;
}

.about__text p {
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.about__text p:last-of-type {
  margin-bottom: 32px;
}

/* Highlights / stats row */
.about__highlights {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.about__highlight {
  text-align: center;
}

.about__highlight-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.about__highlight-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES / INSTRUMENTS SECTION
   ============================================ */
.instruments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.instrument-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.instrument-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Instrument image: circular, grayscale by default, color on hover */
.instrument-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.instrument-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* Color reveal + subtle zoom on card hover */
.instrument-card:hover .instrument-card__icon {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.instrument-card:hover .instrument-card__icon img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.instrument-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.instrument-card__desc {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.instrument-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.instrument-card__link svg {
  transition: transform var(--transition);
}

.instrument-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  position: relative;
  /* Flex column so author aligns to bottom across cards */
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Quote mark */
/* Decorative quote removed — stars serve as the visual anchor instead */

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Push to bottom of card so names align across cards */
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Logo-based avatar for reviewer companies/venues */
.testimonial-card__avatar--logo {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 4px;
  overflow: hidden;
}

.testimonial-card__avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dark bg variant for white/light logos — no padding so SVG fills the circle */
.testimonial-card__avatar--dark {
  background: var(--color-dark);
  border-color: var(--color-dark);
  padding: 0;
}

/* Reviewer portrait — circular B&W headshot for authority */
.reviewer-portrait {
  width: 100px;
  height: 100px;
  margin: 20px auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.reviewer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-slow);
}

.reviewer-portrait:hover img {
  filter: grayscale(0%);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.testimonial-card__venue {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   VIDEO / MEDIA SECTION
   ============================================ */
.media__wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 48px auto 0;
}

.media__wrapper iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Video embeds get 16:9 ratio; music widgets use their own height */
.media__wrapper iframe[src*="youtube"],
.media__wrapper iframe[src*="vimeo"] {
  aspect-ratio: 16/9;
}

/* Portrait video (e.g. vertical mobile recordings) */
.media__wrapper--portrait {
  max-width: 400px;
}

.media__wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

/* --- Custom Minimal Video Player --- */
.video-player {
  position: relative;
  cursor: pointer;
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Centered play/pause button */
.video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
}

/* Optical nudge — play triangle looks left-heavy without this */
.video-player__icon--play {
  transform: translateX(2px);
}

.video-player__play:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Hide play button while playing (fade out) */
.video-player--playing .video-player__play {
  opacity: 0;
  pointer-events: none;
}

/* Show pause icon on hover while playing */
.video-player--playing:hover .video-player__play {
  opacity: 1;
  pointer-events: auto;
}

/* Volume toggle — bottom right corner */
.video-player__vol {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}

/* Show volume button on hover */
.video-player:hover .video-player__vol {
  opacity: 1;
}

.video-player__vol:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Audio player styling */
.audio-player {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  cursor: pointer;
}

.audio-player:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.audio-player__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.audio-player__btn:hover {
  background: var(--color-accent-hover);
  transform: scale(1.05);
}

.audio-player__info {
  flex: 1;
}

.audio-player__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.audio-player__duration {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.audio-player__progress {
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.audio-player__progress-bar {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   SHOWS / EVENTS SECTION
   ============================================ */
.shows__list {
  margin-top: 48px;
}

.show-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.show-item:hover {
  padding-left: 0;
}

.show-item__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition);
}

.show-item__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* Font Awesome icons inside show-item */
.show-item__icon i {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.show-item__icon--dark {
  background-color: var(--color-dark);
}

.show-item__content {
  flex: 1;
}

.show-item__venue {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.show-item__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */
.contact__grid {
  display: grid;
  /* 2-col layout: form left, extras right */
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "form extras";
  gap: 60px;
  margin-top: 48px;
}

/* Form and extras sit side by side */
.contact__form-wrapper { grid-area: form;   align-self: start; }
.contact__extras       { grid-area: extras; padding-left: 20px; align-self: start; }

/* Contact details row — centered as a group, items left-aligned internally */
.contact__details-row {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.contact__details-row .contact__detail {
  flex: 0 1 auto;
}

.contact__info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact__detail-text {
  font-weight: 500;
}

.contact__detail-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.contact__form-wrapper iframe {
  width: 100%;
  min-height: 800px;
  border: none;
}

/* Styled form fallback */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

/* Custom select styling — cleaner chevron */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Required asterisk */
.form-required {
  color: var(--color-accent);
  margin-left: 2px;
}

/* Divider between form sections */
.form-divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 28px 0;
}

/* Checkbox group layout */
.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group .form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: background var(--transition), border-color var(--transition);
  margin-bottom: 0;
}

.form-checkbox:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

/* Yes/No radio button group — inline side-by-side */
.form-radio-group {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.form-group .form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: background var(--transition), border-color var(--transition);
  flex: 1;
  margin-bottom: 0;
}

.form-radio:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

/* Conditional fields — slide-in animation */
.form-group--conditional {
  animation: formSlideIn 0.3s ease;
}

@keyframes formSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Full-width submit button */
.btn--full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Loading spinner */
.form-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 0.6s linear infinite;
}

@keyframes formSpin {
  to { transform: rotate(360deg); }
}

/* Success / Error status messages */
.form-status {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-status--error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #f8bbd0;
}

.form-status--error a {
  color: #c62828;
  text-decoration: underline;
}

/* Error state — only applied via JS after submission attempt */

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group--error label {
  color: var(--color-accent);
}

/* ============================================
   SPOTIFY EMBED
   ============================================ */
.spotify-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
  /* Clip the iframe to exactly the player UI height — hides internal dead space */
  height: 352px;
}

.spotify-embed iframe {
  width: 100%;
  height: 380px; /* slightly taller than wrapper so overflow:hidden clips the bottom gap */
  border: none;
  display: block;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--color-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(192, 57, 43, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Last name: sans-serif uppercase for contrast */
.footer__brand span {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.75em;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
  font-size: 1rem;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ============================================
   GALLERY
   ============================================ */

/* -- Filter buttons -- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-filter {
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.gallery-filter--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* -- Masonry grid -- */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

/* Hover overlay */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

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

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item__caption {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Hidden state for filtered items */
.gallery-item--hidden {
  display: none;
}

/* -- Lightbox -- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.lightbox__caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: opacity var(--transition), transform var(--transition);
  line-height: 1;
}

.lightbox__close:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.3; }
}

/* Subtle float for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Counter number animation */
.about__highlight-number {
  display: block;
}

/* ============================================
   POLISH & MICRO-INTERACTIONS
   ============================================ */

/* Image hover zoom — clip inside the rounded image itself */
.about__image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image-wrapper:hover .about__image {
  transform: scale(1.03);
}

/* Instrument card subtle gradient border on hover */
.instrument-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.instrument-card:hover::after {
  opacity: 1;
}

/* Testimonial card left accent bar on hover */
.testimonial-card {
  border-left: 3px solid transparent;
}

.testimonial-card:hover {
  border-left-color: var(--color-accent);
}

/* Show item hover accent */
.show-item:hover .show-item__icon {
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: scale(1.05);
  transition: all var(--transition);
}

/* Smooth link underline animation for body text (exclude .btn elements) */
.about__text a:not(.btn),
.show-item__desc a:not(.btn) {
  position: relative;
  text-decoration: none;
}

.about__text a:not(.btn)::after,
.show-item__desc a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.about__text a:not(.btn):hover::after,
.show-item__desc a:not(.btn):hover::after {
  width: 100%;
}

/* Page hero subtle gradient animation */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
}

/* Focus styles for accessibility */
.btn:focus-visible,
.nav__link:focus-visible,
.nav__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Audio player active state */
.audio-player--playing {
  border-left: 3px solid var(--color-accent);
  background: var(--color-accent-light);
}

/* Smooth scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(192, 57, 43, 0.08) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px; /* prevent text touching screen edges on mobile */
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Reduce top padding when a section immediately follows the page-hero —
   prevents double-gap from hero bottom padding + section top padding */
.page-hero + .section {
  padding-top: 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  /* --- Mobile Nav Overlay (slide-in from right) --- */
  .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Explicit full viewport width */
    height: 100vh; /* Explicit full viewport height */
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1002; /* Above nav bar (1000) and hamburger (1001) */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    pointer-events: none;
  }

  /* Stagger each nav item's entrance */
  .nav__links > li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav__links--open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Staggered fade-in for each menu item */
  .nav__links--open > li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
  .nav__links--open > li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
  .nav__links--open > li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
  .nav__links--open > li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
  .nav__links--open > li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
  .nav__links--open > li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
  .nav__links--open > li:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }

  .nav__links--open .nav__link {
    font-size: 1.1rem;
    color: var(--color-white);
  }

  /* CTA button inside mobile overlay — extra spacing from last link */
  .nav__links--open .nav__cta {
    margin-top: 36px;
    padding: 16px 44px;
    font-size: 0.95rem;
  }

  .nav__hamburger {
    display: flex;
    z-index: 1003; /* Above overlay (1002) so user can close it */
  }

  .nav__hamburger--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--color-white);
  }

  .nav__hamburger--open span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--color-white);
  }

  .about__grid {
    gap: 48px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Slightly reduce instrument card padding */
  .instrument-card {
    padding: 36px 28px;
  }

  /* Gallery 2 columns on tablet */
  .gallery-grid {
    columns: 2;
  }

  /* Contact grid stacks to single column at tablet width */
  .contact__grid {
    grid-template-columns: 1fr;
    /* Mobile order: form → extras */
    grid-template-areas:
      "form"
      "extras";
    gap: 40px;
    margin-top: 0; /* section padding is enough on mobile */
  }

  .contact__extras {
    padding-right: 0;
    padding-left: 0;
  }

  /* Contact details already stacked + left-aligned via base styles */
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Prevent iOS from zooming in on form fields (requires font-size >= 16px) */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  /* --- Section spacing --- */
  .section {
    padding: 60px 0;
  }

  /* --- Page Hero (inner pages) --- */
  .page-hero {
    padding: 120px 0 56px;
  }

  .page-hero + .section {
    padding-top: 40px;
  }

  .page-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }

  /* --- About / Bio Grid --- */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrapper {
    order: -1;
  }

  /* Hide decorative border accent on mobile — not enough room */
  .about__image-wrapper::before {
    display: none;
  }

  .about__highlights {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .about__highlight-number {
    font-size: 1.6rem;
  }

  /* --- Instruments Grid --- */
  .instruments__grid {
    grid-template-columns: 1fr;
  }

  /* --- Testimonials Grid --- */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* --- Show Items (stacked on mobile) --- */
  .show-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }

  .show-item:hover {
    padding-left: 0;
  }

  /* --- Audio Player (tighter on mobile) --- */
  .audio-player {
    padding: 18px;
    gap: 12px;
  }

  .audio-player__btn {
    width: 38px;
    height: 38px;
  }

  .audio-player__title {
    font-size: 0.9rem;
  }

  /* --- CTA Banner --- */
  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  /* --- Footer --- */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* --- Hero text shrink --- */
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  /* --- Media embeds scale nicely --- */
  .media__wrapper {
    margin-top: 32px;
  }

  /* Shrink music widget iframes on mobile — exclude video embeds which use aspect-ratio */
  .media__wrapper iframe[src*="spotify"],
  .media__wrapper iframe[src*="tidal"] {
    height: 200px;
  }

  /* --- Spotify embed responsive height --- */
  .spotify-embed {
    height: 152px; /* clip to compact player height on mobile */
  }

  .spotify-embed iframe {
    height: 200px;
  }

  /* Gallery single column on mobile */
  .gallery-grid {
    columns: 1;
    column-gap: 16px;
  }

  .gallery-item {
    margin-bottom: 16px;
  }

  /* Lightbox nav buttons smaller on mobile */
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }

  .lightbox__close {
    top: 12px;
    right: 16px;
  }
}

/* ============================================
   RESPONSIVE — Small Phone (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .contact__form-wrapper {
    padding: 24px;
  }

  /* Tighter section labels */
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  /* Stack highlights vertically on very small screens */
  .about__highlights {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .about__highlight {
    width: 100%;
  }

  /* Smaller instrument card icons */
  .instrument-card__icon {
    width: 90px;
    height: 90px;
  }

  .instrument-card {
    padding: 28px 20px;
  }

  /* Testimonial card tighter padding */
  .testimonial-card {
    padding: 24px 20px;
  }

  /* Footer long email link wrap */
  .footer__links a {
    word-break: break-word;
  }

  /* Page hero even tighter */
  .page-hero {
    padding: 100px 0 44px;
  }

  .page-hero + .section {
    padding-top: 32px;
  }

  .page-hero__label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  /* Stack checkboxes on small screens */
  .form-checkbox-group {
    grid-template-columns: 1fr;
  }
}
