/* ============================================================
   SESSIONS with Brody Bond — shared stylesheet
   Palette + type carried from the original draft.
   ============================================================ */

:root {
  --ink:      #1C1B19;
  --ink-2:    #3A3833;
  --paper:    #FAF9F6;
  --paper-2:  #F2EFEA;
  --paper-3:  #ECE7DD;
  --text:     #3D3833;
  --text-mut: #6B645B;
  --line:     #D8D3CB;
  --sage:     #6A7B62;
  --tan:      #B5A48E;
  --brown:    #8B7A5E;
  --hdr-1:    #FAF9F6;
  --hdr-2:    #E8E4DE;
  --hdr-3:    #D1CCC4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: 980px;
  --gutter: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  font-family: var(--sans);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

strong { font-weight: 500; color: var(--ink); }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; }
.pad { padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  font-size: 11.5px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--sage);
}
.section-title {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: 34px; letter-spacing: .5px; line-height: 1.1;
}
.lead { font-size: 17px; font-weight: 300; line-height: 1.55; color: var(--text); }
.muted { color: var(--text-mut); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28,27,25,.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid #2a2825;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
}
.nav-brand {
  font-family: var(--serif); color: var(--hdr-1);
  font-size: 22px; font-weight: 600; letter-spacing: 3px; text-decoration: none;
}
.nav-brand span { color: var(--tan); font-style: italic; font-weight: 400;
  font-size: 15px; letter-spacing: .5px; margin-left: 8px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--hdr-3); text-decoration: none; font-size: 12.5px;
  letter-spacing: 1.4px; text-transform: uppercase; font-weight: 400;
  padding: 4px 0; border-bottom: 1px solid transparent; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--hdr-1); border-bottom-color: var(--sage); }
.nav-cta {
  border: 1px solid var(--sage) !important; border-radius: 2px;
  padding: 7px 16px !important; color: var(--hdr-1) !important;
}
.nav-cta:hover { background: var(--sage); border-bottom-color: var(--sage) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--hdr-1);
  font-size: 24px; cursor: pointer; line-height: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  text-decoration: none; padding: 13px 26px; border-radius: 2px;
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
  transition: .2s; cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-light { border-color: var(--hdr-2); color: var(--hdr-1); }
.btn-light:hover { background: var(--hdr-1); color: var(--ink); }
.btn-solid { background: var(--sage); border-color: var(--sage); color: #fff; }
.btn-solid:hover { background: #59684f; border-color: #59684f; color: #fff; }

/* ---------- generic section ---------- */
.section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--paper-2); }
.section.dark { background: var(--ink); color: var(--hdr-2); border-bottom: 0; }
.section-head { margin-bottom: 30px; }
.section-head .eyebrow { display:block; margin-bottom: 12px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--hdr-2); padding: 48px 0 40px; }
.footer .wrap { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-cta { font-family: var(--serif); font-size: 19px; font-style: italic;
  color: var(--hdr-1); line-height: 1.25; max-width: 520px; }
.footer-cta span { display: block; font-family: var(--sans); line-height: 1.55; margin-top: 8px; }
.footer-contact { font-size: 13px; color: var(--hdr-3); line-height: 1.7; text-align: right; }
.footer-contact .contact-line { display: inline-block; }
.footer-social { justify-content: flex-end; }
@media (max-width: 760px){ .footer-contact { text-align: left; } .footer-social { justify-content: flex-start; } }
.footer-contact a { color: var(--hdr-1); text-decoration: none; border-bottom: 1px solid var(--sage); }
.footer-social { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-social a { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--hdr-3);
  text-decoration: none; border-bottom: 1px solid transparent; }
.footer-social a:hover { color: var(--hdr-1); border-bottom-color: var(--sage); }
.footer-nav { margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--hdr-3); text-decoration: none; }
.footer-nav a:hover { color: var(--hdr-1); }
.footer-fine { max-width:1120px; margin: 30px auto 0; padding: 20px var(--gutter) 0;
  border-top: 1px solid #2a2825; font-size: 11.5px; color: #7a736a; letter-spacing:.3px; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
.hero { position: relative; background: var(--ink); color: var(--hdr-2); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 520px; }
.hero-copy { padding: 66px var(--gutter) 56px; display: flex; flex-direction: column; justify-content: center; }
.hero-media { position: relative; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(28,27,25,.35) 22%, rgba(28,27,25,0) 55%); }
.title-main { font-family: var(--serif); font-size: 78px; font-weight: 500;
  letter-spacing: 5px; line-height: .92; color: var(--hdr-1); }
.title-sub { font-family: var(--serif); font-size: 38px; font-style: italic;
  font-weight: 400; color: var(--tan); margin-top: 6px; letter-spacing: 1px; }
.title-tagline { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ink-2);
  font-size: 14.5px; letter-spacing: 1.5px; color: var(--hdr-3); text-transform: uppercase; }
.title-tagline .dot { color: var(--sage); margin: 0 10px; }
.hero-concept { margin-top: 22px; font-size: 16px; font-weight: 300; line-height: 1.55;
  color: var(--hdr-3); max-width: 500px; padding-left: 20px; border-left: 2px solid var(--sage); }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* event details band */
.event-band { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.event-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); }
.event-inner .event-item:first-child { padding-left: 0; }
.event-inner .event-item:last-child { padding-right: 0; }
.event-item { padding: 22px 26px; position: relative; }
.event-item:not(:last-child)::after { content:''; position:absolute; right:0; top:16px; bottom:16px; width:1px; background: var(--line); }
.event-label { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.event-value { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.25; }
.event-value.sm { font-size: 15px; font-weight: 400; font-family: var(--sans); }
.event-value a { color: var(--brown); text-decoration: none; border-bottom: 1px solid var(--line); }

/* on record / streaming */
.listen-grid { display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center; }
.listen-covers { display: flex; flex-wrap: wrap; gap: 10px; max-width: 320px; }
.listen-covers a { display: block; line-height: 0; }
.listen-covers img { width: 92px; height: 92px; object-fit: cover; border-radius: 4px;
  box-shadow: 0 2px 10px rgba(28,27,25,.14); transition: transform .18s; }
.listen-covers a:hover img { transform: scale(1.05); }
@media (max-width: 760px){ .listen-grid { grid-template-columns: 1fr; gap: 26px; } .listen-covers { max-width: none; } }

/* how it works */
.how-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.how-step { text-align: center; padding: 0 16px; }
.how-num { font-family: var(--serif); font-size: 40px; color: var(--tan); line-height: 1; margin-bottom: 10px; }
.how-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .3px; }
.how-desc { font-size: 13px; color: var(--text-mut); line-height: 1.5; max-width: 200px; margin: 0 auto; }
.how-arrow { font-size: 22px; color: var(--tan); padding-top: 6px; }

/* season list */
.season-list { list-style: none; }
.season-list li { display: grid; grid-template-columns: 132px 1fr auto; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--paper-3); align-items: start; }
.season-list li:last-child { border-bottom: 0; }
.season-date { padding-top: 2px; }
.season-host { display: flex; gap: 16px; align-items: flex-start; }
.host-avatar { width: 56px; height: 56px; border-radius: 50%; flex: none; overflow: hidden;
  background: var(--paper-3); border: 1px dashed var(--tan); display: flex; align-items: center; justify-content: center; }
.host-avatar img { width: 100%; height: 100%; object-fit: cover; }
.host-avatar .ph { font-size: 8.5px; line-height: 1.2; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mut); text-align: center; }
.host-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.host-role { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.host-bio { font-size: 13.5px; color: var(--text-mut); line-height: 1.5; max-width: 520px; margin-top: 2px; }
.host-link { font-size: 12.5px; color: var(--brown); text-decoration: none; border-bottom: 1px solid var(--line);
  align-self: flex-start; margin-top: 4px; }
.host-link[aria-disabled="true"] { color: var(--text-mut); border-bottom-style: dashed; pointer-events: none; }
.season-date { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--brown); letter-spacing: .3px; }
.season-date small { display:block; font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mut); font-weight:500; margin-top:2px;}
.season-host { font-size: 15px; color: var(--text); }
.season-host strong { color: var(--ink); }
.season-host .tba { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink); }
.season-host .tba-sub { font-size: 12.5px; color: var(--text-mut); }
.season-tag { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage);
  border: 1px solid var(--line); border-radius: 20px; padding: 4px 12px; white-space: nowrap; }

/* photo strip */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.strip figure { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--ink); }
.strip img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15); transition: .4s; }
.strip figure:hover img { filter: grayscale(0); transform: scale(1.04); }

/* video placeholder */
.video-ph { position: relative; aspect-ratio: 16/9; background: #211f1c url('../img/perform-booth.jpg') center/cover;
  border-radius: 3px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-ph::before { content:''; position:absolute; inset:0; background: rgba(20,19,17,.62); }
.video-ph .vp-inner { position: relative; text-align: center; color: var(--hdr-1); }
.video-ph .vp-play { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--hdr-2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 20px; }
.video-ph .vp-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--hdr-3); }
.ph-note { font-size: 12px; color: var(--text-mut); font-style: italic; margin-top: 10px; }

/* ecosystem columns */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.col { padding: 0 24px; position: relative; }
.col:first-child { padding-left: 0; } .col:last-child { padding-right: 0; }
.col:not(:last-child)::after { content:''; position:absolute; right:0; top:4px; bottom:4px; width:1px; background: var(--line); }
.col-label { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.col-sub { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.col ul { list-style: none; margin-bottom: 18px; }
.col li { font-size: 13.5px; line-height: 1.45; color: #4A4540; padding-left: 15px; position: relative; margin-bottom: 8px; }
.col li::before { content:''; position:absolute; left:0; top:9px; width:7px; height:1px; background: var(--tan); }

/* venue / directions */
.venue-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.venue-photo { border-radius: 3px; overflow: hidden; aspect-ratio: 4/3; }
.venue-photo img { width:100%; height:100%; object-fit: cover; }
.venue-facts { list-style: none; margin-top: 18px; }
.venue-facts li { padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 108px 1fr; gap: 16px; font-size: 14px; }
.venue-facts li:last-child { border-bottom: 0; }
.venue-facts .k { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); font-weight: 600; padding-top: 3px; }
.venue-facts a { color: var(--brown); }

/* ============================================================
   SONG INDEX
   ============================================================ */
.song-tools { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.song-search { flex: 1; min-width: 220px; padding: 11px 16px; border: 1px solid var(--line);
  border-radius: 2px; background: #fff; font-family: var(--sans); font-size: 14px; color: var(--text); }
.song-search::placeholder { color: #a49d93; }
.song-count { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mut); }
.song-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 34px; }
.song-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 4px;
  border-bottom: 1px solid var(--paper-3); transition: .18s; }
.song-row:hover { background: #fff; padding-left: 12px; }
.s-main { flex: 1; min-width: 0; display: block; text-decoration: none; }
.s-covers { flex: none; display: flex; gap: 6px; }
.cover-ic-link { display: block; line-height: 0; }
.cover-ic { width: 40px; height: 40px; border-radius: 3px; object-fit: cover; display: block; transition: transform .18s; }
.cover-ic-link:hover .cover-ic { transform: scale(1.06); }
.media-ic { color: var(--sage); font-size: 12px; margin-left: 3px; }
.lyric-copyright { margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--text-mut); letter-spacing: .2px; }
/* release / streaming panel */
.rel-covers { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.rel-cover-link { display: block; line-height: 0; }
.rel-cover { width: 58px; height: 58px; border-radius: 4px; object-fit: cover; transition: transform .18s; }
.rel-cover-link:hover .rel-cover { transform: scale(1.05); }
.rel-name { font-family: var(--serif); font-size: 16px; color: var(--ink); font-style: italic; line-height: 1.3; margin-bottom: 12px; }
.stream-row { display: flex; flex-wrap: wrap; gap: 6px; }
.stream-btn { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink); text-decoration: none;
  border: 1px solid var(--line); border-radius: 20px; padding: 5px 11px; transition: .18s; }
.stream-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rel-instr { margin-top: 11px; font-size: 12.5px; color: var(--text-mut); line-height: 1.4; }
.rel-instr a { color: var(--brown); }
.song-row .st { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); letter-spacing: .3px; }
.song-row:hover .st { color: var(--brown); }
.song-row .sd { display: block; font-size: 13px; color: var(--text-mut); line-height: 1.45; margin-top: 4px; }
.song-row .sd em { color: var(--sage); font-style: italic; }
.song-row .s-year { display: block; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-top: 5px; }
.song-written { color: var(--hdr-3); font-style: normal; letter-spacing: 1.5px; }

/* ============================================================
   SONG DETAIL
   ============================================================ */
.song-hero { background: var(--ink); color: var(--hdr-2); padding: 50px 0 42px; }
.song-hero .back { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--hdr-3); text-decoration: none; border-bottom: 1px solid var(--sage); }
.song-hero h1 { font-family: var(--serif); font-size: 54px; font-weight: 500; color: var(--hdr-1);
  line-height: 1.02; margin: 20px 0 0; letter-spacing: 1px; }
.song-hero .song-desc { font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--tan); margin-top: 12px; max-width: 640px; line-height: 1.35; }
.song-hero .song-meta { margin-top: 18px; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--hdr-3); }

.song-body { display: grid; grid-template-columns: 1fr 320px; gap: 52px; padding: 50px 0; align-items: start; }
.lyrics { font-family: var(--serif); font-size: 20px; line-height: 1.5; color: var(--ink); font-weight: 400; }
.lyrics .verse { margin-bottom: 26px; white-space: pre-line; }
.lyrics .chorus { margin-bottom: 26px; white-space: pre-line; font-weight: 600; color: var(--ink); }
.lyrics .prechorus { margin-bottom: 26px; white-space: pre-line; font-style: italic; color: var(--ink-2); }
.lyrics .bridge { margin-bottom: 26px; white-space: pre-line; padding-left: 42px; color: var(--ink-2); }
.lyrics .chorus-return { margin-bottom: 26px; }
.lyrics .marker { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sage); font-style: normal; display: block; margin-bottom: 6px; }

.song-side > * + * { margin-top: 26px; }
.panel { border: 1px solid var(--line); border-radius: 3px; padding: 20px; background: var(--paper-2); }
.panel h3 { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px; }
.audio-ph, .song-video-ph { border: 1px dashed var(--tan); border-radius: 3px; background: #fff;
  padding: 22px; text-align: center; color: var(--text-mut); font-size: 13px; }
.audio-ph .ic, .song-video-ph .ic { font-size: 22px; color: var(--tan); margin-bottom: 8px; }
.notes-ph { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text-mut); line-height: 1.5; }
.analysis { font-size: 14px; line-height: 1.62; color: var(--text); font-weight: 300; }
.themes { display: flex; flex-wrap: wrap; gap: 6px; }
.theme-tag { font-size: 10.5px; letter-spacing: .4px; color: var(--sage); border: 1px solid var(--line);
  border-radius: 20px; padding: 4px 10px; background: #fff; line-height: 1.3; }
.corpus-section { padding: 32px 0; }
.corpus-note { max-width: 740px; padding-left: 20px; border-left: 2px solid var(--sage); }
.corpus-label { font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.corpus-note p { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink); font-style: italic; }
.corpus-note p + p { margin-top: 9px; }
.embed { position: relative; }
.embed iframe { width: 100%; border: 0; border-radius: 3px; }
.embed audio { width: 100%; }
.song-nav { display: flex; justify-content: space-between; gap: 16px; padding: 24px 0 0; border-top: 1px solid var(--line); }
.song-nav a { text-decoration: none; font-size: 13px; color: var(--brown); font-family: var(--serif); font-size: 17px; }
.song-nav .lbl { display:block; font-family: var(--sans); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-mut); margin-bottom: 2px; }

/* ============================================================
   HOSTS PAGE
   ============================================================ */
.host-hero { background: var(--ink); color: var(--hdr-2); }
.host-hero-grid { display:grid; grid-template-columns: 1fr .8fr; min-height: 380px; }
.host-hero-copy { padding: 60px var(--gutter); display:flex; flex-direction:column; justify-content:center; }
.host-hero-copy h1 { font-family: var(--serif); font-size: 56px; font-weight:500; color: var(--hdr-1); line-height:1; letter-spacing:1px; }
.host-hero-copy .sub { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--tan); margin-top: 8px; }
.host-hero-copy p { color: var(--hdr-3); font-size: 15.5px; margin-top: 18px; max-width: 480px; }
.host-hero-media { position: relative; }
.host-hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.host-hero-media::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg,var(--ink),rgba(28,27,25,0) 60%); }

.numbered { list-style: none; counter-reset: n; }
.numbered > li { counter-increment: n; position: relative; padding: 0 0 24px 60px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.numbered > li:last-child { border-bottom: 0; margin-bottom: 0; }
.numbered > li::before { content: counter(n,decimal-leading-zero); position: absolute; left: 0; top: -4px;
  font-family: var(--serif); font-size: 30px; color: var(--tan); }
.numbered h4 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.numbered p { font-size: 14.5px; color: var(--text); line-height: 1.55; }

.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tile { border: 1px solid var(--line); border-radius: 3px; padding: 24px; background: #fff; }
.tile.warm { background: var(--paper-2); }
.tile h4 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.tile p { font-size: 14px; color: var(--text); line-height: 1.55; }
.tile ul { list-style: none; margin-top: 8px; }
.tile li { font-size: 14px; color: var(--text); line-height: 1.5; padding-left: 16px; position: relative; margin-bottom: 7px; }
.tile li::before { content:''; position:absolute; left:0; top:9px; width:7px; height:1px; background: var(--tan); }

.timeline { list-style: none; }
.timeline li { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.timeline li:last-child { border-bottom: 0; }
.timeline .when { font-family: var(--serif); font-size: 19px; color: var(--brown); font-weight: 500; }
.timeline .what { font-size: 14px; color: var(--text); line-height: 1.5; }

.callout { background: var(--ink); color: var(--hdr-2); border-radius: 4px; padding: 34px 38px; }
.callout h3 { font-family: var(--serif); font-size: 26px; color: var(--hdr-1); margin-bottom: 10px; }
.callout p { color: var(--hdr-3); font-size: 15px; max-width: 620px; }
.callout .btn { margin-top: 18px; }

.rule-quote { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ink);
  line-height: 1.4; padding-left: 20px; border-left: 3px solid var(--sage); }

/* ============================================================
   BRAND MARK
   ============================================================ */
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 7px; flex: none; }
.brand-mark rect { fill: transparent; }
.brand-mark circle { stroke: var(--sage); }
.brand-mark text { fill: var(--hdr-1); }

/* ============================================================
   KICKER (line-eyebrow-line)
   ============================================================ */
.kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.kicker span { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--tan); white-space: nowrap; }
.kicker::before, .kicker::after { content: ''; height: 1px; background: var(--ink-2); flex: 1; }
.kicker.on-light span { color: var(--sage); }
.kicker.on-light::before, .kicker.on-light::after { background: var(--line); }
.kicker.start::before { display: none; }

/* ============================================================
   EDITORIAL QUOTE BAND
   ============================================================ */
.quote-band { background: var(--paper); padding: 72px 0; border-bottom: 1px solid var(--line); }
.quote-band .q { font-family: var(--serif); font-size: 34px; line-height: 1.3; color: var(--ink);
  font-weight: 500; max-width: 760px; }
.quote-band .q .accent { color: var(--brown); font-style: italic; }
.quote-band .attr { margin-top: 22px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mut); }

/* ============================================================
   RUN OF SHOW ("a night, roughly")
   ============================================================ */
.runsheet { list-style: none; position: relative; margin-top: 8px; }
.runsheet::before { content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.runsheet li { position: relative; padding: 0 0 22px 40px; }
.runsheet li:last-child { padding-bottom: 0; }
.runsheet li::before { content: ''; position: absolute; left: 3px; top: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--paper); border: 1.5px solid var(--sage); }
.runsheet .rt { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.runsheet .rd { font-size: 14px; color: var(--text-mut); line-height: 1.5; margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 18px; font-size: 24px;
  color: var(--tan); font-family: var(--sans); font-weight: 300; transition: .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .fa { padding: 0 40px 22px 0; font-size: 15px; color: var(--text); line-height: 1.6; max-width: 720px; }
.faq .fa a { color: var(--brown); border-bottom: 1px solid var(--line); text-decoration: none; }

/* ============================================================
   SONG PAGE POLISH
   ============================================================ */
.lyrics.dropcap .verse:first-child::first-letter,
.lyrics.dropcap .chorus:first-child::first-letter {
  font-size: 62px; line-height: .8; float: left; margin: 6px 12px 0 0; color: var(--brown); font-weight: 600;
}
.share-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-row a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--text-mut); text-decoration: none; font-size: 14px; transition: .2s; }
.share-row a:hover { border-color: var(--sage); color: var(--sage); background: #fff; }
.copy-link { cursor: pointer; }
.panel.tint { background: var(--ink); border-color: var(--ink); }
.panel.tint h3 { color: var(--tan); }
.panel.tint .notes-ph { color: var(--hdr-3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --gutter: 34px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; }
  .hero-media img { position: static; }
  .hero-media::after { display:none; }
  .title-main { font-size: 62px; }
  .how-flow { grid-template-columns: 1fr; gap: 22px; }
  .how-arrow { display: none; }
  .how-desc { max-width: none; }
  .venue-grid { grid-template-columns: 1fr; gap: 26px; }
  .song-body { grid-template-columns: 1fr; gap: 34px; }
  .host-hero-grid { grid-template-columns: 1fr; }
  .host-hero-media { min-height: 240px; }
  .host-hero-media img { position: static; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 56px 0 auto 0; background: var(--ink);
    flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid #2a2825;
    transform: translateY(-140%); transition: .28s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px var(--gutter); width: 100%; border-bottom: 1px solid #2a2825; }
  .nav-cta { margin: 10px var(--gutter); text-align: center; }
  .nav-toggle { display: block; }
  .event-inner { grid-template-columns: 1fr 1fr; }
  .event-inner .event-item:first-child, .event-inner .event-item:last-child { padding-left: 26px; padding-right: 26px; }
  .event-item:nth-child(2)::after { display: none; }
  .season-list li { grid-template-columns: 96px 1fr; row-gap: 10px; }
  .season-list .season-tag { grid-column: 2; justify-self: start; }
  .cols { grid-template-columns: 1fr; }
  .col { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .col::after { display: none; }
  .col:last-child { border-bottom: 0; }
  .song-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .title-main { font-size: 52px; letter-spacing: 3px; }
  .title-sub { font-size: 30px; }
  .section-title { font-size: 28px; }
  .host-hero-copy h1 { font-size: 42px; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .footer .wrap { flex-direction: column; gap: 26px; }
}
@media (max-width: 760px) {
  .quote-band { padding: 48px 0; }
  .quote-band .q { font-size: 26px; }
}
@media (max-width: 460px) {
  :root { --gutter: 22px; }
  .event-inner { grid-template-columns: 1fr; }
  .event-item::after { display: none !important; }
  .title-main { font-size: 44px; }
  .lyrics { font-size: 18px; }
  .song-hero h1 { font-size: 40px; }
  .quote-band .q { font-size: 23px; }
  .faq summary { font-size: 18px; }
}

/* ============================================================
   LOGO WIRING
   ============================================================ */
.nav-logo { display: flex; align-items: center; opacity: 0; transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease; pointer-events: none; }
.nav-logo.show { opacity: 1; transform: none; pointer-events: auto; }
.nav-logo img { height: 38px; display: block; }
@media (max-width: 560px){ .nav-logo img { height: 32px; } }
.host-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.host-hero-graphic { flex: none; width: 220px; }
.host-hero-graphic img { width: 100%; height: auto; display: block; }
@media (max-width: 680px){ .host-hero-inner { display: block; } .host-hero-graphic { display: none; } }
.hero-logo { margin-bottom: 20px; }
.hero-logo img { width: min(440px, 82%); height: auto; display: block; }
@media (max-width: 560px){ .hero-logo img { width: 84%; } }

/* ============================================================
   MIXED-MEDIA MARQUEE
   ============================================================ */
.marquee { overflow: hidden; background: var(--ink); position: relative; }
.marquee-track { display: flex; gap: 4px; width: max-content; animation: marq 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .cell { position: relative; width: 300px; height: 300px; flex: none; overflow: hidden; background: #0f0e0d; }
.marquee .cell img, .marquee .cell video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.12); }
.marquee .cell.ph { display: flex; align-items: center; justify-content: center; border: 1px dashed #3a3833; }
.marquee .cell.ph span { color: #6b645b; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; padding: 0 16px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px){ .marquee .cell { width: 210px; height: 210px; } }
@media (prefers-reduced-motion: reduce){ .marquee-track { animation: none; } }

/* ============================================================
   FPO / ASSET PLACEHOLDERS
   ============================================================ */
.fpo { position: relative; }
.fpo::after { content: 'FPO'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 64px; letter-spacing: .1em; color: rgba(255,255,255,.85);
  background: rgba(28,27,25,.42); }
.fpo .fpo-note { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: center;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: rgba(28,27,25,.72); padding: 8px; }
.logo-slot { display: inline-flex; align-items: center; justify-content: center; min-width: 150px; height: 46px;
  border: 1px dashed var(--line); border-radius: 3px; color: var(--text-mut); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; }
