/* ═══════════════════════════════════════════
   DESIGN TOKENS — MUSIC ANALYSIS
═══════════════════════════════════════════ */
:root {
  --bg:         #faf7f2;
  --surface:    #1c1a16;
  --card:       #ffffff;
  --card2:      #f2ede6;
  --border:     rgba(0,0,0,.09);
  --amber:      #d97706;
  --amber2:     #b45309;
  --amber-dim:  #fef3c7;
  --text:       #1a1510;
  --t2:         #44392e;
  --t3:         #8a7f72;
  --sidebar-w:  228px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(0,0,0,.45);
  --shadow-lg:  0 6px 32px rgba(0,0,0,.6);
  --ff-brand:   'Bebas Neue', Impact, sans-serif;
  --ff-heading: 'Outfit', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-serif:   var(--ff-heading);
  --ff-sans:    var(--ff-body);
  --rule:       1px solid var(--border);
}

/* ═══ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
}
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber2); text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
ul.plain-list { list-style: disc; padding-left: 1.4rem; }
ul.plain-list li { color: #44392e; margin-bottom: .35rem; }
ul.plain-list li strong { color: #1a1510; }
p { margin-bottom: .9rem; color: #44392e !important; font-family: var(--ff-body); }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4 { font-family: var(--ff-heading); font-weight: 800; color: #1a1510 !important; line-height: 1.2; }
h1 { font-size: clamp(1.9rem,3.5vw,2.8rem); margin-bottom: .6rem; font-weight: 900; }
h2 { font-size: 1.65rem; margin-bottom: .5rem; font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .45rem; }
h4 { font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: .5rem; font-family: var(--ff-body); }
strong { color: var(--text); }
em { color: var(--text); font-style: italic; }

/* ═══ SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--t3); border-radius: 4px; }

.sidebar-logo { padding: 1.5rem 1.2rem 1.1rem; border-bottom: var(--rule); }
.sidebar-logo a { text-decoration: none; }
.sidebar-logo-title {
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: 2.1rem;
  color: #ffffff;
  line-height: 1;
  letter-spacing: .06em;
}

.sidebar-nav { padding: .75rem 0 2rem; }

.nav-page-link {
  display: block;
  padding: .65rem 1.2rem;
  font-size: .95rem;
  font-weight: 600;
  color: #d4ccc0;
  text-transform: uppercase;
  letter-spacing: .07em;
  cursor: pointer;
  transition: color .18s;
  border-left: 2px solid transparent;
  text-decoration: none;
}
.nav-page-link:hover { color: #ffffff; text-decoration: none; }
.nav-page-link.active { color: #fbbf24; border-left-color: #fbbf24; background: rgba(251,191,36,.08); }

.nav-sub { display: none; padding: .1rem 0 .4rem; }
.nav-sub.open { display: block; }
.nav-sub-link {
  display: block;
  padding: .42rem 1.2rem .42rem 1.8rem;
  font-size: .9rem;
  color: #a09285;
  cursor: pointer;
  transition: color .15s;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.nav-sub-link:hover { color: #ffffff; text-decoration: none; }
.nav-sub-link.active { color: #fbbf24; border-left-color: #fbbf24; }

.nav-divider { height: 1px; background: var(--border); margin: .5rem 1.2rem; }

/* ═══ PAGE CONTENT */
.page-content { flex: 1; min-width: 0; padding: 0; }
.content-section { display: none; }
.content-section.active { display: block; }

/* ═══ HERO */
.page-hero {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(135deg, #92400e 0%, #b45309 60%, #d97706 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 3px solid #d97706;
  margin-bottom: 2.5rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 100%);
}
.page-hero > * { position: relative; }
.page-hero h1, .page-hero h2 { color: #ffffff !important; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.page-hero p, .page-hero p.lead {
  color: rgba(255,255,255,.9) !important;
  font-size: 1.02rem;
  max-width: 600px;
  margin-top: .4rem;
  margin-bottom: 0;
}
.hero-eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.8) !important;
  font-weight: 600;
  margin-bottom: .5rem;
  font-family: var(--ff-sans);
}
.hero-rule { width: 40px; height: 2px; background: var(--amber); margin-bottom: 1rem; }

/* ═══ CONTENT WRAPPER */
.content-wrap { padding: 0 2.5rem 3rem; }
.content-wrap-narrow { max-width: 720px; }

/* ═══ SECTION RULE */
.section-rule {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 2rem 0 1.25rem;
}
.section-rule::before, .section-rule::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-rule span {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--amber);
  white-space: nowrap;
}

/* ═══ CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.card {
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  position: relative;
  transition: border-color .2s;
}
.card:hover { border-color: rgba(245,158,11,.22); }
.card .card-num {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--amber);
  opacity: .18;
  position: absolute;
  top: .4rem;
  right: .8rem;
  line-height: 1;
  pointer-events: none;
}
.card h3 { font-size: 1rem; margin-bottom: .4rem; }
.card p { font-size: .85rem; margin-bottom: 0; }
.card.ct-amber { border-left: 3px solid var(--amber); }
.card.ct-blue  { border-left: 3px solid #4fa8e8; }
.card.ct-green { border-left: 3px solid #4ade80; }
.card.ct-red   { border-left: 3px solid #f87171; }

/* ═══ QUOTE BLOCK */
.quote-block {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1.2rem;
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 1.5rem 0;
}
.quote-block .qb-bar { background: var(--amber); border-radius: 2px; }
.quote-block .qb-text {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.6;
}

/* ═══ INFO BOX */
.info-box {
  background: var(--card);
  border: var(--rule);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  margin: 1.25rem 0;
}
.info-box h4 { margin-bottom: .5rem; }
.info-box p, .info-box li { font-size: .88rem; color:#44392e; }
.info-box ul { list-style: disc; padding-left: 1.2rem; }

/* ═══ WHY / ELEMENT LISTS */
.why-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.why-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1.2rem;
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  align-items: start;
}
.why-item .wi-bar { background: var(--amber); border-radius: 2px; margin-top: .3rem; }
.why-item h3 { margin-bottom: .3rem; }
.why-item p { margin-bottom: 0; font-size: .88rem; }

.element-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.element-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  align-items: start;
}
.element-item .ei-num {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--amber);
  line-height: 1;
  padding-top: .1rem;
}
.element-item h3 { margin-bottom: .2rem; }
.element-item p { font-size: .86rem; margin-bottom: 0; }

/* ═══ QUESTIONS BOX */
.questions-box {
  background: #fef3c7;
  border: 2px solid #d97706;
  border-left: 5px solid #d97706;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
}
.questions-box h4 { color: #92400e; margin-bottom: .8rem; font-size: .95rem; }
.questions-box ul { list-style: disc; padding-left: 1.2rem; }
.questions-box li { font-size: .9rem; color: #44392e; margin-bottom: .45rem; font-weight: 500; }

/* ═══ STRUCTURE LABELS */
.struct-row { display: flex; flex-wrap: wrap; gap: .4rem; margin: .8rem 0; }
.sb {
  display: inline-block;
  padding: .28rem .75rem;
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--ff-body);
  background: var(--card2);
  border: 1px solid var(--border);
  color: #44392e;
}
.sb-intro, .sb-verse, .sb-chorus, .sb-bridge,
.sb-solo, .sb-outro, .sb-pre { background: #d97706; color: #ffffff; border-color: #b45309; }

/* ═══ CHORD DISPLAY */
.chord-row { display: flex; gap: .3rem; flex-wrap: wrap; }
.chord {
  background: var(--amber);
  color: #ffffff;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: .9rem;
  padding: .2rem .55rem;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
}
.chord-with-name { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.chord-name-label { font-size: .65rem; font-family: var(--ff-body); color: var(--t3); font-weight: 600; letter-spacing: .03em; }

/* ═══ TWO-COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.two-col > :last-child { position: sticky; top: 1rem; align-self: start; }

/* ═══ GENRE LAYOUT */
.genre-body { padding: 0 2.5rem 3rem; }
.genre-grid { display: grid; grid-template-columns: 1fr 290px; gap: 2rem; align-items: start; }
.genre-sticky { position: sticky; top: 1rem; align-self: start; }
.genre-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--amber);
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: .45rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border);
}
.tag-row { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .6rem; }
.tag {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: 4px;
  font-size: .73rem;
  font-weight: 600;
  background: #d97706;
  border: 1px solid #b45309;
  color: #ffffff;
}
.song-hero .tag { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); color: #fff; }

/* ═══ AUDIO PLAYER */
.audio-card {
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.audio-card-header { background: var(--amber); padding: .6rem 1rem; }
.audio-card-header span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: #0f0e0c;
}
.audio-card-body { padding: 1rem; }
.audio-card audio { width: 100%; height: 36px; margin-bottom: .75rem; border-radius: 6px; background: var(--card2); }

/* iTunes artwork / now-playing panel */
.now-playing {
  display: none;
  background: var(--card2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.now-playing.visible { display: block; }
.now-playing img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.now-playing-info {
  padding: .6rem .8rem .7rem;
  border-top: 2px solid var(--amber);
}
.now-playing-title {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.now-playing-artist {
  font-size: .75rem;
  color: var(--amber);
  margin-top: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.now-playing-badge {
  font-size: .65rem;
  color: #888;
  margin-top: .3rem;
  letter-spacing: .03em;
}
.track-list { display: flex; flex-direction: column; gap: .3rem; }
.track-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
  border: 1px solid transparent;
}
.track-item:hover { background: var(--card2); border-color: var(--border); }
.track-item.playing { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); }
.track-item .ti-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--amber);
}
.track-item .ti-name { font-size: .8rem; color: #44392e; }
.track-item.playing .ti-name { color: var(--amber2); }
.track-placeholder { text-align: center; padding: 1.5rem; color: var(--t3); font-size: .8rem; font-style: italic; }

/* ═══ MUSICIAN GRID */
.musician-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-top: .75rem;
}
.musician-grid a { display: block; border-radius: 8px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.musician-grid a:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.musician-grid img { width: 100%; aspect-ratio: 248/280; object-fit: cover; border-radius: 8px; display: block; }

/* ═══ SONG ANALYSIS */
.song-hero {
  position: relative;
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(135deg, #92400e 0%, #d97706 100%);
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #d97706;
  overflow: hidden;
  min-height: 160px;
}
.song-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 100%);
}
.song-hero > * { position: relative; }
.song-hero h1 { color: #ffffff !important; }
.song-hero .song-artist { color: rgba(255,255,255,.9) !important; }
.song-hero .hero-eyebrow { color: rgba(255,255,255,.8) !important; }
.song-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.song-artist { color: #44392e; font-size: .92rem; font-style: italic; margin-top: .2rem; }

.song-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 2.5rem 3rem;
}
.song-layout h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.song-layout h3:first-child { margin-top: 0; }
.song-layout p { font-size: .9rem; }
.song-sticky { position: sticky; top: 1rem; align-self: start; }

.video-card {
  background: var(--card);
  border: var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.video-card-label {
  background: var(--card2);
  padding: .55rem 1rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber);
  font-weight: 600;
  border-bottom: var(--rule);
}
.video-card video, .video-card iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  border: none;
  background: #000;
}
.listen-box {
  background: var(--card);
  border: var(--rule);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.listen-box h4 { margin-bottom: .5rem; }
.listen-box p { font-size: .82rem; color: #44392e; margin-bottom: 0; }

/* ═══ RESOURCES */
.res-wrap { padding: 0 2.5rem 3rem; }
.res-tool { margin-bottom: 2.5rem; }
.res-tool h3 { margin-bottom: 1rem; padding-bottom: .4rem; border-bottom: var(--rule); }

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .6rem;
  margin-top: 1rem;
}
.glossary-item { background: var(--card); border: var(--rule); border-radius: 8px; padding: .75rem 1rem; }
.glossary-term { font-weight: 600; font-size: .82rem; color: var(--amber2); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .04em; }
.glossary-def { font-size: .8rem; color: #44392e; line-height: 1.5; }

.glossary-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.glossary-link-box {
  display: inline-block;
  background: #d97706;
  border: 1px solid #b45309;
  border-radius: 6px;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: #ffffff !important;
  transition: background .15s;
}
.glossary-link-box:hover { background: #b45309; text-decoration: none; color: #ffffff !important; }

.tone-table-wrap { overflow-x: auto; }
.tone-table-wrap table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.tone-table-wrap th {
  background: var(--card2);
  color: var(--amber);
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .65rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}
.tone-table-wrap td { padding: .5rem 1rem; border: 1px solid var(--border); color: #44392e; }
.tone-table-wrap tr:nth-child(even) td { background: rgba(255,220,130,.02); }

.starter-cat { margin-bottom: 1.75rem; }
.starter-cat h3 {
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: .75rem;
  padding-bottom: .35rem;
  border-bottom: var(--rule);
  font-family: var(--ff-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.starter-item {
  background: var(--card);
  border: var(--rule);
  border-radius: 8px;
  padding: .85rem 1.1rem;
  margin-bottom: .55rem;
  font-size: .97rem;
  color: #44392e;
  font-style: italic;
  line-height: 1.6;
}

/* ═══ CHORD FUNCTION GRID */
.chord-fn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .6rem;
  margin-top: 1rem;
}
.chord-fn-item { background: var(--card2); border: var(--rule); border-radius: 8px; padding: .8rem; text-align: center; }
.chord-fn-item .cfn-num { font-family: var(--ff-heading); font-weight: 800; font-size: 1.5rem; color: var(--amber); }
.chord-fn-item .cfn-desc { font-size: .73rem; color: var(--t3); margin-top: .2rem; line-height: 1.4; }

/* ═══ CHORD TABLE */
.chord-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.chord-table-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); font-weight: 600; margin-bottom: .5rem; }
.chord-table-wrap table {
  border-collapse: collapse;
  font-size: .75rem;
  width: 900px;
  max-width: 900px;
  min-width: 700px;
}
.chord-table-wrap th { background: var(--card2); color: #44392e; padding: .5rem .75rem; text-align: center; border: 1px solid var(--border); font-weight: 600; }
.chord-table-wrap td { padding: .4rem .75rem; border: 1px solid var(--border); text-align: center; color: #44392e; }
.chord-table-wrap .key-col { font-weight: 700; color: var(--amber2); text-align: center; }
.chord-table-wrap .group-label {
  background: #d97706;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--ff-body);
  font-style: normal;
  text-align: center;
  vertical-align: middle;
  padding: .4rem .5rem;
  width: 28px;
}
.chord-table-wrap tr:nth-child(even) td:not(.key-col):not(.group-label) { background: rgba(255,220,130,.02); }

/* ═══ HOWTO LIST */
.howto-list { display: flex; flex-direction: column; gap: .75rem; }
.howto-item { background: var(--card); border: var(--rule); border-radius: var(--radius); padding: 1.1rem 1.3rem; transition: border-color .2s; }
.howto-item:hover { border-color: rgba(245,158,11,.22); }
.howto-item h3 { font-size: 1rem; margin-bottom: .25rem; }
.howto-item h3 a { color: var(--text); }
.howto-item h3 a:hover { color: var(--amber); text-decoration: none; }
.howto-item p { font-size: .87rem; margin-bottom: 0; }

/* ═══ EXAMPLE BOX */
.example-box { background: var(--card); border: var(--rule); border-radius: var(--radius); padding: 1.25rem 1.4rem; margin: 1.5rem 0; }
.example-box h4 { color: var(--amber); margin-bottom: .7rem; }
.example-box p { font-family: var(--ff-heading); font-style: italic; font-size: 1rem; color: var(--text); line-height: 1.65; margin-bottom: 0; }

/* ═══ UTIL */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.prose { padding: 0 2.5rem 2rem; max-width: 740px; }
.prose p { color: #44392e; }

/* ═══ INSTRUMENT HEADINGS */
#i-drums h3, #i-bass h3, #i-guitar h3, #i-piano h3,
#i-synth h3, #i-voice h3, #i-sax h3, #i-horns h3 {
  color: #d97706 !important;
}

/* ═══ SENTENCE STARTER PLACEHOLDER */
.placeholder { color: #4f8cc9; font-style: normal; font-weight: 500; }
