/* ============================================================
   MAYE CAVALLARO JAZZ VOCAL ARCHIVE — Design System
   Palette: #FFFFFF | #000000 | #ea3324
   Typography: Playfair Display (serif) + Inter (sans-serif)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { max-width: 68ch; }

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

/* ── Utility ── */
.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.red       { color: #ea3324; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 3px solid #ea3324;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__brand span { color: #ea3324; }

.nav__links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: #ea3324;
  border-color: #ea3324;
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.2s;
}

.nav__toggle:hover span { background: #ea3324; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn--red {
  background: #ea3324;
  color: #fff;
}

.btn--red:hover {
  background: #c92500;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #ea3324;
  border: 2px solid #ea3324;
}

.btn--outline:hover {
  background: #ea3324;
  color: #fff;
}

.btn--black {
  background: #000;
  color: #fff;
}

.btn--black:hover {
  background: #ea3324;
}

/* ── Hero Section ── */
.hero {
  background: #000;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.03) 79px,
      rgba(255,255,255,0.03) 80px
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text { /* left column */ }

.hero__photo {
  position: relative;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* film-strip red border on left */
  border-left: 5px solid #ea3324;
}

.hero__photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(26,86,219,0.3);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
  }
  .hero__photo { order: -1; }
  .hero__photo img { max-height: 400px; }
  .hero__photo::after { display: none; }
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ea3324;
  margin-bottom: 1.4rem;
}

.hero__headline {
  color: #fff;
  margin-bottom: 1.6rem;
}

.hero__headline .accent { color: #ea3324; }

.hero__copy {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  margin-bottom: 2.6rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero__divider {
  width: 60px;
  height: 3px;
  background: #ea3324;
  margin: 1.6rem 0;
}

/* ── Section Shared ── */
.section {
  padding: 5.5rem 0;
}

.section--dark {
  background: #000;
  color: #fff;
}

.section--grey {
  background: #f7f7f7;
}

.section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.9rem;
}

.section__title { margin-bottom: 1rem; }

.section__lead {
  font-size: 1.05rem;
  color: #444;
  max-width: 62ch;
  margin-bottom: 3rem;
}

.section--dark .section__lead { color: rgba(255,255,255,0.65); }

.section__rule {
  width: 50px;
  height: 3px;
  background: #ea3324;
  margin: 1.2rem 0 2.8rem;
}

/* ── Three Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 3.5rem;
}

.pillar {
  background: #fff;
  border-top: 4px solid #ea3324;
  padding: 2.6rem 2.2rem;
  transition: box-shadow 0.25s;
}

.section--dark .pillar {
  background: #111;
}

.pillar:hover {
  box-shadow: 0 8px 32px rgba(26,86,219,0.12);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.4rem;
  color: #ea3324;
}

.pillar__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.5rem;
}

.pillar__title {
  margin-bottom: 0.8rem;
}

.pillar__body {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

.section--dark .pillar__body { color: rgba(255,255,255,0.6); }

.pillar__link {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ea3324;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.pillar__link:hover { border-color: #ea3324; }

/* ── Quote / Philosophy Block ── */
.quote-block {
  border-left: 4px solid #ea3324;
  padding: 1.8rem 2.4rem;
  background: #f9f9f9;
  margin: 3rem 0;
}

.section--dark .quote-block {
  background: #111;
}

.quote-block__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.65;
  color: #111;
  max-width: 72ch;
}

.section--dark .quote-block__text { color: #fff; }

.quote-block__attribution {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ea3324;
}

/* ── Practice Tip / Post-it Box ── */
.tip-box {
  border: 2px solid #ea3324;
  padding: 1.4rem 1.8rem;
  margin: 1.5rem 0;
  position: relative;
  background: #fff;
}

.tip-box::before {
  content: 'PRACTICE TIP';
  position: absolute;
  top: -11px;
  left: 16px;
  background: #ea3324;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2px 8px;
}

.tip-box p {
  font-size: 0.93rem;
  color: #222;
  font-style: italic;
}

/* ── Roadmap / Steps ── */
.roadmap {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.6rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ea3324;
  line-height: 1;
  opacity: 0.9;
}

.step__content h3 { margin-bottom: 0.5rem; }

.step__content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ── Resource Table ── */
.table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border: 1px solid #e8e8e8;
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.resource-table thead {
  background: #000;
  color: #fff;
}

.resource-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  text-align: left;
}

.resource-table thead th:first-child { color: #ea3324; }

.resource-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.15s;
}

.resource-table tbody tr:hover {
  background: #f0f4ff;
}

.resource-table tbody td {
  padding: 1rem 1.4rem;
  vertical-align: middle;
  color: #222;
  font-size: 0.91rem;
}

.resource-table tbody td:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
}

.resource-table tbody td:first-child small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
  margin-top: 2px;
}

.table-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ea3324;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  white-space: nowrap;
}

.table-link:hover { border-color: #ea3324; }

.table-link--pdf::before  { content: '↓'; }
.table-link--mp3::before  { content: '▶'; }
.table-link--note::before { content: '✦'; }

/* ── Composer Cards ── */
.composer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.composer-card {
  border: 1px solid #e0e0e0;
  border-top: 4px solid #ea3324;
  padding: 2rem 1.8rem;
  transition: box-shadow 0.25s;
}

.composer-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* ── Composer Tile Grid (index.html) ── */
.composer-tile {
  display: block;
  background: #fff;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  transition: background 0.18s ease;
}

.composer-tile__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  transition: color 0.18s ease;
}

.composer-tile:hover {
  background: #000;
}

.composer-tile:hover .composer-tile__name {
  color: #ea3324;
}

.composer-card__dates {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.5rem;
}

.composer-card__name {
  margin-bottom: 0.8rem;
}

.composer-card__years {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.composer-card__songs {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.7;
  margin: 0.7rem 0 1rem;
}

.composer-card__arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ea3324;
  letter-spacing: 0.04em;
}

.composer-card__bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.composer-card__tracks {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.composer-card__tracks li {
  font-size: 0.85rem;
  color: #333;
  padding-left: 1rem;
  position: relative;
}

.composer-card__tracks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #ea3324;
}

/* ── Tool Room Boxes ── */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tool-box {
  border: 2px solid #ea3324;
  padding: 2rem 1.8rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.tool-box:hover {
  background: #f0f4ff;
}

.tool-box__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.tool-box__title {
  margin-bottom: 0.6rem;
}

.tool-box__body {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.65;
  flex: 1;
}
.tool-box .btn,
.tool-box .stave-row {
  margin-top: 1.4rem;
  align-self: center;
}

/* ── Stave Paper Download Buttons ── */
.stave-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

/* ── About / Philosophy Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-grid .signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #ea3324;
  margin-top: 2rem;
}

.about-sidebar {
  border-left: 3px solid #ea3324;
  padding-left: 2rem;
}

.about-sidebar__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ea3324;
  margin-bottom: 1.2rem;
}

.about-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-sidebar li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-sidebar li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ea3324;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: #000;
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.82rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer__brand span { color: #ea3324; }

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links a:hover { color: #ea3324; }

.footer__copy {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Page Header Banner ── */
.page-header {
  background: #000;
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 3px solid #ea3324;
}

.page-header__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.8rem;
}

.page-header__title { color: #fff; margin-bottom: 0.8rem; }

.page-header__lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 58ch;
  font-weight: 300;
  line-height: 1.75;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #eee;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.18s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ea3324;
  border-color: #ea3324;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid #222;
  }

  .nav__links.open { display: flex; }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: none;
  }

  .nav__toggle { display: flex; }

  .nav { position: relative; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__links {
    flex-wrap: wrap;
  }

  .step {
    grid-template-columns: 52px 1fr;
  }

  .step__number { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT / BIO PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* Bio hero split: photo left, text right */
.bio-hero {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.bio-hero__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 580px;
}

.bio-hero__photo {
  position: relative;
  overflow: hidden;
}

.bio-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.04);
}

.bio-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, #000 100%);
  pointer-events: none;
}

.bio-hero__text {
  padding: 5rem 4rem 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 1.2rem;
}

.bio-hero__name {
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.bio-hero__title {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.bio-hero__divider {
  width: 50px;
  height: 3px;
  background: #ea3324;
  margin-bottom: 1.8rem;
}

.bio-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-weight: 300;
  max-width: 58ch;
}

@media (max-width: 900px) {
  .bio-hero__inner {
    grid-template-columns: 1fr;
  }
  .bio-hero__photo {
    height: 380px;
  }
  .bio-hero__photo::after {
    background: linear-gradient(to bottom, transparent 60%, #000 100%);
  }
  .bio-hero__text {
    padding: 3rem 1.5rem;
  }
}

/* Press quotes grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.press-card {
  border-left: 4px solid #ea3324;
  padding: 1.5rem 1.5rem 1.5rem 1.8rem;
  background: #f9f9f9;
}
.press-card--wide {
  grid-column: span 2;
}

.press-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.press-card__source {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ea3324;
}

.press-card__author {
  font-size: 0.75rem;
  color: #777;
  margin-top: 0.2rem;
  font-style: normal;
}

/* Discography */
.discography {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.album-card {
  border: 1px solid #e0e0e0;
  border-top: 4px solid #000;
  padding: 1.8rem;
}

.album-card__year {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.5rem;
}

.album-card__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.album-card__info {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.testimonial {
  border-bottom: 1px solid #eee;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
}

.testimonial:last-child { border-bottom: none; }

.testimonial__icon {
  width: 48px;
  height: 48px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 0.8rem;
}

.testimonial__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ea3324;
}

/* Teaching section */
.teaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.teaching-card {
  border: 1px solid #e0e0e0;
  padding: 1.8rem;
  border-top: 4px solid #ea3324;
}

.teaching-card h4 {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.teaching-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
}

/* Collaborators strip */
.collab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.collab-tag {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

/* ── Floating Audio Player ── */
#sp {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 3px solid #ea3324;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
  padding: 0.65rem 0;
}
#sp.sp-on { transform: translateY(0); }
.sp-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5%;
}
.sp-info { flex: 1 1 0; min-width: 0; overflow: hidden; }
#sp-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.sp-btn {
  flex-shrink: 0;
  background: #ea3324;
  border: none;
  color: #fff;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.sp-btn:hover { background: #1440a8; }
.sp-seek {
  flex: 2 1 120px;
  height: 3px;
  cursor: pointer;
  accent-color: #ea3324;
}
.sp-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-dl {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ea3324;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.sp-dl:hover { color: #fff; }
.sp-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  padding: 0 0.2rem;
}
.sp-close:hover { color: #fff; }
@media (max-width: 600px) {
  .sp-info { display: none; }
  .sp-seek { flex: 1 1 80px; }
}

/* ── PDF Viewer Modal ── */
#pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
#pdf-modal.pdf-open { display: flex; }

.pdf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.pdf-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 92%;
  max-width: 960px;
  height: 88vh;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #ea3324;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.pdf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  background: #111;
  flex-shrink: 0;
}

.pdf-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.pdf-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.pdf-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
}
.pdf-close:hover { color: #fff; }

#pdf-frame {
  flex: 1;
  border: none;
  width: 100%;
  background: #525659;
}

@media (max-width: 600px) {
  .pdf-panel { width: 100%; height: 100vh; border-top-width: 3px; }
}



/* ── Vol Header (section dividers for workshop pages) ──────────────── */
.vol-header { display: flex; align-items: baseline; gap: 1rem; padding: 0.8rem 1.2rem; background: #000; color: #fff; border-left: 4px solid #ea3324; margin-bottom: 0; }
.vol-header__number { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: #ea3324; }
.vol-header__title { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ── Song row group labels (Charts / Tracks) ────────────────────────── */
.dl-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
  flex-basis: 100%;
  margin-top: 0.4rem;
  margin-bottom: 0.05rem;
}
.dl-group-label:first-child { margin-top: 0; }

/* ── Song List / Song Row (consolidated from inline styles) ──────── */
.song-list { margin-top: 0; border: 1px solid #e0e0e0; border-top: none; }
.song-row {
  scroll-margin-top: 70px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  transition: background 0.15s;
}
.song-row:last-child { border-bottom: none; }

/* Hide original flat layout (accordion.js restructures the DOM) */
.song-row__info,
.song-row__links { display: none; }

/* Tag pills (charts = red, tracks = black outline) */
.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border: 1px solid #e0e0e0;
  color: #555;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tag:hover { background: #000; color: #fff; border-color: #000; }
.tag--red { border-color: #ea3324; color: #ea3324; }
.tag--red:hover { background: #ea3324; color: #fff; }

/* dl-tag (library.html compat — accordion.js normalises to .tag) */
.dl-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border: 1px solid #e0e0e0;
  color: #555;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.dl-tag:hover { background: #000; color: #fff; border-color: #000; }
.dl-tag--red { border-color: #ea3324; color: #ea3324; }
.dl-tag--red:hover { background: #ea3324; color: #fff; }

/* ── Accordion ─────────────────────────────────────────────────────── */
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  user-select: none;
}
.accordion__header:hover { background: #fafafa; }
.accordion__header:focus-visible { outline: 2px solid #ea3324; outline-offset: -2px; }

.accordion__title-group { flex: 1; min-width: 0; }

.song-row .song-row__title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}
.song-row .song-row__keys {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 0.25rem;
}

/* Chevron (+ / −) */
.accordion__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-left: 1rem;
}
.accordion__chevron::before,
.accordion__chevron::after {
  content: '';
  position: absolute;
  background: #bbb;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion__chevron::before {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion__chevron::after {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion--open .accordion__chevron::before { background: #ea3324; }
.accordion--open .accordion__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
  background: #ea3324;
}

/* Body panel */
.accordion__body {
  display: none;
  padding: 0 1.4rem 1.2rem;
  border-top: 1px solid #f0f0f0;
}
.accordion--open .accordion__body { display: block; }

.accordion__section {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.accordion__section:last-child { border-bottom: none; }

.accordion__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ea3324;
  display: block;
  margin-bottom: 0.5rem;
}

.accordion__section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.accordion__placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #bbb;
  font-style: italic;
}

/* Responsive accordion */
@media (max-width: 640px) {
  .accordion__header { padding: 0.75rem 1rem; }
  .accordion__body { padding: 0 1rem 1rem; }
  .accordion__section-links { gap: 0.3rem; }
  .tag, .dl-tag { font-size: 0.58rem; padding: 0.2rem 0.4rem; }
}
