/* ============================================================
   Lara Shewchuk — site styles
   Externalized for a strict Content-Security-Policy (no inline CSS).
   ============================================================ */

:root {
  --ink:        #0B1B2B;
  --midnight:   #0F1E2E;
  --ink-2:      #2E3B4C;
  --ink-3:      #6B7789;
  --paper:      #FFFFFF;
  --bg:         #F7F8FA;
  --bg-2:       #EEF1F5;
  --rule:       #D8DEE7;
  --accent:     #1B3A6B;  /* deep board-blue, used sparingly */
  --dot:        #D6AFD6;  /* brand pink — used with purpose */
  --font-wordmark:'Fraunces', Georgia, serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-sans:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'Inter Tight', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
img { max-width: 100%; }

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.contact a:focus-visible { outline-color: var(--dot); }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--midnight); color: var(--paper);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 4px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.shell { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 780px) { .shell { padding: 0 24px; } }

/* ─── Pink dot as brand punctuation (used purposefully) ─── */
.dot-pink { color: var(--dot); font-weight: 600; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg); border-bottom: 1px solid var(--rule);
}
.nav .row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px; padding: 18px 0; gap: 24px;
}

/* Brand lockup — flag (LS + pink dot) + wordmark */
.brand.brand--lockup {
  font-family: var(--font-wordmark);
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--midnight); text-decoration: none;
}
.brand__flag {
  display: inline-flex; align-items: center; justify-content: flex-start;
  width: 67px; height: 67px; flex-shrink: 0;
}
.brand__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand__eyebrow {
  font-family: var(--font-wordmark); font-weight: 400; font-size: 18px;
  color: #707B85; letter-spacing: 0; margin-bottom: 4px;
}
.brand__name {
  font-family: var(--font-wordmark); font-weight: 600; font-size: 36px;
  color: var(--midnight); letter-spacing: -0.025em; line-height: 1;
}
.brand__dot { color: var(--dot); font-weight: 600; }

.nav__menu { display: flex; gap: 32px; align-items: center; }
.nav__menu li { position: relative; padding-right: 10px; }
.nav__menu a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-2); padding: 4px 0; position: relative; text-transform: uppercase;
}
.nav__menu a::before {
  content: '\2022';
  position: absolute; right: -11px; top: 50%; transform: translateY(-62%);
  color: var(--dot); font-size: 14px; line-height: 1;
}
.nav__menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--midnight); transition: width .25s ease;
}
.nav__menu a:hover,
.nav__menu a.is-current { color: var(--midnight); }
.nav__menu a:hover::after,
.nav__menu a.is-current::after { width: 100%; }

.nav .credentials {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 500; text-transform: uppercase;
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0 7px;
  line-height: 1.5; padding-left: 22px; border-left: 1px solid var(--rule);
}
.nav .credentials .sep { color: var(--rule); font-size: 9px; line-height: 0; margin: 0 -1px; }

@media (max-width: 1100px) { .nav .credentials { display: none; } }
@media (max-width: 900px)  { .nav__menu { display: none; } }

/* ─── HERO ─── */
.hero { padding: 72px 0 120px; border-bottom: 1px solid var(--rule); }
.hero .eyebrow-row {
  display: flex; flex-wrap: wrap; gap: 16px 48px; margin-bottom: 56px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-3); text-transform: uppercase;
}
.hero .eyebrow-row span { position: relative; padding-left: 14px; }
.hero .eyebrow-row span::before {
  content: '•'; position: absolute; left: 0; color: var(--dot); font-size: 16px; line-height: 1; top: -2px;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6.7vw, 104px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); text-wrap: balance;
  max-width: 26ch; margin-bottom: 0;
}
.hero h1 em {
  font-style: italic; color: var(--accent);
  font-family: var(--font-display); font-weight: 400;
}
.hero .tagline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4;
  color: var(--ink-2); max-width: 36ch;
  margin-top: 28px;
}
.hero .creds-line {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.22em;
  color: var(--midnight); font-weight: 500; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0 12px; flex-wrap: wrap;
  margin-top: 28px; line-height: 1.5;
}
.hero .creds-line .sep { color: var(--dot); font-size: 16px; line-height: 0; }

.hero .rule { border-top: 1px solid var(--rule); margin: 48px 0 40px; }

.hero .split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .hero .split { grid-template-columns: 1fr; gap: 40px; } }

.hero .lede {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: var(--ink-2); max-width: 52ch;
}
.hero .lede p + p { margin-top: 16px; }

.factbox { display: flex; flex-direction: column; gap: 28px; }
.fact { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: baseline; }
.fact .k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.fact .v { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--ink); }

/* Board Value — hero footer block */
.hero .board-value { margin-top: 76px; padding-top: 56px; border-top: 1px solid var(--rule); }
.hero .bv-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--midnight);
}
.hero .bv-title em { font-style: italic; color: var(--accent); }
.hero .bv-intro {
  font-family: var(--font-body); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.5;
  color: var(--ink-2); max-width: 82ch; margin-top: 18px;
}
.hero .bv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 48px; }
.hero .bv-col { border-top: 1px solid var(--rule); padding-top: 18px; }
.hero .bv-k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--midnight); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.hero .bv-k::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--dot); flex-shrink: 0;
}
.hero .bv-v { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 900px) { .hero .bv-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 36px; } }
@media (max-width: 560px) { .hero .bv-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .fact { grid-template-columns: 1fr; gap: 4px; } }

/* ─── CHAPTER HEAD ─── */
.chapter { padding: 112px 0; border-bottom: 1px solid var(--rule); }
.chapter-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 72px; }
.chapter-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 16px;
}
.chapter-label .rule { flex: 1; border-top: 1px solid var(--rule); height: 1px; }
.chapter-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: balance;
}
.chapter-head h2 em { font-style: italic; color: var(--accent); }
@media (max-width: 780px) { .chapter-head { gap: 20px; } .chapter { padding: 72px 0; } }

/* ─── BIO (§ 01) ─── */
.bio-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.bio-prose p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  color: var(--ink-2); margin-bottom: 20px; text-wrap: pretty;
}
.bio-prose p strong { color: var(--ink); font-weight: 600; }
.bio-aside {
  border: 1px solid var(--rule); background: var(--paper);
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
}
.bio-aside .aside-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 12px; border-bottom: 1px solid var(--rule); margin-bottom: 4px;
}
.bio-aside .fact { grid-template-columns: 130px 1fr; gap: 16px; }
.bio-aside .fact .v { font-size: 15px; }
@media (max-width: 960px) { .bio-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── BOARDS (§ 02) ─── */
.boards-list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.board-row {
  display: grid; grid-template-columns: 1.4fr 1fr 220px; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.board-row .br-date {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase;
  padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid var(--rule);
}
.board-row .br-name {
  font-family: var(--font-display); font-size: 24px; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; margin-bottom: 6px;
}
.board-row .br-sub { font-family: var(--font-body); font-size: 14px; color: var(--ink-3); line-height: 1.45; }
.board-row .br-role { font-family: var(--font-body); font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.board-row .br-committee {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.board-row .br-committee span { padding: 3px 8px; border: 1px solid var(--rule); background: var(--paper); display: inline-block; width: fit-content; }
.board-row .br-name::after {
  content: '•'; color: var(--dot); margin-left: 8px; font-size: 18px; vertical-align: middle;
}
@media (max-width: 960px) { .board-row { grid-template-columns: 1fr; gap: 10px; } }

.boards-subhead {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin: 64px 0 20px; font-weight: 500;
}
.section-intro {
  max-width: 780px; font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: var(--ink-2); margin: -8px 0 28px; font-style: italic;
}
.section-intro--gap { margin: -16px 0 56px; }

/* AI by Design — lead + supporting note */
.aibd-lead {
  max-width: 780px; font-family: var(--font-body); font-size: 23px; line-height: 1.42;
  color: var(--ink-2); margin: -16px 0 20px; font-style: normal; text-wrap: pretty;
}
.aibd-note {
  max-width: 780px; font-family: var(--font-body); font-size: 18px; line-height: 1.55;
  color: var(--ink-2); margin: 0 0 56px; font-style: italic; font-weight: 400; text-wrap: pretty;
}

/* ─── Memberships ─── */
.chips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.chip-card {
  background: var(--paper); border: 1px solid var(--rule); padding: 20px;
  display: flex; flex-direction: column; gap: 6px; transition: background-color .2s;
}
.chip-card:hover { background: var(--bg-2); }
.chip-card .who { font-family: var(--font-body); font-size: 15px; line-height: 1.35; color: var(--ink); font-weight: 500; }
.chip-card .what { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }

/* ─── EXECUTIVE (§ 03) timeline ─── */
.exec-list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.exec-row {
  display: grid; grid-template-columns: 1.5fr 1fr 140px; gap: 40px;
  padding: 32px 0; border-bottom: 1px solid var(--rule);
  align-items: start; transition: padding-left .2s;
}
.exec-row:hover { padding-left: 12px; }
.exec-row .tenure {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase; text-align: right; padding-top: 8px;
}
.exec-row .company {
  font-family: var(--font-display); font-size: 24px; line-height: 1.2;
  color: var(--ink); font-weight: 500; letter-spacing: -0.015em;
}
.exec-row .company::after {
  content: '•'; color: var(--dot); margin-left: 8px; font-size: 18px; vertical-align: middle;
}
.exec-row .company-sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-3); text-transform: uppercase; margin-top: 8px;
}
.exec-row .role {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.4;
  color: var(--ink-2); font-weight: 400; margin-top: 10px;
}
.exec-row .desc { font-family: var(--font-body); font-size: 14px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 960px) {
  .exec-row { grid-template-columns: 1fr; gap: 12px; }
  .exec-row .tenure { text-align: left; padding-top: 0; }
}

/* ─── RECOGNITION (§ 06) accolade cards ─── */
.accolades {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
.accolade {
  background: var(--paper); padding: 28px; grid-column: span 4;
  display: flex; flex-direction: column; gap: 16px; min-height: 240px;
  transition: background-color .2s;
}
.accolade:hover { background: var(--bg-2); }
.accolade.wide { grid-column: span 6; }
.accolade .iconbox {
  width: 36px; height: 36px; border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
}
.accolade .logo {
  width: 100%; aspect-ratio: 16 / 7;
  background: var(--bg-2); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.accolade .logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 4; }
.accolade .logo.logo--square { aspect-ratio: 1 / 1; background: var(--paper); }
.accolade .logo.logo--square img { object-fit: contain; padding: 0; }
.accolade .logo.logo--badge { aspect-ratio: 1 / 1; background: var(--bg-2); }
.accolade .logo.logo--badge img { object-fit: contain; padding: 18px; }
.accolade .logo.logo--badge-wxn { background: #2A1A3E; }
.accolade .logo.logo--portrait { aspect-ratio: 3 / 4; background: var(--paper); }
.accolade .logo.logo--portrait img { object-fit: contain; padding: 0; }
.accolade .year { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); }
.accolade .title {
  font-family: var(--font-display); font-size: 22px; line-height: 1.22; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; margin-top: auto;
}
.accolade .org { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-3); text-transform: uppercase; }
.accolade.accent { background: var(--midnight); color: var(--paper); }
.accolade.accent .year, .accolade.accent .org { color: color-mix(in oklab, var(--paper) 65%, transparent); }
.accolade.accent .title { color: var(--paper); }
.accolade.accent .iconbox { border-color: color-mix(in oklab, var(--paper) 40%, transparent); color: var(--paper); }
.accolade.accent .logo { background: color-mix(in oklab, var(--paper) 10%, transparent); border-color: color-mix(in oklab, var(--paper) 25%, transparent); }
@media (max-width: 1000px) { .accolade, .accolade.wide { grid-column: span 6; } }
@media (max-width: 640px)  { .accolade, .accolade.wide { grid-column: span 12; } }

/* ─── Bell-ringing strip ─── */
.exchange-strip {
  border-top: 1px solid var(--midnight); border-bottom: 1px solid var(--midnight);
  padding: 32px 0 28px; background: var(--midnight); color: var(--paper);
  position: relative; overflow: hidden; margin-top: 80px;
}
.exchange-viewport {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.exchange-track {
  display: inline-flex; gap: 0;
  font-family: var(--font-display); font-size: 28px; letter-spacing: -0.005em;
  color: var(--paper); white-space: nowrap;
  animation: tickerScroll 38s linear infinite; will-change: transform;
}
.exchange-strip:hover .exchange-track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.exchange-track > span { display: inline-flex; align-items: baseline; gap: 14px; padding-right: 56px; position: relative; }
.exchange-track > span + span::before {
  content: '•'; position: absolute; left: -36px; top: 50%; transform: translateY(-58%);
  color: #E6BCE6; font-size: 30px; line-height: 0; font-weight: 600;
}
.exchange-track .name { color: var(--paper); font-weight: 400; }
.exchange-track .where {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 65%, transparent); font-style: normal;
}
@media (prefers-reduced-motion: reduce) {
  .exchange-track { animation: none; }
}

/* ─── AI BY DESIGN (§ 04) ─── */
.ai-features {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: var(--rule); border: 1px solid var(--rule); margin-bottom: 72px;
}
.ai-feat {
  background: var(--paper); padding: 32px; grid-column: span 4;
  display: flex; flex-direction: column; gap: 20px; min-height: 360px;
  position: relative; transition: background-color .2s; text-decoration: none; color: inherit;
}
.ai-feat:hover { background: var(--bg-2); }
.ai-feat.feature { grid-column: span 8; min-height: 420px; background: var(--midnight); color: var(--paper); }
.ai-feat.feature:hover { background: color-mix(in oklab, var(--paper) 6%, var(--midnight)); }
.ai-feat .meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.ai-feat.feature .meta-row { color: color-mix(in oklab, var(--paper) 65%, transparent); }
.ai-feat .headline {
  font-family: var(--font-display); font-size: 26px; line-height: 1.22; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; margin-top: auto;
}
.ai-feat.feature .headline { color: var(--paper); font-size: 36px; line-height: 1.15; }
.ai-feat .sub { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.ai-feat.feature .sub { color: color-mix(in oklab, var(--paper) 80%, transparent); font-size: 15px; }
.ai-feat .cta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--rule);
}
.ai-feat.feature .cta { color: color-mix(in oklab, var(--paper) 75%, transparent); border-top-color: color-mix(in oklab, var(--paper) 25%, transparent); }
.ai-feat .hero-img {
  width: calc(100% + 64px); margin: -32px -32px 16px;
  aspect-ratio: 16 / 7; overflow: hidden; background: var(--bg-2);
}
.ai-feat .hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ai-feat .hero-img.graphic { aspect-ratio: 16 / 9; background: var(--paper); }
.ai-feat.feature .hero-img { background: color-mix(in oklab, var(--paper) 8%, var(--midnight)); }
/* Featured 03–05: title sits at a fixed gap under the thumbnail so every headline
   starts on the same row; CTA stays pinned to the card bottom. */
.ai-features .ai-feat:nth-child(n+3) .headline { margin-top: 0; }
.ai-features .ai-feat:nth-child(n+3) .cta { margin-top: auto; }
@media (max-width: 1000px) { .ai-feat, .ai-feat.feature { grid-column: span 6; } }
@media (max-width: 640px)  { .ai-feat, .ai-feat.feature { grid-column: span 12; } .ai-feat.feature .headline { font-size: 28px; } }

/* Further writing */
.further-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; margin-bottom: 4px;
}
.further-sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--ink-2);
  font-style: italic; margin: -8px 0 28px; max-width: 780px;
}
.further-table { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.further-row {
  display: grid; grid-template-columns: 90px 1fr 140px 140px; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  align-items: baseline; transition: padding-left .2s, color .2s;
}
.further-row:hover { padding-left: 12px; }
.further-row:hover .ft-t { color: var(--accent); }
.further-row .ft-d { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.further-row .ft-t { font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: var(--ink); transition: color .2s; }
.further-row .ft-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.further-row .ft-v { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); text-align: right; }
@media (max-width: 780px) { .further-row { grid-template-columns: 1fr; gap: 4px; } .further-row .ft-v { text-align: left; } }

/* ─── CONTACT (§ 07) ─── */
.contact { padding: 120px 0; background: var(--midnight); color: var(--paper); }
.contact .quiet {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 60%, transparent); margin-bottom: 32px;
}
.contact h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.1; letter-spacing: -0.02em;
  max-width: 18ch; margin-bottom: 64px; text-wrap: balance;
}
.contact h2 em { font-style: italic; color: var(--dot); }
.contact .links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  border: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
}
.contact .links a {
  background: var(--midnight); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px; transition: background-color .2s;
  min-height: 96px; justify-content: center;
}
.contact .links a:hover { background: color-mix(in oklab, var(--paper) 8%, var(--midnight)); }
.contact .links .lab {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
}
.contact .links .val { font-family: var(--font-display); font-size: 22px; color: var(--paper); letter-spacing: -0.01em; word-break: break-word; }
@media (max-width: 720px) { .contact .links { grid-template-columns: 1fr; } }

.contact .links .contact-logo {
  background: var(--midnight); padding: 28px 24px;
  display: flex; align-items: center; gap: 16px;
}
.contact .links .contact-logo .brand__flag { display: inline-flex; width: 64px; height: 41px; flex-shrink: 0; }
.contact .links .contact-logo .brand__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.contact .links .contact-logo .cl-eyebrow {
  font-family: var(--font-wordmark); font-weight: 400; font-size: 16px;
  color: color-mix(in oklab, var(--paper) 55%, transparent); margin-bottom: 4px;
}
.contact .links .contact-logo .cl-name {
  font-family: var(--font-wordmark); font-weight: 600; font-size: 32px;
  color: var(--paper); letter-spacing: -0.025em; line-height: 1;
}

/* ─── FOOTER ─── */
footer.site {
  padding: 40px 0; border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-3); text-transform: uppercase;
}
footer.site .shell { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer.site .col { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site a:hover { color: var(--ink); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   PURPOSE (§ 05) — scoped under #purpose
   ═══════════════════════════════════════════════════════════ */
#purpose {
  --soft-white: #F7F8FA;
  --dot-dark: #E6BCE6;
  --lara-tone: #707B85;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;
  --font-brand: 'Fraunces', Georgia, serif;
  background: var(--soft-white); color: var(--ink);
  font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.55;
}
#purpose .shell { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { #purpose .shell { padding: 0 24px; } }

/* HERO */
#purpose .hero { padding: 72px 0 64px; position: relative; border-bottom: 1px solid var(--rule); }
#purpose .purpose-label { margin-bottom: 32px; color: var(--ink-3); }
#purpose .hero h2.purpose-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.7vw, 104px); line-height: 1.02;
  letter-spacing: -0.025em; margin: 28px 0 0;
  color: var(--midnight); text-wrap: balance;
}
#purpose .hero h2.purpose-title em { font-style: italic; font-weight: 400; color: var(--accent); }
#purpose .hero .dot { color: var(--dot); }
#purpose .hero .lede {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4;
  max-width: 760px; margin-top: 36px; color: var(--ink-2); letter-spacing: -0.005em;
}
#purpose .hero .hero-sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px); line-height: 1.15;
  letter-spacing: -0.012em; color: var(--midnight); margin-top: 18px;
}
#purpose .hero .hero-sub .dot { color: var(--dot); }

/* CHAPTER (alternating image + copy) */
#purpose .chapters { padding: 16px 0 32px; }
#purpose .chapter {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px;
  align-items: center; padding: 64px 0; position: relative; border-bottom: none;
}
#purpose .chapter + .chapter { border-top: 1px solid var(--rule); }
#purpose .chapter:nth-child(even) .chapter__art { order: 2; }
#purpose .chapter:nth-child(even) .chapter__copy { order: 1; }
#purpose .chapter__copy { max-width: 560px; }
#purpose .chapter__num {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em;
  color: var(--ink-3); text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
#purpose .chapter__num::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--dot); }
#purpose .chapter__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.02;
  letter-spacing: -0.022em; color: var(--midnight); margin-bottom: 20px; text-wrap: balance;
}
#purpose .chapter__title em { font-style: italic; font-weight: 400; color: var(--accent); }
#purpose .chapter__title .dot { color: var(--dot); }
#purpose .chapter__body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-bottom: 24px; }
#purpose .chapter__body strong { color: var(--midnight); font-weight: 600; }
#purpose .chapter__facts {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase; font-weight: 500;
}
#purpose .chapter__facts span { position: relative; padding-right: 14px; }
#purpose .chapter__facts span:not(:last-child)::after {
  content: '\2022'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--dot); font-size: 14px; line-height: 0;
}

/* Photo art */
#purpose .chapter__art { position: relative; }
#purpose .photo {
  display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  background: var(--bg-2); border-radius: 2px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,30,46,0.4), 0 8px 20px -10px rgba(15,30,46,0.25);
}
#purpose .photo.landscape { aspect-ratio: 4/3; }

#purpose .chapter__art.single .photo { transform: rotate(-1deg); max-width: 560px; margin: 0 auto; }
#purpose .chapter__art.single .photo.logo-frame {
  aspect-ratio: 3/2; max-width: 520px; background: #fff; object-fit: contain;
  border: 1px solid var(--rule); border-radius: 3px; padding: 8px; transform: rotate(-1deg);
}

/* Award graphic */
#purpose .chapter__art.award { display: flex; justify-content: center; }
#purpose .award-card {
  width: 100%; max-width: 540px; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 2px; padding: 16px 16px 14px;
  transform: rotate(-1deg);
  box-shadow: 0 30px 60px -30px rgba(15,30,46,0.4), 0 8px 20px -10px rgba(15,30,46,0.25);
}
#purpose .award-card img { width: 100%; height: auto; display: block; border-radius: 1px; }
#purpose .award-card figcaption {
  font-family: var(--font-brand); font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--ink-3); margin-top: 12px; text-align: center; letter-spacing: 0.01em;
}

/* Pull-quote inside a chapter */
#purpose .chapter__quote {
  margin: 0 0 26px; padding: 4px 0 4px 22px; border-left: 2px solid var(--dot);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.5; color: var(--midnight); max-width: 520px;
}
#purpose .chapter__quote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 500;
}
#purpose .chapter__quote cite em { font-style: italic; text-transform: none; letter-spacing: 0; }

/* Two-photo composition */
#purpose .chapter__art.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; }
#purpose .chapter__art.duo .photo:first-child { transform: rotate(-1.6deg); margin-top: -18px; }
#purpose .chapter__art.duo .photo:nth-child(2) { transform: rotate(1.6deg); margin-top: 24px; }
@media (max-width: 900px) {
  #purpose .chapter__art.duo .photo:first-child,
  #purpose .chapter__art.duo .photo:nth-child(2) { margin-top: 0; }
}

/* Crossfade slideshow (Chapter 04 — five exchanges, one signal) */
#purpose .chapter__art.fade { position: relative; }
#purpose .chapter__art.fade .fade-stage {
  display: block; position: relative; width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 4/3;
}
#purpose .chapter__art.fade .photo {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  aspect-ratio: auto; margin: 0; object-fit: cover;
  opacity: 0; animation: purposeCrossfade 20s linear infinite;
}
#purpose .chapter__art.fade .photo:nth-child(1) { animation-delay: 0s; }
#purpose .chapter__art.fade .photo:nth-child(2) { animation-delay: 4s; }
#purpose .chapter__art.fade .photo:nth-child(3) { animation-delay: 8s; }
#purpose .chapter__art.fade .photo:nth-child(4) { animation-delay: 12s; }
#purpose .chapter__art.fade .photo:nth-child(5) { animation-delay: 16s; }
@keyframes purposeCrossfade {
  0% { opacity: 0; } 3% { opacity: 1; } 18% { opacity: 1; } 21% { opacity: 0; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #purpose .chapter__art.fade .photo { animation: none; opacity: 0; }
  #purpose .chapter__art.fade .photo:nth-child(1) { opacity: 1; }
}
@media (max-width: 900px) { #purpose .chapter__art.fade .fade-stage { max-width: 100%; } }

@media (max-width: 900px) {
  #purpose .chapter { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  #purpose .chapter:nth-child(even) .chapter__art { order: 0; }
  #purpose .chapter:nth-child(even) .chapter__copy { order: 1; }
  #purpose .hero { padding: 48px 0 32px; }
}

/* PURPOSE BREAK */
#purpose .purpose-break { padding: 80px 0 8px; }
#purpose .purpose-break .rule-line { border-top: 1px solid var(--rule); }
