/* ============================================================
   Justice Research Institute — static reproduction
   Shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: oklch(98.5% 0.005 90);          /* warm off-white */
  --bg-2: oklch(96% 0.007 88);          /* subtle alternate section */
  --surface: oklch(100% 0 0);           /* white cards */
  --ink: oklch(18% 0.04 260);           /* navy-ink text */
  --ink-soft: oklch(30% 0.05 260);
  --muted: oklch(45% 0.03 260);
  --muted-2: oklch(52% 0.03 255);
  --line: oklch(90% 0.015 250);         /* cool light-gray border */
  --line-soft: oklch(93% 0.012 250);
  --accent: oklch(22% 0.07 260);        /* deep navy = primary */
  --accent-ink: oklch(28% 0.06 260);
  --gold: oklch(72% 0.13 76);           /* warm gold accent */
  --gold-soft: oklch(78% 0.13 78);
  --kicker: oklch(52% 0.10 250);        /* muted-blue eyebrow labels */
  --dark: oklch(22% 0.07 260);          /* navy dark sections */
  --dark-soft: oklch(26% 0.06 260);
  --on-dark: oklch(98.5% 0.005 90);
  --on-dark-muted: oklch(70% 0.03 258);

  --serif: 'Libre Baskerville', ui-serif, Georgia, 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --maxw: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.14; letter-spacing: -0.025em; }
em { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kicker);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--on-dark); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--on-dark); }
.btn-light { background: var(--on-dark); color: var(--ink); }
.btn-light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(255,255,255,0.08); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 720px) { .brand-logo { height: 34px; } }
.brand .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--on-dark);
  font-family: var(--serif); font-weight: 700; font-size: 18px;
  border-radius: 3px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-parent { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-parent .caret { font-size: 9px; transition: transform 0.3s var(--ease); }
.nav-item:hover .nav-parent .caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 220px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 50px -24px rgba(20,26,43,0.35); padding: 8px; margin-top: 14px; opacity: 0; visibility: hidden; transition: opacity 0.28s var(--ease), transform 0.28s var(--ease); z-index: 130; }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 14px; font-size: 14px; font-weight: 500; border-radius: 3px; color: var(--ink-soft); white-space: nowrap; }
.dropdown a::after { content: none; }
.dropdown a:hover { background: var(--bg-2); color: var(--ink); }
.mm-label { display: block; padding: 16px 0 4px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kicker); }
.mobile-menu .mm-sub { padding-left: 18px; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .partner {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 999px;
  background: #082451; color: var(--on-dark);
  transition: all 0.35s var(--ease);
}
.nav-cta .partner:hover { background: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s var(--ease); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform 0.45s var(--ease);
  z-index: 99; padding: 20px 32px 34px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: 15px 0; font-size: 19px; font-family: var(--serif); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,20,38,0.60) 0%, rgba(13,20,38,0.28) 40%, rgba(13,20,38,0.85) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 80px; width: 100%; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); font-weight: 400; margin: 22px 0 24px; max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { max-width: 56ch; font-size: 1.12rem; color: rgba(244,241,234,0.86); margin-bottom: 34px; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee { background: var(--dark); color: var(--on-dark); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; font-size: 14px; letter-spacing: 0.04em; color: var(--on-dark-muted); font-weight: 500; }
.marquee .sep { color: var(--gold); margin: 0 26px; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section heading blocks ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 20px 0 0; }
.sec-head p { color: var(--muted); margin-top: 20px; font-size: 1.06rem; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.sec-head-row .sec-head { margin-bottom: 0; }

/* ---------- Mandate stats ---------- */
.mandate { background: var(--bg); }
.mandate-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 70px; align-items: center; }
.mandate p.lead { font-size: 1.08rem; color: var(--ink-soft); }
.stat-cards { display: grid; gap: 16px; }
.stat-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 28px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.stat-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.stat-card .num { font-family: var(--serif); font-size: 1.9rem; color: var(--accent); font-weight: 400; }
.stat-card .lbl { color: var(--muted); font-size: 0.95rem; text-align: right; }

/* ---------- Focus / feature cards ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.f-card { background: var(--bg); padding: 40px 30px; position: relative; min-height: 280px; display: flex; flex-direction: column; transition: background 0.4s var(--ease); }
.f-card:hover { background: var(--surface); }
.f-icon { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--gold-soft); }
.f-icon svg { width: 30px; height: 30px; }
.f-card h3 { font-size: 1.32rem; margin-bottom: 14px; }
.f-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.f-card .idx { margin-top: 26px; font-family: var(--mono); font-size: 0.85rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; }

/* ---------- Split feature (image + list) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4/3; }
.split h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 18px 0 22px; }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 20px; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; color: var(--ink-soft); }
.check-list .n { font-family: var(--serif); color: var(--gold); font-weight: 600; font-size: 0.9rem; padding-top: 3px; }

/* ---------- Publications cards ---------- */
.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pub-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.pub-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px -25px rgba(22,21,15,0.35); }
.pub-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.pub-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pub-card:hover .thumb img { transform: scale(1.05); }
.pub-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pub-card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.pub-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.pub-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.pub-card .date { font-family: var(--mono); margin-top: 20px; font-size: 0.8rem; color: var(--muted-2); }
.pub-card .thumb { display: block; }
.pub-card h3 a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.pub-card h3 a:hover { color: var(--gold); }

/* ---------- Publications slider ---------- */
.pub-slider { position: relative; }
.pub-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pub-track::-webkit-scrollbar { display: none; }
.pub-track > .pub-card { scroll-snap-align: start; }
.pub-slider-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.pub-arrow {
  width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; font-size: 17px; line-height: 1;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pub-arrow:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); transform: translateY(-2px); }
.pub-dots { display: flex; align-items: center; gap: 9px; }
.pub-dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px;
  background: var(--line); cursor: pointer; transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.pub-dot.active { background: var(--gold); width: 24px; }
@media (max-width: 1000px) {
  .pub-track { grid-auto-columns: calc((100% - 28px) / 2); }
}
@media (max-width: 720px) {
  .pub-track { grid-auto-columns: 88%; }
}

/* ---------- Dark CTA band ---------- */
.cta-band { background: var(--dark-soft); color: var(--on-dark); text-align: left; }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 22px 0 34px; max-width: 20ch; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding: 84px 0 34px; border-top: 1px solid rgba(255,255,255,0.10); box-shadow: inset 0 1px 0 rgba(176,137,79,0.35); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .eyebrow { color: var(--on-dark-muted); }
.footer-brand h3 { font-size: 1.5rem; margin: 18px 0 26px; max-width: 20ch; color: var(--on-dark); }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); font-weight: 500; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: rgba(244,241,234,0.8); font-size: 0.98rem; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer-bottom p { color: var(--on-dark-muted); font-size: 0.85rem; }
.footer-mark { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(255,255,255,0.1); border-radius: 3px; font-family: var(--serif); font-size: 14px; }

/* ---------- Inner page hero (navy banner) ---------- */
.page-hero {
  padding: 132px 0 88px;
  margin-bottom: clamp(44px, 6vw, 72px);
  background: linear-gradient(155deg, oklch(30% 0.09 258) 0%, oklch(22% 0.07 260) 58%, oklch(19% 0.06 262) 100%);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 -1px 0 rgba(196,150,74,0.35);
}
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 400; margin: 22px 0 26px; max-width: 18ch; color: var(--on-dark); }
.page-hero p { max-width: 60ch; font-size: 1.12rem; color: rgba(244,241,234,0.84); }
.page-hero em { font-style: italic; color: var(--gold-soft); }

/* ---------- Glance strip ---------- */
.glance { display: flex; gap: 40px; flex-wrap: wrap; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.glance div { display: flex; flex-direction: column; }
.glance .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; margin-bottom: 6px; }
.glance .v { font-family: var(--serif); font-size: 1.15rem; }

/* ---------- Numbered value grid (about/research) ---------- */
.val-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.val-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.val-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.val { background: var(--bg); padding: 36px 30px; min-height: 210px; display: flex; flex-direction: column; transition: background 0.4s var(--ease); }
.val:hover { background: var(--surface); }
.val .idx { font-family: var(--mono); color: var(--gold); font-weight: 500; margin-bottom: 22px; font-size: 0.85rem; }
.val h3 { font-size: 1.24rem; margin-bottom: 12px; }
.val p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Mission band ---------- */
.mission { background: var(--accent); color: var(--on-dark); }
.mission .eyebrow { color: var(--gold-soft); }
.mission .eyebrow::before { background: var(--gold); }
.mission p { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.28; max-width: 22ch; margin-top: 20px; font-weight: 400; }

/* ---------- Programme feature (dark) ---------- */
.prog-feature { background: var(--dark); color: var(--on-dark); border-radius: var(--radius); padding: 56px; }
.prog-feature .badge { font-family: var(--mono); display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; margin-bottom: 20px; }
.prog-feature .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(196,150,74,0.22); }
.prog-feature h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 10px; color: var(--on-dark); }
.prog-feature .sub { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.05em; margin-bottom: 22px; }
.prog-feature p { color: rgba(244,241,234,0.82); max-width: 70ch; }
.prog-tags { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); }
.prog-tags .k { font-family: var(--serif); font-size: 1.25rem; }
.prog-tags .l { color: var(--on-dark-muted); font-size: 0.9rem; }

/* ---------- Timeline list (programmes past) ---------- */
.timeline { border-top: 1px solid var(--line); }
.tl-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 30px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); transition: padding 0.4s var(--ease); }
.tl-item:hover { padding-left: 12px; }
.tl-item .yr { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.tl-item h3 { font-size: 1.35rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 0.98rem; max-width: 65ch; }
.tl-item .link { font-size: 13px; font-weight: 600; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.tl-item .link .arrow { transition: transform 0.35s var(--ease); }
.tl-item:hover .link .arrow { transform: translateX(4px); }

/* ---------- Filter tabs ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-row button { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all 0.3s var(--ease); }
.filter-row button:hover { border-color: var(--ink); }
.filter-row button.active { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-methods { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cm { background: var(--bg); padding: 28px 30px; }
.cm .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; margin-bottom: 8px; }
.cm .v { font-family: var(--serif); font-size: 1.25rem; }
.cm a.v { color: var(--accent); }
.form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 40px; }
.form-card h3 { font-size: 1.7rem; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field textarea { width: 100%; font-family: var(--sans); font-size: 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); color: var(--ink); transition: border-color 0.3s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }

/* ---------- People profiles ---------- */
.profile-list { display: grid; gap: 30px; }
.profile { display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: center; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 40px; transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease); }
.profile:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -34px rgba(20,26,43,0.45); }
.profile.rev { grid-template-columns: 1fr 340px; }
.profile.rev .profile-media { order: 2; }
.profile-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; background: linear-gradient(150deg, var(--accent) 0%, var(--dark) 100%); box-shadow: 0 20px 50px -30px rgba(20,26,43,0.55); }
.profile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.profile:hover .profile-media img { transform: scale(1.04); }
.profile-media .initials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 4rem; color: var(--on-dark); }
.profile .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kicker); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 9px; }
.profile .role::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.profile h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.profile .tagline { font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.4; color: var(--accent); margin-bottom: 20px; max-width: 48ch; }
.profile .bio { color: var(--muted); max-width: 60ch; }
.profile .bio p + p { margin-top: 14px; }
.people-note { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line); color: var(--muted); max-width: 64ch; }
.people-note strong { color: var(--ink-soft); font-weight: 600; }
@media (max-width: 860px) {
  .profile, .profile.rev { grid-template-columns: 1fr; gap: 30px; padding: 28px; }
  .profile.rev .profile-media { order: 0; }
  .profile-media { max-width: 300px; }
}

/* ---------- Directors — refined alternating rows (scoped) ---------- */
.dir-profiles { gap: 0; counter-reset: dir; border-top: 1px solid var(--line); }
.dir-profiles .profile {
  grid-template-columns: 360px 1fr;
  gap: 66px;
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 68px 6px;
  counter-increment: dir;
  transition: background 0.5s var(--ease);
}
.dir-profiles .profile.rev { grid-template-columns: 1fr 360px; }
.dir-profiles .profile:hover { transform: none; box-shadow: none; }

/* Portrait frame */
.dir-profiles .profile-media {
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 32px 64px -34px rgba(20,26,43,0.55);
}
.dir-profiles .profile-media::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(196,150,74,0.55); border-radius: 3px;
  pointer-events: none; opacity: 0; transition: opacity 0.55s var(--ease);
}
.dir-profiles .profile:hover .profile-media::after { opacity: 1; }
.dir-profiles .profile:hover .profile-media img { transform: scale(1.05); }
.dir-profiles .profile-media .initials { font-size: 4.4rem; letter-spacing: 0.04em; }

/* Body */
.dir-profiles .profile-body { position: relative; }
.dir-profiles .profile-body::before {
  content: "0" counter(dir);
  position: absolute; top: 2px; right: 0;
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.14em;
  color: var(--gold); font-weight: 600; opacity: 0.75;
}
.dir-profiles .profile .role { margin-bottom: 18px; }
.dir-profiles .profile h2 {
  font-size: clamp(1.85rem, 3.3vw, 2.5rem);
  margin-bottom: 16px;
  transition: color 0.4s var(--ease);
}
.dir-profiles .profile:hover h2 { color: var(--accent); }
.dir-profiles .profile .tagline {
  font-size: 1.16rem; line-height: 1.5;
  margin-bottom: 22px; padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.dir-profiles .profile .bio { font-size: 1.0rem; line-height: 1.72; }
.dir-profiles .profile .bio p + p { margin-top: 16px; }

@media (max-width: 860px) {
  .dir-profiles .profile, .dir-profiles .profile.rev {
    grid-template-columns: 1fr; gap: 28px; padding: 44px 0;
  }
  .dir-profiles .profile-media { max-width: 320px; }
  .dir-profiles .profile-body::before { position: static; display: block; margin-bottom: 12px; }
}

/* ---------- Expandable bio (Read more) ---------- */
.bio-more { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.55s var(--ease), opacity 0.5s var(--ease); }
.bio-more.open { max-height: 3000px; opacity: 1; }
.bio-more > p { margin-top: 14px; }
.dir-profiles .bio-more > p { margin-top: 16px; }
.read-more {
  margin-top: 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  background: none; border: none; padding: 8px 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s var(--ease);
}
.read-more:hover { color: var(--gold); }
.read-more .rm-ico { font-size: 9px; transition: transform 0.35s var(--ease); }
.read-more.open .rm-ico { transform: rotate(180deg); }

/* ---------- Accomplishments ---------- */
.ach-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.ach-images img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.ach-group { margin-top: 56px; }
.ach-group > .eyebrow { margin-bottom: 22px; display: inline-flex; }
.ach-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ach { background: var(--bg); display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 26px 30px; transition: background 0.4s var(--ease); }
.ach:hover { background: var(--surface); }
.ach .n { font-family: var(--mono); color: var(--gold); font-size: 0.9rem; font-weight: 500; padding-top: 3px; }
.ach p { color: var(--ink-soft); max-width: 80ch; }
.ach p strong { font-weight: 600; color: var(--ink); }
@media (max-width: 720px) {
  .ach-images { grid-template-columns: 1fr 1fr; }
  .ach { grid-template-columns: 40px 1fr; gap: 14px; padding: 22px 20px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards-4, .val-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .mandate-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.rev .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .partner { display: none; }
  .nav-toggle { display: block; }
  .cards-4, .val-grid, .val-grid.cols-3, .pub-grid, .footer-top { grid-template-columns: 1fr; }
  .prog-feature { padding: 34px 24px; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .tl-item .link { justify-self: start; }
  .sec-head-row { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 80vh; }
}
