
  /* ============================================================
     STAIRWAY MUSIC ACADEMY — Homepage v2
     Full-bleed hero · scroll-aware nav · marquee credit reel
     ============================================================ */

  /* ---------- Brand font ---------- */
  @font-face {
    font-family: "Boldstrom";
    src: url("../fonts/Boldstrom-400.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  /* ---------- Body font ---------- */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

  /* ---------- Tokens ---------- */
  :root {
    --red:        #E30B17;
    --red-deep:   #B0080F;
    --black:      #111111;
    --ink:        #1A1A1A;
    --charcoal:   #3A3A3A;
    --muted:      #6B6B6B;
    --hairline:   #E5E0D6;
    --cream:      #FAF7F1;
    --ivory:      #F5EFE0;
    --white:      #FFFFFF;

    --display:   "Boldstrom", "Impact", "Arial Black", sans-serif;
    --body:      "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

    --max:        1280px;
    --pad:        clamp(20px, 4vw, 56px);
    --radius:     2px;
    --shadow-md:  0 8px 24px rgba(0,0,0,0.08);
  }

  /* ---------- Reset ---------- */
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
  .eyebrow {
    font-family: var(--body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
  }
  .lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--charcoal);
    max-width: 60ch;
  }

  h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; }
  h1 { font-size: clamp(40px, 6vw, 88px); line-height: 0.92; letter-spacing: -1px; text-transform: uppercase; }
  h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.5px; text-transform: uppercase; }
  h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; text-transform: uppercase; }
  h4 { font-family: var(--body); font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--charcoal); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: all 0.18s ease;
    white-space: nowrap;
  }
  .btn .arrow { display: inline-block; transition: transform 0.18s ease; }
  .btn:hover .arrow { transform: translateX(4px); }
  .btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
  .btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
  .btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-outline-dark:hover { background: var(--ink); color: var(--cream); }
  .btn-outline-light { background: transparent; color: var(--cream); border-color: var(--cream); }
  .btn-outline-light:hover { background: var(--cream); color: var(--ink); }
  .btn-ghost {
    background: transparent; color: var(--ink); padding: 0;
    border: 0; border-bottom: 2px solid var(--ink); border-radius: 0;
    padding-bottom: 4px;
  }
  .btn-ghost:hover { color: var(--red); border-bottom-color: var(--red); }

  /* ============================================================
     HEADER / NAV — transparent over hero, solid on scroll
     ============================================================ */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header.scrolled {
    background: var(--cream);
    border-bottom-color: var(--hairline);
  }
  .site-header .bar {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max); margin: 0 auto;
    padding: 18px var(--pad);
    transition: padding 0.25s ease;
  }
  .site-header.scrolled .bar { padding: 14px var(--pad); }

  .site-header .logo {
    display: flex; align-items: center; gap: 14px;
    transition: all 0.25s ease;
  }
  .site-header .logo img {
    height: 138px;
    width: auto;
    transition: height 0.25s ease, filter 0.25s ease;
    filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(0,0,0,0.45));
  }
  .site-header.scrolled .logo img {
    height: 100px;
    filter: none; /* original colours when nav is solid */
  }

  .site-nav {
    display: flex; align-items: center; gap: 36px;
    font-family: var(--body); font-weight: 600; font-size: 13px;
    letter-spacing: 0.8px; text-transform: uppercase;
  }
  .site-nav a {
    color: var(--cream);
    transition: color 0.15s;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  }
  .site-nav a:hover { color: var(--red); }
  .site-header.scrolled .site-nav a {
    color: var(--ink);
    text-shadow: none;
  }
  .site-header.scrolled .site-nav a:hover { color: var(--red); }

  .site-nav .cta {
    background: var(--red); color: var(--white) !important;
    padding: 12px 22px; border-radius: var(--radius);
    font-weight: 700; font-size: 12px; letter-spacing: 1.4px;
    text-shadow: none !important;
  }
  .site-nav .cta:hover { background: var(--red-deep); color: var(--white) !important; }

  .nav-toggle {
    display: none;
    background: transparent; border: 0; padding: 8px;
    color: var(--cream);
  }
  .site-header.scrolled .nav-toggle { color: var(--ink); }
  .nav-toggle svg { display: block; }

  @media (max-width: 880px) {
    .site-nav { display: none; }
    .nav-toggle { display: block; }
    .site-header .logo img { height: 90px; }
    .site-header.scrolled .logo img { height: 70px; }

    .site-nav.open {
      display: flex;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch;
      gap: 0;
      background: var(--cream);
      border-bottom: 1px solid var(--hairline);
      padding: 12px var(--pad) 24px;
    }
    .site-nav.open a {
      color: var(--ink) !important;
      text-shadow: none !important;
      padding: 14px 0;
      border-bottom: 1px solid var(--hairline);
    }
    .site-nav.open .cta { margin-top: 12px; text-align: center; padding: 16px; }
  }

  /* ============================================================
     HERO — Full-bleed landscape with overlay
     ============================================================ */
  .hero {
    position: relative;
    min-height: 86vh;
    min-height: 86svh;
    width: 100%;
    background: #0e0e0e;
    display: flex;
    flex-direction: column;
    color: var(--cream);
    overflow: hidden;
  }
  /* The hero photo — sits on the right, leaving the left for text and dark backdrop */
  .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 82%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center;
    z-index: 0;
  }
  @media (max-width: 1200px) {
    .hero-bg { width: 88%; }
  }
  @media (max-width: 980px) {
    .hero-bg { width: 100%; object-position: 64% 40%; }
  }
  /* Directional dark fades from solid backdrop on the left across the photo, keeping Dave bright on the right */
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg,
        rgba(14,14,14,0.85) 0%,
        rgba(14,14,14,0.72) 18%,
        rgba(14,14,14,0.45) 32%,
        rgba(14,14,14,0.18) 55%,
        rgba(14,14,14,0.02) 100%);
    pointer-events: none;
    z-index: 1;
  }
  /* A second very soft top/bottom vignette for nav legibility, no heavy bottom */
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.20) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(64px, 9vh, 120px);
    padding-top: 180px;
  }
  .hero-bar {
    width: 64px; height: 4px; background: var(--red);
    margin-bottom: 24px;
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 1.8px; font-weight: 700;
    text-transform: uppercase; color: var(--red);
    margin: 0 0 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .hero-content { max-width: 60%; }
  .hero h1 {
    color: var(--cream);
    max-width: 13ch;
    margin-bottom: 28px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  }
  .hero h1 .red { color: var(--red); }
  .hero .sub {
    font-family: var(--body);
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.55;
    color: rgba(250, 247, 241, 0.94);
    max-width: 48ch;
    margin: 0 0 36px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  }
  .hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero .btn-outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

  @media (max-width: 980px) {
    /* Stacked mobile hero: photo becomes a banner, content drops onto cream below */
    .hero {
      min-height: 0;
      background: var(--cream);
      display: block;
    }
    .hero-bg {
      position: relative;
      width: 100%;
      height: 52vh;
      height: 52svh;
      min-height: 340px;
      max-height: 520px;
      object-position: 64% 40%;
    }
    /* Kill the dark gradients — they were only needed when text sat over the photo */
    .hero::before { display: none; }
    .hero::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      top: 0;
      height: 160px;
      background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
      pointer-events: none;
      z-index: 1;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      padding-top: 40px;
      padding-bottom: 56px;
      justify-content: flex-start;
    }
    .hero-content { max-width: 100%; }
    .hero-bar { margin-bottom: 20px; }
    .hero-eyebrow {
      color: var(--red);
      text-shadow: none;
      margin-bottom: 16px;
    }
    .hero h1 {
      color: var(--black);
      text-shadow: none;
      max-width: 14ch;
      margin-bottom: 22px;
    }
    .hero .sub {
      color: var(--charcoal);
      text-shadow: none;
      font-size: 16px;
      margin-bottom: 28px;
    }
    /* On cream, the outline button needs a dark stroke rather than a light one */
    .hero .btn-outline-light {
      color: var(--black);
      border-color: var(--black);
    }
    .hero .btn-outline-light:hover {
      background: var(--black);
      color: var(--cream);
      border-color: var(--black);
    }
  }
  @media (max-width: 720px) {
    .hero-bg {
      height: 46vh;
      height: 46svh;
      min-height: 300px;
    }
    .hero-inner {
      padding-top: 32px;
      padding-bottom: 48px;
    }
    .hero h1 { max-width: 12ch; }
  }

  /* ============================================================
     CREDIT REEL — animated double marquee
     ============================================================ */
  .credit-reel {
    background: var(--black);
    color: var(--cream);
    padding: 36px 0 40px;
    border-bottom: 1px solid #1f1f1f;
    overflow: hidden;
  }
  .credit-reel .head {
    font-size: 11px; letter-spacing: 1.8px; font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    margin: 0 0 22px;
    padding: 0 var(--pad);
  }

  .marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .marquee + .marquee { margin-top: 10px; }

  .marquee-track {
    display: inline-flex;
    gap: 28px;
    padding-right: 28px;
    animation: marquee-left 60s linear infinite;
    will-change: transform;
  }
  .marquee.reverse .marquee-track {
    animation-name: marquee-right;
    animation-duration: 70s;
  }
  .marquee-track span {
    font-family: var(--display);
    font-size: clamp(18px, 1.9vw, 24px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cream);
    flex-shrink: 0;
  }
  .marquee-track .dot {
    color: var(--red);
    opacity: 0.9;
  }
  @media (max-width: 720px) {
    .credit-reel { padding: 28px 0 32px; }
    .credit-reel .head { margin-bottom: 16px; }
    .marquee-track {
      gap: 20px;
      padding-right: 20px;
      animation-duration: 48s;
    }
    .marquee.reverse .marquee-track { animation-duration: 56s; }
    .marquee-track span { font-size: 15px; }
    .marquee + .marquee { margin-top: 6px; }
  }

  @keyframes marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes marquee-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  /* ============================================================
     SECTION shared
     ============================================================ */
  section.section {
    padding: 112px 0;
    border-bottom: 1px solid var(--hairline);
  }
  section.section.dark {
    background: var(--black);
    color: var(--cream);
    border-bottom-color: #1f1f1f;
  }
  section.section.dark .eyebrow { color: var(--red); }
  section.section.dark h2,
  section.section.dark h3 { color: var(--cream); }
  section.section.dark .lede { color: rgba(250, 247, 241, 0.78); }
  section.ivory { background: var(--ivory); }
  @media (max-width: 720px) {
    section.section { padding: 72px 0; }
  }

  /* ============================================================
     WELCOME — text + accent image
     ============================================================ */
  .welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .welcome h2 { margin-bottom: 12px; max-width: 16ch; }
  .welcome .body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 22px;
  }
  .welcome .body p:last-child { margin-bottom: 0; }
  .welcome .accent {
    aspect-ratio: 5 / 4;
    background: url('../img/jane-piano.jpg') center/cover no-repeat;
    border-radius: var(--radius);
  }
  @media (max-width: 880px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
    .welcome .accent { aspect-ratio: 4/3; }
  }

  /* ============================================================
     PROGRAMS
     ============================================================ */
  .programs-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 40px; margin-bottom: 56px;
  }
  .programs-head h2 { max-width: 14ch; }
  .programs-head .lede { max-width: 38ch; }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 36px 32px 32px;
    display: flex; flex-direction: column;
    transition: all 0.2s ease;
  }
  .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .card .tag {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }
  .card h3 {
    font-size: 26px;
    margin: 0 0 16px;
    line-height: 1.05;
  }
  .card .desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0 0 22px;
  }
  .card ul {
    list-style: none; padding: 0; margin: 0 0 24px;
  }
  .card ul li {
    font-size: 13px;
    line-height: 1.55;
    color: var(--charcoal);
    padding: 8px 0;
    border-top: 1px solid var(--hairline);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .card ul li:first-child { border-top: 0; padding-top: 0; }
  .card ul li::before {
    content: "—";
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
  }
  .card .card-link {
    margin-top: auto;
    font-family: var(--body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: all 0.18s;
  }
  .card .card-link:hover { color: var(--red); border-bottom-color: var(--red); }
  .card-img {
    width: calc(100% + 64px);
    margin: -36px -32px 24px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  @media (max-width: 980px) {
    .programs-grid { grid-template-columns: 1fr; }
    .programs-head { flex-direction: column; align-items: flex-start; }
  }

  /* ============================================================
     ADULT SESSIONS strip — with image
     ============================================================ */
  .adults {
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
  }
  .adults-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 0;
    align-items: stretch;
  }
  .adults .photo {
    background: url('../img/studio-keys-corner.jpg') center/cover no-repeat;
    min-height: 360px;
  }
  .adults .text {
    padding: 80px clamp(32px, 5vw, 72px);
    display: flex; flex-direction: column; justify-content: center;
  }
  .adults h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    margin: 0 0 22px;
    max-width: 16ch;
  }
  .adults p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0 0 28px;
    max-width: 52ch;
  }
  @media (max-width: 880px) {
    .adults-grid { grid-template-columns: 1fr; }
    .adults .text { padding: 56px 28px; }
    .adults .photo { min-height: 280px; }
  }

  /* ============================================================
     STUDIO — dark, with wide control room photo
     ============================================================ */
  .studio-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .studio .image {
    background: #000 url('../img/liveroom-wide.jpg') center/cover no-repeat;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
  }
  .studio .text h2 { max-width: 14ch; margin-bottom: 28px; }
  .studio .text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
    color: rgba(250, 247, 241, 0.85);
  }
  .studio .text .btn { margin-top: 12px; }
  @media (max-width: 880px) {
    .studio-grid { grid-template-columns: 1fr; gap: 40px; }
    .studio .image { aspect-ratio: 4/3; }
  }

  /* ============================================================
     ABOUT — gallery + body
     ============================================================ */
  .about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
  }
  .about .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .about .gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
  }
  .about .gallery img.wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .about h2 { margin-bottom: 18px; }
  .about .body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 18px;
  }
  .about .body p:first-of-type {
    font-size: 18px;
    color: var(--ink);
  }
  .about .body p:last-of-type { margin-bottom: 28px; }
  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============================================================
     HOW IT WORKS
     ============================================================ */
  .how h2 { margin-bottom: 56px; max-width: 16ch; }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }
  .step {
    border-top: 4px solid var(--ink);
    padding-top: 24px;
  }
  .step .num {
    font-family: var(--display);
    font-size: 40px;
    line-height: 1;
    color: var(--red);
    margin-bottom: 12px;
  }
  .step h3 {
    font-size: 22px;
    margin: 0 0 14px;
  }
  .step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
  }
  @media (max-width: 880px) {
    .how-steps { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq h2 { margin-bottom: 56px; max-width: 16ch; }
  .faq-list { max-width: 820px; }
  .faq-item { border-top: 1px solid var(--hairline); }
  .faq-item:last-child { border-bottom: 1px solid var(--hairline); }
  .faq-item button {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 28px 0;
    text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-family: var(--display);
    font-size: clamp(18px, 2.2vw, 24px);
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--ink);
  }
  .faq-item .icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    position: relative;
  }
  .faq-item .icon::before,
  .faq-item .icon::after {
    content: "";
    position: absolute;
    background: var(--red);
    border-radius: 1px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .faq-item .icon::before { width: 20px; height: 2px; }
  .faq-item .icon::after  { width: 2px; height: 20px; transition: transform 0.2s; }
  .faq-item.open .icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-item .answer {
    display: none;
    padding: 0 0 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 70ch;
  }
  .faq-item.open .answer { display: block; }
  .faq-link { margin-top: 40px; }

  /* ============================================================
     FINAL CTA — clean ivory band with band-on-stairs graphic
     ============================================================ */
  .final-cta {
    position: relative;
    background: var(--ivory);
    color: var(--ink);
    padding: 140px 0;
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
  }
  .final-cta-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
  }
  .final-cta .eyebrow { color: var(--red); }
  .final-cta h2 {
    color: var(--ink);
    margin-bottom: 24px;
    font-size: clamp(44px, 6vw, 80px);
    max-width: 12ch;
  }
  .final-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--charcoal);
    max-width: 48ch;
    margin: 0 0 36px;
  }
  .final-cta-art {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .final-cta-art img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
  }
  @media (max-width: 880px) {
    .final-cta { padding: 96px 0 104px; }
    .final-cta-grid {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
    }
    .final-cta h2 { max-width: 100%; margin-left: auto; margin-right: auto; }
    .final-cta p { margin-left: auto; margin-right: auto; }
    .final-cta-art { justify-content: center; order: -1; }
    .final-cta-art img { max-width: 340px; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer {
    background: var(--black);
    color: var(--cream);
    padding: 88px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .site-footer h4 {
    color: rgba(250, 247, 241, 0.55);
    margin-bottom: 18px;
  }
  .site-footer .brand-line {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(250, 247, 241, 0.78);
    max-width: 30ch;
    margin: 0 0 24px;
  }
  .site-footer .brand-line a {
    color: rgba(250, 247, 241, 0.78);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
  }
  .site-footer .brand-line a:hover { color: var(--cream); }
  .site-footer .footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 28px;
  }
  @media (max-width: 880px) {
    .site-footer .footer-logo { height: 88px; }
  }
  .site-footer .col p,
  .site-footer .col li {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(250, 247, 241, 0.78);
    margin: 0 0 8px;
  }
  .site-footer .col ul { list-style: none; padding: 0; margin: 0; }
  .site-footer .col ul li a { transition: color 0.15s; }
  .site-footer .col ul li a:hover { color: var(--red); }
  .social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .social-icon {
    color: rgba(250, 247, 241, 0.6);
    transition: color 0.15s;
    display: flex;
    align-items: center;
  }
  .social-icon:hover { color: var(--cream); }
  .social-icon.sc-logo img {
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.15s;
  }
  .social-icon.sc-logo:hover img { opacity: 1; }
  .site-footer .legal {
    border-top: 1px solid #1f1f1f;
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: rgba(250, 247, 241, 0.5);
  }
  .site-footer .legal a:hover { color: var(--red); }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    html { scroll-behavior: auto; }
  }

  /* ---------- Utilities ---------- */
  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
  }

  /* ============================================================
     NAV DROPDOWN
     ============================================================ */
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    display: block;
    background: var(--cream);
    color: var(--ink) !important;
    text-shadow: none !important;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1.2px;
    white-space: nowrap;
    border-bottom: 1px solid var(--hairline);
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown-menu a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .nav-dropdown-menu a:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: 0; }
  .nav-dropdown-menu a:hover { background: var(--ivory); color: var(--red) !important; }

  .site-nav a.active { color: var(--red) !important; }
  .site-header:not(.scrolled) .site-nav a.active { color: var(--red) !important; text-shadow: none; }

  @media (max-width: 880px) {
    .nav-dropdown-menu { display: none !important; }
    .site-nav.open .nav-dropdown-menu {
      display: block !important;
      position: static;
      transform: none;
      padding-top: 0;
    }
    .site-nav.open .nav-dropdown-menu a {
      padding: 10px 16px;
      font-size: 11px;
      color: var(--muted) !important;
    }
  }

  /* ============================================================
     INTERIOR PAGE HERO — short banner with heading
     ============================================================ */
  .page-hero {
    background: var(--black);
    color: var(--cream);
    padding: 180px 0 80px;
    border-bottom: 1px solid #1f1f1f;
  }
  .page-hero .eyebrow { color: var(--red); }
  .page-hero h1 {
    color: var(--cream);
    font-size: clamp(40px, 6vw, 80px);
    max-width: 16ch;
    margin-bottom: 18px;
  }
  .page-hero .lede {
    color: rgba(250, 247, 241, 0.82);
    max-width: 52ch;
  }
  /* On interior pages the header starts solid (no dark hero photo behind it) */
  .page-interior .site-header {
    background: var(--black);
    border-bottom-color: #1f1f1f;
  }
  .page-interior .site-header .logo img {
    filter: brightness(0) invert(1);
  }
  .page-interior .site-header .site-nav a {
    color: var(--cream);
    text-shadow: none;
  }
  .page-interior .site-header .nav-toggle { color: var(--cream); }
  .page-interior .site-header.scrolled {
    background: var(--cream);
    border-bottom-color: var(--hairline);
  }
  .page-interior .site-header.scrolled .logo img { filter: none; }
  .page-interior .site-header.scrolled .site-nav a { color: var(--ink); }
  .page-interior .site-header.scrolled .nav-toggle { color: var(--ink); }
  @media (max-width: 880px) {
    .page-hero { padding: 140px 0 56px; }
  }

  /* ============================================================
     PROGRAMS PAGE — detailed program sections
     ============================================================ */
  .program-detail {
    padding: 96px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .program-detail.alt { background: var(--ivory); }
  .program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .program-detail-grid.reverse .program-img { order: 2; }
  .program-detail h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 20px;
    max-width: 16ch;
  }
  .program-detail .program-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 18px;
  }
  .program-detail .program-body p:first-of-type {
    font-size: 18px;
    color: var(--ink);
  }
  .program-detail .detail-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
  }
  .program-detail .detail-list li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--charcoal);
    padding: 10px 0;
    border-top: 1px solid var(--hairline);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .program-detail .detail-list li:first-child { border-top: 0; }
  .program-detail .detail-list li::before {
    content: "—";
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
  }
  .program-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    width: 100%;
  }
  .program-cta { margin-top: 8px; }
  @media (max-width: 880px) {
    .program-detail { padding: 72px 0; }
    .program-detail-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .program-detail-grid .program-img { order: -1; }
    .program-detail-grid.reverse .program-img { order: -1; }
  }

  /* Program accent gallery — row of smaller images under each program section */
  .program-accent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .program-accent img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
  }
  @media (max-width: 880px) {
    .program-accent {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .program-accent img { height: 160px; }
    .program-accent img:nth-child(3) {
      grid-column: 1 / -1;
      height: 200px;
    }
  }
  @media (max-width: 480px) {
    .program-accent {
      grid-template-columns: 1fr;
    }
    .program-accent img { height: 200px; }
    .program-accent img:nth-child(3) {
      grid-column: auto;
    }
  }

  /* ============================================================
     STUDIO PAGE — full-image hero with text overlay
     ============================================================ */
  .studio-hero {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 200px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
  }
  .studio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.05) 30%,
      rgba(0,0,0,0.05) 50%,
      rgba(0,0,0,0.65) 100%
    );
  }
  .studio-hero .wrap { position: relative; z-index: 1; }
  .studio-hero-content { max-width: 640px; }
  .studio-hero .eyebrow { color: var(--red); }
  .studio-hero h1 {
    color: #fff;
    margin-bottom: 20px;
  }
  .studio-hero .lede {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .studio-hero-content > p:not(.lede):not(.eyebrow) {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
  }
  @media (max-width: 720px) {
    .studio-hero {
      min-height: 70vh;
      padding: 160px 0 48px;
    }
  }

  /* ============================================================
     STUDIO PAGE — centred text section
     ============================================================ */
  .studio-centred {
    max-width: 720px;
  }
  .studio-centred .detail-list {
    columns: 2;
    column-gap: 32px;
  }
  @media (max-width: 720px) {
    .studio-centred .detail-list { columns: 1; }
  }

  /* ============================================================
     STUDIO PAGE — gallery grid
     ============================================================ */
  .studio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .studio-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
  }
  .studio-gallery img.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  @media (max-width: 720px) {
    .studio-gallery { grid-template-columns: 1fr 1fr; }
    .studio-gallery img.wide { grid-column: 1 / -1; }
  }

  /* ============================================================
     ABOUT PAGE — full bio layout
     ============================================================ */
  .bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
  }
  .bio-grid.reverse { direction: rtl; }
  .bio-grid.reverse > * { direction: ltr; }
  .bio-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
  }
  .bio-text h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 20px;
  }
  .bio-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 18px;
  }
  .bio-text p:first-of-type {
    font-size: 18px;
    color: var(--ink);
  }
  .bio-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }
  .bio-duo-photo {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    max-height: 500px;
    object-position: center 40%;
  }
  @media (max-width: 880px) {
    .bio-grid, .bio-grid.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .bio-duo { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============================================================
     CONTACT PAGE — form + info
     ============================================================ */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
  }
  .contact-form label {
    display: block;
    font-family: var(--body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    display: block;
    width: 100%;
    font-family: var(--body);
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    margin-bottom: 24px;
    transition: border-color 0.15s;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
  }
  .contact-form textarea { resize: vertical; min-height: 120px; }
  .form-note {
    font-size: 14px;
    color: var(--charcoal);
    margin-top: 12px;
  }
  .contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-info h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .contact-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 28px;
  }
  .contact-info .map-embed {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: var(--radius);
    margin-bottom: 28px;
  }
  @media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
  }
