/* ═══════════════════════════════════════════════════════════
   THINK·ME PRESS — main.css
   Tokens via CSS custom properties injected by wp_add_inline_style
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS ── */

:root {
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;
  /* Base colours — overridden by inline CSS from Customizer */
  --ink:       #1E2035;
  --gold:      #f0c419;
  --blue:      #3B97D3;
  --parchment: #F7F4EE;
  --slate:     #2C3E50;
  --white:     #ffffff;
  --black:     #000000;
  /* Derived — fallbacks for browsers without color-mix() */
  --ink-80:    rgba(30, 32, 53, 0.8);
  --ink-50:    rgba(30, 32, 53, 0.5);
  --ink-20:    rgba(30, 32, 53, 0.2);
  --ink-08:    rgba(30, 32, 53, 0.08);
  --gold-dark: #c9a10e;
  --gold-40:   rgba(240, 196, 25, 0.4);
  --gold-20:   rgba(240, 196, 25, 0.2);
  --blue-dark: #2d7aad;
  /* Spacing scale */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;
  --sp-30: 120px;
  /* Layout */
  --container: 1280px;
  --container-text: 760px;
  --radius-sm: 2px;
  --radius: 4px;
  /* Transitions */
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --dur-fast: .15s;
  --dur: .25s;
  --dur-slow: .5s;
}

/* ── RESET ── */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

ul, ol { list-style: none; }

input, select, textarea, button { font-family: inherit; }

/* ── ACCESSIBILITY ── */

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

.skip-link:focus {
  position: fixed; top: var(--sp-4); left: var(--sp-4);
  background: var(--gold); color: var(--ink);
  padding: var(--sp-3) var(--sp-6);
  font-weight: 500; z-index: 9999;
  width: auto; height: auto; clip: unset;
}

/* ── TYPOGRAPHY ── */

.t-kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-50);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}

.t-kicker::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); flex-shrink: 0;
  transform-origin: left; animation: none;
}

.t-kicker--light { color: rgba(240,196,25,.6); }

.t-kicker--light::before { background: var(--gold); }

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 600; line-height: 1.1; color: var(--ink);
}

.section-h2 em { font-style: italic; color: var(--blue); }

.section-h2--light { color: var(--white); }

.section-h2--gold em { color: var(--gold-dark); }

.section-intro { font-size: 15px; color: var(--slate); line-height: 1.82; }

.section-body { font-size: 15px; color: var(--slate); line-height: 1.82; margin-bottom: 16px; }

/* Prose / rich text */

.prose { max-width: var(--container-text); }

.prose h2 { font-family: var(--serif); font-size: clamp(24px,2.4vw,34px); font-weight: 600; color: var(--ink); margin: 40px 0 14px; }

.prose h3 { font-family: var(--serif); font-size: clamp(19px,2vw,26px); font-weight: 600; color: var(--ink); margin: 32px 0 12px; }

.prose p { margin-bottom: 18px; color: var(--slate); line-height: 1.85; }

.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--slate); line-height: 1.8; }

.prose ul { list-style: disc; }

.prose ol { list-style: decimal; }

.prose a { color: var(--blue); border-bottom: 1px solid var(--gold-20); transition: border-color var(--dur); }

.prose a:hover { border-color: var(--blue); }

.prose blockquote { border-left: 3px solid var(--gold); padding-left: 22px; margin: 32px 0; font-family: var(--serif); font-size: 21px; font-style: italic; color: var(--ink); line-height: 1.5; }

.prose strong { font-weight: 500; color: var(--ink); }

.prose hr { border: none; border-top: 1px solid var(--ink-08); margin: 36px 0; }

.prose img { border-radius: var(--radius); margin: 28px 0; }

.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }

.prose th { background: var(--parchment); padding: 10px 14px; text-align: left; font-weight: 500; border-bottom: 2px solid var(--gold-20); }

.prose td { padding: 10px 14px; border-bottom: 1px solid var(--ink-08); }

.prose pre { background: var(--ink); color: #e8e6f0; padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 24px 0; font-size: 13px; }

.prose code { background: var(--parchment); padding: 2px 6px; border-radius: 2px; font-size: .88em; }

/* ── LAYOUT ── */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-20);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  width: 100%;
  min-width: 0;
}

.section-split > * { min-width: 0; }

.section-split--top { align-items: start; }

.section-header { margin-bottom: 56px; }

.section-header--split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: end;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  cursor: pointer; white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform var(--dur-fast) ease,
              box-shadow var(--dur) ease;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::after { opacity: 1; }

.btn:active { transform: scale(.97); }

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-primary:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn-gold:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink-20); }

.btn-outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }

.btn-outline-light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-80); background: none; border: none;
  padding: 0 0 2px; cursor: pointer;
  border-bottom: 1.5px solid var(--gold);
  transition: color var(--dur), border-color var(--dur);
}

.btn-ghost:hover { color: var(--blue); border-color: var(--blue); }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink);
  border: 2px solid var(--gold); border-radius: var(--radius-sm);
  padding: 15px 28px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur-fast);
}

.btn-submit:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-submit:active { transform: scale(.97); }

/* ── NAVIGATION ── */

.site-nav {
  position: relative; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(247,244,238,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-20);
}

.site-nav.nav--sticky { position: sticky; }

.nav-logo a { display: flex; }

.nav-logo svg, .nav-logo img { height: 26px; width: auto; }

.nav-logo-text { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-80); transition: color var(--dur); }

.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.nav-cta { padding: 9px 20px !important; font-size: 12px !important; }

/* Hamburger */

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }

.ham-bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform var(--dur), opacity var(--dur); }

.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(2) { opacity: 0; }

.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */

.nav-drawer {
  display: flex; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100vh - 64px);
  background: var(--parchment); z-index: 190;
  padding: var(--sp-10) var(--sp-6) var(--sp-16);
  flex-direction: column; gap: var(--sp-4);
  transform: translateY(-16px); opacity: 0;
  pointer-events: none; visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility .3s;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer.is-open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }

.nav-drawer-links { display: flex; flex-direction: column; }

.nav-drawer-links a { font-size: 18px; font-weight: 500; color: var(--ink); padding: 14px 0; transition: color var(--dur); }

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

.nav-drawer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-8);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  align-self: flex-start;
}
.nav-drawer-cta:hover { background: var(--ink); color: var(--white); }

/* ── BREADCRUMB ── */

.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-50); margin-bottom: var(--sp-6);
}
.prog-hero .breadcrumb { color: rgba(255,255,255,.4); margin-bottom: var(--sp-6); }
.prog-hero .breadcrumb a { color: rgba(255,255,255,.4); }
.prog-hero .breadcrumb a:hover { color: var(--gold); }
.prog-hero .breadcrumb span { color: rgba(255,255,255,.25); }

.breadcrumb a { transition: color var(--dur); }

.breadcrumb a:hover { color: var(--blue); }

/* ── POST META ── */

.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); }

.post-meta__sep { opacity: .4; }

/* ── CARD TAG ── */

.card-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }

.card-tag::before { content: ''; display: block; width: 18px; height: 2px; background: var(--gold); flex-shrink: 0; }

/* ── FORMS ── */

.frow { margin-bottom: 16px; }

.frow label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 6px; }

.frow input, .frow select, .frow textarea {
  width: 100%; background: var(--white); border: 1px solid var(--ink-20);
  border-radius: var(--radius-sm); color: var(--ink);
  font-family: var(--sans); font-size: 14px; padding: 12px 14px;
  outline: none; transition: border-color var(--dur), background var(--dur);
  -webkit-appearance: none; appearance: none;
}

.frow input:focus, .frow select:focus, .frow textarea:focus { border-color: var(--gold); background: #fffef8; }

.frow input::placeholder, .frow textarea::placeholder { color: var(--ink-50); }

.frow select { cursor: pointer; color: var(--ink-80); }

.frow textarea { resize: vertical; min-height: 90px; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Dark form variant */

.form-dark .frow input,
.form-dark .frow select,
.form-dark .frow textarea {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: var(--white);
}

.form-dark .frow input:focus,
.form-dark .frow select:focus,
.form-dark .frow textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

.form-dark .frow input::placeholder,
.form-dark .frow textarea::placeholder { color: rgba(255,255,255,.3); }

.form-dark .frow label { color: rgba(255,255,255,.42); }

.form-card { background: var(--parchment); border: 1px solid var(--ink-08); padding: 40px 36px; min-height: 80px; }

/* FluentForms overrides */

.ff-btn-submit { background: var(--gold) !important; color: var(--ink) !important; border: 2px solid var(--gold) !important; border-radius: var(--radius-sm) !important; font-family: var(--sans) !important; font-size: 13px !important; font-weight: 500 !important; letter-spacing: .06em !important; text-transform: uppercase !important; transition: background var(--dur), color var(--dur), border-color var(--dur) !important; }

.ff-btn-submit:hover { background: var(--ink) !important; border-color: var(--ink) !important; color: var(--white) !important; }

/* ── PAGE HERO ── */

.page-hero { position: relative; overflow: hidden; padding: 140px 0 80px; }


.archive-page .page-hero { padding: 80px 0 56px; }

.section-archive-grid { padding: 56px 0 96px; }

.page-hero--parchment { background: var(--parchment); }

.page-hero--dark { background: var(--ink); }

.page-hero__top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

.page-hero__wm { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 380px; font-weight: 700; line-height: 1; color: var(--gold); opacity: .04; pointer-events: none; user-select: none; }

.page-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-10); max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-20); }

.page-hero__inner--split { grid-template-columns: 1fr 1fr; }

.page-hero__h1 { font-family: var(--serif); font-size: clamp(48px,5.5vw,80px); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; color: var(--ink); }

.page-hero__h1 em { font-style: italic; color: var(--blue); }

.page-hero__h1--light { color: var(--white); }

.page-hero__sub { font-size: 17px; font-weight: 300; color: var(--slate); line-height: 1.78; opacity: .9; }

.page-hero__sub--light { color: rgba(255,255,255,.52); }

/* ── HOME HERO ── */

.home-hero { background: var(--parchment); min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 120px 0 80px; overflow: hidden; }

.home-hero__top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

.home-hero__wm { position: absolute; right: -40px; top: 50%; transform: translateY(-55%); font-family: var(--serif); font-size: 440px; font-weight: 700; color: var(--gold); opacity: .05; pointer-events: none; user-select: none; line-height: 1; }

.home-hero__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-20); }

.home-hero__kicker { margin-bottom: 32px; }

/* ── HOME HERO SPLIT LAYOUT ── */
.home-hero__split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--sp-16); align-items: center; }
.home-hero__left  { display: flex; flex-direction: column; }
.home-hero__right { display: flex; align-items: center; justify-content: flex-end; }
.home-hero__stats { display: flex; flex-direction: column; gap: var(--sp-6); padding-left: var(--sp-10); border-left: 2px solid var(--gold-20); }

.home-hero__h1 { font-family: var(--serif); font-size: clamp(46px,5.8vw,86px); font-weight: 600; line-height: 1.05; letter-spacing: -.025em; color: var(--ink); }

.home-hero__h1 em { font-style: italic; color: var(--blue); }

.home-hero__sub { font-size: 17px; font-weight: 300; color: var(--slate); max-width: 480px; line-height: 1.78; margin-top: 24px; opacity: .9; }

.home-hero__actions { display: flex; align-items: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }

.home-hero__stats { display: flex; align-items: flex-start; gap: 32px; margin-top: 56px; }

.hstat { border-left: 3px solid var(--gold); padding-left: 16px; }

.hstat-n { display: block; font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--ink); line-height: 1; }

.hstat-l { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-50); margin-top: 4px; }

/* ── SECTIONS BACKGROUNDS ── */

.section-vision, .section-prog-cta, .section-contact-main { background: var(--white); padding: var(--sp-30) 0; }

.section-cartography { background: var(--ink); padding: 110px 0 80px; overflow: hidden; }

.section-why, .section-mission, .section-timeline, .section-resources, .section-partnership-types, .section-faq, .section-related { background: var(--parchment); padding: var(--sp-30) 0; border-top: 1px solid var(--gold-20); }
/* ── Related Programs Grid ── */
.related-prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }

.section-stats, .section-testi, .section-newsletter, .section-prog-alignment { background: var(--ink); padding: 72px 0; }

.section-partners { background: var(--white); padding: 72px 0; border-top: 1px solid var(--gold-20); border-bottom: 1px solid var(--gold-20); }

.section-insights { background: var(--white); padding: var(--sp-30) 0; }

.section-programs { background: var(--white); padding: 72px 0 100px; }

.section-articles { background: var(--white); padding: 72px 0 100px; }

.section-featured-article { background: var(--white); padding: 80px 0 56px; }

.section-components { background: var(--parchment); padding: var(--sp-24) 0; border-top: 1px solid var(--gold-20); }

.section-prog-overview { background: var(--white); padding: var(--sp-24) 0; }

.section-team { background: var(--white); padding: var(--sp-30) 0; }

.section-about-cta, .section-partner-contact { background: var(--white); padding: var(--sp-30) 0; }

.error-hero { background: var(--parchment); min-height: 100vh; padding: 140px 0 80px; position: relative; overflow: hidden; }

.error-hero__top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

.error-hero__wm { position: absolute; right: 40px; bottom: -40px; font-family: var(--serif); font-size: 320px; font-weight: 700; line-height: 1; color: var(--gold); opacity: .06; pointer-events: none; user-select: none; }

.error-hero__inner { padding-top: 40px; }

.error-hero__title { font-family: var(--serif); font-size: clamp(40px,5vw,72px); font-weight: 600; color: var(--ink); margin-bottom: 16px; }

.error-hero__sub { font-size: 17px; color: var(--slate); max-width: 520px; line-height: 1.8; margin-bottom: 32px; }

.error-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.error-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }

.error-link-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--ink-08); padding: 20px 22px; transition: border-color var(--dur), transform var(--dur); }

.error-link-card:hover { border-color: var(--gold-40); transform: translateY(-2px); }

.error-link-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }

.error-link-sub { font-size: 13px; color: var(--ink-50); margin-top: 4px; }

.error-search { margin-top: 40px; max-width: 480px; }

.error-quick-label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 20px; margin-top: 56px; }

/* ── CARTOGRAPHY ── */

.carto-head { padding-bottom: 0; }

.carto-head .container { padding-bottom: 0; }

.carto-h2 { font-family: var(--serif); font-size: clamp(34px,3.2vw,50px); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 10px; }

.carto-sub { font-size: 14px; color: rgba(255,255,255,.42); margin-bottom: 48px; }

.carto-track:active { cursor: grabbing; }

.carto-track::-webkit-scrollbar { height: 3px; }

.carto-track::-webkit-scrollbar-thumb { background: var(--gold); }

.cstage { flex: 0 0 252px; padding: 0 24px; position: relative; cursor: pointer; transition: transform .25s var(--ease-out); }

.cstage:first-child { padding-left: 0; }

.cstage:hover { transform: translateY(-6px); }

.cstage::after { content: ''; position: absolute; top: 19px; right: -4px; width: 28px; height: 2px; background: linear-gradient(to right, var(--gold), rgba(240,196,25,.15)); }

.cstage:last-child::after { display: none; }

.cnode { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold); background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background var(--dur); position: relative; z-index: 2; }

.cnode-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); transition: background var(--dur); }

.cstage:hover .cnode, .cstage.active .cnode { background: var(--gold); }

.cstage:hover .cnode-dot, .cstage.active .cnode-dot { background: var(--ink); }

.cstage-link { text-decoration: none; }

.cstage-num { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(240,196,25,.45); margin-bottom: 7px; }

.cstage-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 8px; }

.cstage-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }

.cstage-tag { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(240,196,25,.25); padding: 4px 10px; border-radius: var(--radius-sm); }

.carto-meta { padding-top: 40px; border-top: 1px solid rgba(255,255,255,.07); margin-top: 44px; }

.carto-meta__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.cmeta-item { padding-left: 18px; border-left: 2px solid rgba(240,196,25,.28); }

.cmeta-label { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 7px; }

.cmeta-val { font-family: var(--serif); font-size: 17px; color: rgba(255,255,255,.8); }

/* ── PROGRAM CARDS ── */

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

.prog-card { background: var(--white); border: 1px solid var(--ink-08); display: flex; flex-direction: column; overflow: hidden; position: relative; transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur); }

.prog-card:hover { border-color: var(--gold-40); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,32,53,.08); }

.prog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); opacity: 0; transition: opacity var(--dur); }

.prog-card:hover::before { opacity: 1; }

.prog-card--featured { grid-column: span 2; flex-direction: row; }

.prog-card__link { display: flex; width: 100%; height: 100%; text-decoration: none; flex-direction: column; padding: 28px 24px; }

.prog-card__body { padding: 36px 32px; flex: 1; display: flex; flex-direction: column; }

.prog-card--featured .prog-card__body { padding: 48px 44px; }

.prog-card__stage { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }

.prog-card__title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }

.prog-card--featured .prog-card__title { font-size: 30px; }

.prog-card__desc { font-size: 13px; color: var(--slate); line-height: 1.72; flex: 1; margin-bottom: 20px; }

.prog-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--ink-08); }

.prog-card__age { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); }

.prog-card__arrow { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); transition: letter-spacing var(--dur); }

.prog-card:hover .prog-card__arrow { letter-spacing: .18em; }

.prog-card__side { background: var(--ink); width: 200px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 28px; position: relative; overflow: hidden; }

.prog-card__stat-n { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--white); line-height: 1; display: block; }

.prog-card__stat-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 6px; display: block; }

.prog-card__badge { display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(240,196,25,.25); padding: 4px 10px; border-radius: var(--radius-sm); }

/* Program hero */

.prog-hero { background: var(--ink); min-height: 100vh; padding: 120px 0 80px; position: relative; overflow: hidden; }

.prog-hero__top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

.prog-hero__wm { position: absolute; right: -30px; bottom: -60px; font-family: var(--serif); font-size: 320px; font-weight: 700; line-height: 1; color: var(--gold); opacity: .04; pointer-events: none; user-select: none; }

.prog-hero__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-20); display: grid; grid-template-columns: 1fr 380px; gap: var(--sp-20); align-items: center; }

.prog-stage-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,196,25,.1); border: 1px solid rgba(240,196,25,.25); border-radius: var(--radius-sm); padding: 6px 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }

.prog-stage-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }


.prog-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.prog-hero__h1 { font-family: var(--serif); font-size: clamp(44px,5.5vw,78px); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; color: var(--white); margin-bottom: 20px; }

.prog-hero__h1 em { font-style: italic; color: var(--gold); }

.prog-hero__tagline { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }

.prog-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Glance card */

.prog-glance-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 36px 32px; position: relative; z-index: 2; }

.prog-glance-card__title { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }

.prog-glance-card__row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }

.prog-glance-card__row:last-of-type { border-bottom: none; }

.prog-glance-card__label { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }

.prog-glance-card__val { font-size: 14px; font-weight: 500; color: var(--white); text-align: right; max-width: 180px; }

.prog-glance-card__cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

.prog-glance-card__cta p { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 14px; }

/* Overview strip */

.overview-strip { background: var(--gold); padding: 24px 0; }

.ostrip-item { flex: 1; min-width: 160px; padding: 0 28px; border-right: 1px solid rgba(30,32,53,.15); }

.ostrip-item:first-child { padding-left: 0; }

.ostrip-item:last-child { border-right: none; }

.ostrip-label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(30,32,53,.55); margin-bottom: 4px; }

.ostrip-val { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink); }

/* ── COMPONENT CARDS ── */

.comp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.comp-card { background: var(--white); border: 1px solid var(--ink-08); padding: 32px 28px; position: relative; transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur); }

.comp-card:hover { border-color: var(--gold-40); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(30,32,53,.07); }

.comp-card__accent { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); opacity: 0; transition: opacity var(--dur); }

.comp-card:hover .comp-card__accent { opacity: 1; }

.comp-card__num { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--gold-dark); margin-bottom: 14px; }

.comp-card__title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }

.comp-card__body { font-size: 13px; color: var(--slate); line-height: 1.72; margin-bottom: 16px; }

.comp-card__meta { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); padding-top: 14px; border-top: 1px solid var(--ink-08); }

/* ── INSIGHT CARDS ── */

.icard-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; align-items: stretch; }

.icard { background: var(--parchment); border: 1px solid transparent; display: flex; flex-direction: column; transition: border-color var(--dur), background var(--dur), transform var(--dur); overflow: hidden; position: relative; height: 100%; }

.icard:hover { border-color: var(--gold-40); background: var(--white); transform: translateY(-3px); }

.icard__image { overflow: hidden; }

.icard__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }

.icard:hover .icard__image img { transform: scale(1.03); }

.icard__body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }


/* Card without thumbnail — show a parchment placeholder to maintain height */
.icard:not(:has(.icard__image)) { border-color: var(--ink-08); }
.icard:not(:has(.icard__image)) .icard__body { padding-top: 40px; }

.icard__title { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }

.icard--small .icard__title { font-size: 17px; }

.icard__excerpt { font-size: 13px; color: var(--slate); line-height: 1.7; flex: 1; margin-bottom: 16px; }

.icard__footer { padding: 14px 24px; border-top: 1px solid var(--ink-08); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; margin-top: auto; }

.icard__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.icard__date { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); }
.icard__sep  { font-family: var(--mono); font-size: 10px; color: var(--ink-50); opacity: .4; }
.icard__read { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); }
.icard__read-link { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); transition: letter-spacing var(--dur); flex-shrink: 0; }

.icard:hover .icard__read-link { letter-spacing: .18em; }

/* Articles grid */

.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }

.articles-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }

.articles-h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); }

.articles-count { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); }

/* Featured article */

.feat-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink-08); text-decoration: none; transition: border-color var(--dur); }

.feat-card:hover { border-color: var(--gold-40); }

.feat-card__img { background: var(--ink); min-height: 360px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }

.feat-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform var(--dur-slow) var(--ease-out); }
.feat-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,32,53,.55) 0%, rgba(30,32,53,.1) 100%); z-index: 1; pointer-events: none; }

.feat-card:hover .feat-card__img img { transform: scale(1.04); }

.feat-card__img-label { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding: 20px 24px; background: linear-gradient(to top, rgba(30,32,53,.9), transparent); width: 100%; position: relative; z-index: 2; }

.feat-card__body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: space-between; }

.feat-badge { display: inline-block; background: var(--gold); color: var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-sm); margin-bottom: 16px; }

.feat-card__title { font-family: var(--serif); font-size: clamp(22px,2.4vw,34px); font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 16px; }

.feat-card__excerpt { font-size: 14px; color: var(--slate); line-height: 1.8; flex: 1; margin-bottom: 24px; }

/* ── STATS BAR ── */

.nitem { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,.07); border-left: 1px solid rgba(255,255,255,.07); transition: background var(--dur); }

.nitem:hover { background: rgba(240,196,25,.05); }

.nitem-n { font-family: var(--serif); font-size: 56px; font-weight: 600; color: var(--white); line-height: 1; display: block; }

.nitem-l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 8px; display: block; line-height: 1.6; }

/* ── PARTNERS ── */

.partners-label { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-50); text-align: center; margin-bottom: 36px; }

.partners-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }

.pmark { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink-20); transition: color var(--dur); cursor: default; }

.pmark:hover { color: var(--ink); }

.partner-logo-wrap img { height: 36px; width: auto; filter: grayscale(1) opacity(.5); transition: filter var(--dur); }

.partner-logo-wrap:hover img { filter: none; }

.pdot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .55; flex-shrink: 0; }

/* ── TESTIMONIALS ── */

.testi-quote { font-family: var(--serif); font-size: clamp(22px,2.4vw,32px); font-style: italic; color: var(--parchment); line-height: 1.5; position: relative; padding-top: 32px; }

.testi-quote::before { content: '"'; position: absolute; top: -10px; left: 0; font-size: 80px; line-height: 1; color: var(--gold); font-family: var(--serif); font-style: normal; }

.testi-attr { margin-top: 28px; display: flex; align-items: center; gap: 14px; }

.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--ink); flex-shrink: 0; overflow: hidden; }

.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); }

.testi-role { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 2px; }

.testi-stats { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.09); }

.tstat { padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,.07); transition: background var(--dur); }

.tstat:last-child { border-bottom: none; }

.tstat:hover { background: rgba(240,196,25,.06); }

.tstat-n { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--white); line-height: 1; display: block; }

.tstat-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 4px; display: block; }

/* ── TEAM ── */

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

.tcard { cursor: default; transition: transform var(--dur); }

.tcard:hover { transform: translateY(-4px); }

.tcard__img { width: 100%; aspect-ratio: 3/4; background: var(--parchment); border: 1px solid var(--ink-08); margin-bottom: 16px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }

.tcard__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }

.tcard:hover .tcard__img img { transform: scale(1.04); }

.tcard__initials { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-family: var(--serif); font-size: 64px; font-weight: 600; color: var(--gold); opacity: .18; line-height: 1; pointer-events: none; }

.tcard__gold-rule { width: 100%; height: 3px; background: var(--gold); position: relative; z-index: 2; }

.tcard__name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }

.tcard__role { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }

.tcard__bio { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* ── TIMELINE ── */

.timeline-track { position: relative; padding-left: 48px; }

.timeline-track::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--gold-20); }

.tl-item { position: relative; margin-bottom: 44px; }

.tl-item:last-child { margin-bottom: 0; }

.tl-dot { position: absolute; left: -45px; top: 6px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--gold); background: var(--parchment); transition: background var(--dur); }

.tl-item:hover .tl-dot { background: var(--gold); }

.tl-year { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }

.tl-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.25; }

.tl-body { font-size: 14px; color: var(--slate); line-height: 1.75; max-width: 560px; }

/* ── FAQ ── */

.faq-list { border: 1px solid var(--ink-08); }

.faq-item { border-bottom: 1px solid var(--ink-08); }

.faq-item:last-child { border-bottom: none; }

.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; cursor: pointer; background: transparent; width: 100%; text-align: left; transition: background var(--dur); gap: 20px; }

.faq-q:hover { background: var(--white); }

.faq-q__text { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.3; }

.faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gold-20); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--ink-50); transition: background var(--dur), color var(--dur), transform var(--dur); line-height: 1; }

.faq-item.is-open .faq-toggle { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: rotate(45deg); }

.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease-out); }

.faq-item.is-open .faq-a { max-height: 400px; }

.faq-a[hidden] { display: block !important; }

/* JS removes hidden, CSS animates height */

.faq-a__inner { padding: 0 26px 22px; font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ── DOWNLOADS ── */

.downloads-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.dl-item { display: flex; align-items: center; justify-content: space-between; background: var(--parchment); border: 1px solid var(--ink-08); padding: 18px 22px; text-decoration: none; transition: border-color var(--dur), background var(--dur); }

.dl-item:hover { border-color: var(--gold-40); background: var(--white); }

.dl-item__left { display: flex; align-items: center; gap: 14px; }

.dl-item__icon { width: 36px; height: 36px; background: var(--gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 9px; font-weight: 700; color: var(--ink); flex-shrink: 0; letter-spacing: .05em; }

.dl-item__name { font-size: 14px; font-weight: 500; color: var(--ink); }

.dl-item__size { font-family: var(--mono); font-size: 10px; color: var(--ink-50); margin-top: 2px; }

.dl-item__arrow { font-size: 18px; color: var(--ink-50); transition: color var(--dur), transform var(--dur); }

.dl-item:hover .dl-item__arrow { color: var(--blue); transform: translateY(2px); }

/* Resources grid */

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

.ritem { display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid var(--ink-08); padding: 20px 22px; text-decoration: none; transition: border-color var(--dur), background var(--dur); }

.ritem:hover { border-color: var(--gold-40); background: var(--parchment); }

.ritem__left { display: flex; align-items: center; gap: 16px; }

.ritem__icon { width: 38px; height: 38px; background: var(--gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 9px; font-weight: 700; color: var(--ink); flex-shrink: 0; }

.ritem__name { font-size: 14px; font-weight: 500; color: var(--ink); }

.ritem__desc { font-family: var(--mono); font-size: 10px; color: var(--ink-50); margin-top: 2px; }

.ritem__arrow { font-size: 16px; color: var(--ink-50); transition: color var(--dur), transform var(--dur); }

.ritem:hover .ritem__arrow { color: var(--blue); transform: translateX(3px); }

/* ── SEARCH ── */

.search-wrap { position: relative; }

.search-input { width: 100%; background: var(--white); border: 1.5px solid var(--ink-20); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 14px; color: var(--ink); padding: 13px 48px 13px 16px; outline: none; transition: border-color var(--dur); }

.search-input:focus { border-color: var(--gold); }

.search-submit { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; color: var(--ink-50); cursor: pointer; transition: color var(--dur); }

.search-submit:hover { color: var(--blue); }

/* ── FILTER BAR ── */

.filter-bar { background: var(--white); border-bottom: 1px solid var(--ink-08); height: 56px; position: sticky; top: 64px; z-index: 100; }

.filter-bar__inner { height: 56px; display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }

.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter-btn, .ftag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--ink-20); border-radius: var(--radius-sm); background: transparent; color: var(--ink-50); cursor: pointer; white-space: nowrap; transition: background var(--dur), color var(--dur), border-color var(--dur); text-decoration: none; display: inline-block; }

.filter-btn:hover, .ftag:hover { border-color: var(--ink); color: var(--ink); }

.filter-btn.active, .ftag.active, .ftag[aria-current="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }

.filter-sep { width: 1px; height: 20px; background: var(--ink-08); flex-shrink: 0; }

/* ── TABS ── */

.type-tabs { display: flex; border: 1px solid var(--ink-08); border-bottom: none; background: var(--parchment); margin-bottom: 0; }

.tab-btn { flex: 1; padding: 16px 20px; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-50); background: var(--white); border: none; cursor: pointer; transition: background var(--dur), color var(--dur), border-color var(--dur); border-right: 1px solid var(--ink-08); border-bottom: 3px solid transparent; }

.tab-btn:last-child { border-right: none; }

.tab-btn.active, .tab-btn[aria-selected="true"] { background: var(--white); color: var(--ink); border-bottom-color: var(--gold); font-weight: 600; }

.tab-content { display: none; padding: var(--sp-8) 0 0; }

.tab-content.active, .tab-content:not([hidden]) { display: block; }

/* ── GLANCE CARD ── */

.glance-card { background: var(--parchment); border: 1px solid var(--ink-08); padding: 32px 28px; position: sticky; top: 96px; }

.glance-card__title { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--ink-08); }

.glance-card__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--ink-08); font-size: 13px; }

.glance-card__row:last-child { border-bottom: none; }

.glance-card__label { color: var(--ink-50); }

.glance-card__val { color: var(--ink); font-weight: 500; text-align: right; }

.glance-card__val--gold { color: var(--gold-dark); }

/* ── TC STYLES (Partnership type content) ── */

.tc-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }

.tc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--slate); line-height: 1.65; }

.tc-list li::before { content: ''; display: block; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 2px; }

.tc-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }

.tc-body { font-size: 14px; color: var(--slate); line-height: 1.8; margin-bottom: 20px; }

/* ── PARTNER OFFICES ── */

.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.office-card { background: var(--parchment); border: 1px solid var(--ink-08); padding: 22px 20px; transition: border-color var(--dur); }

.office-card:hover { border-color: var(--gold-40); }

.office-flag { font-size: 20px; margin-bottom: 8px; display: block; }

.office-city { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.office-addr { font-size: 12px; color: var(--slate); line-height: 1.7; }

.office-tag { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); border: 1px solid var(--gold-20); padding: 3px 8px; border-radius: var(--radius-sm); }

/* ── CONTACT PATHS ── */

.contact-paths { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }

.cp-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; border: 1px solid var(--ink-08); background: var(--parchment); transition: border-color var(--dur), background var(--dur); }

.cp-item:hover { border-color: var(--gold-40); background: var(--white); }

.cp-item > div:not(.cp-icon) { min-width: 0; flex: 1; }
.cp-icon { width: 40px; height: 40px; background: var(--gold); border-radius: var(--radius-sm); flex-shrink: 0; }

.cp-label { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 4px; }

.cp-val { font-size: 14px; font-weight: 500; color: var(--ink); word-break: break-all; overflow-wrap: break-word; }

.cp-note { font-size: 12px; color: var(--ink-50); margin-top: 2px; }

.cinfo-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.85); font-weight: 400; }
.cinfo-row a { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--dur); }
.cinfo-row a:hover { color: var(--gold); }


.section-partner-contact .cinfo-row { color: var(--slate); }
.section-partner-contact .cinfo-row a { color: var(--blue); }
.section-partner-contact .cinfo-row a:hover { color: var(--ink); }
.cinfo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Hero type list (partnerships page) */

.hero-type-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.hero-type-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: background var(--dur), border-color var(--dur); }

.hero-type-item:hover { background: rgba(240,196,25,.08); border-color: rgba(240,196,25,.22); }

.hero-type-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── CTA STRIP ── */

.cta-strip { background: var(--gold); padding: 60px 0; }

.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.cta-strip__title { font-family: var(--serif); font-size: clamp(24px,2.5vw,36px); font-weight: 600; color: var(--ink); line-height: 1.1; }

.cta-strip__sub { font-size: 14px; color: var(--ink); opacity: .65; margin-top: 6px; }

.cta-strip__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── AUTHOR BIO ── */

.author-bio { display: flex; gap: 18px; align-items: flex-start; background: var(--parchment); padding: 28px 24px; margin-top: 48px; border-left: 3px solid var(--gold); }

.author-bio__avatar { flex-shrink: 0; }

.author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }

.author-bio__name { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.author-bio__desc { font-size: 13px; color: var(--slate); line-height: 1.7; }

/* ── POST NAV ── */

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }

.post-nav__item { padding: 22px; border: 1px solid var(--ink-08); transition: border-color var(--dur), background var(--dur); }

.post-nav__item:hover { border-color: var(--gold-40); background: var(--parchment); }

.post-nav__dir { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }

.post-nav__title { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* ── PAGINATION ── */

.pagination-wrap { margin-top: 48px; }

.pagination-wrap ul { display: flex; align-items: center; gap: 8px; list-style: none; flex-wrap: wrap; }

.pagination-wrap li a,
.pagination-wrap li span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--ink-20); border-radius: var(--radius-sm); font-family: var(--mono); font-size: 12px; color: var(--ink-50); text-decoration: none; transition: background var(--dur), color var(--dur), border-color var(--dur); }

.pagination-wrap li a:hover { border-color: var(--ink); color: var(--ink); }

.pagination-wrap li .current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── LOAD MORE ── */

.load-more-wrap { display: flex; justify-content: center; margin-top: 48px; }

.js-load-more.is-loading { opacity: .6; pointer-events: none; }

/* ── PULL QUOTE ── */

.pull-quote { border-left: 3px solid var(--gold); padding-left: 22px; margin: 28px 0; font-family: var(--serif); font-size: 21px; font-style: italic; color: var(--ink); line-height: 1.5; }

/* ── OUTCOMES LIST ── */

.outcomes-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

.outcomes-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--slate); line-height: 1.65; }

.outcomes-list li::before { content: ''; display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── TAG PILLS ── */

.tag-pill { display: inline-flex; align-items: center; background: var(--parchment); border: 1px solid var(--ink-08); padding: 4px 12px; border-radius: 20px; font-size: 12px; color: var(--ink-80); margin-right: 6px; transition: border-color var(--dur), background var(--dur); }

.tag-pill:hover { border-color: var(--gold-40); background: var(--white); }

/* ── SEQUENCE STRIP ── */

.seq-track { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--gold) rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.07); }

.sitem { flex: 1; min-width: 160px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.07); cursor: pointer; transition: background var(--dur); position: relative; }

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

.sitem:hover { background: rgba(240,196,25,.06); }

.sitem-n { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(240,196,25,.45); margin-bottom: 10px; }

.sitem-title { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 6px; }

.sitem-age { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ── ARTICLE LAYOUT ── */

.article-hero { background: var(--parchment); padding: 120px 0 80px; position: relative; }

.article-hero__top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

.article-hero__inner { max-width: 760px; }

.article-hero__title { font-family: var(--serif); font-size: clamp(32px,4vw,58px); font-weight: 600; line-height: 1.08; color: var(--ink); margin-bottom: 18px; }

.article-hero__excerpt { font-size: 18px; color: var(--slate); line-height: 1.75; margin-bottom: 20px; opacity: .9; }

.article-featured-image { background: var(--ink); margin-bottom: 0; }

.article-featured-image .container { padding: 0; max-width: 100%; }

.article-thumb { width: 100%; max-height: 520px; object-fit: cover; display: block; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: var(--sp-16); padding: var(--sp-16) 0 var(--sp-20); }

.article-sidebar { position: sticky; top: 80px; align-self: start; }

/* ── FOOTER ── */

.site-footer { background: var(--ink); }

.footer-inner { max-width: var(--container); margin-inline: auto; padding: var(--sp-16) var(--sp-20); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-12); border-bottom: 1px solid rgba(255,255,255,.07); }

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col .footer-nav-list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }

.footer-logo svg, .footer-logo img { height: 24px; width: auto; margin-bottom: 20px; }

.footer-contact-link { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; transition: color var(--dur); }

.footer-contact-link:hover { color: rgba(255,255,255,.9); }

.footer-socials { display: flex; gap: 14px; margin-top: 20px; }

.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: background var(--dur), border-color var(--dur), color var(--dur); flex-shrink: 0; }

.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.footer-col .widget-title { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }

.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }

.footer-nav-list a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--dur); }

.footer-nav-list a:hover { color: var(--white); }

.footer-bar { max-width: var(--container); margin-inline: auto; padding: var(--sp-5) var(--sp-20); display: flex; align-items: center; justify-content: space-between; }

.footer-copy { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25); }

.footer-legal-links { display: flex; gap: 24px; list-style: none; }

.footer-legal-links a { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); transition: color var(--dur); }

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

/* ── NEWSLETTER ── */

.nl-note { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-top: 10px; }

/* ── NO RESULTS ── */

.no-results__icon { width: 60px; height: 60px; border: 2px solid var(--gold-20); border-radius: 50%; margin: 0 auto 24px; }

.no-results__title { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }

.no-results__body { font-size: 15px; color: var(--slate); max-width: 400px; margin: 0 auto 28px; }

.no-results__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── THINKME NOTICE ── */

.thinkme-notice { background: #fff3cd; border: 1px solid #ffc107; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; color: #664d03; margin-bottom: 16px; }

/* ══════════════════════════════════════════
   MICRO-ANIMATIONS (2025–2026 trends)
   Preference for: enter-on-scroll, spring-feel,
   stagger-children, subtle hover lift,
   line-draw, clip-path reveals, counter-count
══════════════════════════════════════════ */

/* Respect reduced-motion */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -- Scroll-reveal base states -- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  pointer-events: none;
}

[data-reveal-delay="1"] { transition-delay: .12s; }

[data-reveal-delay="2"] { transition-delay: .24s; }

[data-reveal-delay="3"] { transition-delay: .36s; }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* -- Hero entrance (JS triggers) -- */

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-animate="fade-up"].is-animated {
  opacity: 1;
  transform: none;
}

[data-delay="0"] { transition-delay: .08s; }

[data-delay="1"] { transition-delay: .20s; }

[data-delay="2"] { transition-delay: .32s; }

[data-delay="3"] { transition-delay: .44s; }

[data-delay="4"] { transition-delay: .56s; }

[data-delay="5"] { transition-delay: .68s; }

/* -- Stagger children -- */

[data-animate-children] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  pointer-events: none;
}

[data-animate-children].is-visible > * { opacity: 1; transform: none; pointer-events: auto; }

[data-animate-children].is-visible > *:nth-child(1) { transition-delay: .05s; }

[data-animate-children].is-visible > *:nth-child(2) { transition-delay: .12s; }

[data-animate-children].is-visible > *:nth-child(3) { transition-delay: .19s; }

[data-animate-children].is-visible > *:nth-child(4) { transition-delay: .26s; }

[data-animate-children].is-visible > *:nth-child(5) { transition-delay: .33s; }

[data-animate-children].is-visible > *:nth-child(6) { transition-delay: .40s; }

[data-animate-children].is-visible > *:nth-child(7) { transition-delay: .47s; }

[data-animate-children].is-visible > *:nth-child(8) { transition-delay: .54s; }

[data-animate-children].is-visible > *:nth-child(n+9) { transition-delay: .60s; }

/* -- Kicker line draw -- */

.t-kicker.is-visible::before {
  animation: kicker-draw .6s var(--ease-out) both;
  animation-delay: .1s;
}

@keyframes kicker-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* -- Number counter animation (JS handles incrementing) -- */

.nitem-n[data-count] { display: block; }

/* -- Clip-path reveal for hero headline -- */

@keyframes clip-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

/* -- Subtle lift on hover (already in component rules) -- */

/* -- Gold rule slide in (kicker) -- */

@keyframes rule-slide {
  from { width: 0; }
  to   { width: 28px; }
}

/* -- Stat counter tick -- */

@keyframes count-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* -- Nav scroll shrink (JS adds .is-scrolled) -- */

.site-nav.is-scrolled {
  box-shadow: 0 1px 20px rgba(30,32,53,.08);
}

/* -- Image parallax helper -- */

.parallax-img { will-change: transform; }

/* -- Focus ring standard -- */

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

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
/* ══════════════════════════════════════════
   THINKME PRESS — additions.css
   Additional component styles + all fixes.
   Loaded after main-core.css via @import or
   concatenated into main.css at build time.
   Version: 1.1.0
══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   SECTION BACKGROUNDS & PADDING
   All section classes in one place.
───────────────────────────────────────── */

.section-founding { background: var(--white);     padding: var(--sp-30) 0; }

.section-thesis { background: var(--parchment); padding: var(--sp-30) 0; border-top: 1px solid var(--gold-20); }

.section-pillars { background: var(--white);     padding: var(--sp-30) 0; }

.section-philosophy { background: var(--ink);       padding: var(--sp-30) 0; }

.section-pedagogy { background: var(--white);     padding: var(--sp-30) 0; }

.vision-cta { background: var(--gold);      padding: 80px 0; }

.section-sequence { background: var(--ink);       padding-bottom: 60px; }

.section-process { background: var(--white);     padding: var(--sp-30) 0; }

.section-regions { background: var(--parchment); padding: var(--sp-30) 0; border-top: 1px solid var(--gold-20); }

.section-partner-testi { background: var(--ink);       padding: var(--sp-20) 0; }

.section-programs-cta { background: var(--parchment); padding: var(--sp-20) 0; border-top: 1px solid var(--gold-20); }

.section-contact-cta { background: var(--ink);       padding: var(--sp-30) 0; }

.section-about-cta { background: var(--ink);       padding: var(--sp-30) 0; }

.section-contact-main { padding: var(--sp-24) 0; }

.section-partner-contact { background: var(--white); padding: var(--sp-30) 0; }

/* ─────────────────────────────────────────
   CONTAINER — no double padding inside heroes
───────────────────────────────────────── */

.container .page-hero__inner,
.container > .page-hero__inner {
  padding-inline: 0;
  max-width: 100%;
}

/* Standalone page-hero__inner (not in .container) keeps centering */

.page-hero > .page-hero__inner {
  padding-inline: var(--sp-20);
  max-width: var(--container);
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   CARTOGRAPHY TRACK — aligned to container
───────────────────────────────────────── */

.carto-track {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  gap: 0;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-top: 32px;
  padding-bottom: 56px;
  padding-left:  calc((100vw - var(--container)) / 2 + var(--sp-20));
  padding-right: calc((100vw - var(--container)) / 2 + var(--sp-20));
}

/* ─────────────────────────────────────────
   OVERVIEW STRIP — aligned to container
───────────────────────────────────────── */

.overview-strip__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-20);
  display: flex;
  align-items: center;
  gap: 0;
}

/* ─────────────────────────────────────────
   STATS BAR / NO-RESULTS — container safety
───────────────────────────────────────── */

.numbers-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-20);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.no-results {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-20);
}

/* ─────────────────────────────────────────
   NAV INNER — matches container padding
───────────────────────────────────────── */

.nav-inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-20); height: 64px; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); }

/* ─────────────────────────────────────────
   FOOTER — consistent padding
───────────────────────────────────────── */


/* ─────────────────────────────────────────
   HERO HR LINE — aligned to container
───────────────────────────────────────── */

.home-hero__hr {
  position: absolute; bottom: 0;
  left:  calc((100vw - var(--container)) / 2 + var(--sp-20));
  right: calc((100vw - var(--container)) / 2 + var(--sp-20));
  height: 1px; background: var(--gold-20);
}

@media (max-width: 1360px) { .home-hero__hr { left: var(--sp-20); right: var(--sp-20); } }

/* ─────────────────────────────────────────
   PROG-HERO INNER — mobile padding
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   RESPONSIVE SPACING SCALE
───────────────────────────────────────── */



/* ─────────────────────────────────────────
   FOUNDING YEAR watermark
───────────────────────────────────────── */

.founding-year {
  font-family: var(--serif); font-size: 120px; font-weight: 700;
  line-height: 1; color: var(--ink); opacity: .06;
  margin-bottom: -20px; letter-spacing: -.04em;
}

/* ─────────────────────────────────────────
   VALUES GRID
───────────────────────────────────────── */

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.vcard {
  background: var(--white); border: 1px solid var(--ink-08); padding: 36px 32px;
  transition: border-color var(--dur), transform var(--dur);
}

.vcard:hover { border-color: var(--gold-40); transform: translateY(-3px); }

.vcard-icon { width: 40px; height: 40px; background: var(--gold); border-radius: var(--radius-sm); margin-bottom: 20px; }

.vcard-title { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }

.vcard-body { font-size: 13px; color: var(--slate); line-height: 1.75; }

/* ─────────────────────────────────────────
   ABOUT CTA LIST
───────────────────────────────────────── */

.acta-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.09); }

.acta-li { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; color: rgba(255,255,255,.65); transition: background var(--dur); cursor: default; }

.acta-li:last-child { border-bottom: none; }

.acta-li:hover { background: rgba(240,196,25,.07); }

.acta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─────────────────────────────────────────
   PILLARS
───────────────────────────────────────── */

.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ink-08); border: 1px solid var(--ink-08); }

.pillar { background: var(--white); padding: 48px 40px; transition: background var(--dur); }

.pillar:hover { background: var(--parchment); }

.pillar-n { font-family: var(--serif); font-size: 80px; font-weight: 700; color: var(--gold); line-height: 1; opacity: .18; margin-bottom: -20px; }

.pillar-rule { width: 28px; height: 3px; background: var(--gold); margin: 20px 0 24px; }

.pillar-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }

.pillar-body { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ─────────────────────────────────────────
   PHILOSOPHY GRID (dark bg)
───────────────────────────────────────── */

.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.phil-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 32px 28px; transition: background var(--dur), border-color var(--dur); }

.phil-card:hover { background: rgba(240,196,25,.07); border-color: rgba(240,196,25,.22); }

.phil-card-label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

.phil-card-title { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 8px; line-height: 1.25; }

.phil-card-body { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; }

/* ─────────────────────────────────────────
   PEDAGOGY LIST
───────────────────────────────────────── */

.ped-list { display: flex; flex-direction: column; border: 1px solid var(--ink-08); }

.ped-li { padding: 20px 24px; border-bottom: 1px solid var(--ink-08); display: flex; align-items: flex-start; gap: 16px; transition: background var(--dur); }

.ped-li:last-child { border-bottom: none; }

.ped-li:hover { background: var(--parchment); }

.ped-li-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }

.ped-li-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }

.ped-li-body { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* ─────────────────────────────────────────
   VISION CTA STATS GRID
───────────────────────────────────────── */

.vcta-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.vcta-stat { background: rgba(30,32,53,.08); padding: 24px 20px; border-radius: var(--radius-sm); }

.vcta-stat-n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--ink); line-height: 1; display: block; }

.vcta-stat-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); opacity: .55; margin-top: 6px; display: block; line-height: 1.5; }

/* ─────────────────────────────────────────
   WHY GRID
───────────────────────────────────────── */

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-20); border: 1px solid var(--gold-20); }

.why-cell { background: var(--parchment); padding: 48px; transition: background var(--dur); cursor: default; }

.why-cell:hover { background: var(--white); }

.why-cell-n { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; color: var(--ink-50); margin-bottom: 16px; }

.why-rule { width: 30px; height: 3px; background: var(--gold); border-radius: 1px; margin-bottom: 18px; }

.why-cell-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }

.why-cell-body { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ─────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────── */

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 56px; }

.process-steps::before { content: ''; position: absolute; top: 20px; left: 40px; right: 40px; height: 1px; background: var(--gold-20); z-index: 1; }

.pstep { padding: 0 20px; text-align: center; position: relative; z-index: 2; cursor: default; transition: transform var(--dur); }

.pstep:hover { transform: translateY(-4px); }

.pstep-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink); position: relative; z-index: 3; }

.pstep-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }

.pstep-body { font-size: 13px; color: var(--slate); line-height: 1.7; }

/* ─────────────────────────────────────────
   REGIONAL CARDS
───────────────────────────────────────── */

.pm-regions { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.region-card { background: var(--white); border: 1px solid var(--ink-08); padding: 28px 24px; transition: border-color var(--dur), transform var(--dur); }

.region-card:hover { border-color: var(--gold-40); transform: translateY(-3px); }

.region-name { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }

.region-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }

.region-schools { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }

.region-count { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--ink); line-height: 1; display: block; }

.region-count-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); margin-top: 4px; display: block; }

/* ─────────────────────────────────────────
   TESTIMONIAL CARDS (dark variant)
───────────────────────────────────────── */

.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }

.testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 36px 32px; transition: background var(--dur); }

.testi-card:hover { background: rgba(240,196,25,.06); }

.testi-quote-mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: .8; margin-bottom: 12px; display: block; }

.testi-text { font-family: var(--serif); font-size: 18px; font-style: italic; color: rgba(255,255,255,.82); line-height: 1.55; margin-bottom: 24px; }

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */

.sidebar-default { display: flex; flex-direction: column; gap: 32px; }

.sidebar-widget { background: var(--parchment); border: 1px solid var(--ink-08); padding: 28px 24px; }

.sidebar-widget--dark { background: var(--ink); }

.sidebar-widget--dark .widget-title { color: rgba(255,255,255,.5); }

.sidebar-widget--dark .sidebar-promo-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; line-height: 1.65; }

.sidebar-posts { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }

.sidebar-post__title { display: block; font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; transition: color var(--dur); }

.sidebar-post__title:hover { color: var(--blue); }

.sidebar-post__meta { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); margin-top: 4px; }

.sidebar-cats { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.sidebar-cat { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--ink-08); transition: color var(--dur); }

.sidebar-cat:hover { color: var(--blue); }

.sidebar-cat__count { font-family: var(--mono); font-size: 11px; color: var(--ink-50); }

.sidebar-programs { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.08); }

.sidebar-prog { display: flex; flex-direction: column; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.07); transition: background var(--dur); }

.sidebar-prog:last-child { border-bottom: none; }

.sidebar-prog:hover { background: rgba(240,196,25,.08); }

.sidebar-prog__stage { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(240,196,25,.5); margin-bottom: 4px; }

.sidebar-prog__title { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); }

.sidebar-nl-sub { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }

/* ─────────────────────────────────────────
   CURRICULUM ALIGNMENT CARDS (dark)
───────────────────────────────────────── */

.align-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.align-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); padding: 24px 22px; transition: background var(--dur), border-color var(--dur); }

.align-card:hover { background: rgba(240,196,25,.08); border-color: rgba(240,196,25,.25); }

.align-card-label { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.align-card-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 6px; }

.align-card-body { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.65; }

/* ─────────────────────────────────────────
   HERO META ROW (programs page)
───────────────────────────────────────── */

.hero-meta-row { display: flex; gap: 32px; margin-top: 20px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   CONTACT PAGE: PATHS + OFFICES
───────────────────────────────────────── */

.hero-contact-quick { display: flex; flex-direction: column; gap: 10px; }

.hq-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.85); }

.hq-row a { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--dur); word-break: break-all; }

.hq-row a:hover { color: var(--gold); }

.hq-label { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(240,196,25,.7); flex-shrink: 0; min-width: 90px; }

.hq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─────────────────────────────────────────
   NAV CTA — correct gold styling
───────────────────────────────────────── */

.site-nav .btn-gold,
.site-nav a.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
  font-size: 12px !important;
  padding: 9px 20px !important;
}

.site-nav .btn-gold:hover,
.site-nav a.nav-cta:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--white) !important;
}

/* ─────────────────────────────────────────
   HEADING EM COLOURS ON DARK BACKGROUNDS
───────────────────────────────────────── */

.section-h2--light em { color: var(--gold); }

.page-hero--dark .page-hero__h1 em,
.page-hero__h1--light em { color: var(--gold); font-style: italic; }

/* ─────────────────────────────────────────
   BTN-INK / BTN-INK-OUTLINE hover text fix
───────────────────────────────────────── */

.btn-ink { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-ink:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.btn-ink-outline { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn-ink-outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.cta-strip .btn-ink { color: var(--white); }

.cta-strip .btn-ink:hover { color: var(--white); }

.cta-strip .btn-ink-outline { color: var(--ink); }

.cta-strip .btn-ink-outline:hover { color: var(--white); }

.vision-cta .btn-ink { background: var(--ink); color: var(--white); }

.vision-cta .btn-ink:hover { background: var(--blue); color: var(--white); }

.vision-cta .btn-ink-outline { background: transparent; color: var(--ink); border-color: var(--ink); }

.vision-cta .btn-ink-outline:hover { background: var(--ink); color: var(--white); }

/* ─────────────────────────────────────────
   FLUENTFORMS — full style integration
───────────────────────────────────────── */

/* Light form (parchment bg) */

.ff-el-form-control {
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--ink-20) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  padding: 12px 14px !important;
  background: var(--white) !important;
  transition: border-color var(--dur) !important;
}

.ff-el-form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

.ff-el-input--label label {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  color: var(--ink-50) !important;
  margin-bottom: 6px !important;
}

.ff-btn-submit, .ff-btn {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  transition: background var(--dur), color var(--dur), border-color var(--dur) !important;
  width: 100% !important;
}

.ff-btn-submit:hover, .ff-btn:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--white) !important;
}

/* Dark form variant */

.form-dark .ff-el-form-control {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: var(--white) !important;
}

.form-dark .ff-el-form-control:focus { border-color: var(--gold) !important; background: rgba(255,255,255,.1) !important; }

.form-dark .ff-el-form-control::placeholder { color: rgba(255,255,255,.3) !important; }

.form-dark .ff-el-input--label label { color: rgba(255,255,255,.42) !important; }

.form-dark select option { background: var(--ink); color: var(--white); }

/* ─────────────────────────────────────────
   DATA-REVEAL — prevent wrapper opacity:0
   blocking children
───────────────────────────────────────── */

.page-hero__inner[data-reveal] { opacity: 1 !important; transform: none !important; }

/* ─────────────────────────────────────────
   DARK SECTION LINK COLOURS
───────────────────────────────────────── */

.page-hero--dark a,
.section-contact-cta a { color: rgba(255,255,255,.7); transition: color var(--dur); }

.page-hero--dark a:hover,
.section-contact-cta a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   SOCIAL LINK ICONS
───────────────────────────────────────── */

.social-link svg { display: block; }

/* ─────────────────────────────────────────
   MOUSE/KEYBOARD FOCUS
───────────────────────────────────────── */

body.using-mouse :focus { outline: none; }

/* ─────────────────────────────────────────
   RESPONSIVE OVERRIDES (consolidated)
───────────────────────────────────────── */



/* ══════════════════════════════════════════
   COMMENTS
══════════════════════════════════════════ */

.comments-area { margin-top: var(--sp-12); padding-top: var(--sp-12); border-top: 1px solid var(--ink-08); }

.comments-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: var(--sp-8); }

.comment-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-6); }

.comment-item { padding: var(--sp-6) 0; border-bottom: 1px solid var(--ink-08); }

.comment-item:last-child { border-bottom: none; }

.comment-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }

.avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }

.comment-author-name a { font-weight: 500; color: var(--ink); text-decoration: none; }

.comment-author-name a:hover { color: var(--blue); }

.comment-date { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); display: block; margin-top: 2px; }

.comment-content p { font-size: 14px; color: var(--slate); line-height: 1.8; margin-bottom: 10px; }

.comment-content p:last-child { margin-bottom: 0; }

.comment-reply a { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); text-decoration: none; }

.comment-await-moderation { font-size: 12px; color: var(--ink-50); font-style: italic; margin-bottom: 8px; }

.comment-reply-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin: var(--sp-10) 0 var(--sp-6); }

.comment-submit { margin-top: var(--sp-4); }

.comment-form-cookies label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate); cursor: pointer; }

.comment-form-cookies input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); }

.children { list-style: none; padding-left: var(--sp-8); margin-top: var(--sp-4); border-left: 2px solid var(--gold-20); }

/* Blog archive page */

.archive-page { /* inherits from site-main */ }

.archive-description { font-size: 15px; color: var(--slate); line-height: 1.8; max-width: 600px; margin-top: 10px; }

/* Article single page */

.article-content { min-width: 0; }

.article-comments { margin-top: var(--sp-10); }

.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid var(--ink-08); }

.tags-label { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-50); flex-shrink: 0; }

/* Author bio sub-elements */

.author-bio__info { flex: 1; min-width: 0; }

/* Contact info list */

.contact-info-list { display: flex; flex-direction: column; gap: 10px; }

/* Blog insights section */

.insights-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; gap: var(--sp-6); }

.insights-all { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; white-space: nowrap; transition: color var(--dur), border-color var(--dur); }

.insights-all:hover { color: var(--blue); border-color: var(--blue); }

/* Nav inner link wrapper */

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

/* Placeholder download item */

.dl-item--placeholder { opacity: .5; cursor: default; pointer-events: none; }

/* Error page quick links wrapper */

.error-quick-links { margin-top: 48px; }

/* FAQ header (used in contact-faq with split) */

.faq-header { margin-bottom: 40px; }

/* Filter bar blog variant */

.filter-bar--blog { background: var(--parchment); }

/* Card link wrapper */

.icard__link { display: flex; flex-direction: column; flex: 1; text-decoration: none; height: 100%; -webkit-tap-highlight-color: transparent; }

/* No results wrappers */

.no-results-wrap { padding: var(--sp-16) 0; }

.no-results-text { font-size: 17px; color: var(--slate); margin-bottom: var(--sp-8); }

/* Outcomes block */

.outcomes-block { margin-top: var(--sp-8); }

/* Comments specific */

.comment-author-avatar { flex-shrink: 0; }

.comment-body { width: 100%; }

.comment-meta { flex: 1; min-width: 0; }

.comment-footer { margin-top: 10px; }

.comment-form-author,
.comment-form-email,
.comment-form-comment { margin-bottom: 14px; }

.comments-password { font-size: 14px; color: var(--slate); padding: 20px; background: var(--parchment); border: 1px solid var(--ink-08); }

.no-comments { font-size: 14px; color: var(--ink-50); font-style: italic; padding: var(--sp-6) 0; }

/* Hero HR (standalone — inside .home-hero which is relative) */

.hero-hr { width: 60px; height: 2px; background: var(--gold); }

/* echo — class name leaked from PHP, not actual CSS class */

/* (echo class is a false positive from grep — PHP echo statements) */

/* ══════════════════════════════════════════
   CONTACT FALLBACK — shown when FluentForms
   not configured. Replaces blank parchment box.
══════════════════════════════════════════ */

.contact-fallback {
  background: var(--parchment);
  border: 1px solid var(--ink-08);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-fallback__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.contact-fallback__body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

.contact-fallback__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-20);
  padding-bottom: 4px;
  transition: border-color var(--dur), color var(--dur);
  width: fit-content;
}

.contact-fallback__link:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.contact-fallback__phone {
  font-size: 15px;
  color: var(--slate);
}

.contact-fallback--dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

.contact-fallback--dark .contact-fallback__title { color: var(--white); }

.contact-fallback--dark .contact-fallback__body { color: rgba(255,255,255,.55); }

.contact-fallback--dark .contact-fallback__link { color: var(--gold); border-color: rgba(240,196,25,.3); }

.contact-fallback--dark .contact-fallback__phone { color: rgba(255,255,255,.55); }

/* ── Also fix dark section variant form-card ── */

.section-contact-cta .form-card,
.section-about-cta .form-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

/* ── Make sure .form-card doesn't show when truly empty ──
   PHP conditionals handle it, but add CSS defence too */

.form-card:has(> :empty:only-child) { display: none; }

/* ══════════════════════════════════════════
   SITE LOGO — text fallback styling
   When no custom logo uploaded, renders
   styled text version of THINK·ME Press.
══════════════════════════════════════════ */

.site-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1;
}

.site-logo-text::after {
  content: none;
}

/* Custom logo image */

.custom-logo-link img.custom-logo {
  height: 26px;
  width: auto;
  display: block;
}

/* Footer logo */

.footer-logo .site-logo-text {
  color: var(--white);
  font-size: 18px;
}

.footer-logo .custom-logo-link img.custom-logo {
  filter: brightness(0) invert(1);
  height: 22px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — COMPLETE SYSTEM
   1100px → 860px → 480px
══════════════════════════════════════════ */

/* ── 1100px: Wide tablets / small desktops ── */


/* ── 860px: Tablets & mobile ── */
@media (max-width: 860px) {

  /* ── Spacing scale ── */
  :root { --sp-30: 64px; --sp-20: 48px; }

  /* ── Container ── */
  .container { padding-inline: var(--sp-6); }
  .nav-inner  { padding-inline: var(--sp-6); }
  
  .footer-inner { padding: var(--sp-10) var(--sp-6); grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bar   { padding-inline: var(--sp-6); flex-direction: column; gap: 12px; align-items: flex-start; }

  /* ── Navigation ── */
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Heroes ── */
  .home-hero { padding: var(--sp-16) 0; min-height: auto; }
  .home-hero__split { grid-template-columns: 1fr; gap: var(--sp-10); }
  .home-hero__right { justify-content: flex-start; }
  .home-hero__stats { flex-direction: row; flex-wrap: wrap; border-left: none; padding-left: 0; border-top: 1px solid var(--gold-20); padding-top: var(--sp-6); gap: var(--sp-4); }
  .home-hero__wm { display: none; }
  .home-hero__h1 { font-size: clamp(36px, 8vw, 60px); }
  .home-hero__stats { flex-wrap: wrap; gap: var(--sp-6); }

  .page-hero { padding: 80px 0 48px; }
  .page-hero__wm { display: none; }
  .page-hero__inner--split { grid-template-columns: 1fr; gap: var(--sp-8); }

  .prog-hero { padding: 80px 0 48px; min-height: auto; }
  .prog-hero__wm { display: none; }
  .prog-hero__inner { grid-template-columns: 1fr; padding-inline: var(--sp-6); }
  .prog-glance-card { margin-top: var(--sp-8); }

  /* ── Section layouts ── */
  .section-split { grid-template-columns: 1fr; gap: var(--sp-8); }
  .section-header--split { grid-template-columns: 1fr; gap: var(--sp-6); margin-bottom: var(--sp-8); }

  /* ── Section padding ── */
  .section-vision, .section-prog-cta, .section-contact-main,
  .section-why, .section-mission, .section-timeline,
  .section-resources, .section-partnership-types,
  .section-faq, .section-related, .section-insights,
  .section-programs, .section-team, .section-about-cta,
  .section-partner-contact, .section-prog-overview,
  .section-components, .section-founding, .section-thesis,
  .section-pillars, .section-philosophy, .section-pedagogy,
  .section-process, .section-regions, .section-partner-testi,
  .section-programs-cta, .section-contact-cta,
  .vision-cta { padding: var(--sp-12) 0; }

  .section-stats, .section-testi, .section-newsletter,
  .section-prog-alignment { padding: var(--sp-10) 0; }

  .cta-strip { padding: var(--sp-8) 0; }
  .cta-strip__inner { flex-direction: column; text-align: center; gap: var(--sp-6); }
  .cta-strip__actions { justify-content: center; }

  /* ── Grids → 1 col ── */
  .prog-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .prog-card--featured { grid-column: span 1; flex-direction: column; }
  .prog-card__side { width: 100%; height: auto; flex-direction: row; align-items: center; justify-content: flex-start; gap: var(--sp-6); padding: var(--sp-4) var(--sp-6); }

  .icard-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  
  .numbers-grid { grid-template-columns: 1fr 1fr; padding-inline: var(--sp-6); }.comp-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .carto-meta__grid { grid-template-columns: 1fr; }
  .feat-card { grid-template-columns: 1fr; }
  .feat-card__img { min-height: 220px; }
  .res-grid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .error-links-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }

  /* ── Tabs ── */
  .type-tabs { flex-direction: column; }
  .tab-content.active { grid-template-columns: 1fr; }

  /* ── Carto ── */
  .carto-track { padding-inline: var(--sp-6); }

  /* ── Programs filter ── */
  .filter-bar { height: auto; padding: var(--sp-3) 0; }
  .filter-bar__inner { flex-wrap: wrap; gap: var(--sp-2); padding-inline: var(--sp-6); }

  /* ── Overview strip ── */
  .overview-strip__inner { flex-wrap: wrap; gap: 16px; padding-inline: var(--sp-6); }
  .ostrip-item { flex: 0 0 calc(50% - 8px); border-right: none; padding: 0; }

  /* ── Misc ── */
  .home-hero__actions { flex-wrap: wrap; gap: var(--sp-4); }
  .prog-hero__actions { flex-wrap: wrap; }
  .hero-meta-row { flex-wrap: wrap; gap: var(--sp-4); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .process-steps::before { display: none; }
  .why-cell { padding: 32px 24px; }
  .pillar  { padding: 36px 28px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pm-regions { grid-template-columns: 1fr; }
  .align-grid { grid-template-columns: 1fr; }
  .phil-grid  { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1px; }
  .vcta-stats-grid { grid-template-columns: 1fr 1fr; }
  .no-results { padding-inline: var(--sp-6); }
  .founding-year { font-size: 72px; }

  /* ── Programme single page ── */
  .prog-stage-badge { flex-wrap: wrap; gap: 6px; }
  .prog-glance-card { padding: 24px 20px; }
  .prog-glance-card__row { flex-wrap: wrap; gap: 4px; }
  .prog-glance-card__label { font-size: 11px; }
  .prog-glance-card__val { font-size: 14px; font-weight: 600; text-align: left; }
  .prog-glance-card__cta .btn { width: 100%; justify-content: center; }

  /* ── Sequence strip ── */
  .sequence-strip { overflow-x: auto; }
  .cstage-row { flex-direction: column; gap: var(--sp-4); }
  .cstage { min-width: 0; width: 100%; }

  /* ── Tab navigation ── */
  .tab-btn { font-size: 11px; padding: 10px 14px; flex: 1; text-align: center; }

  /* ── Alignment / glance cards ── */
  .align-card { padding: 20px 18px; }
  .glance-card { padding: 24px 20px; }
  .glance-card__row { flex-wrap: wrap; gap: 4px; }

  /* ── Prog card link ── */

  .prog-card__title { font-size: 18px; }
  .prog-card__body  { padding: 24px 20px; }
  .cp-item { flex-direction: column; gap: 12px; }
  .related-prog-grid { grid-template-columns: 1fr; }

}

/* ── 480px: Small phones ── */


@media (max-width: 1100px) {
  :root { --sp-30: 96px; }
  /* Container padding tightens */
  .container { padding-inline: var(--sp-12); }
  .nav-inner  { padding-inline: var(--sp-12); }
  .home-hero  { padding: 100px 0 64px; }

  /* Programs grid: 3 → 2 col */
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-card--featured { grid-column: span 2; }

  /* Team: 4 → 3 col */
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer: 4 → 2 col */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .related-prog-grid { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 480px) {
  .vcta-stats-grid { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .hero-meta-row   { flex-direction: column; gap: var(--sp-4); }
  :root { --sp-30: 48px; --sp-20: 32px; }

  .team-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .vcta-stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-meta-row { flex-direction: column; gap: var(--sp-4); }
  .ostrip-item { flex: 0 0 100%; }
  .home-hero__h1 { font-size: clamp(32px, 9vw, 48px); }
  .page-hero__h1 { font-size: clamp(32px, 9vw, 48px); }
  .section-h2 { font-size: clamp(26px, 7vw, 40px); }
  .hstat-n { font-size: 28px; }
  .btn { padding: 11px 20px; font-size: 12px; }
}
