  *, *::before, *::after { box-sizing: border-box; }
  body {
    margin: 0;
    background: #faf8f3;
    font-family: 'Inter', sans-serif;
    color: #16171a;
  }
  a { color: #1bb0ce; }
  a:hover { color: #14879e; }
  .disp { font-family: 'Space Grotesk', sans-serif; }

  .site-wrapper {
    background: #faf8f3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  /* keeps the footer pinned to the bottom so short pages don't leave a
     big empty gap above it */
  .site-footer {
    margin-top: auto;
  }

  /* Full-bleed chrome (utility bar, nav, hero mosaic, footer) spans the
     full viewport. Everything else shares this centered reading column
     so text and grids don't stretch edge-to-edge on wide desktop screens. */
  .about-section, .mission-section,
  .catalogue-section, .contact-section {
    width: 100%;            /* fill the column (flex items shrink otherwise) */
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* UTILITY BAR */
  .utility-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
    background: #0d0d0d;
  }
  .utility-bar .company-name {
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
  }
  .utility-bar .social-links {
    display: flex;
    gap: 14px;
  }
  .utility-bar .social-links a {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    opacity: .85;
    display: inline-flex;
    align-items: center;
  }
  .utility-bar .social-links a:hover { opacity: 1; }
  .utility-bar .social-links a svg { width: 15px; height: 15px; display: block; }
  .footer-social a svg { width: 15px; height: 15px; display: block; }
  .contact-social a svg { width: 16px; height: 16px; display: block; }

  /* NAV */
  .main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: #faf8f3;
    border-bottom: 1px solid rgba(22,23,26,.1);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .nav-brand img {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
  }
  .nav-brand span {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 52px;   /* sit just after the logo */
  }
  .main-nav .nav-cta {
    margin-left: auto;   /* push the CTA to the far right */
  }
  .nav-links a {
    cursor: pointer;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    color: rgba(22,23,26,.6);
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
  }
  .nav-links a:hover {
    color: #16171a;
  }
  .nav-links a.active {
    border-bottom-color: #296e53;
    color: #16171a;
    font-weight: 700;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #296e53;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
  }
  .nav-cta:hover {
    background: #1a4d3a;
    color: #fff;
  }
  .nav-cta svg { flex-shrink: 0; }

  /* HERO GRID */
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 4px;
    padding: 4px 40px 0;
  }
  .hero-cell {
    position: relative;
    overflow: hidden;
  }
  .hero-cell.large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .hero-cell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease, transform 6s ease;
    transform: scale(1);
  }
  .hero-cell img.active {
    opacity: 1;
    transform: scale(1.04);
  }

  /* HOME HERO — headline + interactive record wall */
  .home-hero {
    position: relative;
    background: #0d0d0d;
    color: #fff;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 560px;
    padding: 72px 40px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
  }
  .hero-overlay { position: relative; z-index: 2; }
  .hero-title {
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 22px;
  }
  .hero-title span { display: block; }
  .hero-lede {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.62);
    margin: 0 0 30px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-btn, .hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s, color .2s;
  }
  .hero-btn { background: #296e53; color: #fff; }
  .hero-btn:hover { background: #2f855f; color: #fff; transform: translateY(-1px); }
  .hero-btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; }
  .hero-btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); color: #fff; }
  .hero-hint {
    margin: 26px 0 0;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    transition: color .3s;
  }
  .hero-hint.is-playing { color: #4bc39a; }

  /* the record wall */
  .hero-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .hero-tile {
    position: relative;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 1;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s;
  }
  .hero-tile-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.42);
    z-index: 2;
    opacity: 0;                 /* revealed by the load sequence */
  }
  .hero-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(.7);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(41,110,83,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .2s, transform .2s;
  }
  .hero-play svg { width: 16px; height: 16px; margin-left: 1px; }
  /* the vinyl that slides out from behind the sleeve and spins */
  .hero-vinyl {
    position: absolute;
    top: 8%; right: 6%;
    width: 84%; height: 84%;
    border-radius: 50%;
    background:
      radial-gradient(circle at center, #4bc39a 0 7%, #0d0d0d 7% 13%, rgba(0,0,0,0) 13%),
      repeating-radial-gradient(circle at center, #141414 0 3px, #242424 3px 6px);
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    z-index: 1;
    opacity: 0;
    transform: translateX(0) scale(.9);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s;
  }
  .hero-wall.has-hover .hero-tile:not(:hover):not(.is-playing) { opacity: .42; }
  .hero-tile:hover, .hero-tile.is-playing { transform: translateY(-6px) scale(1.04); z-index: 5; }
  .hero-tile:hover .hero-play, .hero-tile.is-playing .hero-play {
    opacity: 1; transform: translate(-50%,-50%) scale(1);
  }
  .hero-tile:hover .hero-vinyl, .hero-tile.is-playing .hero-vinyl {
    opacity: 1; transform: translateX(34%) scale(1);
  }
  .hero-tile.is-playing .hero-vinyl { animation: hero-spin 2.4s linear infinite; }
  @keyframes hero-spin {
    from { transform: translateX(34%) rotate(0); }
    to   { transform: translateX(34%) rotate(360deg); }
  }
  .hero-tile-cap {
    position: absolute;
    left: 0; right: 0; bottom: 10px;
    padding: 0 10px;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    color: #fff;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    z-index: 3;
    text-shadow: 0 1px 8px rgba(0,0,0,.95);
  }
  .hero-tile-cap b { display: block; font-size: 12px; }
  .hero-tile:hover .hero-tile-cap, .hero-tile.is-playing .hero-tile-cap { opacity: 1; }

  /* LOAD SEQUENCE — hero elements rise/fade in on first paint */
  .hero-title span, .hero-lede, .hero-actions, .hero-hint { opacity: 0; }
  body.loaded .hero-title span { animation: hero-rise .7s cubic-bezier(.2,.7,.2,1) both; }
  body.loaded .hero-title span:nth-child(1) { animation-delay: .08s; }
  body.loaded .hero-title span:nth-child(2) { animation-delay: .2s; }
  body.loaded .hero-lede { animation: hero-rise .7s cubic-bezier(.2,.7,.2,1) .42s both; }
  body.loaded .hero-actions { animation: hero-rise .7s cubic-bezier(.2,.7,.2,1) .54s both; }
  body.loaded .hero-hint { animation: hero-rise .7s ease .95s both; }
  body.loaded .hero-tile-inner {
    animation: hero-pop .6s cubic-bezier(.2,.7,.2,1) both;
    animation-delay: calc(var(--i) * 70ms + .35s);
  }
  @keyframes hero-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  @keyframes hero-pop  { from { opacity: 0; transform: translateY(22px) scale(.94); } to { opacity: 1; transform: none; } }

  /* SCROLL REVEALS */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  }
  [data-reveal].in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    .hero-title span, .hero-lede, .hero-actions, .hero-hint,
    .hero-tile-inner, [data-reveal] {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
    .hero-tile.is-playing .hero-vinyl { animation: none !important; }
  }

  /* ABOUT */
  .about-section {
    padding: 76px 40px 12px;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
  }
  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #296e53;
    margin-bottom: 14px;
  }
  .about-head h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.01em;
    margin: 0;
  }
  .about-head {
    position: sticky;
    top: 96px;
  }
  .about-body {
    max-width: 620px;
  }
  .about-lead {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 500;
    color: #16171a;
    margin: 0 0 24px;
    padding-left: 20px;
    border-left: 2px solid #296e53;
  }
  .about-body p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(22,23,26,.62);
    margin: 0 0 16px;
  }
  .about-body p:last-child { margin-bottom: 0; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(22,23,26,.12);
  }
  .stat-num {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
    color: #16171a;
  }
  .stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #296e53;
    margin-top: 12px;
  }

  /* MISSION */
  .mission-section {
    padding: 44px 40px 20px;
  }
  .mission-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #296e53;
    margin-bottom: 10px;
  }
  .mission-section p {
    font-size: 24px;
    line-height: 1.45;
    font-weight: 500;
    margin: 0;
    max-width: 680px;
  }

  /* VALUES GRID */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: calc(100% - 80px);
    max-width: 1360px;
    margin: 48px auto;
    background: rgba(22,23,26,.1);
    border: 1px solid rgba(22,23,26,.1);
  }
  .value-card {
    background: #faf8f3;
    padding: 28px 26px;
  }
  .value-card h3 {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 8px;
  }
  .value-card p {
    font-size: 13.5px;
    color: rgba(22,23,26,.65);
    line-height: 1.6;
    margin: 0;
  }

  /* YOUTUBE SECTION — dark band (mirrors the hero / jukebox) */
  .youtube-section {
    background: #0d0d0d;
    color: #fff;
    padding: 72px 40px;
    margin-top: 40px;
  }
  .youtube-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
  .youtube-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
  }
  .yt-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #4bc39a;
    margin-bottom: 12px;
  }
  .youtube-header h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0;
  }
  .yt-more {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #4bc39a;
    white-space: nowrap;
    transition: color .2s;
  }
  .yt-more:hover { color: #fff; }
  .youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .youtube-thumb {
    text-decoration: none;
    display: block;
    color: #fff;
  }
  .yt-thumb-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s ease;
  }
  .youtube-thumb:hover .yt-thumb-img {
    transform: translateY(-4px);
  }
  .youtube-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #1a1a1a;
    display: block;
  }
  .youtube-thumb .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(41,110,83,.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
  }
  .youtube-thumb:hover .play-overlay { opacity: 1; }
  .yt-caption {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.72);
  }
  .youtube-thumb:hover .yt-caption { color: #fff; }

  /* RECORD CRATE (jukebox selector) */
  .crate-band {
    background: #0d0d0d;
    color: #fff;
    padding: 44px 40px 8px;
    overflow: hidden;
  }
  .crate-intro {
    max-width: 1360px;
    margin: 0 auto 8px;
  }
  .crate-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4bc39a;
    margin-bottom: 10px;
  }
  .crate-title {
    font-size: 34px;
    margin: 0 0 8px;
    letter-spacing: -.01em;
  }
  .crate-sub {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    margin: 0;
  }
  .crate {
    position: relative;
    height: 340px;
    max-width: 1360px;
    margin: 0 auto;
    touch-action: pan-y;
  }
  .crate-stage {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 44px;
    height: 240px;
  }
  .crate-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 168px;
    height: 168px;
    margin-left: -84px;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    transform-origin: center bottom;
    will-change: transform;
    cursor: pointer;
    outline: 1px solid rgba(255,255,255,.06);
  }
  .crate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
  }
  .crate-card .crate-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.8);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13,13,13,.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
  }
  .crate-card.is-active .crate-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .crate-nowplaying {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-size: 14px;
    height: 38px;
  }
  .crate-nowplaying .np-album {
    font-weight: 700;
    color: #fff;
  }
  .crate-nowplaying .np-artist {
    color: rgba(255,255,255,.55);
    margin-left: 8px;
  }

  /* CATALOGUE */
  .catalogue-section {
    padding: 44px 40px 60px;
  }
  .catalogue-section h2 {
    font-size: 32px;
    margin: 0 0 14px;
  }
  .catalogue-section > p {
    font-size: 14px;
    color: rgba(22,23,26,.65);
    margin: 0 0 10px;
    max-width: 640px;
    line-height: 1.7;
  }
  .catalogue-section > p:last-of-type {
    margin-bottom: 28px;
  }
  .cat-search-row {
    margin-bottom: 18px;
  }
  .cat-search-box {
    position: relative;
    max-width: 420px;
    display: flex;
    align-items: center;
  }
  .cat-search-box svg {
    position: absolute;
    left: 14px;
    color: rgba(22,23,26,.4);
    pointer-events: none;
  }
  .cat-search-box input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 38px 11px 38px;
    border-radius: 999px;
    border: 1px solid rgba(22,23,26,.18);
    background: #fff;
    color: #16171a;
    outline: none;
    transition: border-color .15s;
  }
  .cat-search-box input:focus {
    border-color: #296e53;
  }
  .cat-search-clear {
    position: absolute;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(22,23,26,.08);
    color: #16171a;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cat-search-clear:hover {
    background: rgba(22,23,26,.16);
  }
  .filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .filter-chip {
    border: none;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: rgba(22,23,26,.06);
    color: #16171a;
    transition: all .2s;
  }
  .filter-chip.active {
    background: #296e53;
    color: #fff;
  }
  .cat-result-row {
    font-size: 12.5px;
    color: rgba(22,23,26,.5);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
  }
  .catalogue-table {
    border: 1px solid rgba(22,23,26,.15);
    border-radius: 6px;
    overflow: hidden;
  }
  .catalogue-header {
    display: grid;
    grid-template-columns: 48px 1.7fr 1.7fr 2.4fr 1.2fr 52px;
    background: #0d0d0d;
    padding: 12px 20px;
  }
  .catalogue-header div {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .catalogue-row {
    display: grid;
    grid-template-columns: 48px 1.7fr 1.7fr 2.4fr 1.2fr 52px;
    padding: 12px 20px;
    border-top: 1px solid rgba(22,23,26,.1);
    transition: background .15s;
    align-items: center;
  }
  .cat-cover, .cat-cover-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .cat-cover {
    object-fit: cover;
    display: block;
  }
  .cat-cover-placeholder {
    background: rgba(41,110,83,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(41,110,83,.35);
  }
  .catalogue-row:hover {
    background: rgba(22,23,26,.02);
  }
  .cat-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(41,110,83,.3);
    background: #fff;
    color: #296e53;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0;
    transition: background .15s, color .15s, border-color .15s;
  }
  .cat-play-btn:hover {
    background: #296e53;
    color: #fff;
    border-color: #296e53;
  }
  .cat-play-btn.is-playing {
    background: #296e53;
    color: #fff;
    border-color: #296e53;
  }
  .cat-play-btn .cpb-icon { display: none; }
  .cat-play-btn .cpb-play { display: block; }
  .cat-play-btn.is-playing .cpb-play { display: none; }
  .cat-play-btn.is-playing .cpb-pause { display: block; }
  .cat-play-btn.is-loading .cpb-play,
  .cat-play-btn.is-loading .cpb-pause { display: none; }
  .cat-play-btn.is-loading .cpb-spin {
    display: block;
    animation: cpb-spin 0.7s linear infinite;
  }
  @keyframes cpb-spin { to { transform: rotate(360deg); } }
  .catalogue-row .cat-artist {
    font-size: 13.5px;
    font-weight: 600;
  }
  .catalogue-row .cat-album {
    font-size: 13px;
    color: rgba(22,23,26,.7);
  }
  .catalogue-row .cat-track {
    font-size: 13px;
    color: rgba(22,23,26,.6);
  }
  .catalogue-row .cat-category {
    font-size: 12px;
    color: #296e53;
    font-weight: 600;
  }
  .cat-empty {
    padding: 40px 20px;
    text-align: center;
    font-size: 13.5px;
    color: rgba(22,23,26,.45);
  }
  .cat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .cat-page-btn {
    border: 1px solid rgba(22,23,26,.15);
    background: #fff;
    color: #16171a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s;
    font-variant-numeric: tabular-nums;
  }
  .cat-page-btn:hover:not(:disabled) {
    border-color: #296e53;
    color: #296e53;
  }
  .cat-page-btn.active {
    background: #296e53;
    border-color: #296e53;
    color: #fff;
  }
  .cat-page-btn:disabled {
    opacity: .35;
    cursor: default;
  }
  .cat-page-ellipsis {
    padding: 0 4px;
    color: rgba(22,23,26,.4);
    font-size: 13px;
  }
  .catalogue-footnote {
    font-size: 12px;
    color: rgba(22,23,26,.45);
    margin-top: 14px;
  }

  /* CONTACT */
  .contact-section {
    padding: 64px 40px 72px;
    flex: 1;                 /* fill the height between nav and footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-section h2 {
    font-size: 40px;
    margin: 0 0 36px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #296e53;
    margin-bottom: 8px;
  }
  .contact-info p {
    font-size: 14px;
    color: rgba(22,23,26,.7);
    line-height: 1.7;
    margin: 0 0 24px;
  }
  .contact-social {
    display: flex;
    gap: 10px;
  }
  .contact-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(22,23,26,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #16171a;
    transition: all .2s;
  }
  .contact-social a:hover {
    background: #296e53;
    color: #fff;
    border-color: #296e53;
  }
  /* on-brand dark panel in place of an empty photo box */
  .contact-panel {
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    background: #0d0d0d;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }
  .contact-panel img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #faf8f3;
    margin-bottom: 22px;
  }
  .contact-panel .cp-title {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin: 0 0 10px;
    max-width: 320px;
  }
  .contact-panel .cp-sub {
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #4bc39a;
    margin: 0;
  }

  /* FOOTER */
  .site-footer {
    border-top: 1px solid rgba(22,23,26,.1);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-text {
    font-size: 12.5px;
    color: rgba(22,23,26,.55);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(22,23,26,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
    color: #16171a;
    transition: all .2s;
  }
  .footer-social a:hover {
    background: #296e53;
    color: #fff;
    border-color: #296e53;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .utility-bar, .main-nav, .about-section, .mission-section,
    .youtube-section, .catalogue-section, .contact-section, .site-footer {
      padding-left: 20px;
      padding-right: 20px;
    }
    .hero-grid { padding: 4px 20px 0; }
    .values-grid { width: calc(100% - 40px); }

    .hero-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 120px 120px;
    }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 34px;
      min-height: auto;
      padding: 52px 20px 56px;
    }
    .hero-title { font-size: 36px; }
    .hero-lede { font-size: 15px; }
    .hero-wall { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .about-inner {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .about-head {
      position: static;
    }
    .about-head h2 { font-size: 28px; }
    .about-lead { font-size: 18px; }
    .about-stats {
      grid-template-columns: 1fr 1fr;
      gap: 28px 20px;
    }
    .stat-num { font-size: 34px; }
    .youtube-header h2 { font-size: 26px; }
    .values-grid {
      grid-template-columns: 1fr;
    }
    .youtube-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .catalogue-header, .catalogue-row {
      grid-template-columns: 40px 1fr auto;
      gap: 4px 10px;
    }
    .catalogue-header .cat-cover-header,
    .catalogue-header .cat-play-header { display: none; }
    .catalogue-row .cat-cover, .catalogue-row .cat-cover-placeholder {
      grid-row: 1;
      grid-column: 1;
      width: 36px;
      height: 36px;
    }
    .catalogue-row .cat-artist { grid-row: 1; grid-column: 2; align-self: center; }
    .catalogue-row .cat-play-btn { grid-row: 1; grid-column: 3; align-self: center; }
    .catalogue-row .cat-album,
    .catalogue-row .cat-track,
    .catalogue-row .cat-category { grid-column: 1 / -1; }
    .nav-links { gap: 18px; margin-left: 0; margin-right: 0; }
    .main-nav { flex-wrap: wrap; gap: 12px; }
  }
