/* ============================================================
   SUZANNE GAY MUSIC — styles.css
   Design: "Midnight on Salt Spring"
   Palette: Charcoal forest black | Antique gold | Muted sage
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --color-bg-deep:    #141816;               /* Charcoal forest black — main background */
  --color-bg-mid:     #1c2420;               /* Deep forest green-black — section contrast */
  --color-bg-card:    #242b27;               /* Dark olive-charcoal — cards/surfaces */
  --color-gold:       #c9a84c;               /* Antique gold — primary accent */
  --color-sage:       #7a9e8a;               /* Muted sage green — secondary accent */
  --color-text:       #f0ede6;               /* Warm off-white — primary text */
  --color-text-muted: #8e8a82;               /* Warm gray — secondary/caption text */
  --color-rule:       rgba(201, 168, 76, 0.25); /* Gold divider lines */
}

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

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

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-text);
  line-height: 1.25;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: min(95%, 1200px);
  margin-inline: auto;
}

section {
  padding: 110px 0;
}

/* ── Shared section heading style ─────────────────────────── */
.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

/* ── Gold divider rule ────────────────────────────────────── */
.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--color-gold);
  border: none;
  margin: 1.4rem 0 2rem;
  transform-origin: left center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
              transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.38);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.25);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  border: 2px solid var(--color-gold);
}

.btn-primary:hover {
  background: #b8932e;
  border-color: #b8932e;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.38);
}

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

.btn-outline:hover {
  background: rgba(240, 237, 230, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.38);
}

.btn-navy {
  background: var(--color-bg-mid);
  color: var(--color-text);
  border: 2px solid var(--color-bg-mid);
}

.btn-navy:hover {
  background: #283630;
  border-color: #283630;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.38);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ── Navigation ───────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(20, 24, 22, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

#site-nav.scrolled {
  background: rgba(20, 24, 22, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

#site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--color-text);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.85);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-gold); }

.nav-links a.active {
  color: var(--color-gold);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Performances dropdown ────────────────────────────────── */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-chevron {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.dropdown-open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Floating panel — desktop only */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  list-style: none;
  background: var(--color-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-top: 2px solid var(--color-gold);
  min-width: 168px;
  padding: 0.4rem 0;
  /* Start slightly above, slide down on hover */
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 50;
  pointer-events: none;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.68);
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}

.nav-dropdown li a:hover {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.07);
}

.nav-dropdown .nav-dropdown-booknow {
  color: var(--color-gold);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 0.3rem;
  padding-top: 0.7rem;
}

.nav-dropdown .nav-dropdown-booknow:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-text);
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

/* Gold separator at the base of the hero — sits above all overlays */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-rule);
  z-index: 4;
  pointer-events: none;
}

/* Grain texture — inline SVG feTurbulence overlaid on the hero photo */
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
}

.hero-bg {
  position: absolute;
  inset: -15% 0;
  background-image: url('assests/New Photos/Optimized_Piano.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  /* Lift the baked-in darkness of the photo so the hero feels brighter and more
     welcoming. The gradient overlay below still protects text contrast. */
  filter: brightness(1.28) contrast(0.96);
  /* Breathing zoom + scroll parallax are both driven by GSAP (animations.js §6)
     so the two transforms compose into one matrix. A CSS @keyframes transform
     here would override GSAP's scroll transform and kill the parallax. */
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 24, 22, 0.96) 0%,
    rgba(20, 24, 22, 0.90) 50%,
    rgba(20, 24, 22, 0.62) 100%
  );
}

/* Home and performances heroes — lighter overlay so photos read clearly */
#hero:not(.perf-hero) .hero-overlay,
.perf-hero .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(20, 24, 22, 0.55) 0%,
    rgba(20, 24, 22, 0.36) 50%,
    rgba(20, 24, 22, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-text);
  padding: 0 0 80px 0;
}

/* Prime GPU compositing layer before GSAP animates these elements */
.hero-content h1,
.hero-sub,
.hero-email-form {
  will-change: transform, opacity;
}

.hero-content h1 {
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-style: italic;
  color: var(--color-text);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.65);
  margin-bottom: 1rem;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(240, 237, 230, 0.88);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

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

/* ── Hero email capture form ──────────────────────────────── */
.hero-email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.hero-email-input {
  flex: 1 1 220px;
  padding: 0.75rem 1.1rem;
  border: 1.5px solid rgba(240, 237, 230, 0.3);
  border-radius: 3px;
  background: rgba(20, 24, 22, 0.55);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  width: auto;
}

.hero-email-input::placeholder {
  color: rgba(240, 237, 230, 0.4);
}

.hero-email-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(20, 24, 22, 0.7);
}

.hero-email-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 3px;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-email-btn:hover {
  background: #b8932e;
  transform: translateY(-2px);
}

.hero-email-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-email-thanks {
  display: none;
  margin-top: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-sage);
}

.hero-email-thanks.visible {
  display: block;
}

/* Friendly inline error — warm gold rather than alarm red, to fit the mood */
.hero-email-thanks.is-error {
  color: var(--color-gold);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
}

/* ── Photo Strip ──────────────────────────────────────────── */
.photo-strip {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-deep);
  padding: 0;
}

.photo-strip-inner {
  display: flex;
  height: 420px;
  gap: 3px;
}

.photo-strip-item {
  flex: 1 1 auto;
  min-width: 200px;
  overflow: hidden;
  position: relative;
}

/* First item is wider — the dramatic profile shot leads */
.photo-strip-item:first-child {
  flex: 1.6 1 auto;
}

/* The B&W shot is narrower — portrait crop */
.photo-strip-item:nth-child(4) {
  flex: 0.7 1 auto;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: sepia(0.12) contrast(1.08) brightness(0.88);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Per-photo face positioning */
.photo-strip-item:nth-child(1) img { object-position: center 22%; } /* mic profile — face center */
.photo-strip-item:nth-child(2) img { object-position: center 18%; } /* red dress at piano — head */
.photo-strip-item:nth-child(3) img { object-position: center 20%; } /* close-up mic */
.photo-strip-item:nth-child(4) img { object-position: center 15%; } /* B&W sunglasses — face high */
.photo-strip-item:nth-child(5) img { object-position: center 28%; } /* chapel grand piano */
.photo-strip-item:nth-child(6) img { object-position: center 78%; } /* forest — Suzanne in lower frame */

/* Forest photo is portrait-oriented — give it a narrower column */
.photo-strip-item:nth-child(6) { flex: 0.72 1 auto; }

.photo-strip-item:hover img {
  transform: scale(1.04);
  filter: sepia(0.05) contrast(1.05) brightness(0.95);
}

/* On mobile: horizontal scroll strip */
@media (max-width: 768px) {
  .photo-strip-inner {
    height: 260px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
  }
  .photo-strip-inner::-webkit-scrollbar { display: none; }
  .photo-strip-item {
    flex: 0 0 240px;
  }
  .photo-strip-item:first-child { flex: 0 0 320px; }
  .photo-strip-item:nth-child(4) { flex: 0 0 200px; }
  .photo-strip-item:nth-child(6) { flex: 0 0 200px; }
}

/* ── Music ────────────────────────────────────────────────── */
#music {
  background: var(--color-bg-deep);
}

/* Structural break: heading + descriptor on one axis */
.music-header {
  display: flex;
  align-items: baseline;
  gap: 0;
  border-bottom: 1px solid var(--color-rule);
  padding-bottom: 1.8rem;
  margin-bottom: 2.5rem;
}

.music-header h2 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-style: italic;
  margin-bottom: 0;
  flex-shrink: 0;
}

.music-header-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 1px solid var(--color-rule);
  line-height: 1.4;
}

/* Audio cards grid */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2.5rem 0 3.5rem;
}

.audio-card {
  background: var(--color-bg-card);
  border-radius: 0;
  border: none;
  border-left: 3px solid var(--color-gold);
  padding: 1.6rem 1.4rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
  transition: box-shadow 0.25s;
}

.audio-card.is-playing {
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35), 0 4px 24px rgba(201, 168, 76, 0.18);
}

.audio-card-info {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.audio-track-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.3;
}

.audio-track-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.audio-play-btn {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.audio-play-btn:hover {
  background: #b8932e;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.audio-play-btn:active {
  transform: scale(0.97);
}

/* Progress bar */
.audio-progress-wrap {
  grid-column: 1 / 3;
  grid-row: 3;
  height: 3px;
  background: rgba(240, 237, 230, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.audio-progress-wrap::after {
  content: '';
  position: absolute;
  inset: -6px 0;
}

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

.audio-progress-bar::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  transition: transform 0.15s;
}

.audio-card.is-playing .audio-progress-bar::after {
  transform: translateY(-50%) scale(1);
}

.audio-time {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* YouTube embeds grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-embed-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-embed-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0;
}

/* Responsive music */
@media (max-width: 768px) {
  .audio-grid  { grid-template-columns: 1fr; }
  .video-grid  { grid-template-columns: 1fr; }
  .music-header { flex-direction: column; gap: 1rem; }
  .music-header-desc { padding-left: 0; margin-left: 0; border-left: none; border-top: 1px solid var(--color-rule); padding-top: 1rem; }
}

/* Expressive section headings — larger + italic for poster energy */
#upcoming-events h2,
#teaching h2,
#find h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-style: italic;
}

/* ── Upcoming Events ──────────────────────────────────────── */
#upcoming-events {
  background: var(--color-bg-mid);
}


.events-list {
  display: none; /* shown when real events are added */
}

.events-list:not(:empty) {
  display: block;
  margin-top: 2.5rem;
}

.events-placeholder {
  display: block;
  padding: 2.5rem 0 1rem;
}

.events-placeholder-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: rgba(240, 237, 230, 0.38);
  line-height: 1.55;
  margin: 0;
}

.events-placeholder-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.events-placeholder-text a:hover {
  opacity: 0.65;
}

/* ── Credibility strip ────────────────────────────────────── */
.credibility-strip {
  background: var(--color-bg-mid);
  padding: 22px 0;
  border-top: 1px solid var(--color-rule);
}

.credibility-strip .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}

.cred-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.cred-items span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(240, 237, 230, 0.55);
}

.cred-sep {
  color: var(--color-gold) !important;
  opacity: 0.5;
}

/* ── Stats strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--color-bg-mid);
  padding: 72px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-rule);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-grid { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .credibility-strip .container { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ── About ────────────────────────────────────────────────── */
#about {
  background: var(--color-bg-mid);
  position: relative;
  overflow: hidden;
}


#about .about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-photo-frame {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.4rem;
}

.about-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: sepia(0.15) contrast(1.05);
}

.about-genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 2px;
}

.about-pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

/* ── Teaching / Lessons ───────────────────────────────────── */
#teaching {
  background: var(--color-bg-mid);
}

.lessons-booking-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.teaching-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.capacity-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0 2rem;
}

.capacity-notice-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.capacity-notice p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text);
}

.capacity-notice strong { color: var(--color-gold); }

/* Rates table */
.rates-card {
  background: var(--color-bg-card);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 2.2rem;
}

.rates-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.rates-table th {
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 0 0.6rem;
  border-bottom: 1.5px solid var(--color-rule);
}

.rates-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-rule);
  color: var(--color-text);
}

.rates-table tr:last-child td { border-bottom: none; }

.rates-table td:last-child {
  font-weight: 700;
  color: var(--color-gold);
  text-align: right;
}

.tbd {
  font-style: italic;
  color: var(--color-text-muted);
  font-weight: 400;
}

.rates-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-block {
  margin-top: 5rem;
}

/* Row that holds the heading + pinned student note side by side */
.testimonials-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonials-heading {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Pinned note — polaroid-style, slight lean */
.student-note {
  flex-shrink: 0;
}

.student-note img {
  display: block;
  width: 240px;
  border: 7px solid rgba(240, 237, 230, 0.94);
  border-bottom-width: 26px;       /* wider bottom border = polaroid feel */
  border-radius: 1px;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(2.5deg);
  filter: sepia(0.12) contrast(1.04) brightness(0.96);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.student-note img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .testimonials-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.4rem;
  }
  .student-note img {
    width: 195px;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testimonial-card {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0;
  padding: 1.8rem 0.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  outline: none;
  box-shadow: none;
}

.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

.testimonial-card footer {
  font-size: 0.78rem;
  color: var(--color-sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* YouTube embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  margin: 2rem 0;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Performances Teaser ──────────────────────────────────── */
.perf-teaser {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.perf-teaser-bg {
  position: absolute;
  inset: 0;
  background-image: url('assests/Abstract Art Photos/4 panels (3).jpeg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}


.perf-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 12, 0.72) 0%,
    rgba(10, 14, 12, 0.55) 40%,
    rgba(10, 14, 12, 0.82) 100%
  );
}

/* Eased top fade — bg-mid (#1c2420) into photo, no hard banding */
.perf-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(
    to bottom,
    rgba(28, 36, 32, 1.00)  0%,
    rgba(28, 36, 32, 0.95) 25%,
    rgba(28, 36, 32, 0.75) 50%,
    rgba(28, 36, 32, 0.35) 75%,
    rgba(28, 36, 32, 0.00) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Eased bottom fade — photo back into bg-mid, no hard banding */
.perf-teaser::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(28, 36, 32, 1.00)  0%,
    rgba(28, 36, 32, 0.95) 25%,
    rgba(28, 36, 32, 0.75) 50%,
    rgba(28, 36, 32, 0.35) 75%,
    rgba(28, 36, 32, 0.00) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.perf-teaser-content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.perf-teaser-content .section-label {
  color: var(--color-gold);
}

.perf-teaser-content h2 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  line-height: 1.05;
}

/* Teaser CTA — quiet hover, no glow (matches hero email button feel) */
.perf-teaser-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.perf-teaser-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.65);
  margin-bottom: 2.5rem;
}

/* ── Waitlist ─────────────────────────────────────────────── */
#waitlist {
  background: var(--color-bg-mid);
}

#waitlist .section-label { color: var(--color-gold); }

#waitlist h2 {
  color: var(--color-text);
}

#waitlist .gold-rule {
  background: var(--color-gold);
}

#waitlist p {
  color: rgba(240, 237, 230, 0.85);
}

.waitlist-inner {
  max-width: 580px;
}

/* Form */
.signup-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 0.4rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(240, 237, 230, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder { color: rgba(240, 237, 230, 0.35); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(240, 237, 230, 0.5);
  pointer-events: none;
  font-size: 0.9rem;
}

select option {
  background: var(--color-bg-mid);
  color: var(--color-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Thank-you message */
.form-thankyou {
  display: none;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid var(--color-gold);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.form-thankyou.visible { display: block; }

.form-thankyou p {
  color: var(--color-text);
  margin: 0;
  font-size: 1rem;
}

.form-thankyou strong { color: var(--color-gold); }

/* ── Find Section ─────────────────────────────────────────── */
.find-section {
  background: var(--color-bg-mid);
}

/* Liner notes / setlist layout — warm, not clinical */
.find-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.find-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  text-decoration: none;
  transition: padding-left 0.22s ease;
}

.find-card:hover {
  padding-left: 0.6rem;
}

.find-card-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.22s;
}

.find-card:hover .find-card-icon {
  opacity: 1;
}

.find-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.find-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1;
  transition: color 0.22s;
}

.find-card:hover .find-card-name {
  color: var(--color-gold);
}

.find-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.find-card-arrow {
  color: var(--color-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.22s, transform 0.22s;
}

.find-card:hover .find-card-arrow {
  opacity: 1;
  transform: translateX(6px);
}

/* ── Footer ───────────────────────────────────────────────── */
footer#contact {
  background: var(--color-bg-deep);
  color: var(--color-text-muted);
  padding: 48px 0 36px;
  border-top: 1px solid var(--color-rule);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.5);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--color-gold); }

.footer-contact p { margin-bottom: 0.3rem; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-social a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a:hover { color: var(--color-gold); }

.footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}


.footer-bottom {
  border-top: 1px solid rgba(240, 237, 230, 0.1);
  padding-top: 1.2rem;
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.35);
  text-align: center;
}

.footer-bottom a {
  color: var(--color-gold);
  transition: opacity 0.2s;
}

.footer-bottom a:hover { opacity: 0.75; }

.footer-art-credit {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.22);
}

/* ── Performances page ────────────────────────────────────── */

/* Hero size override — two-line heading, room to breathe */
.perf-hero .hero-content h1 {
  font-size: clamp(3.2rem, 7.5vw, 7rem);
}

/* ── Formats section ──────────────────────────────────────── */
#formats {
  background: var(--color-bg-mid);
}

.formats-entries {
  margin-top: 3rem;
}

.format-entry {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  align-items: start;
}

.format-entry:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.format-entry-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--color-gold);
  opacity: 0.4;
  letter-spacing: 0.06em;
  padding-top: 0.5rem;
  line-height: 1;
}

.format-entry-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-sage);
  margin-bottom: 0.25rem;
}

.format-entry-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.format-entry-name em {
  font-style: italic;
}

.format-entry-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin: 0;
  max-width: 560px;
}

/* Format entry with photo — two-column body layout */
.format-entry--has-photo .format-entry-body {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 3rem;
  align-items: center;
}

.format-entry-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 7px solid rgba(240, 237, 230, 0.94);
  border-bottom-width: 26px;
  border-radius: 1px;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.format-entry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(0.1) contrast(1.05) brightness(0.92);
  transition: transform 0.6s ease;
}

.format-entry--has-photo:hover .format-entry-photo {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .format-entry--has-photo .format-entry-body {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: start;
  }
  .format-entry-photo {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }
  .format-entry-photo img {
    object-position: center 80%;
  }
}

/* Solo entry photo — landscape source, centre the performer */
.format-entry:nth-child(1) .format-entry-photo img {
  object-position: center 25%;
}

/* Bio inline link — "The Last River" */
.about-text p a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 168, 76, 0.45);
  transition: text-decoration-color 0.2s;
}

.about-text p a:hover {
  text-decoration-color: var(--color-gold);
}

/* Sonic Cocktail — elevated through scale and typography alone.
   No background tint, no border treatment — the larger heading and
   fuller description text signal its status without a visual highlight. */
.format-entry--featured {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.format-entry--featured .format-entry-eyebrow {
  color: var(--color-gold);
  letter-spacing: 0.18em;
}

.format-entry--featured .format-entry-name {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
}

.format-entry--featured .format-entry-desc {
  color: var(--color-text);
  opacity: 0.85;
  max-width: 600px;
  font-size: 0.97rem;
}

/* ── Event type sections ──────────────────────────────────── */

/* ── Transition: formats list → event photo sections ─────── */
/* Gradient ramp bridges the bg-mid (formats) to bg-deep (event sections)
   so the photo backgrounds phase in rather than cut in abruptly. */
.events-curtain {
  height: 100px;
  background: linear-gradient(
    to bottom,
    var(--color-bg-mid) 0%,
    var(--color-bg-deep) 100%
  );
}

.event-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-deep);
}

/* Container must sit above the overlay AND above the edge fades (z-index 2) */
.event-section > .container {
  position: relative;
  z-index: 3;
}

/* Soft top edge: fades the section's base colour into the photo,
   so each event section eases in rather than starting hard. */
.event-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, var(--color-bg-deep) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Soft bottom edge: fades back out before the next section begins. */
.event-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--color-bg-deep) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.event-section-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  /* Full opacity — gradient overlay handles readability.
     Vertical overflow gives the parallax room to breathe without clipping. */
  pointer-events: none;
}

/* Shared overlay for all three event sections — consistent atmosphere.
   Dense on the left (text) side, opening right so the image breathes through.
   All three sections use this exact gradient; no per-section overrides. */
.event-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(20, 24, 22, 0.96) 0%,
    rgba(20, 24, 22, 0.90) 50%,
    rgba(20, 24, 22, 0.62) 100%
  );
}

.event-section-inner {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 5rem;
  align-items: start;
}

.event-section-content h2 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: var(--color-text);
}

.event-section-body p {
  color: var(--color-text);
  opacity: 0.88;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.event-section-body p:last-child { margin-bottom: 0; }

.event-detail-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}

.event-detail-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.88rem;
  color: var(--color-text);
  opacity: 0.72;
  line-height: 1.5;
}

.event-detail-list li:first-child { border-top: 1px solid rgba(201, 168, 76, 0.1); }

.event-detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  opacity: 0.5;
  font-style: italic;
}

.event-section-aside {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: sticky;
  top: 100px;
}

.event-aside-block {
  background: rgba(20, 24, 22, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 2px;
  padding: 1.6rem 1.4rem;
  backdrop-filter: blur(12px);
}

.event-aside-block h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.event-aside-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-aside-block ul li {
  font-size: 0.88rem;
  color: var(--color-text);
  opacity: 0.82;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.07);
  line-height: 1.4;
}

.event-aside-block ul li:last-child { border-bottom: none; }

.event-aside-note {
  padding: 0 0.1rem;
}

.event-aside-note p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.event-aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: gap 0.22s ease, border-color 0.22s ease;
}

.event-aside-cta:hover {
  gap: 0.9rem;
  border-color: var(--color-gold);
}

/* ── Booking section ──────────────────────────────────────── */
#booking {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-rule);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 7rem;
  align-items: start;
}

.booking-intro {
  color: rgba(240, 237, 230, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.booking-submit {
  margin-top: 0.5rem;
}

/* Warm up booking form fields — subtle gold tint so the form
   feels atmospheric rather than clinical against the dark bg */
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.22);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: rgba(201, 168, 76, 0.07);
}

.form-optional {
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

/* Booking aside */
.booking-aside {
  padding-top: 5rem;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.booking-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
}

.booking-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.booking-quote cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  opacity: 0.75;
}

.booking-contact-direct h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.booking-contact-direct a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.booking-contact-direct a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.booking-service-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* ── Responsive — performances page ──────────────────────── */
@media (max-width: 900px) {
  .event-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .event-section-aside {
    padding-top: 0;
    position: static;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-aside {
    padding-top: 0;
    position: static;
  }
  /* No negative-margin override needed — format-entry--featured
     uses in-bounds gold left-border treatment at all widths. */
}

@media (max-width: 768px) {
  .format-entry {
    grid-template-columns: 40px 1fr;
    gap: 1.2rem;
    padding: 1.8rem 0;
  }
  .perf-hero .hero-content h1 {
    font-size: clamp(2.6rem, 9vw, 4.2rem);
  }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
  }
  .nav-backdrop.open { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 280px);
    height: 100vh;
    z-index: 101;
    background: var(--color-bg-mid);
    flex-direction: column;
    gap: 0;
    padding-top: 5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { border-bottom: 1px solid rgba(240, 237, 230, 0.08); }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Dropdown — inline expansion inside hamburger menu */
  .nav-item-dropdown {
    position: static;
  }

  .nav-dropdown {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    background: rgba(20, 24, 22, 0.55);
    border: none;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.32s ease;
    pointer-events: none;
    z-index: auto;
    min-width: 0;
  }

  .nav-item-dropdown.dropdown-open .nav-dropdown {
    max-height: 320px;
    pointer-events: auto;
  }

  .nav-dropdown li {
    border-bottom: 1px solid rgba(240, 237, 230, 0.04);
  }

  .nav-dropdown li a {
    display: block;
    padding: 0.85rem 2rem 0.85rem 3rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: rgba(240, 237, 230, 0.6);
    white-space: normal;
  }

  .nav-dropdown .nav-dropdown-booknow {
    border-top: none;
    margin-top: 0;
    padding-top: 0.85rem;
    color: var(--color-gold);
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  /* Hero */
  .hero-content { padding: 0 0 60px 0; }

  /* About */
  #about .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-aside { order: -1; }

  .about-photo-frame { height: 320px; }
  .about-headshot { max-width: 100%; }

  /* Teaching */
  .teaching-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; width: 100%; }
}
