    @font-face {
      font-family: 'Value Serif Pro';
      src: url('../fonts/value-serif.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Plus Jakarta Sans';
      src: url('../fonts/Jakarta/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Plus Jakarta Sans';
      src: url('../fonts/Jakarta/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
      font-weight: 100 900;
      font-style: italic;
      font-display: swap;
    }

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

    :root {
      --bg: #FFFFFF;
      --bg-alt: #F4F4F4;
      --bg-dark: #0A3D40;
      --bg-mid: #0D5C63;
      --text: #3A2206;
      --text-muted: #78593A;
      --text-inv: #FFFFFF;
      --gold: #C8942A;
      --gold-light: #E0AE4A;
      --green: #1A6B3A;
      --border: rgba(10, 62, 64, 0.13);
      --border-inv: rgba(245, 237, 214, 0.13);
      --serif: 'Value Serif Pro', Georgia, serif;
      --sans: 'Plus Jakarta Sans', Arial, sans-serif;
      --max: 1320px;

      /* ── TYPE SCALE ── */
      --text-base: 16px;
      /* body copy */
      --text-lg: 18px;
      /* hero body, lead paragraphs */
      --text-sm: 14px;
      /* card body, secondary copy */
      --text-xs: 12px;
      /* attribution, footer links, meta */
      --text-2xs: 11px;
      /* eyebrows, stat labels, uppercase tags */
      --text-btn: 11px;
      /* buttons */
      --text-nav: 12px;
      /* nav links */
      --text-card-title: 20px;
      /* card/principle headings */

      /* ── PREMIUM ADDITIONS ── */
      --bg-cream: #F5EDD6;
      --bg-cream-mid: #EDE0C4;
      --shadow-sm: 0 2px 8px rgba(58, 34, 6, 0.06), 0 1px 3px rgba(58, 34, 6, 0.04);
      --shadow-md: 0 8px 28px rgba(58, 34, 6, 0.10), 0 2px 8px rgba(58, 34, 6, 0.06);
      --shadow-lg: 0 20px 60px rgba(58, 34, 6, 0.13), 0 6px 20px rgba(58, 34, 6, 0.07);
      --shadow-gold: 0 8px 32px rgba(200, 148, 42, 0.22), 0 2px 8px rgba(200, 148, 42, 0.12);
      --shadow-dark: 0 20px 60px rgba(10, 62, 64, 0.22), 0 6px 20px rgba(10, 62, 64, 0.12);
      --glow-gold: 0 0 0 3px rgba(200, 148, 42, 0.18);
      --radius-btn: 5px;
      --radius-card: 3px;
      --grain-url: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: var(--text-base);
      font-weight: 400;
      line-height: 1.7;
      letter-spacing: -0.01em;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
    }

    /* ── UTILITIES ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--sans);
      font-size: var(--text-btn);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--radius-btn);
      cursor: pointer;
      transition: all 0.26s cubic-bezier(0.22, 0.6, 0.36, 1);
      white-space: nowrap;
    }

    .btn-dark {
      background: #3A2206;
      color: var(--text-inv);
      padding: 14px 28px;
    }

    .btn-dark:hover {
      background: var(--gold);
      box-shadow: var(--shadow-gold);
      transform: translateY(-2px);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--text-inv);
      padding: 14px 28px;
    }

    .btn-gold:hover {
      background: #B8841E;
      box-shadow: var(--shadow-gold);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1.5px solid var(--text);
      color: var(--text);
      padding: 13px 28px;
      border-radius: var(--radius-btn);
    }

    .btn-outline:hover {
      background: var(--text);
      color: var(--text-inv);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
    }

    .btn-outline-inv {
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      color: var(--text-inv);
      padding: 13px 28px;
      border-radius: var(--radius-btn);
    }

    .btn-outline-inv:hover {
      border-color: var(--text-inv);
      background: rgba(255, 255, 255, 0.09);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    .btn-text {
      color: var(--text);
      font-size: var(--text-btn);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-bottom: 1.5px solid var(--text);
      padding-bottom: 2px;
    }

    .btn-text:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    nav.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--shadow-md);
    }

    .nav-brand {
      display: flex;
      align-items: center;
    }

    .nav-logo {
      height: 68px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: var(--text-nav);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links .cta {
      background: #3A2206;
      color: var(--text-inv) !important;
      padding: 9px 20px;
      border-radius: var(--radius-btn);
      font-size: var(--text-btn);
      letter-spacing: 0.1em;
      transition: all 0.26s cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    .nav-links .cta:hover {
      background: var(--gold) !important;
      box-shadow: var(--shadow-gold);
      color: var(--text-inv);
    }

    /* ── HERO (full-bleed) ── */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(6, 15, 10, 0.70) 0%,
          rgba(6, 15, 10, 0.38) 40%,
          rgba(6, 15, 10, 0.50) 70%,
          rgba(6, 15, 10, 0.82) 100%);
    }

    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      text-align: center;
      padding: 0 60px 120px;
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(40px, 6vw, 70px);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--text-inv);
    }

    .hero-h1 span {
      color: var(--gold);
    }

    .hero-rule {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 0 auto 28px;
      opacity: 0.65;
    }

    .hero-p {
      font-size: var(--text-lg);
      line-height: 1.75;
      color: rgba(255, 255, 255);
      max-width: 600px;
      margin-bottom: 48px;
      font-weight: 400;
    }

    .hero-p-mid {
      margin-bottom: 0px;
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: 28px;
      justify-content: center;
    }

    /* Stat bar */
    .hero-stats {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--bg);
      border-top: 3px solid var(--gold);
    }

    .stat {
      padding: 44px 52px;
      border-right: 1px solid var(--border);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-n {
      display: block;
      font-family: var(--serif);
      font-size: 68px;
      line-height: 1;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.03em;
    }

    .stat-l {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Transparent nav (over full-bleed hero) ── */
    nav[data-transparent] {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: transparent;
      box-shadow: none;
    }

    nav[data-transparent] .nav-links a {
      color: var(--text-inv);
    }

    nav[data-transparent] .nav-links a:hover {
      color: var(--gold);
    }

    nav[data-transparent] .nav-links .cta {
      background: var(--gold) !important;
      color: var(--text-inv) !important;
    }

    nav[data-transparent] .nav-hamburger span {
      background: var(--text-inv);
    }

    /* ── PROBLEM (dark) ── */
    .problem {
      background: var(--bg-dark);
      padding: 112px 56px;
    }

    .problem-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    /* ── PROBLEM — Option A: Editorial Split ── */

    .prob-header {
      max-width: 680px;
      margin: 0 auto 80px;
      text-align: center;
    }

    .prob-headline {
      font-family: var(--serif);
      font-size: clamp(36px, 3.6vw, 56px);
      line-height: 1.08;
      letter-spacing: -0.024em;
      color: var(--text-inv);
      margin-bottom: 20px;
    }

    .prob-subhead {
      font-size: var(--text-lg);
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.45);
    }

    /* Wrapper: positioning context for the rule, max-width container */
    .prob-split-wrap {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* 2-column grid — no position:relative needed, rule is outside */
    .prob-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 80px;
      align-items: start;
    }

    /* Vertical rule — absolutely positioned relative to .prob-split-wrap */
    .prob-rule-wrap {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      pointer-events: none;
      z-index: 1;
    }

    .prob-rule-seg {
      width: 1px;
      flex: 1;
    }

    .prob-rule-seg--top {
      background: linear-gradient(to bottom,
          transparent 0%,
          var(--gold) 15%,
          var(--gold) 100%);
      transform-origin: top center;
    }

    .prob-rule-seg--bot {
      background: linear-gradient(to bottom,
          var(--gold) 0%,
          var(--gold) 85%,
          transparent 100%);
      transform-origin: bottom center;
    }

    .prob-vs {
      font-family: var(--sans);
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      flex-shrink: 0;
      padding: 12px 0;
    }

    /* Column headers */
    .prob-col-label {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding-bottom: 24px;
      margin-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .prob-col-label--left {
      color: rgba(255, 255, 255, 0.30);
      text-align: right;
    }

    .prob-col-label--right {
      color: var(--gold);
    }

    /* Row items */
    .prob-item {
      font-family: var(--serif);
      font-size: clamp(17px, 1.5vw, 22px);
      line-height: 1.45;
      letter-spacing: -0.012em;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      margin: 0;
    }

    .prob-item--left {
      font-style: italic;
      color: rgba(255, 255, 255, 0.60);
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: baseline;
      gap: 12px;
    }

    .prob-item--right {
      color: rgba(255, 255, 255, 0.88);
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    /* Gold dash — appears on both sides */
    .prob-dash {
      display: inline-block;
      width: 16px;
      height: 1.5px;
      background: rgba(200, 148, 42, 0.45);
      flex-shrink: 0;
      position: relative;
      top: -3px;
    }

    .prob-item--right .prob-dash {
      background: var(--gold);
    }

    .prob-close {
      font-family: var(--serif);
      font-size: clamp(16px, 1.5vw, 20px);
      line-height: 1.5;
      color: rgba(255, 255, 255);
      max-width: 560px;
      letter-spacing: -0.012em;
      margin: 72px auto 0;
      text-align: center;
      font-style: italic;
    }

    /* ── PURPOSE ── */
    .purpose {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 680px;
    }

    .purpose-text {
      padding: 100px 72px 100px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .purpose-text h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 3.2vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.022em;
      margin-bottom: 24px;
    }

    .purpose-text p {
      font-size: var(--text-base);
      line-height: 1.78;
      color: var(--text-muted);
      margin-bottom: 16px;
      max-width: 500px;
    }

    .purpose-text .btn-dark {
      margin-top: 20px;
    }

    .purpose-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      min-height: 680px;
    }

    .purpose-images .img-a {
      grid-row: 1 / 3;
      overflow: hidden;
    }

    .purpose-images .img-b,
    .purpose-images .img-c {
      overflow: hidden;
    }

    .purpose-images img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .purpose-images img:hover {
      transform: scale(1.04);
    }

    /* ── PHILOSOPHY (dark) ── */
    .philosophy {
      background: var(--bg-dark);
      padding: 112px 56px;
      /* padding-bottom: 56px; */
    }

    .philosophy-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 72px;
    }

    .philosophy-head h2 {
      font-family: var(--serif);
      font-size: clamp(38px, 3.6vw, 56px);
      line-height: 1.1;
      letter-spacing: -0.022em;
      color: var(--text-inv);
    }

    .philosophy-head p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.5);
      align-self: end;
    }

    .principles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.07);
    }

    .principle {
      background: var(--bg-dark);
      padding: 52px 44px;
      transition: background 0.25s;
    }

    .principle:hover {
      background: var(--bg-mid);
    }

    .p-num {
      font-family: var(--serif);
      font-size: 56px;
      line-height: 1;
      color: rgba(255, 255, 255, 0.06);
      display: block;
      margin-bottom: 24px;
    }

    .p-title {
      font-size: var(--text-card-title);
      font-weight: 600;
      color: var(--text-inv);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .p-body {
      font-size: var(--text-base);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.45);
    }

    /* ── PROGRAMS ── */
    .programs {
      background: var(--bg);
      padding: 112px 56px;
    }

    .programs-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 40px;
    }

    .programs-head h2 {
      font-family: var(--serif);
      font-size: clamp(38px, 3.6vw, 54px);
      line-height: 1.1;
      letter-spacing: -0.022em;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .prog-card {
      background: var(--bg);
      padding: 36px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      cursor: default;
      transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
      position: relative;
    }

    .prog-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.28s ease;
    }

    .prog-card:hover {
      background: var(--bg-alt);
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .prog-card:hover::after {
      transform: scaleX(1);
    }

    .prog-n {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .prog-title {
      font-size: var(--text-base);
      font-weight: 600;
      line-height: 1.35;
      color: var(--text);
    }

    .prog-desc {
      font-size: var(--text-sm);
      line-height: 1.5;
      color: var(--text-muted);
      flex: 1;
    }

    .prog-arrow {
      font-size: 16px;
      color: var(--text-muted);
      opacity: 0;
      transition: opacity 0.22s, transform 0.22s;
    }

    .prog-card:hover .prog-arrow {
      opacity: 1;
      transform: translateX(4px);
    }

    /* ── QUOTE / FOUNDER ── */
    .founder {
      background: var(--bg-cream);
      padding: 0px 56px 112px;
      text-align: center;
    }

    .founder-text {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: transparent;
      padding: 0;
    }

    .founder-icon {
      margin-bottom: 28px;
      color: var(--text);
    }

    .founder-heading {
      font-family: var(--serif);
      font-size: clamp(26px, 2.6vw, 38px);
      line-height: 1.28;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 32px;
      font-weight: 400;
    }

    .founder-text p {
      font-size: var(--text-base);
      line-height: 1.78;
      color: var(--text-muted);
      margin-bottom: 16px;
      max-width: 900px;
    }

    .founder-attr {
      margin-top: 32px;
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .founder-attr-line {
      width: 36px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .founder-attr-name {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      line-height: 1.2;
    }

    .founder-attr-role {
      font-size: var(--text-xs);
      color: var(--text-muted);
      display: block;
      margin-top: 3px;
      font-weight: 400;
    }

    /* ── LEARNING ── */
    .learning {
      background: var(--bg-cream);
      padding: 112px 56px 0px;
    }

    .learning-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 80px;
      align-items: end;
    }

    .learning-head h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 3.4vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.022em;
      color: var(--text);
    }

    .learning-head p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
    }

    .learning-head .eyebrow {
      color: var(--gold) !important;
    }

    /* Stacked card scroll effect */
    .learning-stack {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }

    .learn-card-wrap {
      position: sticky;
      height: 70vh;
    }

    .learn-card-wrap:nth-child(1) {
      top: 130px;
    }

    .learn-card-wrap:nth-child(2) {
      top: 190px;
    }

    .learn-card-wrap:nth-child(3) {
      top: 250px;
    }

    .learn-card-wrap:nth-child(4) {
      top: 310px;
    }

    .learn-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 420px;
      border-radius: 18px;
      margin-bottom: 0;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(10, 62, 64, 0.13), 0 2px 12px rgba(10, 62, 64, 0.08);
      transition: box-shadow 0.22s;
    }

    .learn-card--1 {
      background: #0A3D40;
    }

    .learn-card--2 {
      background: #0D5C63;
    }

    .learn-card--3 {
      background: #1A6B3A;
    }

    .learn-card--4 {
      background: #2A1F0A;
    }

    /* Visual panel — left side */
    .learn-card-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    .learn-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: learnKenBurns 18s ease-in-out infinite alternate;
      transition: transform 0.6s ease;
    }

    .learn-card-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.10) 50%, rgba(0, 0, 0, 0.30) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .learn-card:hover .learn-card-img {
      transform: scale(1.08);
      animation-play-state: paused;
    }

    .learn-card--2 .learn-card-img {
      animation-delay: -4s;
    }

    .learn-card--3 .learn-card-img {
      animation-delay: -8s;
    }

    .learn-card--4 .learn-card-img {
      animation-delay: -12s;
    }

    @keyframes learnKenBurns {
      0% {
        transform: scale(1) translate(0, 0);
      }

      50% {
        transform: scale(1.08) translate(-1.5%, -1%);
      }

      100% {
        transform: scale(1.04) translate(1%, 0.5%);
      }
    }

    /* Text panel — right side */
    .learn-card-body {
      padding: 64px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    .learn-card-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .learn-card h3 {
      font-family: var(--serif);
      font-size: clamp(24px, 2.4vw, 36px);
      font-weight: 500;
      color: var(--text-inv);
      line-height: 1.15;
      letter-spacing: -0.018em;
    }

    .learn-card p {
      font-size: var(--text-base);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.52);
    }

    /* ── BADGES ── */
    .badges {
      padding: 112px 56px;
    }

    .badges-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .badges-head h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 3.4vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.022em;
    }

    .badges-head p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
    }

    .badges-img {
      text-align: center;
    }

    .badges-img img {
      max-width: 100%;
      height: auto;
      margin: 0 auto;
    }

    .badges-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .badge {
      background: var(--bg);
      padding: 52px 28px 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      transition: background 0.22s;
      text-align: center;
    }

    .badge:hover {
      background: var(--bg-alt);
    }

    .badge-ring {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.25s, background 0.25s;
      background: var(--bg);
    }

    .badge:hover .badge-ring {
      border-color: var(--gold);
      background: rgba(155, 110, 36, 0.06);
    }

    .badge-ring svg {
      width: 32px;
      height: 32px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .badge-name {
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--gold);
      overflow: hidden;
      white-space: nowrap;
      padding: 14px 0;
    }

    .ticker-inner {
      display: inline-flex;
      gap: 0;
      animation: ticker 28s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      padding-right: 64px;
      font-size: var(--text-btn);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(250, 247, 239, 0.9);
    }

    .ticker-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(250, 247, 239, 0.5);
      flex-shrink: 0;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ── BENEFITS ── */
    .benefits {
      background: var(--bg-alt);
      padding: 112px 56px;
    }

    .benefits-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .benefits-head h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 3.4vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.022em;
    }

    .benefits-head p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
      align-self: end;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      background: var(--border);
      margin-bottom: 56px;
    }

    .benefit-card {
      background: var(--bg-alt);
      padding: 44px 32px;
      transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
      position: relative;
    }

    .benefit-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.28s ease;
    }

    .benefit-card:hover {
      background: var(--bg);
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .benefit-card:hover::after {
      transform: scaleX(1);
    }

    .benefit-num {
      font-family: var(--serif);
      font-size: 48px;
      line-height: 1;
      color: rgba(10, 61, 64, 0.06);
      display: block;
      margin-bottom: 20px;
    }

    .benefit-card h3 {
      font-size: var(--text-card-title);
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .benefit-card p {
      font-size: var(--text-sm);
      line-height: 1.7;
      color: var(--text-muted);
    }

    .benefits-footer {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .benefits-footer p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
    }

    .benefits-footer strong {
      color: var(--text);
      font-weight: 600;
    }

    .benefits-tagline {
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 26px);
      color: var(--text) !important;
      letter-spacing: -0.015em;
      margin-top: 8px;
    }

    /* ── TESTIMONIALS STACK (dark) ── */
    .testimonials {
      background: var(--bg-dark);
      overflow: hidden;
    }

    .testimonials--stack {
      padding: 112px 56px;
    }

    .tstack-layout {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Left column — stack */
    .tstack-left {
      position: relative;
      /* Extra vertical space so the cards peeking above don't clip */
      padding-top: 56px;
    }

    .tstack-cards {
      position: relative;
      width: 70%;
      max-width: 480px;
      margin: 0 auto;
    }

    /* ── Stack card base ── */
    .tstack-card {
      border-radius: 20px;
      background: #fff;
    }

    /*
      Back card (is-behind-2): widest, shortest.
      It peeks above and to the sides of the front card.
      scaleX(1.08) makes it wider; scaleY(0.78) makes it shorter.
      translateY(-44px) lifts it so it's visible above the front card.
    */
    .tstack-card.is-behind-2 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transform: translateY(-44px) scaleX(1.16) scaleY(0.78);
      transform-origin: bottom center;
      border: 1.5px solid #d1d5db;
      pointer-events: none;
      z-index: 0;
    }

    /*
      Middle card (is-behind-1): slightly narrower than back, taller than back,
      shorter than front. Peeks above the front card.
    */
    .tstack-card.is-behind-1 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transform: translateY(-22px) scaleX(1.08) scaleY(0.88);
      transform-origin: bottom center;
      border: 1.5px solid #d1d5db;
      pointer-events: none;
      z-index: 1;
    }

    /* Active (front) card */
    .tstack-card.is-active {
      position: relative;
      z-index: 2;
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 20px;
      padding: 40px 40px 36px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
      will-change: transform, opacity;
      min-height: 340px;
    }

    /* Avatar */
    .tstack-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #f3f4f6;
      border: 1.5px solid #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tstack-avatar svg {
      width: 28px;
      height: 28px;
    }

    .tstack-avatar svg circle,
    .tstack-avatar svg path {
      fill: #9ca3af;
    }

    /* Quote — dark text on white card */
    .tstack-quote {
      font-family: var(--serif);
      font-size: clamp(14px, 1.05vw, 16px);
      font-style: italic;
      line-height: 1.75;
      color: #374151;
      margin-bottom: 24px;
    }

    /* Name */
    .tstack-cite {
      display: flex;
      align-items: center;
      gap: 10px;
      font-style: normal;
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 28px;
    }

    .tstack-cite::before {
      content: '';
      width: 20px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* Counter + nav row */
    .tstack-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .tstack-counter {
      display: flex;
      align-items: baseline;
      gap: 4px;
      font-size: var(--text-xs);
      color: #9ca3af;
    }

    .tstack-counter-current {
      font-size: var(--text-sm);
      color: #6b7280;
    }

    /* Right column */
    .tstack-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .tstack-heading {
      font-family: var(--serif);
      font-size: clamp(28px, 2.8vw, 44px);
      line-height: 1.15;
      letter-spacing: -0.022em;
      color: var(--text-inv);
      margin-bottom: 20px;
      margin-top: 4px;
    }

    .tstack-desc {
      font-size: var(--text-base);
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 36px;
      max-width: 400px;
    }

    .tstack-right .btn-gold {
      margin-bottom: 0;
    }

    /* Arrow button — inline with counter */
    .tstack-nav-btn {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(200, 148, 42, 0.45);
      background: #fff;
      color: var(--gold-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
      transition: background 0.22s, border-color 0.22s, transform 0.22s;
      z-index: 3;
    }

    .tstack-nav-btn:hover {
      background: rgba(200, 148, 42, 0.08);
      border-color: var(--gold);
      transform: translateX(4px);
    }

    .tstack-nav-btn:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    .tstack-nav-btn svg {
      width: 20px;
      height: 20px;
    }

    .tstack-nav-btn[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
    }

    /* ── VISION MISSION STRIP ── */
    .vm-strip {
      background: var(--bg-alt);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .vm-card {
      padding: 72px 64px;
    }

    .vm-card+.vm-card {
      border-left: 1px solid var(--border);
    }

    .vm-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .vm-card h3 {
      font-family: var(--serif);
      font-size: clamp(26px, 2.4vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .vm-card p {
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 440px;
    }

    /* ── CTA ── */
    .cta {
      background: var(--bg-dark);
      padding: 120px 56px 80px;
      text-align: center;
    }

    .cta h2 {
      font-family: var(--serif);
      font-size: clamp(40px, 4.8vw, 72px);
      line-height: 1.08;
      letter-spacing: -0.025em;
      color: var(--text-inv);
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 span {
      color: var(--gold-light);
    }

    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 40px;
    }

    /* ── IMAGE MARQUEE ── */
    .image-marquee {
      background: var(--bg-dark);
      padding: 64px 0;
      overflow: hidden;
    }

    .image-marquee-track {
      display: inline-flex;
      gap: .5rem;
      animation: imageMarquee 50s linear infinite;
    }

    .marquee-circle {
      width: 180px;
      height: 220px;
      border-radius: 100px;
      overflow: hidden;
      flex-shrink: 0;
      border: 3px solid rgba(200, 148, 42, 0.4);
    }

    .marquee-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @keyframes imageMarquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .image-marquee-track {
        animation-play-state: paused;
      }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-dark);
      padding: 0 56px 44px;
    }

    .footer-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 32px;
      padding: 36px 0;
      border-top: 1px solid var(--border-inv);
      border-bottom: 1px solid var(--border-inv);
      margin-bottom: 28px;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 28px;
    }

    .footer-nav a {
      font-size: var(--text-base);
      font-weight: 600;
      color: #FFFFFF;
      text-decoration: underline;
      text-underline-offset: 4px;
      transition: color 0.2s;
    }

    .footer-nav a:hover {
      color: var(--text-inv);
    }

    .footer-social {
      display: flex;
      gap: 20px;
      flex-shrink: 0;
    }

    .footer-social a {
      color: rgba(255, 255, 255, 0.55);
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--text-inv);
    }

    .footer-bottom {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    .footer-bottom p {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.28);
    }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      padding: 6px;
      flex-shrink: 0;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.25s ease, opacity 0.2s ease;
      transform-origin: center;
    }

    .nav-hamburger.active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ══════════════════════════════════════════════
       TABLET  768px – 1024px
    ══════════════════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1024px) {

      /* Nav */
      nav {
        padding: 0 32px;
        height: 68px;
      }

      .nav-logo {
        height: 54px;
      }

      .nav-links {
        gap: 20px;
      }

      .nav-links a {
        font-size: var(--text-nav);
      }

      /* Hero */
      .hero-content {
        justify-content: center;
        padding: 80px 48px 40px;
      }

      .hero-p {
        font-size: var(--text-base);
        max-width: 480px;
      }

      .stat {
        padding: 32px 32px;
      }

      .stat-n {
        font-size: clamp(40px, 5vw, 56px);
      }

      /* Problem */
      .problem {
        padding: 88px 40px;
      }

      .prob-split {
        column-gap: 40px;
      }

      .prob-item {
        font-size: clamp(16px, 1.6vw, 20px);
        padding: 16px 0;
      }

      /* Purpose */
      .purpose {
        min-height: auto;
      }

      .purpose-text {
        padding: 72px 48px 72px 40px;
      }

      .purpose-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        min-height: 640px;
      }

      .purpose-images .img-a {
        grid-column: 1 / 3;
        grid-row: 1;
      }

      .purpose-images .img-b {
        grid-column: 1;
        grid-row: 2;
      }

      .purpose-images .img-c {
        grid-column: 2;
        grid-row: 2;
      }

      /* Philosophy */
      .philosophy {
        padding: 88px 40px;
      }

      .philosophy-head {
        gap: 40px;
        margin-bottom: 56px;
      }

      .principle {
        padding: 40px 32px;
      }

      /* Programs */
      .programs {
        padding: 88px 40px;
      }

      .programs-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .programs-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      /* Benefits */
      .benefits {
        padding: 88px 40px 20px;
      }

      .benefits-head {
        gap: 40px;
      }

      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .benefit-card {
        padding: 36px 24px;
      }

      /* Testimonials stack — tablet */
      .testimonials--stack {
        padding: 88px 40px;
      }

      .tstack-layout {
        gap: 48px;
      }

      /* Founder */
      .founder {
        padding: 0px 40px 88px;
      }

      /* Learning */
      .learning {
        padding: 88px 40px;
      }

      .learning-head {
        gap: 40px;
        margin-bottom: 48px;
      }

      .learn-card {
        min-height: 360px;
        border-radius: 14px;
      }

      .learn-card-body {
        padding: 60px 36px;
      }

      .learn-card-wrap:nth-child(1) {
        top: 80px;
      }

      .learn-card-wrap:nth-child(2) {
        top: 104px;
      }

      .learn-card-wrap:nth-child(3) {
        top: 128px;
      }

      .learn-card-wrap:nth-child(4) {
        top: 152px;
      }

      /* Badges */
      .badges {
        padding: 88px 40px;
      }

      .badges-head {
        gap: 40px;
      }

      .badges-row {
        grid-template-columns: repeat(3, 1fr);
      }

      /* VM strip */
      .vm-card {
        padding: 56px 48px;
      }

      /* CTA */
      .cta {
        padding: 96px 40px 64px;
      }

      /* Image Marquee */
      .image-marquee {
        padding: 48px 0;
      }

      .marquee-circle {
        width: 130px;
        height: 160px;
      }

      .image-marquee-track {
        gap: 32px;
      }

      /* Footer */
      footer {
        padding: 0 40px 36px;
      }
    }

    /* ══════════════════════════════════════════════
       MOBILE  ≤ 767px
    ══════════════════════════════════════════════ */
    @media (max-width: 767px) {

      /* Nav */
      nav {
        padding: 0 20px;
        height: 64px;
        position: fixed;
      }

      .nav-logo {
        height: 40px;
      }

      .nav-hamburger {
        display: flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #FAF7F2;
        padding: 24px 24px 32px;
        border-top: 1px solid rgba(58, 34, 6, 0.1);
        box-shadow: 0 8px 24px rgba(58, 34, 6, 0.08);
        z-index: 199;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(58, 34, 6, 0.08);
      }

      .nav-links li:last-child {
        border-bottom: none;
        margin-top: 16px;
      }

      .nav-links a,
      nav[data-transparent] .nav-links.open a {
        display: block;
        padding: 14px 4px;
        font-size: var(--text-base);
        color: var(--text);
        letter-spacing: 0.08em;
      }

      .nav-links a:hover {
        color: var(--gold);
      }

      .nav-links .cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        background: var(--gold);
        color: var(--text-inv) !important;
        border-radius: 1px;
      }

      /* Hero */
      .hero-content {
        justify-content: center;
        padding: 80px 24px 40px;
        align-items: center;
        text-align: center;
      }

      .hero-p {
        font-size: var(--text-base);
        max-width: 100%;
        margin-bottom: 0;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat {
        padding: 28px 20px;
      }

      .stat-n {
        font-size: clamp(36px, 9vw, 52px);
      }

      .stat:nth-child(2) {
        border-right: none;
      }

      /* Problem */
      .problem {
        padding: 64px 24px;
      }

      .prob-header {
        margin-bottom: 48px;
      }

      .prob-split {
        grid-template-columns: 1fr;
        column-gap: 0;
      }

      .prob-rule-wrap {
        display: none;
      }

      .prob-col-label--left {
        text-align: right;
      }

      .prob-col-label--right {
        margin-top: 10px;
      }

      .prob-item--left {
        text-align: right;
      }

      .prob-item {
        font-size: var(--text-base);
        padding: 14px 0;
      }

      .prob-close {
        text-align: left;
        margin-top: 48px;
      }

      /* Purpose */
      .purpose {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .purpose-text {
        padding: 52px 24px 44px;
      }

      .purpose-text p {
        max-width: 100%;
      }

      .purpose-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
        gap: 1px;
      }

      .purpose-images .img-a {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16 / 9;
      }

      .purpose-images .img-b {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 1;
      }

      .purpose-images .img-c {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1;
      }

      .purpose-images img {
        height: 100%;
      }

      /* Philosophy */
      .philosophy {
        padding: 64px 24px;
      }

      .philosophy-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 44px;
      }

      .principles {
        grid-template-columns: 1fr;
      }

      .principle {
        padding: 36px 24px;
      }

      .p-num {
        font-size: 40px;
        margin-bottom: 16px;
      }

      /* Programs */
      .programs {
        padding: 64px 24px;
      }

      .programs-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
      }

      .programs-grid {
        grid-template-columns: 1fr;
      }

      .prog-card {
        padding: 28px 20px 24px;
      }

      .prog-arrow {
        opacity: 1;
      }

      /* Benefits */
      .benefits {
        padding: 64px 24px;
      }

      .benefits-head {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .benefit-card {
        padding: 32px 24px;
      }

      .benefits-footer {
        text-align: left;
      }

      /* Testimonials stack — mobile */
      .testimonials--stack {
        padding: 64px 24px;
      }

      .tstack-layout {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .tstack-left {
        overflow: hidden;
        padding-top: 44px;
        margin-bottom: 48px;
      }

      .tstack-cards {
        width: 90%;
      }

      .tstack-card.is-behind-2 {
        transform: translateY(-32px) scaleX(1.04) scaleY(0.82);
      }

      .tstack-card.is-behind-1 {
        transform: translateY(-16px) scaleX(1.02) scaleY(0.91);
      }

      .tstack-card.is-active {
        padding: 36px 28px 32px;
      }

      .tstack-desc {
        max-width: 100%;
      }

      /* Founder */
      .founder {
        padding: 0px 24px 64px;
      }

      .founder-text p {
        max-width: 100%;
      }

      /* Learning */
      .learning {
        padding: 64px 24px 80px;
      }

      .learning-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }

      .learn-card-wrap {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        margin-bottom: 20px;
      }

      .learn-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 12px;
      }

      .learn-card-visual {
        min-height: 180px;
      }

      .learn-card-body {
        padding: 36px 28px;
      }

      /* Badges */
      .badges {
        padding: 64px 24px;
      }

      .badges-head {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
      }

      .badges-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .badge {
        padding: 36px 16px 28px;
      }

      .badge-ring {
        width: 68px;
        height: 68px;
      }

      .badge-ring svg {
        width: 26px;
        height: 26px;
      }

      /* Center last odd badge */
      .badge:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 160px;
        justify-self: center;
      }

      /* VM strip */
      .vm-strip {
        grid-template-columns: 1fr;
      }

      .vm-card {
        padding: 48px 24px;
      }

      .vm-card+.vm-card {
        border-left: none;
        border-top: 1px solid var(--border);
      }

      /* CTA */
      .cta {
        padding: 64px 24px 48px;
      }

      .cta h2 {
        max-width: 100%;
      }

      .cta-btns .btn {
        width: 100%;
        justify-content: center;
      }

      /* Image Marquee */
      .image-marquee {
        padding: 36px 0;
      }

      .marquee-circle {
        width: 100px;
        height: 120px;
        border-width: 2px;
      }

      .image-marquee-track {
        gap: 24px;
      }

      /* Footer */
      footer {
        padding: 0 24px 36px;
      }

      .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }

      .footer-nav {
        gap: 6px 20px;
      }

      .footer-bottom p {
        font-size: var(--text-xs);
      }

      /* Ticker */
      .ticker-item {
        font-size: var(--text-2xs);
      }

      /* Shared interior page utilities */
      .editorial {
        grid-template-columns: 1fr;
      }

      .editorial-image {
        min-height: 0;
        height: auto;
      }

      .editorial-image img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
        display: block;
      }

      .editorial-text {
        padding: 52px 24px;
      }

      /* Contact */
      .contact-split {
        grid-template-columns: 1fr;
      }

      .contact-info {
        padding: 40px 0;
        border-left: none;
        border-top: 1px solid var(--border);
      }

      /* FAQ */
      .faq-body {
        padding: 60px 24px;
      }

      .faq-cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }

      .faq-cta-inner h2 {
        max-width: 100%;
      }

      .faq-cta-btns {
        align-items: center;
      }

      .faq-cta-btns .btn {
        width: 100%;
        justify-content: center;
      }

      /* About */
      .about-vision-goals {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .about-vision-goal+.about-vision-goal {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 32px;
        margin-top: 0;
      }

      .about-team-placeholder {
        padding: 64px 24px;
      }

      /* Philosophy */
      .phil-statement-inner {
        grid-template-columns: 1fr;
      }

      .phil-statement-deco {
        min-height: 200px;
      }

      .phil-principle-row {
        grid-template-columns: 1fr;
      }

      .phil-principle-row .phil-deco-panel {
        min-height: 180px;
      }

      .phil-purpose-outcomes {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .phil-purpose {
        padding: 64px 24px;
      }

      /* Learning */
      .learning-intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .delivery-grid {
        grid-template-columns: 1fr;
      }

      .badges-display {
        grid-template-columns: repeat(2, 1fr);
      }

      .badge-display-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 200px;
        justify-self: center;
      }

      /* Programs */
      .programs-layout {
        grid-template-columns: 1fr;
      }

      .programs-sidebar {
        display: none;
      }

      .programs-resources-grid {
        grid-template-columns: 1fr;
      }
    }


    /* ══════════════════════════════════════════════
   SHARED INTERIOR PAGE UTILITIES
══════════════════════════════════════════════ */

    /* Active nav link */
    .nav-links .nav-active>a {
      color: var(--gold);
    }

    /* Centered content wrapper */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
    }

    /* Editorial split (text | solid/image panel) */
    .editorial {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      overflow: hidden;
    }

    .editorial-text {
      padding: 96px 72px 96px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .editorial-image {
      position: relative;
      overflow: hidden;
      min-height: 480px;
    }

    .editorial-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .editorial--reverse .editorial-image {
      order: -1;
    }

    @media (max-width: 767px) {
      .editorial {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .editorial-image {
        min-height: 0;
        height: auto;
        order: -1;
      }

      .editorial-image img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        display: block;
      }

      .editorial--reverse .editorial-image {
        order: -1;
      }

      .editorial-text {
        padding: 24px 24px 48px;
      }
    }

    /* Accordion — editorial style (ref: landinstitute.org) */
    .accordion {
      border-top: 1px solid var(--border);
    }

    .accordion-item {
      border-bottom: 1px solid var(--border);
    }

    .accordion-trigger {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 100%;
      padding: 20px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 40px;
    }

    .accordion-trigger-text {
      font-family: var(--serif);
      font-size: clamp(16px, 1.4vw, 20px);
      font-weight: 400;
      color: var(--text);
      line-height: 1.25;
      letter-spacing: -0.02em;
      transition: color 0.2s;
    }

    .accordion-trigger:hover .accordion-trigger-text {
      color: var(--gold);
    }

    .accordion-item.open .accordion-trigger-text {
      color: var(--gold);
    }

    .accordion-icon {
      flex-shrink: 0;
      font-size: 28px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1;
      margin-top: 4px;
      transition: color 0.2s;
      width: 24px;
      text-align: center;
    }

    .accordion-item.open .accordion-icon {
      color: var(--gold);
    }

    .accordion-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
    }

    .accordion-body-inner {
      padding-bottom: 24px;
      font-size: var(--text-base);
      line-height: 1.75;
      color: var(--text-muted);
    }

    .accordion-item.open .accordion-body {
      max-height: 800px;
    }


    /* ══════════════════════════════════════════════
   TABLET overrides for shared utilities
══════════════════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1024px) {
      .editorial {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .editorial-image {
        min-height: 0;
        height: auto;
        order: -1;
      }

      .editorial-image img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: cover;
        display: block;
      }

      .editorial--reverse .editorial-image {
        order: -1;
      }

      .editorial-text {
        padding: 40px 40px 56px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: CONTACT  (contact.html)
══════════════════════════════════════════════ */

    .contact-split {
      max-width: 1080px;
      margin: 0 auto;
      padding: 96px 56px;
    }

    .contact-info {
      padding-top: 0;
    }

    .contact-info h3 {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--text);
      letter-spacing: -0.01em;
      margin-bottom: 8px;
      margin-top: 16px;
    }

    .contact-info-block {
      margin-bottom: 40px;
    }

    .contact-info-block p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.7;
    }

    .contact-info-block a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-reassurance {
      margin-top: 48px;
      padding: 28px 28px;
      background: var(--bg-alt);
      border-left: 3px solid var(--gold);
    }

    .contact-reassurance p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* Legal section */
    .legal-section {
      background: var(--bg-alt);
      padding: 80px 56px;
    }

    .legal-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .legal-inner h2 {
      font-family: var(--serif);
      font-size: clamp(22px, 2.5vw, 32px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-top: 16px;
      margin-bottom: 28px;
    }

    .legal-inner p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .legal-inner p:last-child {
      margin-bottom: 0;
    }

    .legal-inner em {
      font-style: italic;
      color: var(--text-muted);
      opacity: 0.8;
    }

    /* Contact tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .contact-split {
        padding: 72px 40px;
      }

      .legal-section {
        padding: 64px 40px;
      }
    }

    /* Contact mobile */
    @media (max-width: 767px) {
      .contact-split {
        padding: 52px 24px;
      }

      .legal-section {
        padding: 52px 24px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: FAQS  (faqs.html)
══════════════════════════════════════════════ */

    .faq-body {
      background: var(--bg);
      padding: 96px 56px 120px;
    }

    .faq-inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .faq-inner>h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 40px);
      color: var(--text);
      letter-spacing: -0.02em;
      margin-top: 14px;
      margin-bottom: 52px;
    }

    .faq-num {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 4px;
    }

    /* FAQ CTA */
    .faq-cta {
      background: var(--bg-dark);
      padding: 96px 56px;
    }

    .faq-cta-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
    }

    .faq-cta-inner h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--text-inv);
      line-height: 1.08;
      letter-spacing: -0.03em;
      max-width: 640px;
      margin-top: 14px;
    }

    .faq-cta-inner h2 span {
      color: var(--gold-light);
    }

    .faq-cta-p {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      margin-top: 18px;
      max-width: 420px;
    }

    .faq-cta-btns {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-width: 200px;
    }

    .faq-cta-btns .btn {
      justify-content: center;
    }

    /* FAQ tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .faq-body {
        padding: 80px 40px;
      }

      .faq-cta {
        padding: 80px 40px;
      }

      .faq-cta-inner {
        gap: 40px;
      }
    }

    /* FAQ mobile */
    @media (max-width: 767px) {
      .faq-body {
        padding: 60px 24px;
      }

      .faq-cta {
        padding: 64px 24px;
      }

      .faq-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .faq-cta-inner h2 {
        max-width: 100%;
      }

      .faq-cta-btns {
        align-items: center;
      }

      .faq-cta-btns .btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: ABOUT  (about.html)
══════════════════════════════════════════════ */

    /* Narrative editorial */
    .about-narrative {
      background: var(--bg);
    }

    .about-narrative .editorial-text blockquote {
      font-family: var(--serif);
      font-size: clamp(22px, 2.5vw, 32px);
      line-height: 1.35;
      color: var(--text);
      border-left: 3px solid var(--gold);
      padding-left: 28px;
      letter-spacing: -0.01em;
      margin-bottom: 36px;
      font-style: italic;
    }

    .about-narrative .editorial-text p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      margin-bottom: 18px;
    }

    .about-narrative .editorial-image {
      background: var(--bg-alt);
      min-height: 560px;
    }

    .about-narrative .editorial-image img {
      object-position: center top;
    }

    /* Vision goals */
    .about-vision {
      background: var(--bg-alt);
      padding: 96px 56px;
    }

    .about-vision-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .about-vision-inner>h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 14px;
      margin-bottom: 16px;
    }

    .about-vision-inner>p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 680px;
      margin-bottom: 64px;
    }

    .about-vision-goals {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .about-vision-goal {
      padding: 0 48px 0 0;
    }

    .about-vision-goal+.about-vision-goal {
      border-left: 1px solid var(--border);
      padding-left: 48px;
      padding-right: 48px;
    }

    .about-vision-goal:last-child {
      padding-right: 0;
    }

    .about-goal-num {
      font-family: var(--serif);
      font-size: 48px;
      color: var(--gold);
      opacity: 0.35;
      line-height: 1;
      margin-bottom: 16px;
    }

    .about-vision-goal h3 {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--text);
      letter-spacing: -0.01em;
      margin-bottom: 12px;
    }

    .about-vision-goal p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* Vision/Mission — reuse vm-strip */
    .about-vm {
      background: var(--bg-dark);
    }

    /* Caveat */
    .about-caveat {
      background: var(--bg);
      padding: 96px 56px;
    }

    .about-caveat-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .about-caveat-inner h2 {
      font-family: var(--serif);
      font-size: clamp(26px, 2.5vw, 38px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-top: 14px;
      margin-bottom: 32px;
    }

    .about-caveat-inner p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      margin-bottom: 18px;
    }

    .about-caveat-inner .caveat-disclaimer {
      margin-top: 36px;
      padding: 24px 28px;
      background: var(--bg-alt);
      border-left: 3px solid var(--gold);
      font-size: var(--text-sm);
      font-style: italic;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* Team placeholder */
    .about-team {
      background: var(--bg-alt);
      padding: 96px 56px;
      text-align: center;
    }

    .about-team-inner {
      max-width: 1060px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .about-team-inner h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 14px;
      margin-bottom: 20px;
    }

    .about-team-inner p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .about-team-ring {
      width: 96px;
      height: 96px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 36px;
    }

    .about-team-ring svg {
      width: 36px;
      height: 36px;
      stroke: var(--text-muted);
    }

    /* Team grid & cards */
    .about-team-intro {
      max-width: 600px;
      margin: 0 auto 56px;
      color: var(--text-muted);
      font-size: var(--text-lg);
      text-align: center;
      line-height: 1.65;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      width: 100%;
      max-width: 1000px;
    }

    .team-grid--admin {
      margin-top: 32px;
    }

    /* Card container */
    .team-card {
      position: relative;
      aspect-ratio: 3 / 4;
      border-radius: 20px;
      overflow: hidden;
    }

    /* Full-bleed photo */
    .team-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Anita's image: adjust for her face positioning */
    .team-card:nth-child(2) .team-card-img {
      object-position: center center;
    }

    /* Content overlay with gradient */
    .team-card-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px 22px;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.5) 0%,
          rgba(0, 0, 0, 0.0) 40%,
          rgba(0, 0, 0, 0.75) 100%);
    }

    .team-card-top {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .team-card-bottom {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    /* Typography */
    .team-card-name {
      font-family: var(--serif);
      font-size: clamp(18px, 1.6vw, 22px);
      font-weight: 500;
      color: #fff;
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin: 0;
    }

    .team-card .team-card-bio {
      font-size: 14px;
      color: #fff;
      line-height: 1.55;
      margin: 0;
      text-align: left;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .team-card-tag {
      display: inline-block;
      padding: 6px 14px;
      background: #fff;
      border-radius: 100px;
      color: #1a1a1a;
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* About tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .about-vision {
        padding: 80px 40px;
      }

      .about-vision-goals {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .about-vision-goal:nth-child(3) {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 40px 0 0;
        margin-top: 40px;
      }

      .about-caveat {
        padding: 80px 40px;
      }

      .about-team {
        padding: 80px 40px;
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
    }

    /* About mobile */
    @media (max-width: 767px) {
      .about-vision {
        padding: 60px 24px;
      }

      .about-vision-inner>p {
        margin-bottom: 40px;
      }

      .about-vision-goals {
        grid-template-columns: 1fr;
      }

      .about-vision-goal+.about-vision-goal {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 32px 0 0;
        margin-top: 0;
      }

      .about-vision-goal {
        padding-right: 0;
      }

      .about-caveat {
        padding: 60px 24px;
      }

      .about-team {
        padding: 60px 24px;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .about-team-intro {
        font-size: var(--text-base);
        margin-bottom: 40px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: PHILOSOPHY  (philosophy.html)
══════════════════════════════════════════════ */

    /* Opening statement */
    .phil-statement {
      background: var(--bg);
      overflow: hidden;
    }

    .phil-statement-inner {
      display: grid;
      grid-template-columns: 55% 45%;
      min-height: 480px;
      align-items: stretch;
    }

    .phil-statement-text {
      padding: 96px 72px 96px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .phil-statement-text p {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 30px);
      line-height: 1.5;
      color: var(--text);
      letter-spacing: -0.01em;
      margin-top: 20px;
    }

    .phil-statement-text p+p {
      margin-top: 24px;
      font-family: var(--sans);
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
    }

    .phil-statement-deco {
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phil-deco-inner {
      text-align: center;
      padding: 40px;
    }

    .phil-deco-mark {
      font-family: var(--serif);
      font-size: clamp(80px, 10vw, 140px);
      color: var(--gold);
      opacity: 0.12;
      line-height: 1;
      display: block;
      letter-spacing: -0.04em;
    }

    .phil-deco-tagline {
      font-family: var(--serif);
      font-size: clamp(16px, 1.6vw, 22px);
      color: var(--text-muted);
      line-height: 1.55;
      letter-spacing: -0.01em;
      margin-top: 20px;
    }

    /* Principles — alternating rows */
    .phil-principles {
      background: var(--bg-alt);
      /* padding: 96px 0; */
    }

    .phil-principles-header {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 56px 64px;
    }

    .phil-principles-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-top: 14px;
    }

    .phil-principle-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      border-top: 1px solid var(--border);
    }

    .phil-principle-row:last-child {
      border-bottom: 1px solid var(--border);
    }

    .phil-principle-content {
      padding: 72px 72px 72px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .phil-principle-bg-num {
      position: absolute;
      top: -10px;
      right: 32px;
      font-family: var(--serif);
      font-size: 160px;
      color: var(--gold);
      opacity: 0.06;
      line-height: 1;
      pointer-events: none;
      letter-spacing: -0.04em;
    }

    .phil-principle-num {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    .phil-principle-content h3 {
      font-family: var(--serif);
      font-size: clamp(22px, 2.2vw, 32px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .phil-principle-content p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      max-width: 520px;
    }

    .phil-deco-panel {
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
      position: relative;
      overflow: hidden;
    }

    .phil-deco-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, var(--bg-mid) 0%, var(--bg-dark) 70%);
    }

    .phil-deco-panel-num {
      font-family: var(--serif);
      font-size: clamp(100px, 14vw, 200px);
      color: rgba(255, 255, 255, 0.04);
      line-height: 1;
      position: relative;
      z-index: 1;
      letter-spacing: -0.05em;
    }

    /* Even rows: content on right, deco on left */
    .phil-principle-row:nth-child(even) .phil-principle-content {
      order: 2;
      padding: 72px 56px 72px 72px;
    }

    .phil-principle-row:nth-child(even) .phil-deco-panel {
      order: 1;
    }


    /* Philosophy tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .phil-statement-inner {
        grid-template-columns: 1fr 1fr;
      }

      .phil-statement-text {
        padding: 80px 48px 80px 40px;
      }

      .phil-principles-header {
        padding: 0 40px 56px;
      }

      .phil-principle-content {
        padding: 60px 48px 60px 40px;
      }

      .phil-principle-row:nth-child(even) .phil-principle-content {
        padding: 60px 40px 60px 48px;
      }

      .phil-purpose {
        padding: 80px 40px;
      }

      .phil-purpose-outcomes {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    /* Philosophy mobile */
    @media (max-width: 767px) {
      .phil-statement-inner {
        grid-template-columns: 1fr;
      }

      .phil-statement-text {
        padding: 60px 24px;
      }

      .phil-statement-deco {
        min-height: 200px;
      }

      .phil-principles-header {
        padding: 0 24px 48px;
      }

      .phil-principle-row {
        grid-template-columns: 1fr;
      }

      .phil-principle-content {
        padding: 52px 24px;
      }

      .phil-principle-bg-num {
        font-size: 100px;
        opacity: 0.04;
      }

      .phil-deco-panel {
        min-height: 120px;
      }

      .phil-deco-panel-num {
        font-size: 80px;
      }

      .phil-principle-row:nth-child(even) .phil-principle-content {
        order: unset;
        padding: 52px 24px;
      }

      .phil-principle-row:nth-child(even) .phil-deco-panel {
        order: unset;
      }

      .phil-purpose {
        padding: 60px 24px;
      }

      .phil-purpose-outcomes {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: LEARNING  (learning.html)
══════════════════════════════════════════════ */

    /* Intro */
    .learning-intro {
      background: var(--bg);
      padding: 96px 56px;
    }

    .learning-intro-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .learning-intro-text h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 14px;
      margin-bottom: 24px;
    }

    .learning-intro-text p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      margin-bottom: 18px;
    }

    .learning-intro-stats {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
    }

    .learning-intro-stat {
      padding: 32px 36px;
      border-bottom: 1px solid var(--border);
    }

    .learning-intro-stat:last-child {
      border-bottom: none;
    }

    .learning-intro-stat-n {
      font-family: var(--serif);
      font-size: clamp(44px, 5vw, 64px);
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }

    .learning-intro-stat-n span {
      color: var(--gold);
    }

    .learning-intro-stat-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Pathways */
    /* ── Course Options (Tier 1 — horizontal cards) ── */
    .course-options-section {
      background: var(--bg-alt);
      padding: 96px 56px;
    }

    .course-options-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .course-option-card.featured {
      grid-column: 1 / -1;
    }

    .course-option-card {
      background: var(--bg);
      display: grid;
      grid-template-columns: 35% 1fr;
      overflow: hidden;
      position: relative;
      transition: box-shadow 0.22s;
    }

    .course-option-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--border);
      transition: background 0.22s;
      z-index: 1;
    }

    .course-option-card:hover {
      box-shadow: 0 8px 32px rgba(10, 62, 64, 0.08);
    }

    .course-option-card:hover::before {
      background: var(--gold);
    }

    .course-option-card.featured::before {
      background: var(--gold);
      height: 4px;
    }

    /* Image panel */
    .course-option-image {
      position: relative;
      overflow: hidden;
    }

    .course-option-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .course-option-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--gold);
      color: #fff;
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      z-index: 2;
    }

    /* Content panel */
    .course-option-content {
      padding: 44px 44px 40px;
      display: flex;
      flex-direction: column;
    }

    .course-option-content h3 {
      font-family: var(--serif);
      font-size: clamp(22px, 2.2vw, 30px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .course-option-content>p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .course-option-content .btn {
      margin-top: auto;
      align-self: flex-start;
    }


    /* Course options tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .course-options-section {
        padding: 80px 40px;
      }

      .course-options-grid {
        grid-template-columns: 1fr;
      }

      .course-option-card.featured {
        grid-column: auto;
      }

      .course-option-content {
        padding: 32px 32px 28px;
      }
    }

    /* Course options mobile */
    @media (max-width: 767px) {
      .course-options-section {
        padding: 60px 16px;
      }

      .course-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .course-option-card {
        grid-template-columns: 1fr;
      }

      .course-option-card.featured {
        grid-column: auto;
      }

      .course-option-image {
        height: 220px;
      }

      .course-option-content {
        padding: 28px 24px 24px;
      }
    }

    .pathways-section {
      background: var(--bg-alt);
      padding: 96px 56px;
    }

    .pathways-header {
      max-width: var(--max);
      margin: 0 auto 56px;
    }

    .pathways-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-top: 14px;
      margin-bottom: 14px;
    }

    .pathways-header p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 560px;
    }

    .pathways-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .pathway-card {
      background: var(--bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      transition: box-shadow 0.22s;
      position: relative;
      overflow: hidden;
    }

    .pathway-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--border);
      transition: background 0.22s;
      z-index: 1;
    }

    .pathway-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .pathway-card:hover::before {
      background: var(--gold);
    }

    .pathway-card.featured::before {
      background: var(--gold);
    }

    /* ── Left panel: details ── */
    .pathway-left {
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--border);
    }

    .pathway-duration {
      display: inline-flex;
      align-items: center;
      background: var(--bg-alt);
      color: var(--text-muted);
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 12px;
      margin-bottom: 24px;
      align-self: flex-start;
    }

    .pathway-card h3 {
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 26px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .pathway-left>p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 28px;
      flex: 0;
    }

    .pathway-details {
      list-style: none;
      border-top: 1px solid var(--border);
      padding-top: 24px;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pathway-details li {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.6;
      padding-left: 16px;
      position: relative;
    }

    .pathway-details li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 10px;
      top: 4px;
    }

    /* ── Right panel: schedule ── */
    .pathway-right {
      padding: 44px 40px;
      background: var(--bg-alt);
      display: flex;
      flex-direction: column;
    }

    .pathway-schedule-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 20px;
    }

    .pathway-schedule-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }

    .pathway-schedule-list li {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.6;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 12px;
    }

    .pathway-schedule-list li:last-child {
      border-bottom: none;
    }

    .pathway-schedule-list li strong {
      color: var(--text);
      font-weight: 600;
      font-size: var(--text-sm);
      white-space: nowrap;
    }

    /* Rhythm footer row — spans both columns */
    .pathway-schedule-list li.rhythm {
      grid-template-columns: 1fr;
      background: rgba(200, 148, 42, 0.05);
      border: 1px solid rgba(200, 148, 42, 0.15);
      border-radius: 3px;
      padding: 10px 14px;
      margin-top: 12px;
      color: var(--text-muted);
      font-size: var(--text-2xs);
      letter-spacing: 0.04em;
    }

    /* Delivery methods — reuse learn-card style */
    .delivery-section {
      background: var(--bg-dark);
      padding: 96px 56px;
    }

    .delivery-header {
      max-width: var(--max);
      margin: 0 auto 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
    }

    .delivery-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--text-inv);
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-top: 14px;
    }

    .delivery-header p {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.75;
    }

    .delivery-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border-inv);
    }

    .delivery-card {
      background: var(--bg-dark);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: background 0.22s;
    }

    .delivery-card:hover {
      background: var(--bg-mid);
    }

    .delivery-icon {
      width: 52px;
      height: 52px;
      border: 1px solid var(--border-inv);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .delivery-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold-light);
      stroke-width: 1.5;
      fill: none;
    }

    .delivery-card h3 {
      font-family: var(--serif);
      font-size: var(--text-card-title);
      color: var(--text-inv);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .delivery-card p {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
    }

    /* Badges */
    .badges-earn {
      background: var(--bg);
      padding: 96px 56px;
    }

    .badges-earn-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .badges-earn-header {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 680px;
      margin-bottom: 48px;
    }

    .badges-earn-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-top: 14px;
    }

    .badges-earn-header p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
    }

    .badges-svg-wrapper {
      display: flex;
      justify-content: center;
      margin: 56px 0 32px;
    }

    .badges-svg-wrapper img {
      max-width: 640px;
      width: 100%;
    }

    .badges-display {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .badges-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      margin: 48px 0 32px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      align-items: center;
      justify-items: center;
    }

    .badges-grid img {
      width: 160px;
      height: 160px;
      object-fit: contain;
    }

    .badge-display-card {
      border: 1px solid var(--border);
      padding: 36px 24px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      transition: box-shadow 0.22s;
    }

    .badge-display-card:hover {
      box-shadow: 0 6px 24px rgba(10, 62, 64, 0.07);
    }

    .badge-display-ring {
      width: 64px;
      height: 64px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .badge-display-ring svg {
      width: 24px;
      height: 24px;
      stroke: var(--gold);
      stroke-width: 1.5;
      fill: none;
    }

    .badge-display-card h3 {
      font-family: var(--serif);
      font-size: 15px;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .badge-display-card p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* Learning tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .learning-intro {
        padding: 80px 40px;
      }

      .learning-intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .pathways-section {
        padding: 80px 40px;
      }

      .pathway-card {
        grid-template-columns: 1fr;
      }

      .pathway-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .delivery-section {
        padding: 80px 40px;
      }

      .delivery-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }

      .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .delivery-card:last-child {
        grid-column: 1 / -1;
      }

      .badges-earn {
        padding: 80px 40px;
      }

      .badges-earn-header {
        gap: 16px;
      }

      .badges-display {
        grid-template-columns: repeat(3, 1fr);
      }

      .badge-display-card:nth-child(4) {
        grid-column: 1;
      }

      .badge-display-card:nth-child(5) {
        grid-column: 2;
      }

      .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }

      .badges-grid img {
        width: 100px;
        height: 100px;
      }
    }

    /* Learning mobile */
    @media (max-width: 767px) {
      .learning-intro {
        padding: 60px 24px;
      }

      .learning-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .pathways-section {
        padding: 60px 16px;
      }

      .pathway-card {
        grid-template-columns: 1fr;
      }

      .pathway-left {
        padding: 32px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .pathway-right {
        padding: 32px 24px;
      }

      .pathway-schedule-list li {
        grid-template-columns: 90px 1fr;
      }

      .delivery-section {
        padding: 60px 24px;
      }

      .delivery-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
      }

      .delivery-grid {
        grid-template-columns: 1fr;
        background: none;
        gap: 1px;
      }

      .delivery-card {
        padding: 32px 24px;
      }

      .badges-earn {
        padding: 60px 24px;
      }

      .badges-earn-header {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .badges-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .badge-display-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 200px;
        justify-self: center;
      }

      .badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .badges-grid img {
        width: 120px;
        height: 120px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: PROGRAMS  (programs.html)
══════════════════════════════════════════════ */

    .programme-overview {
      max-width: var(--max);
      margin: 0 auto 72px;
      padding: 0 56px;
      text-align: left;
    }

    .programme-overview__lead {
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 24px);
      color: var(--bg-dark);
      line-height: 1.55;
      letter-spacing: -0.01em;
      max-width: 720px;
    }

    .programme-overview__body {
      font-family: var(--sans);
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-top: 20px;
      max-width: 640px;
    }

    @media (max-width: 768px) {
      .programme-overview {
        padding: 0 24px;
        margin-bottom: 48px;
      }
      .programme-overview__lead {
        font-size: 18px;
      }
    }

    /* Curriculum intro split — light bg, editorial left + stats right */
    .prog-intro-split {
      background: var(--bg-alt);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
    }

    .prog-intro-text {
      padding: 56px 72px 56px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--border);
    }

    .prog-intro-text .eyebrow {
      color: var(--gold);
    }

    .prog-intro-text h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-top: 16px;
      margin-bottom: 24px;
    }

    .prog-intro-text p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      max-width: 480px;
    }

    .prog-intro-tagline {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 0.08em;
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      opacity: 0.75;
    }

    .prog-intro-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
    }

    .prog-intro-stat {
      padding: 36px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .prog-intro-stat:nth-child(2n) {
      border-right: none;
    }

    .prog-intro-stat:nth-child(3),
    .prog-intro-stat:nth-child(4) {
      border-bottom: none;
    }

    .prog-intro-n {
      font-family: var(--serif);
      font-size: clamp(52px, 5vw, 76px);
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .prog-intro-n span {
      color: var(--gold);
    }

    .prog-intro-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Responsive */
    @media (min-width: 768px) and (max-width: 1024px) {
      .prog-intro-split {
        grid-template-columns: 1fr;
      }

      .prog-intro-text {
        padding: 72px 40px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .prog-intro-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .prog-intro-stat {
        padding: 40px 32px;
        border-right: 1px solid var(--border-inv);
        border-bottom: 1px solid var(--border-inv);
      }

      .prog-intro-stat:nth-child(2n) {
        border-right: none;
      }

      .prog-intro-stat:nth-child(3),
      .prog-intro-stat:nth-child(4) {
        border-bottom: none;
      }
    }

    @media (max-width: 767px) {
      .prog-intro-split {
        grid-template-columns: 1fr;
      }

      .prog-intro-text {
        padding: 60px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border-inv);
      }

      .prog-intro-text p {
        max-width: 100%;
      }

      .prog-intro-stats {
        grid-template-columns: 1fr 1fr;
      }

      .prog-intro-stat {
        padding: 32px 20px;
      }
    }

    /* Programs layout: sticky sidebar + main */
    .programs-layout-section {
      background: var(--bg-alt);
      padding: 0;
      display: grid;
      grid-template-columns: 340px 1fr;
      align-items: stretch;
    }

    .programs-layout {
      display: contents;
    }

    .programs-layout>main {
      padding: 96px 56px 96px 72px;
    }

    .programs-sidebar {
      position: sticky;
      top: 72px;
      height: calc(100vh - 72px);
      background: var(--bg-dark);
      padding: 96px 40px 96px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow-y: auto;
      scrollbar-width: none;
    }

    .programs-sidebar::-webkit-scrollbar {
      display: none;
    }

    .programs-sidebar-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 32px;
      display: block;
    }

    .programs-sidebar-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .programs-sidebar-nav a {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      transition: color 0.2s;
      line-height: 1.4;
      border-bottom: 1px solid var(--border-inv);
    }

    .programs-sidebar-nav li:first-child a {
      border-top: 1px solid var(--border-inv);
    }

    .programs-sidebar-nav a:hover {
      color: var(--gold-light);
    }

    .programs-sidebar-nav a.active {
      color: var(--text-inv);
      font-weight: 600;
    }

    .programs-sidebar-num {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--gold-light);
      opacity: 0.7;
      flex-shrink: 0;
      width: 22px;
    }


    /* Individual program blocks */
    .program-block {
      padding: 64px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .program-block:first-child {
      padding-top: 0;
    }

    .program-block:last-child {
      border-bottom: none;
    }

    .program-block-num {
      font-family: var(--serif);
      font-size: clamp(64px, 8vw, 100px);
      color: var(--gold);
      opacity: 0.12;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: -12px;
    }

    .program-block h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 2.5vw, 36px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-bottom: 16px;
    }

    .program-block>p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      max-width: 640px;
      margin-bottom: 32px;
    }

    .program-klo-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    .program-klo {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .program-klo li {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.65;
      padding-left: 20px;
      position: relative;
    }

    .program-klo li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 14px;
      line-height: 1.65;
    }

    /* ─── PROGRAM COURSES SECTION ───────────────────────────── */
    .program-courses {
      margin: 32px 0 32px;
    }

    .program-courses-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
      display: block;
    }

    .program-course-item {
      border-bottom: 1px solid var(--border);
    }

    .program-course-item:first-of-type {
      margin-top: 16px;
    }

    /* Non-interactive (title-only) */
    .program-course-item--static {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 0;
    }

    .program-course-item--static .program-course-num {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--gold);
      opacity: 0.6;
      flex-shrink: 0;
      width: 22px;
    }

    .program-course-item--static .program-course-title {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    /* Interactive course header */
    .program-course-header {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 18px 0;
      text-align: left;
      color: var(--text);
    }

    .program-course-header:hover .program-course-title {
      color: var(--gold);
    }

    .program-course-num {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--gold);
      opacity: 0.6;
      flex-shrink: 0;
      width: 22px;
    }

    .program-course-title {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      flex: 1;
      transition: color 0.2s;
    }

    .program-course-toggle {
      flex-shrink: 0;
      font-size: 20px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1;
      width: 20px;
      text-align: center;
      transition: color 0.2s;
    }

    .program-course-item.open .program-course-toggle {
      color: var(--gold);
    }

    .program-course-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease;
    }

    .program-course-item.open .program-course-body {
      max-height: 500px;
    }

    .program-course-topics {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 4px 0 20px 36px;
    }

    .program-course-topics li {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.65;
      position: relative;
      padding-left: 16px;
    }

    .program-course-topics li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 14px;
      line-height: 1.65;
      opacity: 0.7;
    }

    /* Featured course (has named lessons) */
    .program-course-item--featured {
      background: rgba(200, 148, 42, 0.04);
      border-radius: 3px;
      border-color: rgba(200, 148, 42, 0.18) !important;
      padding: 0 12px;
      margin: 4px 0;
    }

    .program-course-badge {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(200, 148, 42, 0.1);
      border-radius: 3px;
      padding: 3px 8px;
      flex-shrink: 0;
    }

    /* ─── PROGRAM BADGES (achievement badges earned per school) ── */
    .program-badges {
      margin-top: 48px;
    }

    .program-badges-label {
      display: block;
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .program-badges-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 32px;
      max-width: 700px;
    }

    .prog-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
      text-align: center;
    }

    .prog-badge-ring img {
      width: 150px;
      height: 150px;
      object-fit: contain;
    }

    .prog-badge-name {
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    /* Responsive badge grid */
    @media (max-width: 767px) {
      .program-badges-grid {
        gap: 24px;
      }

      .prog-badge-ring img {
        width: 90px;
        height: 90px;
      }

      .prog-badge-name {
        font-size: 14px;
      }
    }

    /* ─── PATHWAY NOTE (weekend / special scheduling callout) ── */
    .pathway-note {
      background: rgba(200, 148, 42, 0.05);
      border-left: 3px solid var(--gold);
      border-radius: 3px;
      padding: 14px 16px;
      margin: 0 0 24px;
    }

    .pathway-note-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 8px;
    }

    .pathway-note p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    .pathway-note a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* Certificate variant — more prominent text */
    .pathway-note--cert p {
      font-family: var(--serif);
      font-size: var(--text-base);
      color: var(--text);
    }

    .pathway-note-sub {
      display: block;
      font-size: var(--text-xs);
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* Spacing when these notes sit inside a program-block */
    .program-block .pathway-note {
      margin-top: 32px;
      margin-bottom: 0;
    }

    .program-block .pathway-note+.pathway-note {
      margin-top: 12px;
    }

    /* Resource files */
    .programs-resources {
      background: var(--bg);
      padding: 96px 56px;
    }

    .programs-resources-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .programs-resources-inner h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 14px;
      margin-bottom: 14px;
    }

    .programs-resources-inner>p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 52px;
    }

    .programs-resources-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .resource-card {
      border: 1px solid var(--border);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      text-decoration: none;
      transition: box-shadow 0.22s, border-color 0.22s;
    }

    .resource-card:hover {
      box-shadow: 0 6px 24px rgba(10, 62, 64, 0.07);
      border-color: var(--gold);
    }

    .resource-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .resource-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      stroke-width: 1.5;
      fill: none;
    }

    .resource-card h3 {
      font-family: var(--serif);
      font-size: 17px;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .resource-card p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.65;
      flex: 1;
    }

    .resource-card-cta {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
    }

    /* Programs CTA */
    .programs-cta {
      background: var(--bg-dark);
      padding: 96px 56px;
      text-align: center;
    }

    .programs-cta-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .programs-cta-inner h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 56px);
      color: var(--text-inv);
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-top: 14px;
      margin-bottom: 20px;
    }

    .programs-cta-inner h2 span {
      color: var(--gold-light);
    }

    .programs-cta-inner p {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .programs-cta-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Programs tablet */
    @media (min-width: 768px) and (max-width: 1024px) {

      /* programs-page-intro removed */
      .programs-layout-section {
        display: block;
        padding: 0;
      }

      .programs-layout {
        display: block;
      }

      .programs-layout>main {
        padding: 80px 40px;
      }

      .programs-sidebar {
        display: none;
      }

      .programs-resources {
        padding: 80px 40px;
      }

      .programs-resources-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .programs-cta {
        padding: 80px 40px;
      }
    }

    /* Programs mobile */
    @media (max-width: 767px) {

      /* programs-page-intro removed */
      .programs-layout-section {
        display: block;
        padding: 0;
      }

      .programs-layout {
        display: block;
      }

      .programs-layout>main {
        padding: 60px 24px;
      }

      .programs-sidebar {
        display: none;
      }

      .program-block {
        padding: 52px 0;
      }

      .programs-resources {
        padding: 60px 24px;
      }

      .programs-resources-grid {
        grid-template-columns: 1fr;
      }

      .programs-cta {
        padding: 64px 24px;
      }

      .programs-cta-btns {
        flex-direction: column;
        align-items: center;
      }

      .programs-cta-btns .btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* ══════════════════════════════════════════════
   CONTACT — IMAGE HERO & ICON CARDS
══════════════════════════════════════════════ */

    /* Full-bleed split hero replacing page-hero on contact */
    .contact-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      margin-top: 0;
    }

    .contact-hero-content {
      background: var(--bg-dark);
      padding: 160px 64px 80px 56px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .contact-hero-content .eyebrow {
      color: var(--gold-light);
    }

    .contact-hero-content h1 {
      font-family: var(--serif);
      font-size: clamp(40px, 4.5vw, 64px);
      color: var(--text-inv);
      line-height: 1.06;
      letter-spacing: -0.03em;
      margin-top: 16px;
    }

    /* Contact icon cards */
    .contact-icon-cards {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-icon-card {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-icon-card:first-child {
      border-top: none;
    }

    .contact-icon-card:last-child {
      border-bottom: none;
    }

    .eyebrow--no-dash::before {
      display: none;
    }

    .contact-icon-ring {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .contact-icon-ring svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      stroke-width: 1.5;
    }

    .contact-icon-card h4 {
      font-family: var(--sans);
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    .contact-icon-card p,
    .contact-icon-card a {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.65;
      text-decoration: none;
    }

    .contact-icon-card a {
      color: var(--gold);
      font-weight: 600;
    }

    .contact-icon-card a:hover {
      text-decoration: underline;
    }

    /* Small image in contact info panel */
    .contact-info-image {
      margin-top: 32px;
      overflow: hidden;
      border-radius: 1px;
      aspect-ratio: 16 / 9;
      position: relative;
    }

    .contact-info-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .contact-info-image:hover img {
      transform: scale(1.03);
    }


    /* ══════════════════════════════════════════════
   FAQS — IMAGE STRIP & CATEGORY LABELS
══════════════════════════════════════════════ */

    .faq-image-strip {
      display: grid;
      grid-template-columns: 1fr 1.4fr 1fr;
      min-height: 420px;
      background: var(--bg-alt);
      overflow: hidden;
    }

    .faq-strip-img {
      position: relative;
      overflow: hidden;
    }

    .faq-strip-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .faq-strip-img:hover img {
      transform: scale(1.04);
    }

    .faq-strip-imgs-stack {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }

    .faq-strip-text {
      padding: 72px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
      background: var(--bg);
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    .faq-strip-text blockquote {
      font-family: var(--serif);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.5;
      color: var(--text);
      border-left: 3px solid var(--gold);
      padding-left: 24px;
      letter-spacing: -0.01em;
      font-style: italic;
      margin: 20px 0 24px;
    }

    .faq-strip-text p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* Category headings inside FAQ body */
    .faq-category {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 4px;
      padding-bottom: 20px;
    }

    .faq-category-icon {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-category-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      stroke-width: 1.5;
    }

    .faq-category span {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* FAQ image strip responsive */
    @media (min-width: 768px) and (max-width: 1024px) {
      .faq-image-strip {
        grid-template-columns: 1fr 1.2fr;
        grid-template-rows: auto auto;
      }

      .faq-strip-img--tall {
        display: none;
      }

      .faq-strip-text {
        padding: 56px 40px;
        grid-column: 1;
        grid-row: 1;
        border: none;
        border-bottom: 1px solid var(--border);
      }

      .faq-strip-imgs-stack {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-rows: unset;
        grid-template-columns: 1fr 1fr;
        min-height: 260px;
      }
    }

    @media (max-width: 767px) {
      .faq-image-strip {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .faq-strip-img--tall {
        display: none;
      }

      .faq-strip-text {
        padding: 52px 24px;
        border: none;
        border-bottom: 1px solid var(--border);
      }

      .faq-strip-imgs-stack {
        grid-template-rows: unset;
        grid-template-columns: 1fr 1fr;
        min-height: 200px;
        background: none;
        gap: 1px;
      }
    }

    /* ══════════════════════════════════════════════
   FAQS — SPLIT HERO (replaces image strip)
══════════════════════════════════════════════ */


    /* ══════════════════════════════════════════════
   SHARED: PAGE HERO (inner pages — typographic)
══════════════════════════════════════════════ */

    .page-hero {
      background: var(--bg);
      padding: 120px 56px 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-hero__eyebrow {
      font-family: var(--sans);
      font-size: var(--text-2xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--gold);
    }

    .page-hero__title {
      font-family: var(--serif);
      font-size: clamp(36px, 4vw, 40px);
      color: var(--bg-dark);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-top: 16px;
      max-width: 800px;
    }

    .page-hero__subtitle {
      font-family: var(--sans);
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-top: 20px;
      max-width: 680px;
    }

    .page-hero__image {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      margin-bottom: 80px;
      padding: 0 56px;
    }

    .page-hero__image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 18px;
      object-fit: cover;
      max-height: 520px;
    }

    @media (max-width: 1024px) {
      .page-hero__image {
        padding: 0 40px;
      }
    }

    @media (max-width: 768px) {
      .page-hero {
        padding: 120px 24px 48px;
      }

      .page-hero__title {
        font-size: clamp(28px, 6vw, 40px);
      }

      .page-hero__image {
        padding: 0 24px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: ABOUT  (about.html) — HERO & IMAGE BREAK
══════════════════════════════════════════════ */


    /* Pull quote — full width, cream bg */
    .about-pull-quote {
      background: var(--bg-alt);
      padding: 80px 56px;
      border-bottom: 1px solid var(--border);
    }

    .about-pull-quote-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .about-pull-quote blockquote {
      font-family: var(--serif);
      font-size: clamp(24px, 3vw, 32px);
      color: var(--text);
      line-height: 1.35;
      letter-spacing: -0.02em;
      font-style: italic;
      border-left: 4px solid var(--gold);
      padding-left: 40px;
      max-width: 880px;
    }

    /* Narrative editorial reuses .editorial + .editorial-text + .editorial-image */
    .about-narrative .editorial-text h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 14px;
      margin-bottom: 28px;
    }

    .about-narrative .editorial-text p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .about-narrative .editorial-text p strong {
      color: var(--text);
      font-weight: 600;
    }

    /* Image break — 3 panel: img | text | img */
    .about-image-break {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      min-height: 380px;
      background: var(--bg-dark);
    }

    .about-image-break-img {
      position: relative;
      overflow: hidden;
    }

    .about-image-break-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .about-image-break-img:hover img {
      transform: scale(1.04);
    }

    .about-image-break-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 56px 48px;
      background: var(--bg-dark);
      border-left: 1px solid var(--border-inv);
      border-right: 1px solid var(--border-inv);
    }

    .about-image-break-text p {
      font-family: var(--serif);
      font-size: clamp(16px, 1.6vw, 22px);
      color: var(--text-inv);
      line-height: 1.6;
      letter-spacing: -0.01em;
      font-style: italic;
      opacity: 0.85;
      margin-bottom: 20px;
    }

    .about-image-break-text span {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
      opacity: 0.7;
    }

    /* vm-strip reused from home — just wrap in .about-vm */
    .about-vm .vm-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .about-vm .vm-card {
      background: var(--bg-dark);
      padding: 80px 64px 80px 56px;
    }

    .about-vm .vm-card+.vm-card {
      border-left: 1px solid var(--border-inv);
    }

    .about-vm .vm-label {
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
      display: block;
      margin-bottom: 20px;
    }

    .about-vm .vm-card h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 2.5vw, 36px);
      color: var(--text-inv);
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .about-vm .vm-card p {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.78;
      max-width: 440px;
    }

    /* About tablet */
    @media (min-width: 768px) and (max-width: 1024px) {
      .about-pull-quote {
        padding: 64px 40px;
      }

      .about-image-break {
        grid-template-columns: 1fr 1fr;
      }

      .about-image-break-img--b {
        display: none;
      }

      .about-image-break-text {
        padding: 48px 40px;
      }

      .about-vm .vm-card {
        padding: 64px 48px 64px 40px;
      }

      .about-narrative .editorial-image {
        min-height: 0;
      }
    }

    /* About mobile */
    @media (max-width: 767px) {
      .about-pull-quote {
        padding: 52px 24px;
      }

      .about-pull-quote blockquote {
        padding-left: 24px;
        font-size: clamp(20px, 5vw, 28px);
      }

      .about-narrative .editorial-image {
        min-height: 0;
      }

      .about-image-break {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .about-image-break-img {
        min-height: 260px;
      }

      .about-image-break-img--b {
        display: none;
      }

      .about-image-break-text {
        padding: 48px 24px;
        border: none;
        border-top: 1px solid var(--border-inv);
      }

      .about-vm .vm-strip {
        grid-template-columns: 1fr;
      }

      .about-vm .vm-card {
        padding: 56px 24px;
      }

      .about-vm .vm-card+.vm-card {
        border-left: none;
        border-top: 1px solid var(--border-inv);
      }
    }


    /* ══════════════════════════════════════════════
   PAGE: PHILOSOPHY  (philosophy.html)
══════════════════════════════════════════════ */


    /* ─── Philosophy Statement ─── */
    .phil-statement {
      background: var(--bg);
    }

    .phil-statement-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }

    .phil-statement-text {
      max-width: calc(var(--max) / 2);
      margin-left: auto;
      padding: 96px 72px 96px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .phil-statement-text h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 16px 0 28px;
    }

    .phil-statement-text p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.78;
      margin-bottom: 18px;
    }

    .phil-statement-deco {
      position: relative;
      overflow: hidden;
      min-height: 480px;
    }

    .phil-deco-inner {
      position: absolute;
      inset: 0;
    }

    .phil-deco-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* ─── Six Principles ─── */
    .phil-principles {
      background: var(--bg-dark);
    }

    .phil-principles-head {
      padding: 96px 56px 64px;
      max-width: var(--max);
      margin: 0 auto;
    }

    .phil-principles-head h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 4vw, 60px);
      color: var(--text-inv);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-top: 16px;
    }

    .phil-principle-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .phil-principle-row--reverse .phil-principle-text {
      order: 2;
    }

    .phil-principle-row--reverse .phil-deco-panel {
      order: 1;
    }

    .phil-principle-text {
      padding: 56px 72px 72px 56px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .phil-num {
      font-family: var(--serif);
      font-size: 96px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
      margin-bottom: 12px;
    }

    .phil-principle-text h3 {
      font-family: var(--serif);
      font-size: clamp(22px, 2.2vw, 32px);
      color: var(--text-inv);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .phil-principle-text p {
      font-size: var(--text-base);
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.78;
      max-width: 480px;
    }

    .phil-deco-panel {
      position: relative;
      overflow: hidden;
      min-height: 360px;
    }

    .phil-deco-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ─── Purpose Section ─── */
    .phil-purpose {
      background: var(--bg-alt);
      padding: 96px 56px;
    }

    .phil-purpose-inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .phil-purpose-inner h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 56px);
      color: var(--text);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 16px 0 20px;
    }

    .phil-purpose-lead {
      font-size: var(--text-lg);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 56px;
      max-width: 680px;
    }

    .phil-purpose-outcomes {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 64px;
    }

    .phil-outcome {
      background: var(--bg-alt);
      padding: 40px 28px 44px;
      position: relative;
      border-right: 1px solid var(--border);
    }

    .phil-outcome:last-child {
      border-right: none;
    }

    .phil-outcome-num {
      font-family: var(--serif);
      font-size: var(--text-lg);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 48px;
    }

    .phil-outcome-bg-num {
      position: absolute;
      top: -10px;
      right: 16px;
      font-family: var(--serif);
      font-size: 120px;
      line-height: 1;
      color: var(--gold);
      opacity: 0.06;
      pointer-events: none;
      user-select: none;
    }

    .phil-outcome p {
      font-family: var(--serif);
      font-size: clamp(15px, 1.3vw, 18px);
      color: var(--text);
      line-height: 1.55;
      letter-spacing: -0.01em;
      position: relative;
      z-index: 1;
    }

    .phil-purpose-close {
      font-size: var(--text-lg);
      color: var(--text-muted);
      line-height: 1.75;
      font-style: italic;
      border-left: 4px solid var(--gold);
      padding-left: 28px;
      max-width: 760px;
    }

    /* ─── Philosophy Tablet ─── */
    @media (min-width: 768px) and (max-width: 1024px) {
      .phil-statement-inner {
        grid-template-columns: 1fr;
      }

      .phil-statement-text {
        padding: 64px 40px;
      }

      .phil-statement-deco {
        display: none;
      }

      .phil-principles-head {
        padding: 72px 40px 48px;
      }

      .phil-principle-row {
        grid-template-columns: 1fr;
      }

      .phil-principle-row--reverse .phil-principle-text {
        order: 1;
      }

      .phil-principle-row--reverse .phil-deco-panel {
        order: -1;
      }

      .phil-deco-panel {
        min-height: 280px;
        order: -1;
      }

      .phil-principle-text {
        order: 1;
        padding: 48px 40px 56px;
      }

      .phil-num {
        font-size: 72px;
      }

      .phil-purpose {
        padding: 72px 40px;
      }

      .phil-purpose-outcomes {
        grid-template-columns: repeat(3, 1fr);
      }

      .phil-outcome {
        padding: 36px 24px 40px;
      }

      .phil-outcome:nth-child(3) {
        border-right: none;
      }

      .phil-outcome:nth-child(n+4) {
        border-top: 1px solid var(--border);
      }

      .phil-outcome:last-child {
        border-right: 1px solid var(--border);
      }
    }

    /* ─── Philosophy Mobile ─── */
    @media (max-width: 767px) {
      .phil-statement-inner {
        grid-template-columns: 1fr;
      }

      .phil-statement-text {
        padding: 48px 24px;
      }

      .phil-statement-deco {
        display: none;
      }

      .phil-principles-head {
        padding: 56px 24px 40px;
      }

      .phil-principle-row {
        grid-template-columns: 1fr;
      }

      .phil-principle-row--reverse .phil-principle-text {
        order: 1;
      }

      .phil-principle-row--reverse .phil-deco-panel {
        order: -1;
      }

      .phil-deco-panel {
        min-height: 220px;
        order: -1;
      }

      .phil-principle-text {
        order: 1;
        padding: 36px 24px 48px;
      }

      .phil-num {
        font-size: 56px;
      }

      .phil-purpose {
        padding: 56px 24px;
      }

      .phil-purpose-outcomes {
        grid-template-columns: 1fr;
      }

      .phil-outcome {
        padding: 32px 24px 36px;
        border-right: none;
        border-top: 1px solid var(--border);
      }

      .phil-outcome:first-child {
        border-top: none;
      }

      .phil-outcome:nth-child(3) {
        border-right: none;
      }

      .phil-outcome:last-child {
        border-right: none;
      }

      .phil-outcome-bg-num {
        font-size: 80px;
      }

      .phil-purpose-close {
        padding-left: 20px;
      }
    }

    /* ══════════════════════════════════════════════
   PAGE: LEARNING  (learning.html)
══════════════════════════════════════════════ */

    /* ─── Why Journey section ─── */
    .learn-why {
      background: var(--bg-alt);
      padding: 96px 56px;
    }

    .learn-why-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .learn-why-left {
      position: sticky;
      top: 112px;
    }

    .learn-why-quote {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--text);
      line-height: 1.18;
      letter-spacing: -0.025em;
      margin-bottom: 32px;
      padding-left: 28px;
      border-left: 3px solid var(--gold);
    }

    .learn-why-attr {
      font-size: var(--text-sm);
      color: var(--text-muted);
      letter-spacing: 0.06em;
      padding-left: 28px;
    }

    .learn-why-reasons {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .learn-why-reason {
      padding: 36px 0;
      border-bottom: 1px solid var(--border);
    }

    .learn-why-reason:first-child {
      padding-top: 0;
    }

    .learn-why-reason:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .learn-why-reason h3 {
      font-family: var(--serif);
      font-size: clamp(18px, 1.8vw, 24px);
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .learn-why-reason p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
    }

    .learn-why-reason-num {
      font-family: var(--serif);
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 0.2em;
      font-weight: 700;
      text-transform: uppercase;
      display: block;
      margin-bottom: 14px;
    }

    /* ─── Includes bar ─── */
    .learn-includes {
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }

    .learn-includes-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--border);
      gap: 1px;
    }

    .learn-includes-item {
      background: var(--bg);
      padding: 48px 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: background 0.22s;
    }

    .learn-includes-item:hover {
      background: var(--bg-alt);
    }

    .learn-includes-num {
      font-family: var(--serif);
      font-size: clamp(36px, 3vw, 52px);
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.04em;
      opacity: 0.12;
    }

    .learn-includes-item h3 {
      font-family: var(--serif);
      font-size: var(--text-card-title);
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .learn-includes-item p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── Responsive: Learning ─── */

    @media (max-width: 767px) {
      .learn-why {
        padding: 60px 24px;
      }

      .learn-why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .learn-why-left {
        position: static;
      }

      .learn-includes-inner {
        grid-template-columns: 1fr;
      }

      .learn-includes-item {
        padding: 36px 24px;
      }
    }

    /* ============================================================
   === ANIMATIONS ===
   Scroll-reveal system, stagger utilities, line-draw accents,
   and scale-in images. All animations respect prefers-reduced-motion.
   ============================================================ */

    /* ── 1. KEYFRAMES ── */

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.97);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-28px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(28px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes lineDraw {
      from {
        transform: scaleX(0);
      }

      to {
        transform: scaleX(1);
      }
    }

    @keyframes tstackCardExit {
      from {
        opacity: 1;
        transform: translateX(0);
      }

      to {
        opacity: 0;
        transform: translateX(-16px);
      }
    }

    @keyframes tstackCardEnter {
      from {
        opacity: 0;
        transform: translateX(16px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .tstack-card.is-exiting {
      animation: tstackCardExit 0.1s ease-out both;
      pointer-events: none;
    }

    .tstack-card.is-entering {
      animation: tstackCardEnter 0.18s ease-out both;
    }

    /* ── 2. BASE ANIMATION STATES ── */

    [data-animate] {
      opacity: 0;
    }

    [data-animate].visible {
      animation-fill-mode: both;
      animation-duration: 0.7s;
      animation-timing-function: cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    [data-animate="fade-up"].visible {
      animation-name: fadeInUp;
    }

    [data-animate="scale-in"].visible {
      animation-name: scaleIn;
      animation-duration: 0.9s;
    }

    [data-animate="slide-left"].visible {
      animation-name: slideInLeft;
    }

    [data-animate="slide-right"].visible {
      animation-name: slideInRight;
    }

    [data-animate="line-draw"].visible {
      animation-name: lineDraw;
      animation-duration: 0.6s;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ── 3. STAGGER DELAY UTILITIES ── */

    .stagger-1 {
      animation-delay: 0.08s;
    }

    .stagger-2 {
      animation-delay: 0.16s;
    }

    .stagger-3 {
      animation-delay: 0.24s;
    }

    .stagger-4 {
      animation-delay: 0.32s;
    }

    .stagger-5 {
      animation-delay: 0.40s;
    }

    /* ── 4. TRANSFORM-ORIGIN FIX FOR LINE-DRAW ── */

    .hero-rule,
    .founder-attr-line {
      transform-origin: left center;
    }

    /* ── 5. PREFERS-REDUCED-MOTION OVERRIDE ── */

    @media (prefers-reduced-motion: reduce) {

      [data-animate],
      [data-animate].visible {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
      }

      .stagger-1,
      .stagger-2,
      .stagger-3,
      .stagger-4,
      .stagger-5 {
        animation-delay: 0s !important;
      }

      .tstack-card.is-exiting,
      .tstack-card.is-entering {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ══════════════════════════════════════════════
   VISUAL ENRICHMENT LAYER
   Dark section gradients, grain texture, hero
   warmth, typography, and animation upgrades.
══════════════════════════════════════════════ */

    /* ── Dark section gradients ── */
    .problem,
    .testimonials,
    .faq-cta,
    .delivery-section,
    .about-vm {
      background: linear-gradient(160deg, #0A3D40 0%, #0B4A4E 55%, #083238 100%);
    }

    .cta,
    .image-marquee {
      background: var(--bg-dark);
    }

    .programs-cta {
      background: linear-gradient(135deg, #083238 0%, #0A3D40 40%, #0D5C63 100%);
    }

    .ticker {
      background: linear-gradient(90deg, #B8841E 0%, #C8942A 30%, #E0AE4A 70%, #C8942A 100%);
    }

    /* ── Grain texture on dark sections ── */
    .problem,
    .testimonials,
    .cta,
    .image-marquee,
    .delivery-section,
    footer,
    .programs-cta,
    .faq-cta {
      position: relative;
    }

    .problem::after,
    .testimonials::after,
    .cta::after,
    .image-marquee::after,
    .delivery-section::after,
    footer::after,
    .programs-cta::after,
    .faq-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--grain-url);
      background-size: 256px 256px;
      background-repeat: repeat;
      pointer-events: none;
      z-index: 0;
    }

    /* Lift content above grain */
    .problem-inner,
    .learning-head,
    .learning-stack,
    .learn-card-visual,
    .learn-card-body,
    .testimonials-head,
    .testimonials-grid,
    .cta h2,
    .cta-btns,
    .cta-eyebrow,
    .image-marquee-track,
    .delivery-header,
    .delivery-grid,
    .footer-bar,
    .footer-bottom,
    .page-hero__eyebrow,
    .page-hero__title,
    .page-hero__subtitle,
    .programs-cta-inner,
    .faq-cta-inner {
      position: relative;
      z-index: 1;
    }

    /* ── Hero stat bar enhancement ── */
    .hero-stats {
      box-shadow: inset 0 3px 0 var(--gold), var(--shadow-sm);
    }

    /* ── Cream background swaps ── */
    .benefits {
      background: var(--bg-cream);
    }

    .benefit-card {
      background: var(--bg-cream);
    }

    .benefit-card:hover {
      background: var(--bg);
    }

    .vm-strip {
      background: var(--bg-cream);
    }

    .about-vision {
      background: var(--bg-cream);
    }

    .pathways-section {
      background: var(--bg-cream);
    }

    .learn-why {
      background: var(--bg-cream);
    }

    /* ── Testimonial quote mark ── */
    .testimonial-card {
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 24px;
      font-family: var(--serif);
      font-size: 120px;
      line-height: 1;
      color: rgba(200, 148, 42, 0.10);
      pointer-events: none;
      z-index: 0;
    }

    .testimonial-card blockquote,
    .testimonial-card cite {
      position: relative;
      z-index: 1;
    }

    /* ── Learn card image hover lift ── */

    /* ── Philosophy deco panel radial gradient ── */
    .phil-deco-panel::before {
      background: radial-gradient(ellipse at 40% 60%,
          rgba(200, 148, 42, 0.08) 0%,
          var(--bg-mid) 40%,
          var(--bg-dark) 75%);
    }

    /* ── Gradient typography ── */
    .hero-h1 span {
      background: linear-gradient(135deg, #C8942A 0%, #E0AE4A 60%, #C8942A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--gold);
      /* fallback */
    }

    .cta h2 span {
      background: linear-gradient(135deg, #E0AE4A 0%, #F0C060 50%, #E0AE4A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--gold-light);
      /* fallback */
    }

    .stat-n {
      background: linear-gradient(135deg, var(--text) 0%, #6B3D10 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--text);
      /* fallback */
    }

    .eyebrow::before {
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
      box-shadow: 0 0 6px rgba(200, 148, 42, 0.35);
    }

    /* ── New keyframes ── */
    @keyframes floatUp {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    @keyframes pulseGold {
      0% {
        box-shadow: 0 0 0 0 rgba(200, 148, 42, 0.35);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(200, 148, 42, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(200, 148, 42, 0);
      }
    }

    /* ── Apply float to hero rule ── */
    .hero-rule {
      animation: lineDraw 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, floatUp 4s ease-in-out 0.8s infinite;
    }

    /* ── Pulse gold buttons ── */

    /* ── Eased stagger timing ── */
    .stagger-1 {
      animation-delay: 0.07s;
    }

    .stagger-2 {
      animation-delay: 0.17s;
    }

    .stagger-3 {
      animation-delay: 0.30s;
    }

    .stagger-4 {
      animation-delay: 0.46s;
    }

    .stagger-5 {
      animation-delay: 0.58s;
    }

    /* ════════════════════════════════════════════════════
   10-MONTH MASTER PROGRAM
   ════════════════════════════════════════════════════ */

    /* ── Course Hero ── */
    .course-hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .course-hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .course-hero__bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .course-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(6, 15, 10, 0.55) 0%,
          rgba(6, 15, 10, 0.20) 40%,
          rgba(6, 15, 10, 0.60) 75%,
          rgba(6, 15, 10, 0.90) 100%);
    }

    .course-hero__content {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 0 64px 80px;
      gap: 40px;
    }

    .course-hero__text {
      max-width: 640px;
    }

    .course-hero__eyebrow {
      display: block;
      font-size: var(--text-base);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 16px;
    }

    .course-hero__title {
      font-family: var(--serif);
      font-size: clamp(28px, 6.5vw, 50px);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--text-inv);
      margin: 0 0 20px;
    }

    .course-hero__desc {
      font-size: var(--text-base);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.72);
      max-width: 480px;
      margin: 0;
    }

    .course-hero__cta {
      flex-shrink: 0;
      align-self: flex-end;
    }

    /* ── Programme Info Bar ── */
    .programme-info-bar {
      background: var(--bg);
      border-top: 3px solid var(--gold);
    }

    .programme-info-bar__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 44px 56px;
      display: grid;
      grid-template-columns: 3fr 1px 2fr;
      gap: 0 56px;
      align-items: start;
    }

    .programme-info-bar__left {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .programme-info-bar__tagline {
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
      margin: 0;
    }

    .programme-info-bar__left .btn {
      align-self: flex-start;
    }

    .pace-toggle {
      display: inline-flex;
      background: rgba(58, 34, 6, 0.06);
      border-radius: var(--radius-btn);
      padding: 4px;
    }

    .pace-toggle__btn {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      background: transparent;
      border: none;
      border-radius: var(--radius-btn);
      padding: 6px 16px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .pace-toggle__btn.is-active {
      background: var(--text);
      color: #fff;
    }

    .programme-info-bar__meta {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .programme-info-bar__item {
      display: flex;
      align-items: baseline;
      gap: 16px;
    }

    .programme-info-bar__label {
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text);
      min-width: 120px;
      flex-shrink: 0;
    }

    .programme-info-bar__value {
      font-size: var(--text-base);
      font-weight: 400;
      color: var(--text);
    }

    .programme-info-bar__divider {
      width: 1px;
      align-self: stretch;
      background: var(--text);
      opacity: 0.12;
    }

    .programme-info-bar__right {
      padding-left: 8px;
    }

    .programme-info-bar__right-title {
      font-family: var(--serif);
      font-size: var(--text-card-title);
      color: var(--text);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .programme-info-bar__includes-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .programme-info-bar__includes-list li {
      font-size: var(--text-base);
      color: var(--text);
      padding-left: 16px;
      position: relative;
      line-height: 1.4;
    }

    .programme-info-bar__includes-list li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 700;
    }

    /* ── Programme Timeline ── */
    .programme-timeline {
      background: var(--bg);
      padding: 100px 56px 120px;
    }

    .programme-timeline__header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 72px;
    }

    .programme-timeline__header h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3.5vw, 42px);
      color: var(--text);
      margin: 12px 0 16px;
    }

    .programme-timeline__header p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.7;
    }

    .programme-timeline__track {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }

    .programme-timeline__line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--gold);
      opacity: 0.25;
      transform: translateX(-50%);
    }

    /* Timeline nodes */
    .programme-timeline__node {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
      align-items: start;
    }

    .programme-timeline__node:last-child {
      margin-bottom: 0;
    }

    .programme-timeline__dot {
      position: absolute;
      left: 50%;
      top: 24px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--bg);
      transform: translateX(-50%);
      z-index: 2;
      box-shadow: 0 0 0 4px rgba(200, 148, 42, 0.15);
    }

    .programme-timeline__dot--break {
      background: var(--bg);
      border: 3px solid var(--gold);
      box-shadow: none;
    }

    /* Left node: card on the left, right empty */
    .programme-timeline__node--left .programme-timeline__card,
    .programme-timeline__node--left .programme-timeline__break-content {
      grid-column: 1;
      text-align: right;
    }

    /* Right node: left empty, card on the right */
    .programme-timeline__node--right .programme-timeline__card,
    .programme-timeline__node--right .programme-timeline__break-content {
      grid-column: 2;
    }

    /* Card styling */
    .programme-timeline__card {
      background: var(--bg-cream);
      padding: 28px 32px;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
    }

    .programme-timeline__month {
      display: inline-block;
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .programme-timeline__name {
      font-family: var(--serif);
      font-size: clamp(18px, 2vw, 22px);
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .programme-timeline__desc {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 12px;
    }

    .programme-timeline__topics {
      list-style: none;
      padding: 0;
      margin: 0 0 12px;
    }

    .programme-timeline__node--left .programme-timeline__topics {
      direction: rtl;
    }

    .programme-timeline__topics li {
      font-size: var(--text-base);
      color: var(--text-muted);
      padding: 3px 0;
      direction: ltr;
    }

    .programme-timeline__topics li::before {
      content: '› ';
      color: var(--gold);
      font-weight: 700;
    }

    .programme-timeline__badge {
      display: inline-block;
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 3px 10px;
      border-radius: 3px;
      margin-right: 6px;
      margin-top: 4px;
    }

    .programme-timeline__node--left .programme-timeline__badge {
      margin-right: 0;
      margin-left: 6px;
    }

    /* Break nodes (lighter treatment) */
    .programme-timeline__break-content {
      padding: 16px 0;
    }

    .programme-timeline__break-content .programme-timeline__name {
      font-size: clamp(16px, 1.8vw, 19px);
      color: var(--text-muted);
      font-style: italic;
    }

    .programme-timeline__break-content .programme-timeline__desc {
      font-size: var(--text-base);
      margin-bottom: 0;
    }

    /* ── Programme Outcomes ── */
    .programme-outcomes {
      padding: 100px 56px;
      background: var(--bg-cream);
    }

    .programme-outcomes__inner {
      max-width: var(--max);
      margin: 0 auto;
      text-align: center;
    }

    .programme-outcomes__inner h2 {
      font-family: var(--serif);
      font-size: clamp(26px, 3vw, 38px);
      color: var(--text);
      margin: 12px 0 48px;
    }

    .programme-outcomes__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }

    .programme-outcomes__item {
      padding: 32px 24px;
    }

    .programme-outcomes__icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 20px;
    }

    .programme-outcomes__icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: var(--gold);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .programme-outcomes__item h3 {
      font-family: var(--serif);
      font-size: var(--text-card-title);
      color: var(--text);
      margin-bottom: 10px;
    }

    .programme-outcomes__item p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── Compact FAQ (used on programme pages and FAQs page) ── */
    .faq-body--compact {
      padding: 72px 56px 80px;
    }

    @media (max-width: 1024px) {
      .faq-body--compact {
        padding: 72px 40px 80px;
      }
    }

    @media (max-width: 767px) {
      .faq-body--compact {
        padding: 64px 24px 64px;
      }
    }

    /* ── Utility for centered section headers with hardcoded spacing ── */
    .section-header-wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 56px 56px 0;
      text-align: center;
    }

    @media (max-width: 1024px) {
      .section-header-wrap {
        padding: 48px 40px 0;
      }
    }

    @media (max-width: 767px) {
      .section-header-wrap {
        padding: 40px 24px 0;
      }
    }

    /* ── 10-Month Programme Responsive ── */
    @media (max-width: 1024px) {
      .course-hero__content {
        padding: 0 40px 64px;
      }

      .programme-info-bar__inner {
        padding: 36px 40px;
      }

      .programme-timeline {
        padding: 80px 40px 100px;
      }

      .programme-outcomes {
        padding: 80px 40px;
      }
    }

    @media (max-width: 767px) {
      .course-hero {
        height: 100svh;
      }

      .course-hero__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0 24px 48px;
        gap: 28px;
      }

      .course-hero__title {
        font-size: clamp(36px, 8vw, 52px);
      }

      .course-hero__desc {
        font-size: var(--text-base);
      }

      .course-hero__cta {
        align-self: flex-start;
      }

      .programme-info-bar__inner {
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .programme-info-bar__divider {
        display: none;
      }

      .programme-info-bar__right {
        padding-left: 0;
      }

      .programme-timeline {
        padding: 64px 24px 80px;
      }

      .programme-timeline__header {
        margin-bottom: 48px;
      }

      .programme-timeline__line {
        left: 16px;
        transform: none;
      }

      .programme-timeline__node {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 40px;
        margin-bottom: 40px;
      }

      .programme-timeline__dot {
        left: 16px;
        transform: translateX(-50%);
      }

      .programme-timeline__node--left .programme-timeline__card,
      .programme-timeline__node--left .programme-timeline__break-content,
      .programme-timeline__node--right .programme-timeline__card,
      .programme-timeline__node--right .programme-timeline__break-content {
        grid-column: 1;
        text-align: left;
      }

      .programme-timeline__node--left .programme-timeline__topics {
        direction: ltr;
      }

      .programme-timeline__node--left .programme-timeline__badge {
        margin-left: 0;
        margin-right: 6px;
      }

      .programme-outcomes {
        padding: 64px 24px;
      }

      .programme-outcomes__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }