/* ==========================================================================
   design-system.css — Division Group Design System
   Version 2.0 — extracted from landing design
   Single shared file. All pages link to this. Changes propagate everywhere.
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. LOCAL FONTS
   -------------------------------------------------------------------------- */

/* DM Sans — variable weight 300–600, latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Sans — variable weight 300–600, latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Serif Display — normal, latin-ext */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Serif Display — normal, latin */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Serif Display — italic, latin-ext */
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Serif Display — italic, latin */
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Colour — ink scale */
  --ink:          #1B1F2E;
  --ink-2:        #4A4E5A;
  --ink-3:        #6B7280;

  /* Colour — brass accent */
  --brass:        #C9A96E;
  --brass-dk:     #A88A52;

  /* Colour — warm neutrals */
  --warm:         #E8E4DA;
  --warm-mid:     #D9D4C8;
  --surface:      #F7F4EE;

  /* Borders */
  --border:       rgba(27,31,46,0.09);
  --border-warm:  rgba(27,31,46,0.12);
  --border-dark:  rgba(255,255,255,0.07);

  /* Typography */
  --fd: 'DM Serif Display', Georgia, serif;
  --fs: 'DM Sans', Verdana, sans-serif;

  /* Layout */
  --nav-h:          56px;
  --drawer-w:       360px;
  --sidebar-w:      300px;
  --content-pad-x:  48px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-drawer: 0.32s cubic-bezier(0.4,0,0.2,1);
}


/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */

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

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

body {
  font-family: var(--fs);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--brass-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

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


/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */

.site-nav {
  width: 100%;
  background: var(--ink);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 300;
}

.nav-inner {
  width: 100%;
  padding: 0 var(--content-pad-x);
  display: flex;
  align-items: center;
}

.nav-wordmark {
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-right: auto;
  white-space: nowrap;
  text-decoration: none;
}
.nav-wordmark:hover { text-decoration: none; color: #fff; }

.nav-contact {
  background: var(--brass);
  color: var(--ink);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background var(--t-fast);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-contact:hover { background: var(--brass-dk); text-decoration: none; color: var(--ink); }

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: var(--nav-h);
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.nav-search:hover { color: #fff; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--nav-h);
  height: var(--nav-h);
  border-left: 1px solid var(--border-dark);
  flex-shrink: 0;
  padding: 0;
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.ham-line {
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
  transform-origin: center;
}
.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); background: #fff; }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: #fff; }


/* --------------------------------------------------------------------------
   5. DRAWER
   -------------------------------------------------------------------------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  transition: background var(--t-base);
  z-index: 400;
}
.drawer-overlay.open { background: rgba(27,31,46,0.5); pointer-events: all; }

.site-drawer {
  position: fixed;
  top: 0; right: 0;
  width: var(--drawer-w);
  height: 100%;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform var(--t-drawer);
  z-index: 500;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.site-drawer.open { transform: translateX(0); }

.drawer-head {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.drawer-wordmark {
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-right: auto;
}

.drawer-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 20px; font-weight: 300; line-height: 1;
  transition: color var(--t-fast);
  background: none; border: none;
}
.drawer-close:hover { color: #fff; }

.drawer-body { flex: 1; padding: 32px 32px 48px; overflow-y: auto; }

.drawer-section { margin-bottom: 32px; }

.drawer-label {
  font-family: var(--fs);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dark);
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { text-decoration: none; }

.drawer-link-name {
  font-family: var(--fs);
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}

.drawer-link-arrow {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color var(--t-fast);
}

.drawer-link:hover .drawer-link-name { color: #fff; }
.drawer-link:hover .drawer-link-arrow { color: var(--brass); }

.drawer-link.active .drawer-link-name { color: #fff; }
.drawer-link.active .drawer-link-arrow { color: var(--brass); }
.drawer-link.active { border-left: 2px solid var(--brass); padding-left: 14px; }

.drawer-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.drawer-contact {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.drawer-cta {
  display: inline-flex; align-items: center;
  background: var(--brass); color: var(--ink);
  font-family: var(--fs);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  transition: background var(--t-fast);
}
.drawer-cta:hover { background: var(--brass-dk); }


/* --------------------------------------------------------------------------
   6. PAGE HEADER — interior pages (not the landing hero)
      Used by: about, philosophy, interim, leadership, contact, etc.
   -------------------------------------------------------------------------- */

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

.breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s;
}

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

.breadcrumb-sep {
  color: var(--brass);
  font-size: 10px;
  line-height: 1;
}

.breadcrumb-current { color: var(--ink-2); }

.page-header {
  width: 100%;
  background: var(--warm);
  border-bottom: 2px solid var(--brass);
  padding: 56px var(--content-pad-x) 48px;
}

.page-header-inner {
  max-width: 680px;
}

.page-header-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  margin-top: 20px;
}

.page-header-sub {
  font-family: var(--fs);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 560px;
}

@media (max-width: 900px) {
  .page-header { padding: 40px 24px 36px; }
}


/* --------------------------------------------------------------------------
   7. HERO — landing page
   -------------------------------------------------------------------------- */

.site-hero {
  width: 100%;
  background: var(--warm);
  padding: 80px var(--content-pad-x) 64px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  border-bottom: 2px solid var(--brass);
  position: relative;
  overflow: hidden;
}

.site-hero::before {
  display: none;
}

.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }

.hero-rule { width: 32px; height: 1px; background: var(--brass); flex-shrink: 0; }

.hero-eyebrow-text {
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(38px,4.6vw,66px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-title em { font-style: italic; }

.hero-sub {
  font-family: var(--fs);
  font-size: 17px; font-weight: 300;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-graphic { display: flex; align-items: center; justify-content: center; padding: 20px; }


/* --------------------------------------------------------------------------
   7. PAGE BODY
   -------------------------------------------------------------------------- */

.page-body {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  background: var(--surface);
}

.page-body--full {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  padding: 64px var(--content-pad-x) 96px;
  background: var(--surface);
}

.page-body--essay {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px var(--content-pad-x) 96px;
  background: var(--surface);
}


/* --------------------------------------------------------------------------
   8. PAGE MAIN
   -------------------------------------------------------------------------- */

.page-main {
  padding: 56px 64px 80px var(--content-pad-x);
  border-right: 1px solid var(--border);
}


/* --------------------------------------------------------------------------
   9. SECTION HEADER
   -------------------------------------------------------------------------- */

.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }

.section-num {
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass);
  flex-shrink: 0;
}

.section-rule { flex: 1; height: 1px; background: var(--border); }


/* --------------------------------------------------------------------------
   10. TYPOGRAPHY
   -------------------------------------------------------------------------- */

.page-title {
  font-family: var(--fd);
  font-size: 30px; font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--fs);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 16px;
}

.sub-heading {
  font-family: var(--fd);
  font-size: 20px; font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.body-p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 20px;
}

.body-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 24px;
}

.meta {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  line-height: 1.5;
}


/* --------------------------------------------------------------------------
   11. DIVIDER
   -------------------------------------------------------------------------- */

.divider { height: 1px; background: var(--border); margin: 40px 0; border: none; }
.divider--warm { background: var(--warm-mid); }


/* --------------------------------------------------------------------------
   12. ESSAY BLOCK
   -------------------------------------------------------------------------- */

.essay-block { display: grid; grid-template-columns: 3px 1fr; gap: 0 24px; }
.essay-bar { background: var(--brass); }

.essay-block-title {
  font-family: var(--fd);
  font-size: 20px; font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.essay-block-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 16px;
}


/* --------------------------------------------------------------------------
   13. ESSAY PAGE
   -------------------------------------------------------------------------- */

.essay-header {
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.essay-title {
  font-family: var(--fd);
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.essay-subtitle {
  font-family: var(--fs);
  font-size: 15px; font-weight: 300;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 20px;
}

.essay-meta { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

.essay-body { font-size: 17px; line-height: 1.85; color: var(--ink-2); font-weight: 300; }
.essay-body > * + * { margin-top: 24px; }

.essay-body h2 {
  font-family: var(--fd);
  font-size: 22px; font-weight: 400;
  line-height: 1.2; color: var(--ink);
  margin-top: 56px; margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.essay-body h3 {
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 40px; margin-bottom: 12px;
}

.essay-body blockquote {
  border-left: 2px solid var(--brass);
  margin: 40px 0;
  padding: 20px 32px;
  background: var(--warm);
}

.essay-body blockquote p {
  font-family: var(--fd);
  font-size: 17px; font-style: italic;
  line-height: 1.55; color: var(--ink); font-weight: 400;
}

.essay-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 11px; color: var(--ink-3);
  font-style: normal; font-family: var(--fs);
  letter-spacing: 0.04em;
}

.essay-footnotes {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.essay-footnotes ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex; flex-direction: column; gap: 12px;
}

.essay-footnotes li { font-size: 12px; color: var(--ink-3); line-height: 1.65; }

.request-badge {
  display: inline-block;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--border-warm);
  padding: 6px 14px;
  margin-top: 20px;
}


/* --------------------------------------------------------------------------
   14. PAGE SIDEBAR
   -------------------------------------------------------------------------- */

.page-sidebar {
  padding: 56px 40px 80px;
  background: var(--warm);
  display: flex;
  flex-direction: column;
}

.sb-block {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--warm-mid);
}
.sb-block:last-child { border-bottom: none; margin-bottom: 0; }

.sb-body {
  font-size: 13.5px;
  line-height: 1.7; color: var(--ink-2);
  font-weight: 300; margin-bottom: 12px;
}

.sb-link {
  font-size: 13px; color: var(--ink);
  display: flex; padding: 8px 0;
  border-bottom: 1px solid var(--warm-mid);
  font-weight: 400; letter-spacing: 0.02em;
  align-items: center; justify-content: space-between;
  text-decoration: none;
  transition: color var(--t-fast);
}
.sb-link:last-of-type { border-bottom: none; }
.sb-link:hover { color: var(--brass-dk); text-decoration: none; }

.sb-link-arrow { color: var(--brass); font-size: 11px; flex-shrink: 0; }

.sb-contact {
  font-size: 11px; color: var(--ink-3);
  font-weight: 300; letter-spacing: 0.04em;
  margin-top: 8px; display: block;
}


/* --------------------------------------------------------------------------
   15. BUTTONS
   -------------------------------------------------------------------------- */

.btn-primary {
  background: var(--ink); color: #fff;
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px;
  border: none; white-space: nowrap;
  transition: background var(--t-fast);
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.btn-primary:hover { background: #2d3348; text-decoration: none; color: #fff; }

.btn-ghost {
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color var(--t-fast);
  background: none; border: none;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--ink); text-decoration: none; }

.btn-read {
  font-family: var(--fs);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none;
  text-decoration: none;
  transition: color var(--t-fast);
}
.btn-read:hover { color: var(--brass-dk); text-decoration: none; }

.arrow {
  position: relative;
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}
.arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  transform: rotate(45deg);
}


/* --------------------------------------------------------------------------
   16. CARD GRID
   -------------------------------------------------------------------------- */

.card-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; margin-top: 32px; }

.card {
  background: var(--warm);
  border: 1px solid var(--warm-mid);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--t-base);
}
.card:hover { border-color: var(--brass); }

.card-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }

.card-title { font-family: var(--fd); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.2; }

.card-body { font-size: 14px; color: var(--ink-2); line-height: 1.7; font-weight: 300; flex: 1; }

.card-link {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: color var(--t-fast);
}
.card-link:hover { color: var(--brass-dk); text-decoration: none; }


/* --------------------------------------------------------------------------
   17. ARTICLE LIST
   -------------------------------------------------------------------------- */

.article-list { display: flex; flex-direction: column; margin-top: 8px; }

.article-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.article-row:first-child { border-top: 1px solid var(--border); }

.article-source { font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 4px; }

.article-title { font-family: var(--fd); font-size: 17px; font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 6px; }

.article-desc { font-size: 14px; color: var(--ink-3); line-height: 1.65; font-weight: 300; }

.article-link {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
  transition: color var(--t-fast);
}
.article-link:hover { color: var(--brass-dk); text-decoration: none; }


/* --------------------------------------------------------------------------
   18. PROP LIST
   -------------------------------------------------------------------------- */

.prop-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }

.prop-list li {
  padding-left: 16px;
  border-left: 2px solid var(--warm-mid);
  font-size: 15px; line-height: 1.75;
  color: var(--ink-2); font-weight: 300;
}

.prop-list li strong { color: var(--ink); font-weight: 500; }


/* --------------------------------------------------------------------------
   19. CONTACT
   -------------------------------------------------------------------------- */

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

.contact-block { display: flex; flex-direction: column; gap: 8px; }

.contact-value { font-size: 13px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }

.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; max-width: 520px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}

.form-input,
.form-textarea {
  font-family: var(--fs);
  font-size: 13px; color: var(--ink);
  background: var(--warm);
  border: 1px solid var(--warm-mid);
  padding: 12px 16px; width: 100%;
  transition: border-color var(--t-fast);
  -webkit-appearance: none; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--brass); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-3); }
.form-textarea { resize: vertical; min-height: 130px; }


/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  width: 100%;
  background: var(--ink);
  padding: 24px var(--content-pad-x);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }

.footer-links { display: flex; gap: 32px; }

.footer-link {
  font-size: 10px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-link:hover { color: rgba(255,255,255,0.65); text-decoration: none; }


/* --------------------------------------------------------------------------
   21. UTILITIES
   -------------------------------------------------------------------------- */

.u-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; }

.u-mt-sm  { margin-top: 16px; }
.u-mt-md  { margin-top: 28px; }
.u-mt-lg  { margin-top: 48px; }
.u-mt-xl  { margin-top: 64px; }

.u-muted  { color: var(--ink-3); }
.u-brass  { color: var(--brass); }
.u-serif  { font-family: var(--fd); }


/* --------------------------------------------------------------------------
   22. LEARN PANEL
   -------------------------------------------------------------------------- */

.learn-panel {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--warm-mid);
}

.learn-label {
  display: block;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.learn-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.learn-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.learn-dest {
  font-family: var(--fd);
  font-size: 19px; font-weight: 400;
  color: var(--ink); line-height: 1.2;
}

.learn-desc {
  font-size: 14px; color: var(--ink-3);
  line-height: 1.65; font-weight: 300;
  max-width: 480px;
}

.learn-link {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
  transition: color var(--t-fast);
}
.learn-link:hover { color: var(--brass-dk); text-decoration: none; }

@media (max-width: 900px) {
  .learn-inner { flex-direction: column; align-items: flex-start; }
}


/* --------------------------------------------------------------------------
   23. BIOGRAPHY NAV LINKS
   -------------------------------------------------------------------------- */

/* Bottom-of-page navigation strip shared across biography section pages */
.bio-nav-links {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.bio-nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--t-fast);
}
.bio-nav-link:hover { color: var(--brass-dk); text-decoration: none; }


/* --------------------------------------------------------------------------
   24. EPIGRAPH
   -------------------------------------------------------------------------- */

.epigraph {
  padding: 0 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.epigraph p {
  font-family: var(--fd);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 10px;
}

.epigraph cite {
  font-size: 11px;
  color: var(--ink-3);
  font-style: normal;
  font-family: var(--fs);
  letter-spacing: 0.04em;
}


/* --------------------------------------------------------------------------
   25. PILLAR LIST (NMA Results-Based Leadership Model)
   -------------------------------------------------------------------------- */

/* Base — full editorial version (leadership/model.html) */
.pillar-list {
  display: flex;
  flex-direction: column;
}

.pillar-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 20px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.pillar-row:first-child {
  border-top: 1px solid var(--border);
}

.pillar-num {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass);
  padding-top: 4px;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pillar-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: block;
}

.pillar-body {
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-2);
  font-weight: 300;
}

.pillar-body p + p {
  margin-top: 14px;
}


/* --------------------------------------------------------------------------
   26. PUBLICATIONS LINKS
   -------------------------------------------------------------------------- */

.pub-download-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.pub-download-link:hover {
  color: var(--brass-dk);
  text-decoration: none;
}


/* --------------------------------------------------------------------------
   27. SEARCH OVERLAY
   -------------------------------------------------------------------------- */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 31, 46, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 580px;
  margin: 0 24px;
  box-shadow: 0 20px 60px rgba(27, 31, 46, 0.22);
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.search-input-icon {
  color: var(--ink-3);
  flex-shrink: 0;
  display: flex;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--fs);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  min-width: 0;
  -webkit-appearance: none;
}

.search-input::placeholder { color: var(--ink-3); }
.search-input::-webkit-search-cancel-button { display: none; }

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 20px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.search-close-btn:hover { color: var(--ink); }

.search-results { overflow-y: auto; max-height: 360px; }

.search-result {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--t-fast);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover,
.search-result.focused { background: var(--warm); text-decoration: none; }

.search-result-section {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 3px;
}

.search-result-title {
  display: block;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}

.search-result-desc {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.55;
  font-weight: 300;
}

.search-empty {
  padding: 24px 20px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 300;
  text-align: center;
}

.search-hint {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

.search-hint kbd {
  font-family: var(--fs);
  font-size: 9px;
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 1px 5px;
  margin-right: 4px;
  color: var(--ink-2);
}


/* --------------------------------------------------------------------------
   28. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  :root { --content-pad-x: 24px; }

  .site-hero { grid-template-columns: 1fr; padding: 56px 24px 48px; }
  .site-hero::before { display: none; }
  .hero-graphic { display: none; }

  .page-body { grid-template-columns: 1fr; }
  .page-main { padding: 40px 24px 48px; border-right: none; border-bottom: 1px solid var(--border); }
  .page-sidebar { padding: 40px 24px 48px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .site-footer { padding: 20px 24px; }
}

@media (max-width: 600px) {
  .site-drawer { width: 100%; }
  .hero-title { font-size: clamp(32px,9vw,48px); }
  .hero-actions { gap: 20px; }
  .nav-contact { padding: 0 16px; font-size: 9px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 20px; }
}
