/* ============================================================
   Paul Cowley MBE — Design Tokens
   Warm, editorial, authoritative. Ink on warm paper.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Playfair Display — high-contrast Didone display serif. Used for display, headlines, pull-quotes (Regular 400 preferred for a lighter editorial voice).
   Public Sans — warm, plainspoken sans. Used for body, UI, metadata.
   JetBrains Mono — for dates, labels, small metadata only.

   NOTE TO USER: no brand fonts were provided. Google Fonts substitutes chosen above.
   If you have a preferred licensed pair (e.g. GT Sectra + Söhne; Tiempos + Founders Grotesk),
   drop the files into /fonts/ and we'll swap them in. */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ---------- Color: paper & ink ----------
     The brand lives on warm, slightly off-white paper — not clinical white.
     Ink is near-black but never pure #000. Warm, not cold. */
  --paper:          #F6F1E8;  /* primary background — warm oatmeal */
  --paper-2:        #EFE7D7;  /* secondary surface — a shade deeper */
  --paper-3:        #E6DAC3;  /* tertiary surface — dustjacket */
  --paper-white:    #FBF7EE;  /* lightest paper, for cards on paper */

  --ink:            #1C1A17;  /* primary text — warm near-black */
  --ink-2:          #3A342B;  /* secondary text — slate-brown */
  --ink-3:          #6B6256;  /* tertiary / meta — muted ink */
  --ink-4:          #9A9183;  /* quaternary / disabled */

  --rule:           #D4C8AF;  /* hairline dividers */
  --rule-strong:    #7A7061;  /* emphasised rule */

  /* ---------- Color: accents ----------
     A single editorial accent — oxblood. Used sparingly: for the
     first letter of section openers, in-text emphasis, underlines on hover.
     Also a clerical "forest" green for category tags, and a muted
     gold for honours/MBE references. */
  --oxblood:        #7A1F19;  /* primary accent — the underline, the drop cap */
  --oxblood-soft:   #A64B40;  /* hover / illustrated states */
  --forest:         #2F4A34;  /* secondary accent — faith, clerical collar green */
  --gold:           #8A6B1C;  /* tertiary — MBE, honours, formal lists */

  /* ---------- Semantic ---------- */
  --bg:             var(--paper);
  --bg-alt:         var(--paper-2);
  --bg-deep:        var(--paper-3);
  --surface:        var(--paper-white);
  --fg:             var(--ink);
  --fg-muted:       var(--ink-2);
  --fg-meta:        var(--ink-3);
  --fg-faint:       var(--ink-4);
  --accent:         var(--oxblood);
  --accent-hover:   var(--oxblood-soft);
  --divider:        var(--rule);

  /* ---------- Typography families ---------- */
  --font-serif:     'Playfair Display', 'Source Serif 4', 'Georgia', serif;
  --font-sans:      'Public Sans', 'Söhne', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ---------- Type scale (editorial, not corporate) ----------
     The scale favours a few big statements and a lot of comfortable reading size.
     Body sits at 19px. Display goes large. */
  --fs-xs:          0.75rem;   /* 12 — meta, caps labels */
  --fs-sm:          0.875rem;  /* 14 — small UI */
  --fs-base:        1.0625rem; /* 17 — UI body */
  --fs-md:          1.1875rem; /* 19 — editorial body */
  --fs-lg:          1.375rem;  /* 22 — lead paragraph */
  --fs-xl:          1.75rem;   /* 28 — sub-heads */
  --fs-2xl:         2.25rem;   /* 36 — small headlines */
  --fs-3xl:         3rem;      /* 48 — headlines */
  --fs-4xl:         4rem;      /* 64 — section openers */
  --fs-5xl:         5.25rem;   /* 84 — cover display */
  --fs-6xl:         7rem;      /* 112 — hero */

  --lh-tight:       1.05;
  --lh-display:     1.1;
  --lh-snug:        1.25;
  --lh-normal:      1.45;
  --lh-reading:     1.6;
  --lh-loose:       1.7;

  --tracking-tight: -0.02em;
  --tracking-snug:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:  0.04em;
  --tracking-caps:  0.14em;   /* for small caps labels */

  /* ---------- Spacing (8pt grid, with editorial breathing room) ---------- */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;
  --sp-11: 192px;

  /* ---------- Borders & radii ----------
     Radii are minimal — editorial work is mostly rectangular. Cards are
     almost-square with small softening. Buttons are pill or square-ish,
     not corporate-rounded. */
  --radius-sm:      2px;
  --radius-md:      4px;
  --radius-lg:      8px;
  --radius-pill:    999px;

  --border-hair:    1px solid var(--rule);
  --border-strong:  1px solid var(--rule-strong);
  --border-ink:     1px solid var(--ink);

  /* ---------- Shadows ----------
     Very restrained. Physical, like paper resting on paper — never floaty. */
  --shadow-paper:   0 1px 0 rgba(28, 26, 23, 0.04), 0 2px 6px rgba(28, 26, 23, 0.06);
  --shadow-lift:    0 2px 0 rgba(28, 26, 23, 0.05), 0 8px 22px rgba(28, 26, 23, 0.10);
  --shadow-inset:   inset 0 1px 0 rgba(255, 253, 247, 0.6), inset 0 -1px 0 rgba(28, 26, 23, 0.06);

  /* ---------- Motion ---------- */
  --ease-standard:  cubic-bezier(0.2, 0.0, 0.2, 1);
  --ease-enter:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-exit:      cubic-bezier(0.4, 0.0, 1, 1);
  --dur-quick:      120ms;
  --dur-standard:   220ms;
  --dur-slow:       420ms;

  /* ---------- Content widths ---------- */
  --measure-narrow: 36rem;   /* ~576px — body prose */
  --measure:        42rem;   /* ~672px — editorial body */
  --measure-wide:   56rem;   /* ~896px — lead + figures */
  --page-max:       72rem;   /* ~1152px — full page grid */
}

/* ---------- Base ---------- */
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-reading);
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Semantic type ---------- */
.display,
h1.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-6xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-tight);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  color: var(--fg);
}

h1, .h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-variation-settings: "opsz" 48;
}

h2, .h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-3xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-snug);
  font-variation-settings: "opsz" 36;
}

h3, .h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  font-variation-settings: "opsz" 28;
}

h4, .h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
}

h5, .h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
}

/* Body paragraph — editorial, generous */
p, .body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-reading);
  color: var(--fg);
  max-width: var(--measure);
  text-wrap: pretty;
}

.lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: var(--fg);
  font-style: italic;
  max-width: var(--measure-wide);
}

/* Small caps label — used for Topics, sections, eyebrow text */
.eyebrow, .caps {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--fg-meta);
}

/* Meta — for dates, bylines, venue lists */
.meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-meta);
}

/* Pull quote */
.pullquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-5);
  max-width: var(--measure-wide);
}

/* Drop cap — first letter of a section opener */
.dropcap::first-letter {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 4.2em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--accent);
}

/* Links */
a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-quick) var(--ease-standard),
              text-decoration-color var(--dur-quick) var(--ease-standard);
}
a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

/* Rules */
hr.hair { border: 0; border-top: var(--border-hair); margin: var(--sp-7) 0; }
hr.strong { border: 0; border-top: var(--border-strong); margin: var(--sp-7) 0; }

/* Utility: editorial page wrapper */
.page {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}
/* Speaker site styles — composed on top of colors_and_type.css */

.site { min-height: 100vh; position: relative; }

/* grain overlay */
.site::before {
  content: ''; position: fixed; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.04; z-index: 100; mix-blend-mode: multiply;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 18px 40px;
  background: rgba(246, 241, 232, 0.82);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--rule);
}
.brand {
  font-family: var(--font-serif); font-weight: 600; font-size: 26px;
  letter-spacing: -0.025em; color: var(--ink); text-decoration: none;
  white-space: nowrap; flex: 0 0 auto; min-width: 160px;
  display: inline-flex; align-items: baseline; gap: 0;
  position: relative;
}
.brand .brand-name {
  background-image: linear-gradient(var(--oxblood), var(--oxblood));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  padding-bottom: 2px;
}
.brand:hover .brand-name { background-size: 100% 3px; }
.brand .mbe {
  font-family: var(--font-mono); font-size: 11px; color: var(--oxblood);
  letter-spacing: 0.12em; margin-left: 6px; vertical-align: super;
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; flex: 0 0 auto; }
.nav-links a {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--ink-2); text-decoration: none; padding-bottom: 3px;
  border-bottom: 1px solid transparent; transition: all .2s var(--ease-standard);
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--ink); }
.nav-cta {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  background: var(--ink); color: var(--paper); padding: 10px 20px;
  border-radius: 999px; text-decoration: none; transition: background .2s;
  flex: 0 0 auto; white-space: nowrap;
}
.nav-cta:hover { background: var(--ink-2); color: var(--paper); }

/* ---------- Page wrap ---------- */
.page-wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 48px 128px; }
.page-header { padding: 160px 0 48px; max-width: var(--measure-wide); }
.page-header .eyebrow { display: block; margin-bottom: 20px; }
.page-header .display-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 72px; line-height: 1.04; letter-spacing: -0.025em;
  margin: 0 0 24px; color: var(--ink);
}
.page-header .lead { max-width: 640px; }

/* ---------- Divider component ---------- */
.divider { display: flex; align-items: center; gap: 20px; margin: 48px auto; max-width: 420px; }
.divider .line { flex: 1; height: 1px; background: var(--rule); }
.divider .glyph { font-family: var(--font-serif); font-size: 22px; color: var(--oxblood); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: 4px; border: 1px solid var(--ink);
  transition: all .22s var(--ease-standard); text-decoration: none;
  background: var(--ink); color: var(--paper);
}
.btn:hover { background: var(--ink-2); color: var(--paper); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-pill { border-radius: 999px; padding: 14px 28px; font-size: 16px; }
.btn-ghost {
  background: transparent; color: var(--ink); border: none; padding: 12px 4px;
  text-decoration: underline; text-decoration-color: var(--oxblood);
  text-underline-offset: 4px; text-decoration-thickness: 1px;
}
.btn-ghost:hover { color: var(--oxblood); background: transparent; text-decoration-thickness: 2px; }

/* ---------- Tags ---------- */
.tag {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 13px;
  border-radius: 999px; border: 1px solid var(--rule-strong); color: var(--ink-2);
  display: inline-block;
}
.tag-solid    { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tag-forest   { color: var(--forest); border-color: var(--forest); }
.tag-oxblood  { color: var(--oxblood); border-color: var(--oxblood); }
.tag-gold     { color: var(--gold); border-color: var(--gold); }

/* ---------- Home ---------- */
.home-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 140px 0 40px; align-items: start; }
.hero-text .eyebrow { display: block; margin-bottom: 24px; }
.display-xl {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 92px; line-height: 0.96; letter-spacing: -0.035em;
  margin: 0 0 32px; color: var(--ink); font-variation-settings: "opsz" 72;
}
.hero-text .lead { margin: 0; }
.hero-portrait { margin: 0; }
.hero-portrait img { width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: var(--shadow-paper); }
.hero-portrait figcaption {
  margin-top: 12px; font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em;
}

.home-quote { text-align: center; padding: 40px 0; max-width: 780px; margin: 0 auto; }
.pull {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 38px; line-height: 1.22; letter-spacing: -0.015em; color: var(--ink);
  margin: 0 0 20px;
}
.home-quote cite { font-style: normal; font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; }

.home-cv { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 20px 0; }
.display-m {
  font-family: var(--font-serif); font-weight: 500; font-size: 48px; line-height: 1.05;
  letter-spacing: -0.025em; margin: 16px 0 24px; color: var(--ink);
}
.cv-left .eyebrow { display: block; margin-bottom: 12px; }
.ghost-link {
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  text-decoration: underline; text-decoration-color: var(--oxblood);
  text-underline-offset: 5px; color: var(--ink);
}

.chron { display: grid; grid-template-columns: 100px 1fr; gap: 18px 32px; margin: 0; }
.chron dt { font-family: var(--font-mono); font-size: 14px; color: var(--oxblood); font-weight: 500; letter-spacing: 0.04em; }
.chron dd {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.5; color: var(--ink);
  margin: 0; padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}
.chron.wide dd { font-size: 18px; padding-bottom: 22px; }
.chron dt { padding-top: 2px; }

/* ---------- About ---------- */
.about-body { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.inset-portrait { margin: 8px 0 0; position: sticky; top: 120px; }
.inset-portrait img { width: 100%; height: auto; display: block; border-radius: 4px; }
.inset-portrait figcaption { margin-top: 10px; font-size: 10px; color: var(--ink-3); letter-spacing: 0.1em; }
.prose { max-width: 640px; }
.prose p { font-family: var(--font-sans); font-size: 19px; line-height: 1.65; color: var(--ink); margin: 0 0 24px; }
.prose .dropcap::first-letter {
  font-family: var(--font-serif); font-weight: 500; font-size: 4.6em; line-height: 0.8;
  float: left; padding: 0.08em 0.12em 0 0; color: var(--oxblood);
}
.section-h {
  font-family: var(--font-serif); font-weight: 500; font-size: 32px; line-height: 1.15;
  letter-spacing: -0.02em; margin: 48px 0 20px;
}
.pull { border-left: none; padding-left: 0; }
.prose .pull { font-size: 30px; margin: 40px 0; border-left: 2px solid var(--oxblood); padding-left: 24px; }

.about-chron .eyebrow, .about-roles .eyebrow, .about-family .eyebrow, .about-book .book-text .eyebrow { display: block; margin-bottom: 12px; }

.roles { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; max-width: 900px; }
.roles li { padding: 16px 0; border-top: 1px solid var(--rule); font-family: var(--font-sans); font-size: 17px; }
.roles li b { display: block; font-weight: 600; margin-bottom: 4px; }
.roles li span { color: var(--ink-2); font-size: 15px; line-height: 1.5; }

.about-book { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.book-cover { aspect-ratio: 2/3; background: var(--ink); position: relative; box-shadow: var(--shadow-lift); border-radius: 2px; overflow: hidden; }
.book-inner { position: absolute; inset: 0; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); }
.book-eb { font-size: 10px; letter-spacing: 0.14em; color: var(--oxblood-soft); }
.book-title { font-family: var(--font-serif); font-weight: 500; font-size: 34px; line-height: 1.05; letter-spacing: -0.02em; }
.book-by { font-size: 10px; letter-spacing: 0.14em; }
.book-text .pull.small { font-size: 22px; margin: 20px 0; }
.book-text .pull.small cite { display: block; font-style: normal; font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; margin-top: 12px; }

.about-family .plain-line { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--ink); }

/* ---------- Showreel ---------- */
.reel-hero { margin-top: 24px; }
.reel-player {
  aspect-ratio: 16/9; background: linear-gradient(180deg, #2A2822, #0E0D0B);
  border-radius: 8px; overflow: hidden; position: relative; box-shadow: var(--shadow-lift);
}
.reel-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative;
  background-image: linear-gradient(180deg, rgba(230,218,195,0.3) 0%, rgba(28,26,23,0.8) 100%);
}
.play-disc {
  width: 72px; height: 72px; border-radius: 999px; background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .22s var(--ease-standard);
}
.play-disc.small { width: 44px; height: 44px; }
.play-disc:hover { transform: scale(1.05); }
.reel-time {
  position: absolute; bottom: 16px; right: 16px; font-size: 12px; color: var(--paper);
  background: rgba(28,26,23,0.7); padding: 4px 10px; border-radius: 2px;
}
.reel-caption { margin: 12px 0 0; font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; }

.reel-grid .eyebrow { display: block; margin-bottom: 24px; }
.clip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.clip-card { background: var(--paper-white); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-paper); transition: transform .22s, box-shadow .22s; cursor: pointer; }
.clip-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.clip-thumb { aspect-ratio: 16/9; position: relative; background: linear-gradient(180deg, #C9B899, #3A342B); display: flex; align-items: center; justify-content: center; }
.clip-thumb .reel-time { bottom: 8px; right: 8px; font-size: 11px; padding: 3px 7px; }
.clip-body { padding: 16px 18px 18px; }
.clip-body .eyebrow.small { font-size: 10px; }
.clip-body h4 { font-family: var(--font-serif); font-weight: 500; font-size: 19px; line-height: 1.25; letter-spacing: -0.01em; margin: 8px 0 6px; }
.clip-body .faint { font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; }

.audiobook { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.ab-art { aspect-ratio: 1/1; background: var(--oxblood); border-radius: 2px; position: relative; box-shadow: var(--shadow-lift); overflow: hidden; }
.ab-art::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/></filter><rect width='100' height='100' filter='url(%23n)'/></svg>"); opacity: 0.4; }
.ab-inner { position: absolute; inset: 0; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); z-index: 1; }
.ab-inner .mono { font-size: 10px; letter-spacing: 0.16em; opacity: 0.85; }
.ab-title { font-family: var(--font-serif); font-weight: 500; font-size: 34px; line-height: 1.04; letter-spacing: -0.02em; }
.ab-text .eyebrow { display: block; margin-bottom: 12px; }
.ab-links { display: flex; gap: 14px; margin-top: 24px; }

/* ---------- Press ---------- */
.press-kit { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-top: 24px; }
.kit-card { background: var(--paper-white); border: 1px solid var(--rule); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-paper); align-self: start; }
.kit-card .eyebrow { display: block; margin-bottom: 10px; }
.kit-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 26px; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 12px; }
.kit-card p { font-size: 15px; color: var(--ink-2); margin: 0 0 24px; }
.kit-portraits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.kit-p { margin: 0; }
.kit-p img { width: 100%; height: auto; display: block; border-radius: 4px; }
.kit-p figcaption { margin-top: 8px; font-size: 9px; color: var(--ink-3); letter-spacing: 0.1em; }

.bios .eyebrow, .press-coverage .eyebrow { display: block; margin-bottom: 12px; }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 16px; }
.bio { background: var(--paper-white); border: 1px solid var(--rule); border-radius: 8px; padding: 24px; box-shadow: var(--shadow-paper); }
.bio header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--rule); margin-bottom: 16px; }
.bio header .mono { font-size: 11px; color: var(--oxblood); letter-spacing: 0.14em; }
.bio .copy { background: transparent; border: 1px solid var(--rule-strong); color: var(--ink); padding: 4px 10px; font-size: 10px; letter-spacing: 0.12em; border-radius: 2px; cursor: pointer; }
.bio .copy:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bio p { font-size: 14px; line-height: 1.6; color: var(--ink); margin: 0 0 12px; }
.bio p:last-child { margin-bottom: 0; }

.press-list { display: flex; flex-direction: column; margin-top: 16px; }
.press-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 32px; align-items: center; padding: 22px 0; border-top: 1px solid var(--rule); text-decoration: none; color: var(--ink); transition: background .2s; }
.press-row:hover { background: var(--paper-2); }
.press-row:last-child { border-bottom: 1px solid var(--rule); }
.press-row .date { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; }
.pr-title { font-family: var(--font-serif); font-weight: 500; font-size: 21px; line-height: 1.25; letter-spacing: -0.01em; }
.pr-sub { font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.08em; }
.press-row .ext { font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 80px; margin-top: 24px; align-items: start; }
.contact-grid.one-col { grid-template-columns: minmax(0, 640px); justify-content: start; }
.contact-routes { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 120px; }
.route .eyebrow { display: block; margin-bottom: 10px; }
.route-name { font-family: var(--font-serif); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 4px; }
.route-line { font-size: 13px; color: var(--ink-2); padding: 2px 0; }

.contact-form { display: flex; flex-direction: column; gap: 24px; background: var(--paper-white); border: 1px solid var(--rule); border-radius: 8px; padding: 40px; box-shadow: var(--shadow-paper); }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form .row { display: flex; gap: 20px; }
.contact-form .row.two label { flex: 1; }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule-strong); border-radius: 2px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--ink); }
.contact-form textarea { resize: vertical; font-family: var(--font-sans); }
.submit-row { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--rule); }
.submit-row .small { font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; }
.sent { text-align: center; padding: 40px 0; }
.sent .display-s { font-family: var(--font-serif); font-weight: 500; font-size: 36px; letter-spacing: -0.02em; margin: 0 0 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-2); margin-top: 120px; padding: 64px 48px 32px; }
.foot-inner { max-width: var(--page-max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 64px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 4px 0; font-size: 14px; }
.foot-col li.mono, .foot-col ul.mono li { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.foot-col a { color: var(--ink-2); text-decoration: none; }
.foot-col a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--oxblood); text-underline-offset: 3px; }
.foot-col .eyebrow { display: block; margin-bottom: 14px; }
.foot-brand { font-family: var(--font-serif); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.foot-brand .mbe { font-family: var(--font-mono); font-size: 10px; color: var(--oxblood); letter-spacing: 0.12em; margin-left: 6px; vertical-align: super; }
.foot-blurb { font-size: 14px; color: var(--ink-2); max-width: 340px; margin: 0; }
.foot-rule { border-top: 1px solid var(--rule); margin: 48px auto 18px; max-width: var(--page-max); }
.foot-base { max-width: var(--page-max); margin: 0 auto; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; }

/* ---------- Enter animation (disabled by default — can be re-enabled per page) ---------- */
@media (prefers-reduced-motion: no-preference) {
  main > *:not(:first-child) { animation: rise 420ms var(--ease-enter) backwards; }
  main > *:nth-child(2) { animation-delay: 60ms; }
  main > *:nth-child(3) { animation-delay: 120ms; }
  main > *:nth-child(4) { animation-delay: 180ms; }
  main > *:nth-child(5) { animation-delay: 240ms; }
  main > *:nth-child(6) { animation-delay: 300ms; }
}
@keyframes rise { from { transform: translateY(8px); } to { transform: translateY(0); } }

/* ---------- SCP dedicated page ---------- */
.scp-band {
  max-width: 820px; margin: 20px auto 40px; padding: 0 40px;
  border-left: 3px solid var(--oxblood);
}
.scp-band-pull {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: 44px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 18px; text-wrap: balance;
}
.scp-band-pull .scp-mark {
  font-style: normal; font-weight: 400; color: var(--oxblood);
  font-size: 1.1em; line-height: 0; margin-right: 0.04em;
  position: relative; top: 0.22em;
}

.scp-stats { padding: 24px 0; }
.scp-stats .eyebrow { display: block; margin-bottom: 12px; }
.scp-stats .display-m { max-width: 680px; margin: 0 0 48px; }
.scp-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  padding: 24px 0;
}
.scp-stat { border-top: 1px solid var(--rule); padding-top: 24px; }
.scp-stat-num {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 76px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 12px;
}
.scp-stat-num .scp-stat-unit {
  font-size: 0.5em; color: var(--oxblood); letter-spacing: 0;
  margin-left: 2px;
}
.scp-stat-label {
  font-size: 10px; color: var(--ink-3); letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.scp-stat p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
}
.scp-stat-foot {
  margin-top: 32px; font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.14em;
}

.scp-how { padding: 24px 0; }
.scp-how .eyebrow { display: block; margin-bottom: 12px; }
.scp-how .display-m { max-width: 680px; margin: 0 0 48px; }
.scp-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.scp-step { border-top: 1px solid var(--rule); padding-top: 24px; }
.scp-step-n {
  font-size: 12px; color: var(--oxblood); letter-spacing: 0.14em;
  display: block; margin-bottom: 20px;
}
.scp-step-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--ink);
}
.scp-step p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0;
}

.scp-employers { padding: 24px 0; display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.scp-employers-head .eyebrow { display: block; margin-bottom: 12px; }
.scp-employers-head .display-m { margin: 0 0 20px; }
.scp-employers-head p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0; max-width: 320px;
}
.scp-employer-list {
  list-style: none; padding: 0; margin: 0;
  columns: 2; column-gap: 32px;
}
.scp-employer-list li {
  font-family: var(--font-serif); font-weight: 400; font-size: 20px;
  line-height: 1.3; letter-spacing: -0.01em; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  break-inside: avoid;
}
.scp-employer-foot {
  grid-column: 1 / -1; font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.14em; margin-top: 24px;
}

.scp-partners-wrap { display: flex; flex-direction: column; gap: 32px; }
.scp-partners { list-style: none; padding: 0; margin: 0; }
.scp-partner {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: start; padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.scp-partner:first-child { border-top: none; padding-top: 0; }
.scp-partner-name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink); margin: 0 0 8px;
}
.scp-partner-scale {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  color: var(--ink-2); margin: 0; max-width: 54ch;
}
.scp-partner-since {
  font-size: 10px; letter-spacing: 0.16em; color: var(--ink-3);
  text-transform: uppercase; white-space: nowrap; padding-top: 10px;
}
.scp-reach {
  background: var(--paper-2); border-radius: 4px;
  padding: 24px 28px; margin-top: 8px;
}
.scp-reach .eyebrow { display: block; margin-bottom: 12px; }
.scp-reach p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ink); margin: 0;
}

.scp-testimony {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px;
  align-items: center; padding: 24px 0;
}
.scp-testimony-left .eyebrow { display: block; margin-bottom: 20px; }
.scp-testimony-left .pull { margin: 0 0 16px; }
.scp-testimony-left cite { display: block; margin-top: 12px; }
.scp-testimony-portrait { margin: 0; }
.scp-placeholder-portrait {
  aspect-ratio: 4 / 5; background: var(--paper-2);
  border: 1px solid var(--rule); display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.16em; color: var(--ink-3);
}
.scp-testimony-portrait figcaption {
  margin-top: 12px; font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.14em;
}

.scp-join { padding: 24px 0; }
.scp-join .eyebrow { display: block; margin-bottom: 12px; }
.scp-join .display-m { max-width: 680px; margin: 0 0 48px; }
.scp-join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.scp-route {
  padding: 32px; background: var(--paper-white);
  border: 1px solid var(--rule); border-radius: 6px;
  box-shadow: var(--shadow-paper);
}
.scp-route-n {
  font-size: 11px; color: var(--oxblood); letter-spacing: 0.18em;
  display: block; margin-bottom: 16px;
}
.scp-route h3 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--ink);
}
.scp-route p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 24px;
}

.scp-handoff { padding: 24px 0; max-width: 720px; margin: 0 auto; text-align: center; }
.scp-handoff .eyebrow { display: block; margin-bottom: 12px; }
.scp-handoff .display-m { margin: 0 0 18px; }
.scp-handoff p {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.65;
  color: var(--ink); margin: 0 0 18px;
}
.scp-handoff p:last-child { margin-bottom: 0; }
.scp-handoff-cta { margin-top: 8px; }

.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .scp-band { padding: 0 24px; }
  .scp-band-pull { font-size: 30px; }
  .scp-stat-grid, .scp-steps, .scp-join-grid { grid-template-columns: 1fr; gap: 32px; }
  .scp-stat-num { font-size: 60px; }
  .scp-employers { grid-template-columns: 1fr; gap: 32px; }
  .scp-employer-list { columns: 1; }
  .scp-partner { grid-template-columns: 1fr; gap: 8px; }
  .scp-partner-since { padding-top: 0; }
  .scp-testimony { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Home: Second Chance teaser block ---------- */
.home-scp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; padding: 40px 0 8px;
}
.scp-left .eyebrow { display: block; margin-bottom: 28px; }
.scp-pull {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: 42px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 18px; position: relative;
  text-wrap: balance;
}
.scp-pull .scp-mark {
  font-style: normal; font-weight: 400; color: var(--oxblood);
  font-size: 1.1em; line-height: 0; margin-right: 0.04em;
  position: relative; top: 0.22em;
}
.scp-cite {
  display: block; font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.14em; margin-bottom: 36px;
}
.scp-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.scp-right { padding-top: 8px; }
.scp-lede {
  font-family: var(--font-sans); font-size: 18px; line-height: 1.65;
  color: var(--ink-2); margin: 0 0 24px; max-width: 520px;
}
/* Subtle oxblood marginalia bar on the left of the lede — ties to brand accent */
.scp-lede {
  border-left: 2px solid var(--oxblood);
  padding-left: 24px;
}
.scp-meta {
  font-size: 10px; color: var(--ink-3); letter-spacing: 0.16em;
  padding-left: 24px; max-width: 520px;
}

@media (max-width: 860px) {
  .home-scp { grid-template-columns: 1fr; gap: 32px; }
  .scp-pull { font-size: 32px; }
}

/* ---------- News / Journal page ---------- */
.news-feed { max-width: 880px; margin: 0 auto; }
.news-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 40px;
  padding: 32px 0; border-top: 1px solid var(--rule);
}
.news-row:last-child { border-bottom: 1px solid var(--rule); }
.news-date {
  font-size: 12px; color: var(--oxblood); letter-spacing: 0.1em;
  padding-top: 4px; font-weight: 500;
}
.news-body .tag { margin-bottom: 14px; }
.news-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.02em;
  margin: 0 0 8px; color: var(--ink);
}
.news-venue {
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.news-summary {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); margin: 0; max-width: 620px;
}

.news-subscribe {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; max-width: 880px; margin: 0 auto;
  padding: 24px 0 40px;
}
.subscribe-text .display-m { font-size: 42px; margin: 12px 0 18px; }
.subscribe-text p {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); margin: 0; max-width: 420px;
}
.subscribe-form { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.subscribe-form label { display: flex; flex-direction: column; gap: 8px; }
.subscribe-form input {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule-strong); border-radius: 2px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
}
.subscribe-form input:focus { border-color: var(--ink); }
.subscribe-form .btn { align-self: flex-start; }

@media (max-width: 800px) {
  .news-row { grid-template-columns: 1fr; gap: 10px; }
  .news-subscribe { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Playfair Display 400 — display weight override ----------
   Playfair at Regular sits lighter than Newsreader 500. Drop every serif
   display element to 400, tighten tracking very slightly, and lift sizes
   a hair so visual mass stays in balance. */
.display-xl,
.page-header .display-h,
.display-m,
.section-h,
.ab-title,
.book-title,
.kit-card h3,
.clip-body h4,
.pr-title,
.route-name,
.sent .display-s,
.foot-brand,
.about-family .plain-line,
.prose .dropcap::first-letter,
.pull {
  font-weight: 400;
}
/* Playfair 400 feels very thin at huge sizes — bump the hero slightly and
   tighten the big headline's leading to retain editorial density. */
.display-xl { font-size: 96px; letter-spacing: -0.025em; line-height: 0.98; }
.page-header .display-h { font-size: 74px; letter-spacing: -0.02em; }
.display-m { letter-spacing: -0.02em; }
.pull { font-weight: 400; }
/* Italic pullquote reads better at Medium in Playfair */
.pull, .about-family .plain-line { font-style: italic; }

/* ---------- Content placeholders (shown in place of unverified content) ---------- */
.scp-employer-placeholder,
.scp-testimony-placeholder,
.news-placeholder,
.press-placeholder {
  border: 1px dashed var(--rule-strong);
  border-radius: 4px;
  padding: 32px 28px;
  background: var(--paper-white);
  color: var(--ink-3);
  text-align: center;
}
.scp-employer-placeholder p,
.scp-testimony-placeholder p,
.news-placeholder p,
.press-placeholder p {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0;
  color: var(--ink-3);
}

