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

  html {
    scroll-behavior: smooth;
    /* Sticky nav + small gap so section labels sit below the bar */
    scroll-padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
  }

  :root {
    --amber: #C8831A;
    --amber-light: #E8A84A;
    --amber-pale: #F5DBA8;
    --amber-deep: #7A4A0A;
    --tort: #8B2A1A;
    --tort-mid: #A03828;
    --cream: #F2EAD3;
    --dark: #1A1208;
    --dark-mid: #2C1E0A;
    --chrome: #C8C8B8;
    --wood: #4A2E0A;
    --ink: #0F0A04;
    --section-max: 56rem;
  }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(200,131,26,0.25);
    position: sticky; top: 0; z-index: 100;
    background: rgba(26,18,8,0.96);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--amber-light);
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--cream); font-weight: 400; font-size: 0.9em; }
  nav ul { display: flex; gap: 2.5rem; list-style: none; }
  nav a {
    color: var(--chrome);
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--amber-light); }

  /* HERO — big bass behind; copy + CTAs centred in front */
  .hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Bottom band: caption (behind bass) then CTAs in front */
    --hero-cta-block: 5.75rem;
    --hero-caption-block: 3.75rem;
    --hero-caption-gap: 0.85rem;
    --hero-foot-pad: calc(
      var(--hero-cta-block) + var(--hero-caption-block) + var(--hero-caption-gap) + 1.25rem
    );
  }
  .hero-bass-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    padding: 4.25rem 0 var(--hero-foot-pad);
    box-sizing: border-box;
  }
  .hero-bass-stage .bass-wrap {
    position: relative;
    z-index: 1;
    max-width: min(122vw, 1320px);
    width: 100%;
  }
  .hero-bass-stage .bass-figure-main {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: rotate(-2.5deg) scale(1.1);
    transform-origin: 50% 55%;
    transition: transform 0.45s ease;
  }
  .hero-bass-stage .bass-wrap:hover .bass-figure-main {
    transform: rotate(-1.5deg) scale(1.12);
  }
  .hero-bass-stage .bass-figure-main img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 32px 90px rgba(200,131,26,0.32)) drop-shadow(0 4px 28px rgba(0,0,0,0.88));
  }
  .hero-bass-stage .bass-figure {
    margin: 0;
    position: relative;
    width: 100%;
  }
  /* Open-string hits — per-string bridge anchor, skew, height; vertical gaps avoid overlap when skewed */
  .bass-string-map {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  .bass-string-hit {
    position: absolute;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    /* 👍 emoji in SVG (OS may scale cursor ~32–64px); hotspot near center of glyph */
    cursor: url("brand_assets/bass-string-thumb-cursor.svg") 32 36, pointer;
    pointer-events: auto;
    border-radius: 2px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform-origin: 0 50%;
  }
  .bass-string-hit:focus { outline: none; }
  .bass-string-hit:focus-visible {
    outline: 2px solid var(--amber-light);
    outline-offset: 2px;
  }
  .bass-string-hit.bass-str-e {
    top: 41.05%;
    left: 5.4%;
    width: 73%;
    height: 1.65%;
    transform: skewY(-2.12deg);
  }
  .bass-string-hit.bass-str-a {
    top: 46.95%;
    left: 5.65%;
    width: 72.5%;
    height: 1.42%;
    transform: skewY(-2.52deg);
  }
  .bass-string-hit.bass-str-d {
    top: 52.38%;
    left: 5.92%;
    width: 72%;
    height: 1.8%;
    transform: skewY(-2.82deg);
  }
  .bass-string-hit.bass-str-g {
    top: 57.82%;
    left: 6.18%;
    width: 71.5%;
    height: 2.18%;
    transform: skewY(-3.12deg);
  }
  .hero-bass-stage .bass-wrap:hover .bass-string-hit.bass-str-e {
    transform: skewY(-1.78deg);
  }
  .hero-bass-stage .bass-wrap:hover .bass-string-hit.bass-str-a {
    transform: skewY(-2.18deg);
  }
  .hero-bass-stage .bass-wrap:hover .bass-string-hit.bass-str-d {
    transform: skewY(-2.42deg);
  }
  .hero-bass-stage .bass-wrap:hover .bass-string-hit.bass-str-g {
    transform: skewY(-2.78deg);
  }
  .hero-bass-stage .bass-caption {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: calc(
      var(--hero-cta-block) + var(--hero-caption-gap) + env(safe-area-inset-bottom, 0px)
    );
    transform: translateX(-50%) translateY(-22%);
    max-width: min(92vw, 30rem);
    z-index: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
  }
  .hero-bass-stage .bass-caption-kicker {
    font-family: 'Courier Prime', monospace;
    font-size: clamp(0.8rem, 0.52rem + 2.2vw, 0.95rem);
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(26, 18, 8, 0.78);
    border: 1px solid rgba(200, 131, 26, 0.55);
    padding: 0.5em 1.15em 0.42em;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  }
  .hero-bass-stage .bass-caption-detail {
    font-family: 'Courier Prime', monospace;
    font-size: clamp(0.55rem, 1.25vw, 0.65rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-light);
    line-height: 1.45;
    text-shadow:
      0 0 12px rgba(0, 0, 0, 0.95),
      0 2px 8px rgba(0, 0, 0, 0.85);
  }
  /* Hero music motifs (same idea as hub bass page canvas — staff, clef, drifting notes) */
  .warmth-motif-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(26, 18, 8, 0.78) 0%, rgba(26, 18, 8, 0.22) 38%, transparent 52%, transparent 62%, rgba(26, 18, 8, 0.45) 78%, rgba(26, 18, 8, 0.88) 100%),
      radial-gradient(ellipse 85% 75% at 50% 42%, rgba(26, 18, 8, 0.2) 0%, transparent 55%);
  }
  .hero-stack {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
    padding: clamp(5rem, 12vh, 6.75rem) 1.35rem 0;
    box-sizing: border-box;
    pointer-events: none;
    min-height: 0;
  }
  .hero-stack .btn { pointer-events: auto; }
  .hero-head {
    position: relative;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
    pointer-events: none;
    flex: 0 0 auto;
  }
  .hero-head a { pointer-events: auto; }
  .hero-foot {
    width: 100%;
    max-width: 34rem;
    margin-top: auto;
    margin-bottom: 0;
    padding:
      calc(var(--hero-caption-block) + var(--hero-caption-gap))
      1.15rem
      calc(0.65rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
    pointer-events: none;
    flex: 0 0 auto;
    position: relative;
    z-index: 4;
  }
  .hero-foot .btn { pointer-events: auto; }
  .hero-cta-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.35rem;
    max-width: 100%;
    pointer-events: none;
  }
  .hero-cta-cluster .hero-actions,
  .hero-cta-cluster .hero-scroll-more {
    pointer-events: auto;
  }
  .hero-actions {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    pointer-events: none;
  }
  .hero-actions .btn {
    pointer-events: auto;
    padding: 0.58rem 1.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero-scroll-more {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-family: 'Courier Prime', monospace;
    font-size: clamp(0.62rem, 1.15vw, 0.72rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chrome);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding: 0.25rem 0.15rem;
    margin: 0;
    transition: color 0.2s, border-color 0.2s;
  }
  .hero-scroll-more:hover {
    color: var(--amber-light);
    border-bottom-color: rgba(200, 131, 26, 0.45);
  }
  .hero-scroll-more-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
  }
  .hero-scroll-below-cue {
    font-size: 0.58em;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(200, 200, 184, 0.78);
    margin-top: 0.15em;
    line-height: 1.25;
  }
  .hero-scroll-more:hover .hero-scroll-below-cue {
    color: rgba(232, 168, 74, 0.88);
  }
  @keyframes hero-scroll-arrow-bounce {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(5px); }
  }
  .hero-scroll-more-icon {
    display: flex;
    color: var(--amber-light);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(200, 131, 26, 0.35));
    animation: hero-scroll-arrow-bounce 1.35s ease-in-out infinite;
  }
  .hero-scroll-more-icon svg {
    display: block;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-scroll-more-icon {
      animation: none;
    }
  }
  @media (max-height: 760px) {
    .hero {
      --hero-cta-block: 6.25rem;
      --hero-caption-block: 4rem;
      --hero-caption-gap: 0.75rem;
    }
  }
  @media (max-height: 640px) {
    .hero {
      --hero-cta-block: 6.75rem;
      --hero-caption-block: 4.25rem;
      --hero-caption-gap: 0.7rem;
    }
    .hero-bass-stage .bass-figure-main {
      transform: rotate(-2.5deg) scale(1.02);
    }
    .hero-stack {
      padding-top: clamp(4rem, 10vh, 5rem);
    }
  }
  .hero-scroll-more:focus {
    outline: none;
  }
  .hero-scroll-more:focus-visible {
    outline: 2px solid var(--amber-light);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: min(130vw, 1200px);
    height: min(130vw, 1200px);
    background: radial-gradient(ellipse, rgba(200,131,26,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-tag {
    font-family: 'Courier Prime', monospace;
    font-size: clamp(0.62rem, 1.5vw, 0.75rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin: 0.35rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-shadow: 0 0 14px rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.85);
  }
  /* .hero-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--amber); flex-shrink: 0; } */
  .hero-head h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    line-height: 1.06;
    font-weight: 900;
    color: var(--cream);
    margin: 0 0 0.15em;
    text-shadow: 0 0 22px rgba(0,0,0,0.92), 0 3px 14px rgba(0,0,0,0.78);
    text-align: center;
  }
  .hero-head h1 em { color: var(--amber-light); font-style: normal; }
  .btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--amber); color: var(--dark); font-weight: 700; }
  .btn-primary:hover { background: var(--amber-light); }
  .btn-ghost { background: transparent; color: var(--amber-light); border: 1px solid rgba(200,131,26,0.5); }
  .btn-ghost:hover { border-color: var(--amber-light); background: rgba(200,131,26,0.08); }

  .hero-img { display: none; }

  /* DIVIDER */
  .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--section-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    box-sizing: border-box;
  }
  .divider-line { flex: 1; height: 1px; background: rgba(200,131,26,0.2); }
  .divider-icon { width: 8px; height: 8px; background: var(--amber); transform: rotate(45deg); flex-shrink: 0; }

  /* SECTIONS — full-bleed bands; tighter top under dividers so labels sit closer */
  section {
    padding: 2.75rem clamp(1.5rem, 4vw, 3rem) 5rem;
  }
  .section-wrap {
    width: 100%;
    max-width: var(--section-max);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .section-lede {
    color: var(--chrome);
    max-width: 36rem;
    margin-top: 0.5rem;
    line-height: 1.65;
  }
  .section-lede a {
    color: var(--amber-light);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .section-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-label::after { content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--amber); opacity: 0.5; }
  /* Primary actions + “Next section” in one wrap (matches hero CTA cluster idea) */
  .section-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-top: 2rem;
  }
  .section-cta-row .hero-scroll-more {
    margin: 0;
  }
  #gigs .section-cta-row {
    margin-top: 2.25rem;
  }
  .about-text .section-cta-row {
    margin-top: 1.5rem;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.15;
  }
  h2 em { color: var(--amber-light); font-style: italic; }

  /* LESSONS */
  .lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .lesson-card {
    background: var(--dark-mid);
    border: 1px solid rgba(200,131,26,0.2);
    border-top: 3px solid var(--amber);
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .lesson-card:hover { border-color: rgba(200,131,26,0.5); transform: translateY(-3px); border-top-color: var(--amber-light); }
  .lesson-level { font-family: 'Courier Prime', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
  .lesson-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
  .lesson-card p { font-size: 0.95rem; color: var(--chrome); line-height: 1.6; margin-bottom: 1rem; }
  .lesson-price { font-family: 'Courier Prime', monospace; font-size: 1.1rem; color: var(--amber-light); font-weight: 700; }
  .lesson-price span { font-size: 0.75rem; color: var(--chrome); font-weight: 400; }

  /* GIGS */
  .gigs-lede {
    color: var(--chrome);
    max-width: 40rem;
    margin-top: 0.5rem;
    font-size: 0.98rem;
  }
  .gigs-lede a { color: var(--amber-light); text-decoration: underline; text-underline-offset: 3px; }
  .gigs-load-err {
    margin-top: 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--tort-mid);
  }
  .gigs-list { margin-top: 2.5rem; }
  .gig-item {
    display: grid; grid-template-columns: minmax(7.5rem, auto) 1fr auto;
    align-items: center; gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(200,131,26,0.15);
    transition: padding-left 0.2s;
  }
  .gig-item:hover { padding-left: 0.5rem; }
  .gig-date { text-align: center; background: rgba(200,131,26,0.1); border: 1px solid rgba(200,131,26,0.3); padding: 0.5rem 0.45rem; }
  .gig-date-full {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.78rem, 2.4vw, 0.95rem);
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .gig-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); line-height: 1.25; }
  .gig-location { font-family: 'Courier Prime', monospace; font-size: 0.72rem; color: var(--chrome); letter-spacing: 0.1em; margin-top: 0.2rem; }
  .gig-ticket {
    font-family: 'Courier Prime', monospace; font-size: 0.7rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--amber); border: 1px solid rgba(200,131,26,0.4);
    padding: 0.4rem 0.8rem; text-decoration: none; transition: all 0.2s; white-space: nowrap;
  }
  .gig-ticket:hover { background: rgba(200,131,26,0.1); color: var(--amber-light); }

  /* MUSIC */
  .music-section {
    background: var(--dark-mid);
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  .music-section-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    font-family: "Noto Music", "Segoe UI Symbol", "Apple Symbols", serif;
  }
  .music-section-deco .music-deco-note {
    position: absolute;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    color: var(--amber-light);
    opacity: 0.06;
    text-shadow: 0 0 20px rgba(200, 131, 26, 0.25);
    animation: music-deco-drift 22s ease-in-out infinite;
  }
  .music-section-deco .music-deco-note:nth-child(1) { left: 4%; top: 12%; animation-duration: 26s; animation-delay: -2s; }
  .music-section-deco .music-deco-note:nth-child(2) { left: 78%; top: 8%; animation-duration: 19s; animation-delay: -7s; }
  .music-section-deco .music-deco-note:nth-child(3) { right: 6%; bottom: 18%; animation-duration: 24s; animation-delay: -4s; }
  .music-section-deco .music-deco-note:nth-child(4) { left: 12%; bottom: 10%; animation-duration: 21s; animation-delay: -11s; }
  .music-section-deco .music-deco-note:nth-child(5) { left: 48%; top: 22%; font-size: clamp(2.5rem, 6vw, 4.5rem); opacity: 0.045; animation-duration: 28s; animation-delay: -1s; }
  .music-section-deco .music-deco-clef {
    position: absolute;
    right: -2%;
    bottom: -8%;
    font-size: clamp(7rem, 28vw, 16rem);
    line-height: 1;
    font-family: "Noto Music", "Times New Roman", "Apple Symbols", serif;
    color: var(--amber);
    opacity: 0.055;
    animation: music-deco-clef 32s ease-in-out infinite;
    animation-delay: -5s;
  }
  @keyframes music-deco-clef {
    0%, 100% { transform: rotate(-10deg) translate(0, 0); }
    50% { transform: rotate(-5deg) translate(-14px, -10px); }
  }
  @keyframes music-deco-drift {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    33% { transform: translate(12px, -18px) rotate(3deg); }
    66% { transform: translate(-10px, 10px) rotate(-4deg); }
  }
  .music-section .section-wrap { position: relative; z-index: 1; }
  .music-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1.25rem; }
  .track-card { background: var(--dark); border: 1px solid rgba(200,131,26,0.15); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; transition: border-color 0.2s; }
  .track-card:hover { border-color: rgba(200,131,26,0.4); }
  .track-art { height: 100px; background: linear-gradient(135deg, var(--dark-mid) 0%, rgba(138,42,26,0.3) 50%, var(--dark-mid) 100%); border: 1px solid rgba(200,131,26,0.1); display: flex; align-items: center; justify-content: center; }
  .play-btn { width: 36px; height: 36px; border: 1.5px solid var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
  .play-btn:hover { background: rgba(200,131,26,0.2); }
  .play-btn svg { fill: var(--amber); margin-left: 2px; }
  .track-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--cream); }
  .track-meta { font-family: 'Courier Prime', monospace; font-size: 0.65rem; letter-spacing: 0.1em; color: var(--chrome); }

  /* Hub-sourced projects (content/hub.json — same as main hub bio) */
  .hub-projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.75rem;
    margin-top: 1.5rem;
    align-items: stretch;
  }
  .hub-project-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.55rem 0.95rem;
    background: var(--dark);
    border: 1px solid rgba(200, 131, 26, 0.22);
    border-top: 2px solid rgba(200, 131, 26, 0.45);
    transition: border-color 0.2s, transform 0.2s;
  }
  .hub-project-chip:hover {
    border-color: rgba(200, 131, 26, 0.45);
    transform: translateY(-2px);
  }
  .hub-project-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.25;
  }
  .hub-project-dates {
    font-family: 'Courier Prime', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .music-sublabel { margin-top: 2.75rem; }

  /* MUSIC LINKS */
  .music-links-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; align-items: center; }
  .link-pill {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(200,131,26,0.3);
    text-decoration: none; color: var(--cream);
    font-family: 'Courier Prime', monospace; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.2s;
  }
  .link-pill:hover { border-color: var(--amber); color: var(--amber-light); background: rgba(200,131,26,0.06); }
  .link-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

  /* BOYCOTT BADGE */
  .boycott-badge {
    display: inline-flex; align-items: center; gap: 1rem;
    background: var(--dark);
    border: 1.5px solid var(--tort);
    padding: 0.85rem 1.25rem;
    max-width: 340px;
  }
  .boycott-x {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--tort);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .boycott-x svg { display: block; }
  .boycott-text { display: flex; flex-direction: column; gap: 0.15rem; }
  .boycott-top { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tort-mid); }
  .boycott-main { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; font-weight: 700; color: var(--cream); }
  .boycott-sub { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.15em; color: var(--amber); }

  /* ABOUT */
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .about-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 3.2vw, 1.55rem);
    font-style: normal;
    color: var(--cream);
    line-height: 1.45;
    position: relative;
    padding-left: 1.5rem;
  }
  .about-quote::before { content: ''; position: absolute; left: 0; top: 0.2em; width: 3px; height: calc(100% - 0.4em); background: var(--amber); }
  .about-quote-body { font-style: italic; margin: 0; }
  .about-quote-source {
    display: block;
    margin: 1rem 0 0;
    font-family: 'Courier Prime', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    font-style: normal;
  }
  .about-quote-source cite { font-style: normal; }
  .about-text p { color: var(--chrome); margin-bottom: 1rem; font-size: 1rem; }

  /* CONTACT */
  .contact-section { background: var(--dark-mid); border-top: 1px solid rgba(200,131,26,0.2); }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  input, textarea {
    width: 100%; background: var(--dark); border: 1px solid rgba(200,131,26,0.2);
    color: var(--cream); padding: 0.7rem 1rem;
    font-family: 'Crimson Text', serif; font-size: 1rem;
    margin-bottom: 1rem; outline: none; transition: border-color 0.2s; border-radius: 0;
  }
  input:focus, textarea:focus { border-color: var(--amber); }
  textarea { height: 100px; resize: vertical; }
  input::placeholder, textarea::placeholder { color: rgba(200,200,184,0.35); }

  .cform { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
  .ff { display: flex; flex-direction: column; gap: 0.35rem; }
  .ff label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .ff input, .ff select, .ff textarea {
    width: 100%;
    background: var(--dark);
    border: 1px solid rgba(200,131,26,0.2);
    color: var(--cream);
    padding: 0.7rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    margin-bottom: 0;
  }
  .ff textarea { min-height: 120px; resize: vertical; }
  .ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--amber); }
  .ff select option { background: var(--dark); color: var(--cream); }
  .contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
  .form-status { font-family: 'Courier Prime', monospace; font-size: 0.72rem; letter-spacing: 0.06em; margin: 0; }
  .form-status.ok { color: #7dd3a0; }
  .form-status.err { color: #f0a8a8; }

  /* FOOTER */
  footer {
    padding: 2rem clamp(1.5rem, 4vw, 3rem);
    border-top: 1px solid rgba(200,131,26,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier Prime', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(200,200,184,0.4);
  }
  .footer-inner {
    max-width: var(--section-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  footer span { color: var(--amber); }
  .footer-sample-credit {
    max-width: var(--section-max);
    margin: 0.5rem auto 0;
    padding: 0 clamp(1.5rem, 4vw, 3rem) 1.35rem;
    text-align: center;
    font-family: 'Courier Prime', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.45;
    color: rgba(200, 200, 184, 0.38);
  }
  .footer-sample-credit a {
    color: rgba(232, 168, 74, 0.55);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .footer-sample-credit a:hover { color: var(--amber-light); }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .music-section-deco .music-deco-note,
    .music-section-deco .music-deco-clef {
      animation: none !important;
    }
  }

  @media (max-width: 768px) {
    html {
      scroll-padding-top: calc(4.35rem + env(safe-area-inset-top, 0px));
    }
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero { min-height: 100dvh; min-height: 100vh; }
    .hero {
      --hero-cta-block: 6.5rem;
      --hero-caption-block: 4.25rem;
      --hero-caption-gap: 0.8rem;
    }
    .hero-stack {
      padding: 4.75rem 1rem 0;
      max-width: 100%;
    }
    .hero-head h1 { font-size: clamp(1.95rem, 9vw, 2.85rem); }
    .hero-foot {
      padding:
        calc(var(--hero-caption-block) + var(--hero-caption-gap))
        0.75rem
        calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }
    .hero-cta-cluster {
      row-gap: 0.28rem;
      column-gap: 0.45rem;
    }
    .hero-actions .btn {
      padding: 0.52rem 0.95rem;
      font-size: 0.68rem;
    }
    .hero-scroll-more {
      font-size: clamp(0.58rem, 2.65vw, 0.68rem);
      letter-spacing: 0.1em;
    }
    .hero-scroll-below-cue {
      font-size: 0.52em;
      letter-spacing: 0.14em;
    }
    .hero-bass-stage {
      padding: 4rem clamp(0.65rem, 3.5vw, 1.25rem) var(--hero-foot-pad);
      align-items: center;
      overflow: hidden;
    }
    .hero-bass-stage .bass-wrap {
      max-width: min(92vw, 560px);
      width: 100%;
    }
    .hero-bass-stage .bass-figure-main {
      transform: rotate(-2deg) scale(0.97);
      transform-origin: 50% 52%;
    }
    .hero-bass-stage .bass-wrap:hover .bass-figure-main {
      transform: rotate(-1.25deg) scale(0.99);
    }
    .hero-bass-stage .bass-caption {
      max-width: min(92vw, 30rem);
      bottom: calc(
        var(--hero-cta-block) + var(--hero-caption-gap) + env(safe-area-inset-bottom, 0px)
      );
      transform: translateX(-50%) translateY(-14%);
    }
    .hero-bass-stage .bass-caption-kicker {
      font-size: clamp(0.72rem, 0.48rem + 2.05vw, 0.84rem);
      letter-spacing: 0.11em;
      line-height: 1.36;
      padding: 0.4em 0.95em 0.36em;
    }
    section {
      padding: 2rem 1.5rem 3rem;
    }
    .divider { padding: 0 1.5rem; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    footer .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
    footer { padding: 1.5rem clamp(1.5rem, 4vw, 3rem); }
    .gig-item { grid-template-columns: 4.25rem 1fr auto; gap: 1rem; }
  }
