:root {
    --paper: #f4f0e6;
    --paper-2: #ebe6d8;
    --ink: #0b0b0e;
    --ink-2: #1b1b22;
    --line: rgba(11, 11, 14, 0.12);
    --line-strong: rgba(11, 11, 14, 0.22);
    --muted: rgba(11, 11, 14, 0.62);
    --accent: #c8362b;
    --accent-ink: #ffffff;
    --display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --pad: 32px;
    --gutter: 28px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }
  img { display: block; max-width: 100%; }

  .wrap { padding: 0 var(--pad); }
  .rule { border-top: 1px solid var(--line); }
  .rule-strong { border-top: 1px solid var(--ink); }

  .mono {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .display { font-family: var(--display); letter-spacing: -0.02em; line-height: 0.92; font-weight: 700; }

  /* Top utility bar */
  .util {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .util-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px var(--pad);
    gap: 24px;
  }
  .util a { opacity: 0.78; transition: opacity .15s; }
  .util a:hover { opacity: 1; }
  .util .left, .util .right { display: flex; align-items: center; gap: 22px; }
  .util .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
  .loc-switch {
    display: inline-flex; align-items: center; gap: 4px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 4px 4px 4px 12px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .loc-switch .opts { display: inline-flex; gap: 2px; margin-left: 8px; }
  .loc-switch button, .loc-switch a {
    background: transparent; color: inherit; border: 0;
    padding: 4px 8px; border-radius: 999px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none;
  }
  .loc-switch button[aria-pressed="true"], .loc-switch a[aria-pressed="true"] { background: var(--accent); color: white; }

  /* Nav */
  .nav-wrap { position: sticky; top: 0; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px var(--pad);
    gap: 36px;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .logo-mark {
    width: 38px; height: 38px;
    background: var(--ink); color: var(--paper);
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 800; font-size: 22px;
    letter-spacing: -0.05em;
    position: relative;
  }
  .logo-mark::after {
    content: ""; position: absolute; inset: 0;
    border: 1px solid var(--ink);
    transform: translate(4px, 4px);
    z-index: -1;
    background: var(--accent);
  }
  .brand-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .brand-sub {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
  }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    justify-self: center;
    background: var(--paper-2);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid var(--line);
  }
  .nav-link {
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    color: var(--ink-2);
    transition: background .15s, color .15s;
    cursor: pointer;
    border: 0; background: transparent;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .nav-link:hover { background: rgba(0,0,0,0.05); }
  .nav-link.is-active { background: var(--ink); color: var(--paper); }
  .nav-link .chev { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); opacity: 0.5; margin-top: -3px; }
  .nav-cta { display: flex; align-items: center; gap: 10px; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    border: 0; border-radius: 999px;
    padding: 12px 18px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform .12s ease, background .15s, color .15s;
    cursor: pointer;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: white; }
  .btn-primary:hover { background: #b32f25; }
  .btn-ink { background: var(--ink); color: var(--paper); }
  .btn-ink:hover { background: #000; }
  .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
  .btn-ghost:hover { background: rgba(0,0,0,0.05); }
  .btn .arr {
    display: inline-grid; place-items: center;
    width: 18px; height: 18px; border-radius: 999px;
    background: rgba(255,255,255,0.18);
  }
  .btn-ghost .arr { background: rgba(0,0,0,0.07); }
  .btn .arr svg { width: 10px; height: 10px; }

  /* Hero */
  .hero {
    padding: 28px var(--pad) 24px;
    position: relative;
  }
  .hero-meta {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px;
  }
  .hero-meta .col { display: flex; gap: 24px; align-items: center; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--paper);
  }
  .pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); animation: pulse 2s infinite; }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
  }

  .hero-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(72px, 14.5vw, 240px);
    line-height: 0.86;
    letter-spacing: -0.04em;
    margin: 0;
  }
  .hero-title .ital { font-style: italic; font-weight: 500; color: var(--accent); }
  .hero-title .outline {
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
  }

  .hero-row2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gutter);
    margin-top: 36px;
    align-items: end;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
    background: var(--ink);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .placeholder-photo {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 16px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.06) 75%, transparent 75%) 0/12px 12px,
      var(--ink-2);
    color: rgba(255,255,255,0.65);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  }
  .placeholder-photo .ph-label::before { content: "[ "; }
  .placeholder-photo .ph-label::after { content: " ]"; }
  .placeholder-photo .ph-spec {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    font-size: 10px; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.25);
    white-space: nowrap;
  }
  .placeholder-photo .ph-spec::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px;
    background: var(--accent); flex-shrink: 0;
  }

  .hero-image .tag-bl {
    position: absolute; left: 20px; bottom: 20px;
    background: var(--paper); color: var(--ink);
    padding: 10px 14px; border-radius: 6px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    border-left: 3px solid var(--accent);
  }
  .hero-image .tag-tr {
    position: absolute; right: 20px; top: 20px;
    color: var(--paper); opacity: 0.85;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  }

  .hero-side {
    display: flex; flex-direction: column; gap: 18px;
  }
  .hero-side-card {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    padding: 22px;
    border-radius: 8px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .hero-side-card .kicker { color: var(--accent); }
  .hero-side-card h3 {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .hero-side-card .dates {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-top: 4px;
  }
  .date-chip {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 10px 12px;
  }
  .date-chip .d { font-family: var(--display); font-size: 22px; font-weight: 700; line-height: 1; }
  .date-chip .l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; opacity: 0.7; margin-top: 6px; text-transform: uppercase; }

  .hero-side-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .hero-side-cta .btn { width: 100%; justify-content: center; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    margin-top: 56px;
  }
  .hero-stat {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    display: flex; align-items: end; justify-content: space-between;
  }
  .hero-stat:last-child { border-right: 0; }
  .hero-stat .n {
    font-family: var(--display);
    font-weight: 800;
    font-size: 56px;
    line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .hero-stat .l {
    text-align: right;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.66;
    max-width: 120px;
    line-height: 1.4;
  }

  /* Marquee */
  .marquee {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid var(--ink);
  }
  .marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marq 40s linear infinite;
    will-change: transform;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 56px;
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .marquee-item .star {
    width: 28px; height: 28px;
    color: var(--accent);
    flex-shrink: 0;
  }
  @keyframes marq {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Program Finder */
  .finder {
    padding: 96px var(--pad) 80px;
    position: relative;
  }
  .section-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 48px;
  }
  .section-head .num {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
    display: flex; gap: 16px; align-items: center;
  }
  .section-head .num::after {
    content: ""; width: 56px; height: 1px; background: var(--ink);
  }
  .section-head h2 {
    margin: 0;
    font-family: var(--display); font-weight: 700;
    font-size: clamp(40px, 6vw, 84px);
    letter-spacing: -0.03em;
    line-height: 0.96;
    max-width: 14ch;
  }
  .section-head .lede {
    max-width: 38ch;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    justify-self: end;
    text-wrap: pretty;
  }

  .finder-card {
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: var(--paper-2);
    overflow: hidden;
  }
  .finder-tabs {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line-strong);
  }
  .finder-tab {
    padding: 18px 22px;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    text-align: left;
    cursor: pointer;
    display: flex; flex-direction: column; gap: 4px;
    transition: background .15s;
  }
  .finder-tab:last-child { border-right: 0; }
  .finder-tab:hover { background: rgba(0,0,0,0.03); }
  .finder-tab.is-active { background: var(--paper); }
  .finder-tab .step {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  }
  .finder-tab .lbl { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
  .finder-tab .val { font-size: 13px; color: var(--muted); margin-top: 2px; }

  .finder-body { padding: 28px; }
  .finder-step h4 {
    margin: 0 0 18px;
    font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em;
  }
  .finder-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .finder-opt {
    border: 1px solid var(--line-strong);
    background: var(--paper);
    border-radius: 10px;
    padding: 14px 14px;
    text-align: left;
    cursor: pointer;
    display: flex; flex-direction: column; gap: 6px;
    transition: border-color .15s, transform .12s;
  }
  .finder-opt:hover { border-color: var(--ink); }
  .finder-opt.is-selected { border-color: var(--ink); background: var(--ink); color: var(--paper); }
  .finder-opt.is-selected .sub { color: rgba(255,255,255,0.6); }
  .finder-opt .ttl { font-weight: 600; font-size: 15px; }
  .finder-opt .sub { font-size: 12px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

  .finder-result {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--ink);
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .finder-result .kicker { color: var(--accent); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
  .finder-result h5 { margin: 4px 0 6px; font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; line-height: 1; }
  .finder-result p { margin: 0; opacity: 0.75; font-size: 14px; max-width: 60ch; }

  /* Programs bento */
  .programs { padding: 24px var(--pad) 96px; }
  .bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
  }
  .card {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform .25s ease, border-color .25s;
    display: flex; flex-direction: column;
  }
  .card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
  .card .cover { position: relative; overflow: hidden; }
  .card .cover .placeholder-photo { aspect-ratio: 16/10; }
  .card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .card .body .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .card .ttl {
    font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; line-height: 1;
  }
  .card .desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
  .card .meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  }
  .card .more {
    margin-top: auto;
    padding-top: 14px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 600;
    color: var(--ink);
  }
  .card .more .arr {
    width: 36px; height: 36px; border-radius: 999px;
    background: var(--ink); color: var(--paper);
    display: grid; place-items: center;
    transition: background .15s, transform .25s ease;
  }
  .card:hover .more .arr { background: var(--accent); transform: rotate(-45deg); }

  /* spans */
  .c-12 { grid-column: span 12; }
  .c-8 { grid-column: span 8; }
  .c-6 { grid-column: span 6; }
  .c-5 { grid-column: span 5; }
  .c-4 { grid-column: span 4; }
  .c-3 { grid-column: span 3; }
  .c-7 { grid-column: span 7; }

  .card.feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .card.feature .desc { color: rgba(255,255,255,0.65); }
  .card.feature .chip { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--paper); }
  .card.feature .more { color: var(--paper); }
  .card.feature .more .arr { background: var(--accent); }
  .card.feature .body { padding: 28px; }
  .card.feature .ttl {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 0.92;
  }
  .card.feature .cover .placeholder-photo {
    aspect-ratio: 16/9;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.07) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.07) 75%, transparent 75%) 0/14px 14px,
      #15151a;
  }
  .card.accent { background: var(--accent); color: white; border-color: var(--accent); }
  .card.accent .desc { color: rgba(255,255,255,0.78); }
  .card.accent .chip { background: rgba(0,0,0,0.15); border-color: rgba(255,255,255,0.2); color: white; }
  .card.accent .more { color: white; }
  .card.accent .more .arr { background: white; color: var(--accent); }

  /* Commits / scroller */
  .commits { background: var(--ink); color: var(--paper); padding: 96px 0 80px; border-top: 1px solid var(--ink); }
  .commits .section-head h2 { color: var(--paper); }
  .commits .section-head .num { color: rgba(255,255,255,0.55); }
  .commits .section-head .num::after { background: var(--paper); }
  .commits .section-head .lede { color: rgba(255,255,255,0.65); }
  .commits .section-head { padding: 0 var(--pad); margin-bottom: 56px; }

  .commit-grid {
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .commit {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 18px;
    display: flex; flex-direction: column; gap: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    transition: border-color .15s, background .15s;
  }
  .commit:hover { border-color: var(--accent); background: rgba(200,54,43,0.06); }
  .commit .name {
    font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; line-height: 1.05;
  }
  .commit .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }
  .commit .school { font-size: 14px; opacity: 0.9; margin-top: 6px; display: flex; align-items: center; gap: 6px; }
  .commit .school .accent { color: var(--accent); }

  .commits-foot {
    padding: 48px var(--pad) 0;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 56px var(--pad) 0;
    padding: 32px 0 0;
  }

  /* Testimonials */
  .testimonials { padding: 96px var(--pad); }
  .test-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gutter); }
  .test-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--ink);
    color: var(--paper);
    display: flex; flex-direction: column;
    min-height: 420px;
  }
  .test-card .cover { flex: 1; position: relative; }
  .test-card .cover .placeholder-photo { width: 100%; height: 100%; aspect-ratio: auto; }
  .test-card .play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 72px; height: 72px; border-radius: 999px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    display: grid; place-items: center;
    transition: transform .2s;
  }
  .test-card:hover .play { transform: translate(-50%,-50%) scale(1.06); background: var(--accent); color: white; }
  .test-card .quote-foot {
    padding: 22px;
    display: flex; align-items: end; justify-content: space-between;
    gap: 20px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    position: absolute; left: 0; right: 0; bottom: 0;
  }
  .test-card .quote-foot .who { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
  .test-card .quote-foot .what { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; margin-top: 6px; }
  .test-card .quote-foot .dur { font-family: var(--mono); font-size: 11px; opacity: 0.75; }

  .pull-quote {
    grid-column: span 1;
    background: var(--paper);
    color: var(--ink);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 18px;
    min-height: 420px;
  }
  .pull-quote .mark {
    font-family: var(--display); font-weight: 800; font-size: 88px; line-height: 0.7;
    color: var(--accent);
  }
  .pull-quote .body {
    font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
    flex: 1; text-wrap: pretty;
  }
  .pull-quote .who { display: flex; gap: 12px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
  .pull-quote .avatar {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--ink-2);
  }
  .pull-quote .name { font-weight: 600; font-size: 14px; }
  .pull-quote .role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

  /* About */
  .about {
    background: var(--paper-2);
    padding: 96px var(--pad);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .about-mission {
    font-family: var(--display); font-weight: 500;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15; letter-spacing: -0.02em;
    text-wrap: pretty;
  }
  .about-mission em { font-style: italic; color: var(--accent); font-weight: 500; }

  .leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 0; }
  .leader {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .leader .pic { aspect-ratio: 1/1; border-radius: 8px; background: var(--ink); overflow: hidden; }
  .leader .pic .placeholder-photo { aspect-ratio: 1/1; }
  .leader .name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
  .leader .role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

  /* Locations */
  .locations { padding: 96px var(--pad); }
  .loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
  .loc-card {
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    overflow: hidden;
    background: var(--paper-2);
    transition: transform .25s, border-color .25s;
    cursor: pointer;
    position: relative;
  }
  .loc-card:hover { transform: translateY(-3px); border-color: var(--ink); }
  .loc-card .map { aspect-ratio: 4/3; position: relative; background: var(--ink-2); overflow: hidden; }
  .loc-card .map svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
  .loc-card .map .pin {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 14px; height: 14px; border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(200,54,43,0.25), 0 0 0 16px rgba(200,54,43,0.12);
  }
  .loc-card .map .label {
    position: absolute; left: 18px; bottom: 18px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--paper); opacity: 0.65;
  }
  .loc-card .body { padding: 22px; }
  .loc-card h4 { margin: 0 0 6px; font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
  .loc-card .sub { font-size: 14px; color: var(--muted); }
  .loc-card .stats { display: flex; gap: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
  .loc-card .stat .n { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; line-height: 1; }
  .loc-card .stat .l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

  /* CTA */
  .cta-band {
    background: var(--accent);
    color: white;
    padding: 80px var(--pad);
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0, transparent 40%),
      radial-gradient(circle at 80% 30%, rgba(0,0,0,0.15) 0, transparent 40%);
    pointer-events: none;
  }
  .cta-grid {
    position: relative;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end;
  }
  .cta-band h2 {
    margin: 0;
    font-family: var(--display); font-weight: 800;
    font-size: clamp(56px, 8vw, 128px); line-height: 0.86; letter-spacing: -0.035em;
  }
  .cta-band h2 em { font-style: italic; font-weight: 500; }
  .cta-band .sub {
    font-size: 17px; max-width: 38ch; opacity: 0.9; line-height: 1.5; text-wrap: pretty;
  }
  .cta-band .cta-acts { display: flex; gap: 10px; margin-top: 18px; }
  .cta-band .btn-primary { background: white; color: var(--accent); }
  .cta-band .btn-primary:hover { background: var(--ink); color: white; }
  .cta-band .btn-ghost { border-color: rgba(255,255,255,0.4); color: white; }
  .cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); }
  .cta-band .btn .arr { background: rgba(0,0,0,0.15); }

  /* Footer */
  .foot { background: var(--ink); color: var(--paper); padding: 64px var(--pad) 28px; }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .foot h5 { margin: 0 0 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }
  .foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .foot a { font-size: 13px; opacity: 0.8; }
  .foot a:hover { opacity: 1; color: var(--accent); }
  .foot-mark {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.86; letter-spacing: -0.04em;
  }
  .foot-mark em { font-style: italic; font-weight: 500; color: var(--accent); }
  .foot-bot {
    padding-top: 22px;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55;
  }

  /* Density */
  body[data-density="comfy"] { --pad: 40px; --gutter: 32px; }
  body[data-density="tight"] { --pad: 24px; --gutter: 20px; }

  /* Accent themes */
  body[data-accent="red"] { --accent: #c8362b; }
  body[data-accent="amber"] { --accent: #d97706; }
  body[data-accent="electric"] { --accent: #2d4ad6; }
  body[data-accent="kelly"] { --accent: #15803d; }

  /* Paper themes */
  body[data-paper="warm"] { --paper: #f4f0e6; --paper-2: #ebe6d8; }
  body[data-paper="cool"] { --paper: #f0f1f4; --paper-2: #e3e5ec; }
  body[data-paper="mono"] { --paper: #f4f4f4; --paper-2: #e7e7e7; }

  /* Dark mode */
  body[data-mode="dark"] {
    --paper: #0b0b0e;
    --paper-2: #15151a;
    --ink: #f4f0e6;
    --ink-2: #ebe6d8;
    --line: rgba(244,240,230,0.12);
    --line-strong: rgba(244,240,230,0.25);
    --muted: rgba(244,240,230,0.62);
    color: var(--ink);
    background: var(--paper);
  }
  body[data-mode="dark"] .logo-mark { background: var(--paper); color: var(--ink); }
  body[data-mode="dark"] .logo-mark::after { border-color: var(--paper); }
  body[data-mode="dark"] .card.feature { background: #15151a; }
  body[data-mode="dark"] .marquee, body[data-mode="dark"] .commits, body[data-mode="dark"] .foot {
    background: #050507; color: var(--ink); border-color: transparent;
  }
  body[data-mode="dark"] .util { background: #050507; }
  body[data-mode="dark"] .hero-side-card { background: var(--paper-2); }
  body[data-mode="dark"] .placeholder-photo { background: linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 75%, transparent 75%) 0/12px 12px, #15151a; color: rgba(255,255,255,0.55); }
  body[data-mode="dark"] .hero-image { background: #15151a; }

  /* Hero variant */
  body[data-hero="overlay"] .hero-row2 { display: none; }
  body[data-hero="overlay"] .hero-fullbg {
    display: block !important;
  }
  .hero-fullbg { display: none; }
  body[data-hero="overlay"] .hero { padding-bottom: 96px; }

  /* Responsive */
  @media (max-width: 1100px) {
    .hero-row2 { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr 1fr; }
    .loc-grid, .commit-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .c-8, .c-6, .c-5, .c-4, .c-3, .c-7 { grid-column: span 12; }
    .nav-links { display: none; }
  }
  @media (max-width: 720px) {
    :root { --pad: 18px; --gutter: 16px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stat:nth-child(2) { border-right: 0; }
    .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .test-grid, .loc-grid, .commit-grid, .foot-grid { grid-template-columns: 1fr; }
    .util-inner { font-size: 11px; gap: 12px; }
    .util .left .mail { display: none; }
    .cta-grid { grid-template-columns: 1fr; }
  }


  /* Production polish — respect reduced-motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .pill .dot { animation: none; }
    * { scroll-behavior: auto !important; }
  }


  /* ============================================================
     MOBILE MENU — hamburger + slide-in drawer
     ============================================================ */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--paper);
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .28s ease, opacity .2s ease;
  }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px var(--pad) 48px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
    overflow-y: auto;
  }
  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* keep the top bar (and the X) above the drawer so it stays tappable */
  body.menu-open .nav-wrap { z-index: 70; }

  .mobile-links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.02em;
    line-height: 1;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: color .15s, padding-left .2s;
  }
  .mobile-links a:hover,
  .mobile-links a:active { color: var(--accent); padding-left: 8px; }
  .mobile-links .m-arr { opacity: .45; }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 32px;
  }
  .mobile-cta .btn { width: 100%; justify-content: center; padding: 16px; }

  .mobile-contact {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    opacity: 0.7;
  }
  .mobile-contact a:hover { opacity: 1; color: var(--accent); }

  /* show the burger / hide desktop pieces on tablet + phone */
  @media (max-width: 1100px) {
    .nav-burger { display: flex; }
    .nav-cta .btn-ghost { display: none; }
  }
  @media (max-width: 720px) {
    .nav-cta .btn-ink { display: none; }
    .nav { gap: 16px; }
  }
  /* never let the drawer linger on desktop */
  @media (min-width: 1101px) {
    .mobile-menu { display: none; }
  }


  /* ============================================================
     BUTTON POLISH — make the "Boys" ghost button on the dark
     tryouts card match the "Girls" button (visible hover + arrow)
     ============================================================ */
  .hero-side-card .btn-ghost { transition: background .15s, border-color .15s, transform .12s ease; }
  .hero-side-card .btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.45);
  }
  .hero-side-card .btn-ghost .arr { background: rgba(255,255,255,0.18); }


  /* When the tryouts card is toggled off, the hero photo spans full width */
  .hero-row2.no-side { grid-template-columns: 1fr; }


  /* ============================================================
     NAV DROPDOWNS (desktop) + expandable groups (mobile)
     ============================================================ */
  .nav-item.has-dropdown { position: relative; display: inline-flex; }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 18px 40px -12px rgba(11,11,14,0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 50;
  }
  /* hover bridge so the menu doesn't vanish when the cursor crosses the gap */
  .nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 10px;
  }
  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
  }
  .dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
    transition: background .14s, color .14s;
  }
  .dropdown-link:hover { background: rgba(0,0,0,0.05); color: var(--ink); }

  /* Mobile expandable groups */
  .mobile-group { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .mobile-group-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: left;
  }
  .m-chev {
    width: 14px; height: 14px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    opacity: .55;
    transition: transform .25s ease;
    margin-right: 4px;
    flex-shrink: 0;
  }
  .mobile-group.open .m-chev { transform: rotate(-135deg); }
  .mobile-sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
    overflow: hidden;
  }
  .mobile-group.open .mobile-sub { grid-template-rows: 1fr; }
  .mobile-sub > div, .mobile-sub { min-height: 0; }
  .mobile-sub a {
    display: block;
    padding: 12px 0 12px 16px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    color: rgba(244,240,230,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .mobile-sub a:last-child { border-bottom: 0; padding-bottom: 18px; }
  .mobile-sub a:hover { color: var(--accent); }


  /* ============================================================
     PROGRAM CARD — tier / sub-level list inside a card
     ============================================================ */
  .tier-list { display: flex; flex-direction: column; gap: 2px; margin: 4px 0 2px; }
  .tier {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 12px;
    border-radius: 9px;
    background: var(--paper);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s, background .15s, transform .12s ease;
  }
  .tier:hover { border-color: var(--ink); transform: translateX(2px); }
  .tier-name { font-weight: 600; font-size: 14px; }
  .tier-meta {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
    margin-left: auto;
  }
  .tier-arr {
    display: inline-grid; place-items: center;
    width: 22px; height: 22px; border-radius: 999px;
    background: var(--ink); color: var(--paper);
    flex-shrink: 0;
    transition: background .15s, transform .2s ease;
  }
  .tier-meta + .tier-arr { margin-left: 0; }
  .tier:not(:has(.tier-meta)) .tier-arr { margin-left: auto; }
  .tier:hover .tier-arr { background: var(--accent); transform: rotate(-45deg); }

  /* on the dark feature card */
  .card.feature .tier { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--paper); }
  .card.feature .tier:hover { border-color: rgba(255,255,255,0.45); }
  .card.feature .tier-arr { background: var(--accent); color: #fff; }

  /* on the accent (colored) card */
  .card.accent .tier { background: rgba(0,0,0,0.14); border-color: rgba(255,255,255,0.22); color: #fff; }
  .card.accent .tier:hover { border-color: rgba(255,255,255,0.6); }
  .card.accent .tier-meta { color: rgba(255,255,255,0.7); }
  .card.accent .tier-arr { background: #fff; color: var(--accent); }


  /* ============================================================
     PROGRAM FINDER — "Also consider" secondary recommendations
     ============================================================ */
  .finder-more-label {
    margin: 22px 0 10px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    display: flex; align-items: center; gap: 14px;
  }
  .finder-more-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .finder-more {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }
  .finder-more-card {
    display: flex; flex-direction: column; gap: 4px;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--paper);
    text-decoration: none;
    color: var(--ink);
    position: relative;
    transition: border-color .15s, transform .12s ease;
  }
  .finder-more-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .fm-title { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; padding-right: 28px; }
  .fm-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }
  .fm-arr {
    position: absolute; top: 14px; right: 14px;
    display: inline-grid; place-items: center;
    width: 24px; height: 24px; border-radius: 999px;
    background: var(--paper-2); color: var(--ink);
    transition: background .15s, transform .2s ease;
  }
  .finder-more-card:hover .fm-arr { background: var(--accent); color: #fff; transform: rotate(-45deg); }

