/* ============================================================
   ELENA VOSS ACCORDION — MAIN STYLESHEET
   Palette: Cream / Warm Gold / Charcoal / Dusty Rose
   Fonts:   Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --cream:       #f9f5ef;
  --cream-dark:  #f0e9dc;
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #9c7a42;
  --charcoal:    #2a2520;
  --charcoal-mid:#4a4038;
  --charcoal-light:#7a6e62;
  --rose:        #d4a5a0;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-height: 70px;
  --radius:     4px;
  --transition: 0.3s ease;
  --shadow-sm:  0 2px 12px rgba(42,37,32,0.08);
  --shadow-md:  0 8px 32px rgba(42,37,32,0.14);
  --shadow-lg:  0 24px 64px rgba(42,37,32,0.18);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── UTILITY ── */
.container      { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-pad    { padding: 6rem 0; }
.bg-warm        { background: var(--cream-dark); }
.centered       { text-align: center; }
.narrow-text    { max-width: 680px; margin: 0 auto; text-align: center; font-size: 1.1rem; color: var(--charcoal-mid); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); }

h2 em, h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

p { color: var(--charcoal-mid); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-primary.btn-light:hover {
  background: var(--cream);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-text-link {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  transition: color var(--transition), letter-spacing var(--transition);
}
.btn-text-link:hover { color: var(--charcoal); letter-spacing: 0.12em; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(249,245,239,0.97);
  box-shadow: 0 1px 0 rgba(42,37,32,0.1);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span { color: var(--gold-light); }
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.navbar.scrolled .nav-logo span { color: var(--gold-dark); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--charcoal-mid); }
.navbar.scrolled .nav-links a::after { background: var(--gold-dark); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--charcoal); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #3d3228 0%, var(--charcoal) 60%);
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px; height: 400px;
  background: var(--rose);
  bottom: -80px; right: -80px;
  animation-delay: -3s;
}
.orb3 {
  width: 300px; height: 300px;
  background: #6b5a8c;
  top: 40%; right: 20%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* Floating music notes */
.music-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.music-notes span {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(201, 169, 110, 0.25);
  animation: noteDrift linear infinite;
}
.music-notes span:nth-child(1) { left: 10%; font-size: 1rem; animation-duration: 12s; animation-delay: 0s; }
.music-notes span:nth-child(2) { left: 30%; font-size: 2rem; animation-duration: 16s; animation-delay: -4s; }
.music-notes span:nth-child(3) { left: 55%; font-size: 1.2rem; animation-duration: 10s; animation-delay: -2s; }
.music-notes span:nth-child(4) { left: 70%; font-size: 1.8rem; animation-duration: 14s; animation-delay: -7s; }
.music-notes span:nth-child(5) { left: 85%; font-size: 0.9rem; animation-duration: 9s; animation-delay: -1s; }
.music-notes span:nth-child(6) { left: 20%; font-size: 1.4rem; animation-duration: 18s; animation-delay: -9s; }

@keyframes noteDrift {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(20deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: heroReveal 1s ease both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-preheading {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.2s both;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(249,245,239,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.8s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroReveal 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: var(--nav-height);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg .orb1 { width: 600px; height: 600px; opacity: 0.2; left: -150px; top: -150px; }
.page-hero-bg .orb2 { width: 400px; height: 400px; opacity: 0.15; right: -100px; bottom: -100px; }
.page-hero-content {
  position: relative; z-index: 2; padding: 3rem 2rem;
  animation: heroReveal 0.8s ease both;
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content h1 em { color: var(--gold-light); }
.page-hero-content .hero-preheading { margin-bottom: 1rem; }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--gold-dark);
  padding: 1.25rem 2rem;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill-icon { font-size: 1rem; }
.strip-divider { color: rgba(255,255,255,0.4); font-size: 1.5rem; }

/* ── ABOUT TEASER ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }
.image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 35% center;
  display: block;
  transition: transform 0.6s ease;
}
.image-frame:hover img { transform: scale(1.03); }
.frame-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%; height: 70%;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.floating-badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-dark);
  line-height: 1;
}
.badge-label {
  font-size: 0.72rem;
  color: var(--charcoal-mid);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

/* ── REPERTOIRE GRID ── */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.rep-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.rep-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.rep-icon { font-size: 2rem; margin-bottom: 1rem; }
.rep-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.rep-card p { font-size: 0.9rem; color: var(--charcoal-light); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card.featured {
  background: var(--charcoal);
}
.testimonial-card.featured p { color: rgba(249,245,239,0.8); }
.testimonial-card.featured .quote-mark { color: var(--gold); }
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured span { color: rgba(249,245,239,0.5); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--charcoal-light); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3228 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--gold-light); }
.cta-banner p { color: rgba(249,245,239,0.6); margin-bottom: 2rem; }
.cta-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(201,169,110,0.07);
  pointer-events: none;
  font-family: serif;
}

/* ── FOOTER ── */
.footer { background: var(--charcoal); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: rgba(249,245,239,0.45); max-width: 240px; }

.footer-heading {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(249,245,239,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.social-icons { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,245,239,0.5);
  transition: all var(--transition);
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-contact-info { font-size: 0.82rem; line-height: 1.8; }
.footer-contact-info a { color: rgba(249,245,239,0.5); transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(249,245,239,0.25); margin: 0; }

/* ── BIO PAGE ── */
.bio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.bio-portrait-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.bio-portrait {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.25rem;
}
.portrait-caption {
  padding: 0 0.5rem;
  text-align: center;
}
.portrait-caption em { font-family: var(--font-display); font-size: 1rem; color: var(--charcoal-mid); }
.portrait-caption span { display: block; font-size: 0.75rem; color: var(--charcoal-light); margin-top: 0.4rem; }

.bio-facts {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(42,37,32,0.08);
  font-size: 0.85rem;
}
.fact-item:last-child { border-bottom: none; }
.fact-label { color: var(--charcoal-light); }
.fact-value { font-weight: 500; color: var(--charcoal); text-align: right; }

.bio-text-col h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.bio-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.bio-text-col h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-weight: 400;
}
.bio-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bio-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  text-align: right;
  padding-top: 2px;
}
.timeline-dot {
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--cream-dark);
  margin-top: 6px;
  position: relative;
  left: -4px;
  transition: background var(--transition);
}
.timeline-dot.active { background: var(--gold); }
.timeline-content h4 { margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.9rem; color: var(--charcoal-light); margin: 0; }

/* ── MUSIC PAGE ── */
.music-intro { padding: 3rem 0 1rem; }

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

.track-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.track-genre-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--charcoal-mid);
}
.track-genre-badge.chanson { background: #f0e8f0; color: #7a4a7a; }
.track-genre-badge.tango   { background: #f0e8e8; color: #8c3a3a; }
.track-genre-badge.folk    { background: #e8f0e8; color: #3a6a3a; }
.track-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream-dark);
  line-height: 1;
  font-weight: 300;
}
.track-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.track-desc { font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 0.75rem; }
.track-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
}

/* Custom Audio Player */
.audio-player-wrap { margin-top: 0.75rem; }
.custom-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 50px;
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.play-btn:hover { background: var(--charcoal); transform: scale(1.05); }
.play-btn svg { width: 14px; height: 14px; }
.icon-play { margin-left: 2px; }

.progress-wrap { flex: 1; }
.progress-bar {
  height: 3px;
  background: rgba(42,37,32,0.12);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 4px;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--gold-dark);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.time-display { font-size: 0.68rem; color: var(--charcoal-light); }
.volume-wrap { color: var(--charcoal-light); flex-shrink: 0; }

.custom-request { background: var(--cream); }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel h2 { margin-bottom: 1rem; font-size: 2.4rem; }
.contact-info-panel > p { margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.2rem;
}
.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact-detail-item a:hover { color: var(--gold-dark); }

.response-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.note-icon { font-size: 1.2rem; flex-shrink: 0; }
.response-note p { font-size: 0.85rem; margin: 0; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two-fields { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(42,37,32,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
textarea { resize: vertical; min-height: 120px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.5rem; }
.select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  color: var(--charcoal-light);
  pointer-events: none;
}

.form-check { margin-bottom: 1.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--charcoal-mid);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 1rem 2rem;
  margin-bottom: 0.75rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  text-align: center;
  margin: 0;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #4a9f4a;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 { margin-bottom: 0.5rem; }

/* ── FAQ ── */
.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(42,37,32,0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  margin: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .repertoire-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-portrait-wrap { position: static; max-width: 400px; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .floating-badge { left: 0; bottom: -20px; }
  .frame-accent { display: none; }
  .cta-deco { display: none; }
}

@media (max-width: 640px) {
  .section-pad { padding: 4rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row.two-fields { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 16px 1fr; }
  .timeline-year { font-size: 0.9rem; }
  .bio-facts .fact-item { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .bio-cta { flex-direction: column; }
  .hero-cta { flex-direction: column; align-items: center; }
  .strip-inner { gap: 1rem; }
  .strip-divider { display: none; }
  .service-pill { font-size: 0.75rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; z-index: 10; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
  }
  .nav-links a.active { color: var(--gold-light); }
  .nav-links a::after { background: var(--gold-light); }
  .navbar.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
}

@media (min-width: 641px) {
  .nav-toggle { display: none; }
}

/* ── HERO PHOTO BACKGROUND ── */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,37,32,0.82) 0%,
    rgba(42,37,32,0.55) 50%,
    rgba(42,37,32,0.70) 100%
  );
  z-index: 1;
}

/* Keep orbs and notes above overlay */
.hero-bg .hero-orb,
.hero-bg .music-notes {
  z-index: 2;
}

/* ── HERO SUBTITLE (smaller tagline) ── */
.hero-sub-small {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 300;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.55s both;
}

/* Push main sub text down slightly when tagline is present */
.hero-sub {
  margin-top: 0;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1.5rem;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 2px 4px;
  transition: color var(--transition);
  border-radius: 2px;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--gold-light);
}
.navbar.scrolled .lang-btn { color: var(--charcoal-light); }
.navbar.scrolled .lang-btn:hover,
.navbar.scrolled .lang-btn.active { color: var(--gold-dark); }
.lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  line-height: 1;
  pointer-events: none;
}
.navbar.scrolled .lang-sep { color: rgba(42,37,32,0.2); }

/* Mobile lang switcher */
@media (max-width: 640px) {
  .lang-switcher {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    background: rgba(42,37,32,0.85);
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  .lang-btn { color: rgba(255,255,255,0.7) !important; font-size: 0.75rem; }
  .lang-btn.active { color: var(--gold-light) !important; }
  .lang-sep { color: rgba(255,255,255,0.3) !important; }
}

/* ── BIO PORTRAIT — STATIC (no sticky) ── */
.bio-portrait-static {
  position: static !important;
}
.bio-portrait-static .bio-portrait-wrap {
  position: static !important;
  top: auto !important;
}

/* ── REMOVE FLOATING BADGE SPACE ── */
.about-image-wrap .floating-badge { display: none; }


/* ── NAV LOGO WITH IMAGE ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .nav-logo-img { border-color: var(--gold); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-text { color: var(--charcoal); }

/* Footer logo inherits same layout, override text color */
.footer .nav-logo-text { color: var(--white); }
.footer .nav-logo-img  { border-color: rgba(255,255,255,0.2); }

/* ── PRIVACY PAGE ── */
.privacy-section { background: var(--cream); }
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-updated {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  font-style: italic;
}
.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-dark);
  margin: 2.5rem 0 0.75rem;
  font-weight: 400;
}
.privacy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1rem;
}
.privacy-content a { color: var(--gold-dark); text-decoration: underline; }
.privacy-content a:hover { color: var(--charcoal); }
.privacy-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-list li {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.privacy-contact-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2.5rem;
}
.privacy-contact-box p { margin: 0; font-size: 0.9rem; }


/* ── FORM ERROR STATE ── */
.form-error {
  background: #fdf2f2;
  border: 1px solid #e8c4c4;
  border-left: 3px solid #c0392b;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.error-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #c0392b;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-error p { font-size: 0.88rem; color: #8b2020; margin: 0; }
.form-error a { color: #c0392b; font-weight: 500; }


/* ── HERO BACKGROUND COLOUR FALLBACK (prevents flicker on load) ── */
.hero { background-color: #2a2520; }

/* ── BIO PAGE GHOST BUTTON — visible on light background ── */
.bio-cta .btn-ghost {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.bio-cta .btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}