/**
 * Penwood Design System v1.1
 * Synthesis Mockup — All Q1-Q10 + 19 Settled Items
 * Generated April 14, 2026
 */

/* ============================================================
   WEBFONTS — self-hosted (Q3 lock, May 8 2026)
   Sourced from @fontsource (latin subset, WOFF2).
   Replaces Google Fonts CDN. Privacy + speed + GDPR clean.
   font-display: swap matches prior &display=swap behavior.
   ============================================================ */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2');
}

/* ============================================================
   BASE COLORS (locked palette — 6 base + 1 hover)
   ============================================================ */
:root {
  --pen-color-charcoal: #2D2D2D;
  --pen-color-warm-slate: #78716C;
  --pen-color-warm-copper: #E8A85C;
  --pen-color-dark-copper: #9A6013;
  --pen-color-warm-ivory: #FAF8F5;
  --pen-color-white: #FFFFFF;
  --pen-color-charcoal-elevated: #3A3A3A;
}

/* ============================================================
   SEMANTIC COLORS — Light Theme
   ============================================================ */
:root {
  --pen-text-primary: var(--pen-color-charcoal);
  --pen-text-secondary: var(--pen-color-warm-slate);
  --pen-text-tertiary: #737067;
  --pen-text-inverse: var(--pen-color-warm-ivory);
  --pen-text-accent: var(--pen-color-warm-copper);
  --pen-text-data: var(--pen-color-dark-copper);

  --pen-surface: var(--pen-color-warm-ivory);
  --pen-surface-card: var(--pen-color-white);
  --pen-surface-elevated: var(--pen-color-white);

  --pen-border-default: #D4D0CC;
  --pen-border-strong: #B5B0AB;
  --pen-border-focus: var(--pen-color-warm-copper);

  --pen-cta-bg: var(--pen-color-charcoal);
  --pen-cta-text: var(--pen-color-warm-ivory);
  --pen-cta-border: var(--pen-color-warm-copper);
  --pen-cta-bg-hover: var(--pen-color-charcoal-elevated);

  /* Text-lede: muted ivory used on dark sections (hero ledes, teaser ledes, etc).
     Declared in :root so it's universally available — the [data-theme="dark"] block
     below is currently dead code (no element has data-theme="dark"). Per L049 lesson. */
  --pen-text-lede: #C8C2BC;
}

/* ============================================================
   STATUS COLORS (theme-agnostic, available everywhere)
   ============================================================ */
:root {
  --pen-status-error-text: #C44230;
  --pen-status-error-bg: #FDF2F0;
  --pen-status-error-border: #E8A09A;
  --pen-status-success-text: #457549;
  --pen-status-success-bg: #F0F7F1;
  --pen-status-success-border: #A3C9A8;
  --pen-status-warning-text: #8B6914;
  --pen-status-warning-bg: #FDF8EC;
  --pen-status-warning-border: #D4B870;
  --pen-status-info-text: #1E3A5F;
  --pen-status-info-bg: #EEF2F7;
  --pen-status-info-border: #8FA8C8;
}

/* ============================================================
   DARK THEME
   ============================================================ */
[data-theme="dark"] {
  --pen-text-primary: var(--pen-color-warm-ivory);
  --pen-text-secondary: #A8A29E;
  --pen-text-tertiary: #8A8580;
  --pen-text-inverse: var(--pen-color-charcoal);
  --pen-text-accent: var(--pen-color-warm-copper);
  --pen-text-data: var(--pen-color-warm-copper);

  --pen-surface: var(--pen-color-charcoal);
  --pen-surface-card: var(--pen-color-charcoal-elevated);
  --pen-surface-elevated: #454545;

  --pen-border-default: #474340;
  --pen-border-strong: #5E5955;
  --pen-border-focus: var(--pen-color-warm-copper);

  --pen-cta-bg: var(--pen-color-warm-ivory);
  --pen-cta-text: var(--pen-color-charcoal);
  --pen-cta-border: var(--pen-color-warm-copper);
  --pen-cta-bg-hover: #E8E5E1;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
:root {
  --pen-font-heading: 'Space Grotesk', sans-serif;
  --pen-font-body: 'Source Sans 3', sans-serif;
  --pen-font-mono: 'JetBrains Mono', monospace;

  --pen-h1-size: 56px;
  --pen-h1-weight: 700;
  --pen-h1-line-height: 1.1;
  --pen-h1-letter-spacing: -0.5px;

  --pen-h2-size: 34px;
  --pen-h2-weight: 700;
  --pen-h2-line-height: 1.2;
  --pen-h2-letter-spacing: -0.3px;

  --pen-h3-size: 26px;
  --pen-h3-weight: 600;
  --pen-h3-line-height: 1.3;

  --pen-h4-size: 19px;
  --pen-h4-weight: 500;
  --pen-h4-line-height: 1.3;

  --pen-body-size: 17px;
  --pen-body-weight: 400;
  --pen-body-line-height: 1.7;

  --pen-caption-size: 13px;
  --pen-overline-size: 12px;
  --pen-overline-weight: 600;
  --pen-overline-letter-spacing: 3px;

  --pen-companies-size: 15px;
  --pen-companies-weight: 500;
  --pen-companies-letter-spacing: 2px;
}

/* ============================================================
   SPACING (4/8pt grid)
   ============================================================ */
:root {
  --pen-space-xs: 4px;
  --pen-space-sm: 8px;
  --pen-space-md: 16px;
  --pen-space-lg: 24px;
  --pen-space-xl: 32px;
  --pen-space-2xl: 48px;
  --pen-space-3xl: 64px;
  --pen-space-4xl: 96px;
  --pen-space-5xl: 128px;
}

/* ============================================================
   RADIUS, BORDERS, SHADOWS, MOTION
   ============================================================ */
:root {
  --pen-radius-sm: 4px;
  --pen-radius-md: 8px;
  --pen-radius-lg: 12px;
  --pen-radius-xl: 16px;
  --pen-radius-full: 9999px;

  --pen-border-thin: 1px;
  --pen-border-medium: 2px;
  --pen-border-cta: 3px;

  --pen-shadow-sm: 0 1px 3px rgba(45, 45, 45, 0.04);
  --pen-shadow-md: 0 4px 12px rgba(45, 45, 45, 0.06);
  --pen-shadow-lg: 0 8px 24px rgba(45, 45, 45, 0.08);
  --pen-shadow-xl: 0 16px 48px rgba(45, 45, 45, 0.12);
  --pen-shadow-drawer: -8px 0 32px rgba(0, 0, 0, 0.4);

  --pen-duration-fast: 150ms;
  --pen-duration-medium: 250ms;
  --pen-duration-slow: 400ms;
  --pen-easing-default: ease-out;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pen-surface);
  color: var(--pen-text-primary);
  font-family: var(--pen-font-body);
  font-size: var(--pen-body-size);
  line-height: var(--pen-body-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--pen-font-heading);
  margin: 0 0 var(--pen-space-sm) 0;
  color: var(--pen-text-primary);
}
h2 + p, h3 + p, h4 + p { margin-top: 0; }
h1 {
  font-size: var(--pen-h1-size);
  font-weight: var(--pen-h1-weight);
  line-height: var(--pen-h1-line-height);
  letter-spacing: var(--pen-h1-letter-spacing);
}
h2 {
  font-size: var(--pen-h2-size);
  font-weight: var(--pen-h2-weight);
  line-height: var(--pen-h2-line-height);
  letter-spacing: var(--pen-h2-letter-spacing);
}
h3 {
  font-size: var(--pen-h3-size);
  font-weight: var(--pen-h3-weight);
  line-height: var(--pen-h3-line-height);
}
h4 {
  font-size: var(--pen-h4-size);
  font-weight: var(--pen-h4-weight);
  line-height: var(--pen-h4-line-height);
}
p { margin: 0 0 var(--pen-space-md) 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pen-space-2xl);
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pen-space-2xl);
}

section {
  padding: var(--pen-space-3xl) 0;
}

.overline {
  font-family: var(--pen-font-mono);
  font-size: var(--pen-overline-size);
  font-weight: var(--pen-overline-weight);
  letter-spacing: var(--pen-overline-letter-spacing);
  text-transform: uppercase;
  color: var(--pen-text-accent);
  margin: 0 0 var(--pen-space-md) 0;
}
/* Light-background overline contrast fix (v1.4.1) — default .overline color
   var(--pen-text-accent) resolves to warm-copper #E8A85C, which fails WCAG AA
   on ivory (~2.1:1). Override to dark-copper #9A6013 (4.88:1 PASS) on light-bg
   sections. Dark-bg overlines retain warm-copper via their own rules. */
.audience .overline,
.advisory-tiers .overline,
.advisory-process .overline,
.capabilities .overline,
.fcmo-section:not(.fcmo-section--dark) .overline,
.pillars .overline,
.process .overline {
  color: var(--pen-color-dark-copper);
}
/* Mobile small-text bump (v1.4.1) — overlines + hero caption read too small
   on iPhone-class viewports per real-user feedback 2026-05-19. */
@media (max-width: 900px) {
  .overline { font-size: 14px; }
  .hero__row-caption { font-size: 16px; }
}

.lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--pen-text-secondary);
}

/* ============================================================
   NAV (Q2 — dark sticky, brand left, centered links, CTA right)
   ============================================================ */
.site-nav {
  background: var(--pen-color-charcoal);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #474340;
}
.site-nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--pen-space-xl);
  padding-top: var(--pen-space-md);
  padding-bottom: var(--pen-space-md);
}
.site-nav__brand {
  font-family: var(--pen-font-heading);
  font-weight: 700;
  color: var(--pen-color-warm-ivory);
  font-size: 19px;
  letter-spacing: -0.2px;
}
.site-nav__brand-mark {
  color: var(--pen-color-warm-copper);
  margin-right: 4px;
}
.site-nav__links {
  display: flex;
  gap: var(--pen-space-2xl);
  justify-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__links a {
  color: var(--pen-color-warm-ivory);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  opacity: 0.85;
  transition: opacity var(--pen-duration-fast) var(--pen-easing-default),
              color var(--pen-duration-fast) var(--pen-easing-default);
  position: relative;
  padding-bottom: 4px;
}
.site-nav__links a:hover {
  opacity: 1;
  color: var(--pen-color-warm-copper);
}
.site-nav__links a[aria-current="page"] {
  opacity: 1;
  color: var(--pen-color-warm-ivory);
}
.site-nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--pen-color-warm-copper);
}
.site-nav__cta {
  justify-self: end;
}

/* ============================================================
   BUTTONS (Q1 — Body CTAs Copper, Header CTA charcoal-elevated)
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--pen-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: var(--pen-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--pen-duration-fast) var(--pen-easing-default);
  text-decoration: none;
  border-bottom: var(--pen-border-cta) solid transparent;
}
/* Primary in body sections — Copper bg + Charcoal text (Q1 = B) */
.btn--primary {
  background: var(--pen-color-warm-copper);
  color: var(--pen-color-charcoal);
  border-bottom: var(--pen-border-cta) solid var(--pen-color-dark-copper);
}
.btn--primary:hover {
  background: var(--pen-color-dark-copper);
  color: var(--pen-color-warm-ivory);
}
/* Nav CTA — distinct treatment using design-system Ivory (clearly different from body Copper) */
.btn--nav {
  background: var(--pen-color-warm-ivory);
  color: var(--pen-color-charcoal);
  padding: 10px 22px;
  font-size: 14px;
  border-bottom: var(--pen-border-cta) solid var(--pen-color-warm-copper);
}
.btn--nav:hover {
  background: #E8E5E1;
  border-bottom-color: var(--pen-color-dark-copper);
}
/* Secondary on dark — outlined ivory */
.btn--ghost {
  background: transparent;
  color: var(--pen-color-warm-ivory);
  border: 1px solid #5E5955;
}
.btn--ghost:hover {
  border-color: var(--pen-color-warm-copper);
  color: var(--pen-color-warm-copper);
}

/* Inline link with copper underline */
.link-inline {
  color: var(--pen-text-primary);
  border-bottom: 1px solid var(--pen-color-warm-copper);
  transition: color var(--pen-duration-fast);
}
.link-inline:hover { color: var(--pen-color-dark-copper); }
.link-arrow {
  font-family: var(--pen-font-body);
  color: var(--pen-text-primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--pen-color-warm-copper);
  padding-bottom: 2px;
  transition: gap var(--pen-duration-fast);
}
.link-arrow:hover { gap: 10px; }
[data-theme="dark"] .link-arrow { color: var(--pen-color-warm-ivory); }

/* ============================================================
   HERO (Q3 — dark, S1 compressed: CTA + caption + companies on ONE row)
   ============================================================ */
.hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0 var(--pen-space-3xl);
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--pen-color-warm-ivory);
  max-width: 22ch;
  margin-bottom: var(--pen-space-sm);
}
.hero .lede {
  color: var(--pen-text-lede);
  max-width: 60ch;
  margin-bottom: var(--pen-space-xl);
  margin-top: 0;
}
.hero__copper-rule {
  width: 60px;
  height: 3px;
  background: var(--pen-color-warm-copper);
  margin: var(--pen-space-sm) 0 var(--pen-space-md) 0;
}
/* S1 compressed row — CTA + caption + companies horizontally */
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pen-space-xl);
  margin-top: var(--pen-space-xl);
  padding-top: var(--pen-space-xl);
  border-top: 1px solid #474340;
}
.hero__row-cta { flex-shrink: 0; }
.hero__row-caption {
  /* #A8A29E literal: light-theme --pen-text-tertiary (#737067) is a Check 2 contrast fix for body
     but it fails AA (2.78:1) on the dark Charcoal hero. #A8A29E gives 5.46:1 (AA pass). */
  color: #A8A29E;
  font-size: 14px;
  flex-shrink: 0;
}
.hero__row-companies {
  font-family: var(--pen-font-mono);
  font-size: var(--pen-companies-size);
  font-weight: var(--pen-companies-weight);
  letter-spacing: var(--pen-companies-letter-spacing);
  color: var(--pen-color-warm-copper);
  text-transform: uppercase;
  margin-left: auto;
}
/* "Now yours." declarative below the credentials bar (finding 9.1) */
.hero__row-punchline {
  display: block;
  text-align: center;
  margin-top: 4px;
  font-family: var(--pen-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--pen-color-warm-copper);
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero__row { flex-direction: column; align-items: flex-start; }
  .hero__row-companies { margin-left: 0; }
}

/* ============================================================
   PROBLEM SECTION (Q4 — light section, manifesto bold, declarative)
   ============================================================ */
.problem {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0;
}
.problem .container-narrow { max-width: 880px; }
.problem__text {
  font-family: var(--pen-font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--pen-text-primary);
  margin: 0;
}
.problem__text strong { font-weight: 700; }
.problem__text em {
  font-style: normal;
  color: var(--pen-color-dark-copper);
  font-weight: 700;
}

/* ============================================================
   WHO THIS IS FOR (cards, NOT stacked editorial)
   ============================================================ */
.audience {
  background: var(--pen-color-warm-ivory);
  border-top: 1px solid var(--pen-border-default);
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pen-space-lg);
  margin-top: var(--pen-space-2xl);
}
@media (max-width: 900px) {
  .audience__grid { grid-template-columns: 1fr; }
}
.audience__card {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--pen-duration-medium) var(--pen-easing-default),
              box-shadow var(--pen-duration-medium) var(--pen-easing-default);
}
.audience__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pen-shadow-md);
}
.audience__card h3 {
  font-size: 22px;
  margin-bottom: var(--pen-space-md);
}
.audience__card p { color: var(--pen-text-secondary); }
.audience__card .link-arrow { margin-top: auto; }

/* ============================================================
   PROOF SECTION (Q5 — dark band, S1 horizontal row + count-up)
   ============================================================ */
.proof {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-3xl) 0;
}
.proof__overline {
  color: var(--pen-color-warm-copper);
  text-align: center;
  margin-bottom: var(--pen-space-lg);
}
.proof__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pen-space-xl);
  align-items: end;
  text-align: center;
  border-top: 1px solid #474340;
  border-bottom: 1px solid #474340;
  padding: var(--pen-space-2xl) 0;
}
@media (max-width: 800px) {
  .proof__row { grid-template-columns: repeat(2, 1fr); }
}
.proof__stat-num {
  font-family: var(--pen-font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  line-height: 1;
  letter-spacing: -1.2px;
  display: block;
  margin-bottom: var(--pen-space-sm);
}
.proof__stat-label {
  font-family: var(--pen-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A8A29E;
}
.proof__companies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 12px;
  margin-top: var(--pen-space-xl);
  font-family: var(--pen-font-mono);
  font-size: var(--pen-companies-size);
  letter-spacing: var(--pen-companies-letter-spacing);
  color: var(--pen-color-warm-ivory);
  text-transform: uppercase;
}
.proof__companies .brand { white-space: nowrap; }
.proof__companies .dot { color: var(--pen-color-warm-copper); }

/* ============================================================
   HOW I WORK (Q6 — D2 numbered with vertical copper line)
   ============================================================ */
.process {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0;
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pen-space-3xl);
  margin-top: var(--pen-space-2xl);
  position: relative;
}
@media (max-width: 800px) {
  .process__grid { grid-template-columns: 1fr; }
}
.process__step { position: relative; padding-left: 110px; min-height: 96px; }
.process__step::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--pen-font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  line-height: 1;
  letter-spacing: -1.5px;
  width: 80px;
}
.process__step::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 78px;
  bottom: -32px;
  width: 2px;
  background: var(--pen-color-warm-copper);
  opacity: 0.3;
}
.process__step:last-child::after { display: none; }
@media (max-width: 800px) {
  .process__step:last-child::after { display: block; }
}
.process__step h3 {
  font-size: 22px;
  margin-bottom: var(--pen-space-md);
}
.process__step p { color: var(--pen-text-secondary); }

/* ============================================================
   CONTENT TEASER (Q7 magazine: 1 featured + 2 secondary)
   (Q8 hybrid imagery — featured has image, secondaries text-only)
   ============================================================ */
.teaser {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0;
}
.teaser h2 { color: var(--pen-color-warm-ivory); }
.teaser .lede { color: var(--pen-text-lede); }
.teaser__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--pen-space-xl);
  margin-top: var(--pen-space-2xl);
}
@media (max-width: 900px) {
  .teaser__grid { grid-template-columns: 1fr; }
}
.teaser__featured {
  background: var(--pen-color-charcoal-elevated);
  border-radius: var(--pen-radius-lg);
  overflow: hidden;
  border: 1px solid #474340;
  display: flex;
  flex-direction: column;
  transition: border-color var(--pen-duration-fast);
}
.teaser__featured:hover { border-color: var(--pen-color-warm-copper); }
.teaser__featured-image {
  background: linear-gradient(135deg, #3A3A3A 0%, #2D2D2D 60%, #9A6013 100%);
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--pen-space-lg);
}
.teaser__featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(232, 168, 92, 0.4) 48%, rgba(232, 168, 92, 0.4) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(232, 168, 92, 0.2) 48%, rgba(232, 168, 92, 0.2) 52%, transparent 52%);
  background-size: 60px 60px;
  opacity: 0.4;
}
.teaser__pillar {
  position: relative;
  z-index: 1;
  font-family: var(--pen-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pen-color-warm-copper);
  background: rgba(45, 45, 45, 0.8);
  padding: 6px 12px;
  border-radius: var(--pen-radius-sm);
}
.teaser__featured-body {
  padding: var(--pen-space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.teaser__featured-body h3 {
  font-size: 26px;
  margin-bottom: var(--pen-space-md);
  color: var(--pen-color-warm-ivory);
}
.teaser__featured-body p {
  color: var(--pen-text-lede);
  margin-bottom: var(--pen-space-md);
}
.teaser__meta {
  display: flex;
  gap: var(--pen-space-md);
  font-family: var(--pen-font-mono);
  font-size: 12px;
  color: #A8A29E;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
}
.teaser__meta span { display: inline-flex; align-items: center; gap: 4px; }
.teaser__secondary { display: flex; flex-direction: column; gap: var(--pen-space-md); }
.teaser__card {
  background: var(--pen-color-charcoal-elevated);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-lg);
  border: 1px solid #474340;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: border-color var(--pen-duration-fast);
}
.teaser__card:hover { border-color: var(--pen-color-warm-copper); }
.teaser__card .teaser__pillar {
  background: transparent;
  padding: 0;
  margin-bottom: var(--pen-space-sm);
}
.teaser__card h4 {
  font-size: 19px;
  color: var(--pen-color-warm-ivory);
  line-height: 1.3;
  margin-bottom: var(--pen-space-sm);
}
.teaser__card p {
  font-size: 15px;
  color: var(--pen-text-lede);
  margin-bottom: var(--pen-space-md);
}

/* ============================================================
   FOOTER (horizontal single row, dot-separated metadata)
   ============================================================ */
/* Footer — S1 spec refined: brand mark left, metadata center, copyright right + copper top rule */
.site-footer {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-xl) 0;
  border-top: 1px solid var(--pen-color-warm-copper);
  position: relative;
}
.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--pen-space-2xl);
  margin-bottom: var(--pen-space-lg);
}
.site-footer__brand {
  font-family: var(--pen-font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--pen-color-warm-ivory);
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-footer__brand-mark {
  color: var(--pen-color-warm-copper);
  margin-right: 6px;
}
.site-footer__meta {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--pen-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A8A29E;
}
.site-footer__meta span { display: inline-flex; align-items: center; }
.site-footer__meta span + span::before {
  content: "·";
  margin: 0 14px;
  color: #5E5955;
  opacity: 0.6;
  font-weight: 400;
  letter-spacing: 0;
}
.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--pen-color-warm-copper);
  border-radius: var(--pen-radius-md);
  color: var(--pen-color-warm-copper);
  font-family: var(--pen-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--pen-duration-fast), color var(--pen-duration-fast);
  justify-self: end;
}
.site-footer__cta:hover {
  background: var(--pen-color-warm-copper);
  color: var(--pen-color-charcoal);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--pen-space-md);
  border-top: 1px solid #474340;
  font-family: var(--pen-font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #78716C;
}
.site-footer__privacy {
  color: #A8A29E;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--pen-duration-fast), border-color var(--pen-duration-fast);
}
.site-footer__privacy:hover {
  color: var(--pen-color-warm-ivory);
  border-bottom-color: var(--pen-color-warm-copper);
}
@media (max-width: 900px) {
  .site-footer { padding: var(--pen-space-md) 0; }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--pen-space-md);
    margin-bottom: var(--pen-space-md);
    justify-items: start;
  }
  .site-footer__meta {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .site-footer__meta span + span::before { display: none; }
  .site-footer__cta { justify-self: start; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: var(--pen-space-sm);
  }
}

/* ============================================================
   ABOUT (D3 Storyteller — narrative scroll + medium headshot + dark cancer-reframe)
   ============================================================ */
.about-hero {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0 var(--pen-space-4xl);
  position: relative;
}
.about-hero .container { display: grid; grid-template-columns: 1fr 280px; gap: var(--pen-space-3xl); align-items: start; }

/* Scroll cue — signals there's more below the hero */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: var(--pen-space-lg);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pen-space-sm);
  pointer-events: none;
  user-select: none;
  transition: opacity var(--pen-duration-medium);
}
.scroll-cue__label {
  font-family: var(--pen-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pen-text-tertiary);
}
.scroll-cue__track {
  width: 1px;
  height: 40px;
  background: var(--pen-border-default);
  position: relative;
  overflow: hidden;
}
.scroll-cue__track::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--pen-color-warm-copper);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(0);   opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}
.scroll-cue.is-hidden { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .scroll-cue__track::before { animation: none; top: 10px; height: 20px; opacity: 1; }
}
@media (max-width: 700px) {
  .scroll-cue { bottom: var(--pen-space-md); }
}
@media (max-width: 900px) {
  .about-hero .container { grid-template-columns: 1fr; }
}
.about-hero h1 { font-size: clamp(32px, 7vw, 48px); max-width: 18ch; }
.about-hero p { color: var(--pen-text-secondary); max-width: 50ch; }
/* Identity block — headshot + name + title, stacks right-aligned */
.about-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pen-space-sm);
  margin-left: auto;
}
.about-identity__name {
  font-family: var(--pen-font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--pen-text-primary);
  letter-spacing: -0.2px;
  margin: var(--pen-space-sm) 0 0 0;
  text-align: center;
  line-height: 1.2;
}
.about-identity__title {
  font-family: var(--pen-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pen-text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .about-identity { margin-left: 0; margin-top: 0; }
  .about-hero .container { gap: var(--pen-space-lg); }
  .about-hero { padding: var(--pen-space-3xl) 0 var(--pen-space-sm); }
  .about-narrative { padding: var(--pen-space-lg) 0 var(--pen-space-2xl); }
}
.about-headshot {
  width: 250px;
  height: 250px;
  border-radius: var(--pen-radius-full);
  background: linear-gradient(135deg, var(--pen-color-warm-copper), var(--pen-color-dark-copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pen-font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--pen-color-warm-ivory);
  box-shadow: var(--pen-shadow-lg);
  border: 3px solid var(--pen-color-warm-ivory);
  outline: 3px solid var(--pen-color-warm-copper);
}
/* With a real photo, drop the gradient bg + initials styling */
.about-headshot--real { background: #000; padding: 0; overflow: hidden; }
/* picture wrapper is layout-transparent so existing width:100% on <img> still works */
.about-headshot--real picture,
.contact-headshot--real picture { display: contents; }
.about-headshot--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-narrative {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0;
}
.about-narrative .container-narrow { max-width: 900px; padding-left: var(--pen-space-lg); padding-right: var(--pen-space-lg); }
.about-narrative p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--pen-text-primary);
  margin-bottom: var(--pen-space-md);
}
.about-narrative .copper-divider {
  width: 80px;
  height: 2px;
  background: var(--pen-color-warm-copper);
  margin: var(--pen-space-lg) auto;
}
.about-narrative .pull-quote {
  font-family: var(--pen-font-heading);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pen-color-dark-copper);
  border-left: 3px solid var(--pen-color-warm-copper);
  padding-left: var(--pen-space-lg);
  margin: var(--pen-space-lg) 0;
  letter-spacing: -0.2px;
}
/* Tighter top + bottom on dark cancer-reframe block */
.about-cancer {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0;
}
.about-cancer .container-narrow { max-width: 900px; padding-left: var(--pen-space-lg); padding-right: var(--pen-space-lg); }
.about-cancer p {
  color: var(--pen-text-lede);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: var(--pen-space-md);
}
.about-cancer p:last-child { margin-bottom: 0; }
.about-cancer .pull-quote {
  font-family: var(--pen-font-heading);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pen-color-warm-copper);
  border-left: 3px solid var(--pen-color-warm-copper);
  padding-left: var(--pen-space-lg);
  margin: var(--pen-space-lg) 0;
  letter-spacing: -0.2px;
}
.about-proof-strip {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-3xl) 0;
}
.about-proof-strip .overline { color: var(--pen-color-warm-copper); }
.about-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pen-space-lg) var(--pen-space-2xl);
  margin-top: var(--pen-space-lg);
}
.about-proof-strip__cell {
  border-left: 3px solid var(--pen-color-warm-copper);
  padding: var(--pen-space-md) var(--pen-space-lg);
}
.about-proof-strip__cell strong {
  display: block;
  font-family: var(--pen-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--pen-color-warm-ivory);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.about-proof-strip__cell span { color: #A8A29E; font-size: 15px; line-height: 1.5; }
@media (max-width: 600px) {
  .about-proof-strip__grid { grid-template-columns: 1fr; gap: var(--pen-space-md); }
}

/* ============================================================
   ADVISORY & PROJECTS (D2 — tier cards side-by-side with pricing)
   ============================================================ */
.advisory-hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0 var(--pen-space-2xl);
}
.advisory-hero h1 { color: var(--pen-color-warm-ivory); max-width: 24ch; }
.advisory-hero .lede { color: var(--pen-text-lede); max-width: 60ch; }
.advisory-tiers {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0 var(--pen-space-3xl);
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pen-space-lg);
  padding: 0;
  margin-bottom: var(--pen-space-lg);
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--pen-duration-medium), box-shadow var(--pen-duration-medium), border-color var(--pen-duration-medium);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pen-shadow-lg);
  border-color: var(--pen-color-warm-copper);
}
/* Tier name: primary heading — Space Grotesk, larger, copper underline accent */
.tier-card__name {
  font-family: var(--pen-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--pen-text-primary);
  margin: 0 0 var(--pen-space-sm) 0;
  padding-bottom: var(--pen-space-sm);
  border-bottom: 2px solid var(--pen-color-warm-copper);
  display: inline-block;
}
/* Tagline: descriptive subtitle below name */
.tier-card h3 {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--pen-font-body);
  color: var(--pen-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--pen-space-md);
  letter-spacing: 0;
}
.tier-card__pricing {
  font-family: var(--pen-font-mono);
  font-size: 14px;
  color: var(--pen-text-secondary);
  padding: var(--pen-space-md) 0;
  border-top: 1px solid var(--pen-border-default);
  border-bottom: 1px solid var(--pen-border-default);
  margin: var(--pen-space-md) 0 var(--pen-space-lg);
}
.tier-card__pricing strong {
  display: block;
  font-family: var(--pen-font-heading);
  font-size: 19px;
  color: var(--pen-text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.tier-card p {
  color: var(--pen-text-secondary);
  font-size: 16px;
  margin-bottom: var(--pen-space-lg);
}
.tier-card__proof {
  margin-top: auto;
  padding-top: var(--pen-space-md);
  border-top: 1px solid var(--pen-border-default);
  font-size: 14px;
  color: var(--pen-text-secondary);
  font-style: italic;
}
.capabilities {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-lg) 0 var(--pen-space-2xl);
  border-top: 1px solid var(--pen-border-default);
}
.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pen-space-md);
  margin-top: var(--pen-space-xl);
}
@media (max-width: 800px) {
  .capabilities__grid { grid-template-columns: 1fr; }
}
/* Card treatment — each capability is now a discrete service block */
.capability {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-top: 3px solid var(--pen-color-warm-copper);
  border-radius: var(--pen-radius-md);
  padding: var(--pen-space-lg);
  position: relative;
  transition: transform var(--pen-duration-fast) var(--pen-easing-default),
              box-shadow var(--pen-duration-fast) var(--pen-easing-default),
              border-color var(--pen-duration-fast);
}
/* Copper numeral overline (finding 6.2, Option A) */
.capability[data-num]::before {
  content: attr(data-num);
  display: block;
  font-family: var(--pen-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  line-height: 1;
  margin-bottom: var(--pen-space-sm);
  letter-spacing: -0.5px;
}
.capability:hover {
  transform: translateY(-2px);
  box-shadow: var(--pen-shadow-md);
}
.capability strong {
  display: block;
  font-family: var(--pen-font-heading);
  font-weight: 600;
  color: var(--pen-text-primary);
  margin-bottom: var(--pen-space-sm);
  font-size: 17px;
  letter-spacing: -0.1px;
}
.capability span { color: var(--pen-text-secondary); font-size: 15px; line-height: 1.6; }
/* Frontier section — visually distinct elevated treatment */
.capabilities__ai {
  margin-top: var(--pen-space-3xl);
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-2xl);
  border: 1px solid var(--pen-color-dark-copper);
  position: relative;
}
.capabilities__ai .overline { color: var(--pen-color-warm-copper); margin-bottom: var(--pen-space-sm); }
.capabilities__ai h3 {
  color: var(--pen-color-warm-ivory);
  margin-bottom: var(--pen-space-md);
}
.capabilities__ai .capability {
  background: var(--pen-color-charcoal-elevated);
  border: 1px solid #5E5955;
  border-top: 3px solid var(--pen-color-warm-copper);
}
.capabilities__ai .capability:hover {
  border-color: var(--pen-color-warm-copper);
  border-top-color: var(--pen-color-warm-copper);
}
.capabilities__ai .capability strong { color: var(--pen-color-warm-ivory); }
.capabilities__ai .capability span { color: var(--pen-text-lede); }

/* Process steps for Advisory — matches home How I Work numbered + vertical-line pattern */
.advisory-process {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0 var(--pen-space-3xl);
  border-top: 1px solid var(--pen-border-default);
}
.advisory-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pen-space-2xl);
  margin-top: var(--pen-space-2xl);
}
@media (max-width: 800px) {
  .advisory-process__steps { grid-template-columns: 1fr; gap: var(--pen-space-3xl); }
}
.advisory-process__step {
  position: relative;
  padding-left: 110px;
  min-height: 96px;
}
.advisory-process__step::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--pen-font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  line-height: 1;
  letter-spacing: -1.5px;
  width: 80px;
}
.advisory-process__step::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 78px;
  bottom: -16px;
  width: 2px;
  background: var(--pen-color-warm-copper);
  opacity: 0.3;
}
.advisory-process__step:last-child::after { display: none; }
@media (max-width: 800px) {
  .advisory-process__step:last-child::after { display: block; }
}
.advisory-process__step h3 {
  font-size: 19px;
  margin-bottom: var(--pen-space-sm);
  color: var(--pen-text-primary);
}
.advisory-process__step p { margin: 0; color: var(--pen-text-secondary); font-size: 16px; }

.cta-section {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0;
  text-align: center;
  border-top: 3px solid var(--pen-color-warm-copper);
  position: relative;
}
.cta-section h2 {
  max-width: 32ch;
  margin: 0 auto var(--pen-space-lg);
  font-size: 30px;
}
.cta-section__row {
  display: inline-flex;
  align-items: center;
  gap: var(--pen-space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-section__caption {
  color: var(--pen-text-secondary);
  font-size: 14px;
}
.cta-section .btn--primary { padding: 16px 32px; font-size: 16px; }

/* ============================================================
   FRACTIONAL CMO (D4 Provocateur — 72px hero + copper rule breaks)
   ============================================================ */
.fcmo-hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-4xl) 0 var(--pen-space-2xl);
}
.fcmo-hero h1 {
  color: var(--pen-color-warm-ivory);
  max-width: 24ch;
}
.fcmo-hero .lede {
  color: var(--pen-text-lede);
  max-width: 60ch;
}
.fcmo-section {
  padding: var(--pen-space-2xl) 0;
  position: relative;
  background: var(--pen-color-warm-ivory);
}
/* Finding 6.1 — FCMO right-rail TOC, positioned at top of Stage Problem section. Desktop only (>=1024px). */
.fcmo-toc {
  position: absolute;
  top: var(--pen-space-2xl);
  right: var(--pen-space-xl);
  z-index: 10;
  display: none;
}
@media (min-width: 1024px) {
  .fcmo-toc { display: block; }
}
.fcmo-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--pen-border-default);
}
.fcmo-toc li { padding: 6px 0 6px var(--pen-space-md); }
.fcmo-toc a {
  font-family: var(--pen-font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pen-text-secondary);
  text-decoration: none;
  transition: color var(--pen-duration-fast) var(--pen-easing-default);
}
.fcmo-toc a:hover {
  color: var(--pen-color-warm-copper);
}
.fcmo-section--dark {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
}
.fcmo-section--dark h2 { color: var(--pen-color-warm-ivory); }
.fcmo-rule {
  height: 0;
  border: 0;
  border-top: 3px solid var(--pen-color-warm-copper);
  width: 80px;
  margin: 0 auto var(--pen-space-lg);
}
.fcmo-section .container { max-width: 880px; }
.fcmo-section h2 { font-size: 38px; max-width: 22ch; }
.fcmo-section h3 { color: var(--pen-color-dark-copper); margin-top: var(--pen-space-2xl); }
.fcmo-section--dark h3 { color: var(--pen-color-warm-copper); }
.fcmo-section p { font-size: 18px; line-height: 1.75; color: var(--pen-text-secondary); }
.fcmo-section--dark p { color: var(--pen-color-warm-ivory); }
.fcmo-pricing {
  background: var(--pen-color-warm-ivory);
  border: 1px solid var(--pen-border-default);
  border-left: 4px solid var(--pen-color-warm-copper);
  padding: var(--pen-space-lg) var(--pen-space-xl);
  margin: var(--pen-space-xl) 0;
  font-family: var(--pen-font-mono);
  font-size: 15px;
}
.fcmo-pricing strong {
  display: block;
  font-family: var(--pen-font-heading);
  font-size: 22px;
  color: var(--pen-text-primary);
  margin-bottom: 4px;
}
/* AI bullets: 5 items as discrete cards on dark — copper title block + body */
.fcmo-bullets {
  list-style: none;
  padding: 0;
  margin: var(--pen-space-lg) 0 0;
  display: grid;
  gap: var(--pen-space-md);
}
.fcmo-bullets li {
  background: var(--pen-color-charcoal-elevated);
  border: 1px solid #474340;
  border-left: 3px solid var(--pen-color-warm-copper);
  border-radius: var(--pen-radius-md);
  padding: var(--pen-space-md) var(--pen-space-lg);
  display: block;
  transition: border-color var(--pen-duration-fast);
}
.fcmo-bullets li:hover { border-color: var(--pen-color-warm-copper); }
.fcmo-bullets strong {
  display: block;
  font-family: var(--pen-font-heading);
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  font-size: 17px;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}
.fcmo-bullets span {
  display: block;
  color: var(--pen-text-lede);
  font-size: 16px;
  line-height: 1.55;
}
.fcmo-faq {
  margin-top: var(--pen-space-2xl);
}
.fcmo-faq h3 {
  font-size: 22px;
  color: var(--pen-text-primary);
  margin-top: var(--pen-space-2xl);
  margin-bottom: var(--pen-space-md);
}

/* ============================================================
   WRITING PAGE (magazine + reading-time + hybrid imagery)
   ============================================================ */
/* Compressed hero — eyeline reaches signup + first post within first viewport */
.writing-hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0 var(--pen-space-lg);
}
.writing-hero h1 {
  color: var(--pen-color-warm-ivory);
  max-width: 30ch;
  font-size: 38px;
  letter-spacing: -0.4px;
  margin-bottom: var(--pen-space-sm);
}
.writing-hero .lede { color: var(--pen-text-lede); max-width: 64ch; font-size: 18px; }
.writing-hero .hero__copper-rule { margin: var(--pen-space-md) 0; }
.signup {
  background: var(--pen-color-charcoal-elevated);
  padding: var(--pen-space-xl) 0;
  border-top: 1px solid #474340;
}
.signup .container { max-width: 720px; text-align: center; }
.signup p {
  font-family: var(--pen-font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--pen-color-warm-copper);
  text-transform: uppercase;
  margin-bottom: var(--pen-space-md);
}
.signup p.signup__lead {
  font-family: var(--pen-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--pen-color-warm-ivory);
  text-transform: none;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: var(--pen-space-xs);
}
@media (max-width: 600px) {
  .signup p.signup__lead { font-size: 20px; }
}
.signup__form {
  display: flex;
  gap: var(--pen-space-md);
  max-width: 520px;
  margin: 0 auto;
}
.signup__input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--pen-font-body);
  font-size: 15px;
  background: transparent;
  color: var(--pen-color-warm-ivory);
  border: 1px solid #7A7670;
  border-radius: var(--pen-radius-md);
}
.signup__input:focus {
  outline: 2px solid var(--pen-color-warm-copper);
  border-color: var(--pen-color-warm-copper);
}
/* Signup state machine — Ghost Portal toggles .loading / .success / .error
   on the form. We render confirmation feedback via these states so the
   submit click has visible response (no more silent re-clicks). */
.signup__btn-loading,
.signup__message { display: none; }
.signup__form.loading .signup__btn-default { display: none; }
.signup__form.loading .signup__btn-loading { display: inline; }
.signup__form.loading button { opacity: 0.6; pointer-events: none; }
.signup__form.success .signup__input,
.signup__form.success button { display: none; }
.signup__form.success .signup__message,
.signup__form.error .signup__message {
  display: block;
  margin-top: var(--pen-space-md);
  font-family: var(--pen-font-body);
  font-size: 15px;
}
.signup__form .signup__msg-success,
.signup__form .signup__msg-error { display: none; }
.signup__form.success .signup__msg-success {
  display: inline;
  color: var(--pen-color-warm-copper);
  font-weight: 500;
}
.signup__form.error .signup__msg-error {
  display: inline;
  color: var(--pen-status-error-text);
}
/* Pillars as horizontal tabs — one always shows content, no blank states */
.pillars {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-xl) 0 var(--pen-space-2xl);
  border-bottom: 1px solid var(--pen-border-default);
}
.pillars__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--pen-space-md);
  margin-bottom: var(--pen-space-md);
  flex-wrap: wrap;
}
.pillars__head .overline { margin: 0; }
.pillars__head .hint {
  font-family: var(--pen-font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pen-text-tertiary);
}
/* Tablist row */
.pillars__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-radius: var(--pen-radius-md) var(--pen-radius-md) 0 0;
  overflow: hidden;
}
@media (max-width: 800px) { .pillars__tabs { grid-template-columns: 1fr; } }
.pillar-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: var(--pen-space-md) var(--pen-space-lg);
  text-align: left;
  cursor: pointer;
  font-family: var(--pen-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--pen-text-secondary);
  letter-spacing: -0.1px;
  transition: color var(--pen-duration-fast), background var(--pen-duration-fast), border-color var(--pen-duration-fast);
  display: flex;
  align-items: center;
  gap: var(--pen-space-sm);
  border-right: 1px solid var(--pen-border-default);
}
@media (max-width: 800px) {
  .pillar-tab { border-right: none; border-bottom: 1px solid var(--pen-border-default); }
}
.pillar-tab:last-child { border-right: none; }
.pillar-tab:hover { color: var(--pen-text-primary); background: var(--pen-surface); }
.pillar-tab[aria-selected="true"] {
  color: var(--pen-text-primary);
  background: var(--pen-surface);
  border-bottom-color: var(--pen-color-warm-copper);
}
.pillar-tab__num {
  font-family: var(--pen-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pen-color-dark-copper);
  font-weight: 700;
}
/* Panel area — always visible, swaps content on tab click */
.pillars__panel {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-top: none;
  border-radius: 0 0 var(--pen-radius-md) var(--pen-radius-md);
  padding: var(--pen-space-lg) var(--pen-space-xl);
}
.pillar-panel { display: none; color: var(--pen-text-secondary); font-size: 16px; line-height: 1.65; }
.pillar-panel[aria-hidden="false"] { display: block; animation: fadeIn var(--pen-duration-medium) var(--pen-easing-default); }

.writing-feed {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-xl) 0 var(--pen-space-3xl);
}
.feed__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--pen-space-xl);
  margin-top: 0;
}
@media (max-width: 900px) { .feed__grid { grid-template-columns: 1fr; } }
.feed__featured {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-radius: var(--pen-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feed__featured-image {
  background: linear-gradient(135deg, var(--pen-color-warm-ivory) 0%, var(--pen-color-warm-copper) 100%);
  height: 240px;
  position: relative;
}
.feed__featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, transparent 49%, rgba(154, 96, 19, 0.3) 49%, rgba(154, 96, 19, 0.3) 51%, transparent 51%);
  background-size: 40px 40px;
  opacity: 0.5;
}
.feed__pillar {
  position: absolute;
  top: var(--pen-space-md);
  left: var(--pen-space-md);
  z-index: 1;
  font-family: var(--pen-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pen-color-charcoal);
  background: var(--pen-color-warm-ivory);
  padding: 6px 12px;
  border-radius: var(--pen-radius-sm);
}
.feed__featured-body { padding: var(--pen-space-xl); flex: 1; display: flex; flex-direction: column; }
.feed__featured-body h3 { font-size: 26px; margin-bottom: var(--pen-space-md); }
.feed__featured-body p { color: var(--pen-text-secondary); margin-bottom: var(--pen-space-md); }
.feed__meta {
  display: flex;
  gap: var(--pen-space-md);
  font-family: var(--pen-font-mono);
  font-size: 12px;
  color: var(--pen-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
}
.feed__secondary { display: flex; flex-direction: column; gap: var(--pen-space-md); }
.feed__card {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feed__card .feed__pillar {
  position: static;
  background: transparent;
  padding: 0;
  margin-bottom: var(--pen-space-sm);
  color: var(--pen-color-dark-copper);
}
.feed__card h4 { font-size: 18px; margin-bottom: var(--pen-space-sm); line-height: 1.3; }
.feed__card p { font-size: 14px; color: var(--pen-text-secondary); margin-bottom: var(--pen-space-md); }

.cross-links {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-3xl) 0;
  border-top: 1px solid var(--pen-border-default);
}
.cross-links .container { display: flex; gap: var(--pen-space-2xl); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT (small ~80px circular headshot + booking)
   ============================================================ */
/* CONTACT — 2-col hero (text left, headshot right). 2-col body (booking | message form). */
.contact-hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0;
}
.contact-hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--pen-space-2xl);
  align-items: center;
}
@media (max-width: 800px) { .contact-hero .container { grid-template-columns: 1fr; } }
.contact-hero h1 {
  color: var(--pen-color-warm-ivory);
  max-width: 24ch;
  font-size: 38px;
  letter-spacing: -0.4px;
  margin-bottom: var(--pen-space-sm);
}
.contact-hero .lede { color: var(--pen-text-lede); max-width: 56ch; font-size: 17px; margin-bottom: var(--pen-space-md); }
.contact-hero .hero__copper-rule { margin: var(--pen-space-md) 0; }
.contact-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--pen-space-md);
  flex-wrap: wrap;
  margin-top: var(--pen-space-md);
}
.contact-hero__alt {
  font-size: 14px;
  color: var(--pen-text-tertiary);
}
.contact-hero__alt a {
  color: var(--pen-color-warm-copper);
  border-bottom: 1px solid var(--pen-color-warm-copper);
  padding-bottom: 1px;
}
.contact-hero__alt a:hover { color: var(--pen-color-warm-ivory); border-color: var(--pen-color-warm-ivory); }
.contact-headshot {
  width: 130px;
  height: 130px;
  border-radius: var(--pen-radius-full);
  background: linear-gradient(135deg, var(--pen-color-warm-copper), var(--pen-color-dark-copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pen-font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--pen-color-warm-ivory);
  border: 2px solid var(--pen-color-warm-copper);
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .contact-headshot { width: 96px; height: 96px; font-size: 28px; }
}
/* Real photo treatment for Contact headshot — matches About headshot--real */
.contact-headshot--real {
  background: #000;
  padding: 0;
  overflow: hidden;
}
.contact-headshot--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Identity block: headshot + name + title, stacked centered */
.contact-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pen-space-sm);
}
.contact-identity__name {
  font-family: var(--pen-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--pen-color-warm-ivory);
  letter-spacing: -0.2px;
  margin: var(--pen-space-sm) 0 0 0;
  text-align: center;
  line-height: 1.2;
}
.contact-identity__title {
  font-family: var(--pen-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A8A29E;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

/* Single combined message card */
.contact-paths {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-2xl) 0 var(--pen-space-3xl);
}
.contact-path {
  background: var(--pen-color-white);
  border: 1px solid var(--pen-border-default);
  border-top: 3px solid var(--pen-color-warm-copper);
  border-radius: var(--pen-radius-lg);
  padding: var(--pen-space-xl);
  display: flex;
  flex-direction: column;
}
.contact-path--single {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: var(--pen-space-2xl);
  align-items: start;
  padding: var(--pen-space-2xl);
}
@media (max-width: 800px) { .contact-path--single { grid-template-columns: 1fr; gap: var(--pen-space-lg); padding: var(--pen-space-xl); } }
.contact-path__intro .overline {
  color: var(--pen-color-dark-copper);
  white-space: nowrap;
}
.contact-path__intro h2 {
  font-size: 24px;
  margin-bottom: var(--pen-space-sm);
  letter-spacing: -0.2px;
}
.contact-path__intro p { color: var(--pen-text-secondary); font-size: 16px; margin: 0; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pen-space-md);
}
@media (max-width: 500px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-path .btn--primary { align-self: flex-start; }

.contact-form {
  display: grid;
  gap: var(--pen-space-md);
  margin-top: 0;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  font-family: var(--pen-font-body);
  font-size: 15px;
  background: var(--pen-color-warm-ivory);
  border: 1px solid #8A8580;
  border-radius: var(--pen-radius-md);
  color: var(--pen-text-primary);
  width: 100%;
}
.contact-form textarea { min-height: 96px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--pen-color-warm-copper);
  border-color: var(--pen-color-warm-copper);
}
.contact-form button { justify-self: start; }

/* Honeypot — visually hidden but accessible to bots reading DOM */
.contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Privacy Policy line beneath submit */
.contact-form__legal {
  font-size: 12px;
  color: var(--pen-text-tertiary);
  margin: var(--pen-space-sm) 0 0 0;
  line-height: 1.4;
}
.contact-form__legal a {
  color: var(--pen-color-dark-copper);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.contact-form__legal a:hover { color: var(--pen-color-warm-copper); }

/* Thanks state — replaces form on successful submit */
.contact-form__thanks {
  text-align: left;
  padding: var(--pen-space-md) 0;
}
.contact-form__thanks .overline { color: var(--pen-color-dark-copper); margin-bottom: var(--pen-space-sm); }
.contact-form__thanks h3 {
  font-family: var(--pen-font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 var(--pen-space-sm) 0;
  color: var(--pen-text-primary);
}
.contact-form__thanks p { color: var(--pen-text-secondary); font-size: 16px; margin: 0; }

/* Error state — appears below form on failed submit, form stays visible for retry */
.contact-form__error {
  margin-top: var(--pen-space-md);
  padding: var(--pen-space-md);
  border: 1px solid var(--pen-status-error-border);
  background: var(--pen-status-error-bg);
  border-radius: var(--pen-radius-md);
  color: var(--pen-status-error-text);
  font-size: 14px;
}
.contact-form__error a { color: var(--pen-status-error-text); border-bottom: 1px solid currentColor; }

/* Tight expectations strip */
.contact-expect {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-xl) 0 var(--pen-space-2xl);
  text-align: center;
  border-top: 1px solid var(--pen-border-default);
}
.contact-expect p { color: var(--pen-text-secondary); max-width: 60ch; margin: 0 auto; font-size: 15px; }

/* ============================================================
   ANIMATIONS (Q1-Q10 settled item #17 — all 6 + reduced motion)
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes copperReveal { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.anim-fade { animation: fadeIn var(--pen-duration-slow) var(--pen-easing-default) both; }
.anim-up { animation: fadeInUp var(--pen-duration-slow) var(--pen-easing-default) both; }
.anim-slide { animation: slideRight var(--pen-duration-slow) var(--pen-easing-default) both; }
.anim-delay-1 { animation-delay: 100ms; }
.anim-delay-2 { animation-delay: 200ms; }
.anim-delay-3 { animation-delay: 300ms; }
.anim-delay-4 { animation-delay: 400ms; }

.scroll-reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--pen-easing-default), transform 600ms var(--pen-easing-default); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

.copper-reveal {
  background: var(--pen-color-warm-copper);
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: copperReveal 800ms var(--pen-easing-default) forwards;
}

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

/* ============================================================
   SYNTHESIS BANNER (lets reviewers know this is the synthesis mock)
   ============================================================ */
.synthesis-banner {
  background: var(--pen-color-dark-copper);
  color: var(--pen-color-warm-ivory);
  text-align: center;
  padding: 8px var(--pen-space-md);
  font-family: var(--pen-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.synthesis-banner a {
  color: var(--pen-color-warm-ivory);
  border-bottom: 1px solid var(--pen-color-warm-copper);
}

/* ============================================================
   Koenig editor card classes (gscan requirements + post-content rendering)
   These keep post bodies legible without overriding any Penwood tokens.
   ============================================================ */
.kg-width-wide   { max-width: 1140px; margin-left: auto; margin-right: auto; }
.kg-width-full   { max-width: 100%; margin-left: 0; margin-right: 0; }
.kg-image        { display: block; margin: 1.5rem auto; max-width: 100%; height: auto; }
.kg-image-card   { margin: 2rem 0; }
.kg-bookmark-card { margin: 2rem 0; padding: 1rem; border: 1px solid var(--pen-color-charcoal-10, rgba(45,45,45,0.1)); border-radius: 8px; }
.kg-bookmark-container { display: flex; gap: 1rem; align-items: stretch; }
.kg-bookmark-content   { flex: 1; }
.kg-callout-card { margin: 2rem 0; padding: 1.5rem; background: var(--pen-color-warm-ivory); border-left: 4px solid var(--pen-color-warm-copper); border-radius: 4px; }
.kg-toggle-card  { margin: 1.5rem 0; padding: 1rem; border: 1px solid rgba(45,45,45,0.1); border-radius: 6px; }
.kg-toggle-card .kg-toggle-heading-text { font-weight: 600; cursor: pointer; }
.kg-button-card  { margin: 2rem 0; text-align: center; }
.kg-button-card a { display: inline-block; padding: 0.75rem 1.5rem; background: var(--pen-color-charcoal); color: var(--pen-color-warm-ivory); text-decoration: none; border-radius: 4px; }

/* Skip link for accessibility (default.hbs adds it) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px;
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* ============================================================
   MOBILE NAV DRAWER (P0 fix, May 8 2026)
   Hamburger toggle + slide-in drawer below 800px.
   Replaces the desktop centered grid nav with brand + hamburger.
   Drawer slides from the right, contains all 5 links + Let's talk CTA.
   ============================================================ */
.site-nav__toggle { display: none; }
.site-nav__cta-mobile { display: none; }
.site-nav__toggle:focus-visible {
  outline: 2px solid var(--pen-color-warm-copper);
  outline-offset: 2px;
}

@media (max-width: 800px) {
  /* Reorganize nav: brand left, hamburger right (CTA moves into drawer) */
  .site-nav .container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0;
  }
  .site-nav__cta { display: none; }

  /* Hamburger button — 44pt iOS HIG tap target */
  .site-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 10px;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 60;
  }
  .site-nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pen-color-warm-ivory);
    transition: transform 200ms var(--pen-easing-default), opacity 200ms var(--pen-easing-default);
    transform-origin: center;
  }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Convert links list into off-canvas drawer */
  .site-nav__links {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    flex-direction: column;
    gap: 0;
    padding: var(--pen-space-2xl) var(--pen-space-xl);
    background: var(--pen-color-charcoal);
    border-left: 1px solid #474340;
    transform: translateX(100%);
    transition: transform 250ms var(--pen-easing-default);
    overflow-y: auto;
    z-index: 55;
    box-shadow: var(--pen-shadow-drawer);
  }
  .site-nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
  }
  .site-nav__links a {
    display: block;
    padding: 18px 0;
    font-size: 19px;
    font-weight: 500;
    opacity: 1;
    color: var(--pen-color-warm-ivory);
  }
  .site-nav__links a[aria-current="page"] {
    color: var(--pen-color-warm-copper);
  }

  /* Mobile-only "Let's talk" CTA inside drawer */
  .site-nav__cta-mobile {
    display: block;
    border-bottom: 0;
    margin-top: var(--pen-space-xl);
    padding-top: var(--pen-space-md);
  }
  .site-nav__cta-mobile a.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 16px;
  }

  /* Open state: slide drawer in + dim backdrop + lock scroll */
  body.nav-open .site-nav__links {
    transform: translateX(0);
  }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 60px 0 0 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 45;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* Respect prefers-reduced-motion: instant transition instead of slide */
@media (prefers-reduced-motion: reduce) and (max-width: 800px) {
  .site-nav__links { transition: none; }
  .site-nav__toggle span { transition: none; }
}

/* ============================================================
   MOBILE READINESS BUNDLE (May 8 2026)
   Hero H1 clamp, contact form polish, proof row 1-col.
   ============================================================ */

/* P1: Home + Advisory hero H1 — clamp() so long words like
   "commercialization" don't overflow on iPhone widths.
   Desktop unchanged: hits the 56px ceiling at viewport >= 700px. */
.hero h1,
.advisory-hero h1,
.fcmo-hero h1 {
  font-size: clamp(34px, 8vw, 56px);
}

/* P2: Proof band — go 1-column on small phones (label asymmetry fix).
   Mid-size phones get 2-col with reduced font. Desktop unchanged. */
@media (max-width: 480px) {
  .proof__row { grid-template-columns: 1fr; gap: var(--pen-space-lg); }
  .proof__stat-num { font-size: 44px; }
  .proof__stat-label { font-size: 13px; }
}

/* Contact form polish — generous tap targets, inviting textarea,
   full-width button on mobile, breathing room. */
@media (max-width: 600px) {
  .contact-form input,
  .contact-form textarea {
    padding: 14px 18px;
    font-size: 16px;
  }
  .contact-form textarea {
    min-height: 140px;
  }
  .contact-form button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    justify-self: stretch;
  }
  .contact-form {
    margin-top: var(--pen-space-lg);
  }
}

/* Newsletter signup mobile polish — input full-width on top, button
   full-width below, generous tap target. Defensive 16px font-size on
   input preempts any iOS Safari focus-zoom edge case. Mirrors the
   contact-form polish precedent from f316214. */
@media (max-width: 600px) {
  .signup__input {
    font-size: 16px;
  }
  .signup__form {
    flex-direction: column;
  }
  .signup__form .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* Contact card section — tighter container gutter on phones so the
   card has more width. Solves "IF A CALL DOESN'T FIT" overline +
   inputs overrunning the card's right edge on a 393pt iPhone.
   Scoped to .contact-paths only; every other section keeps its
   current gutter. Desktop unchanged. */
@media (max-width: 600px) {
  .contact-paths .container { padding: 0 var(--pen-space-md); }
}

/* ============================================================
   GENERIC PAGE (page.hbs) — used by Privacy, Terms, etc.
   Dark hero + light body with container-narrow prose styling.
   ============================================================ */
.page-hero {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  padding: var(--pen-space-3xl) 0 var(--pen-space-2xl);
}
.page-hero h1 {
  font-family: var(--pen-font-heading);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--pen-color-warm-ivory);
}
.page-hero .overline { color: var(--pen-color-warm-copper); margin-bottom: var(--pen-space-md); }
.page-hero .lede { color: var(--pen-color-warm-ivory); opacity: 0.85; margin-top: var(--pen-space-lg); }
.page-body {
  background: var(--pen-color-warm-ivory);
  padding: var(--pen-space-3xl) 0 var(--pen-space-4xl);
}
.page-body .container-narrow { max-width: 880px; }
.page-content {
  font-family: var(--pen-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--pen-color-charcoal);
}
.page-content > p:first-child em {
  display: block;
  font-family: var(--pen-font-mono);
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pen-color-warm-slate);
  margin-bottom: var(--pen-space-xl);
}
.page-content h2 {
  font-family: var(--pen-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--pen-color-charcoal);
  margin: var(--pen-space-xl) 0 var(--pen-space-sm);
  padding-top: var(--pen-space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: -0.2px;
}
.page-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.page-content p { margin: 0 0 12px; }
.page-content strong { color: var(--pen-color-charcoal); font-weight: 600; }
.page-content em { color: var(--pen-color-warm-slate); }
.page-content ul {
  margin: 0 0 12px;
  padding-left: var(--pen-space-lg);
}
.page-content ul li { margin-bottom: 6px; }
.page-content a {
  color: var(--pen-color-dark-copper);
  border-bottom: 1px solid var(--pen-color-warm-copper);
  text-decoration: none;
  transition: color var(--pen-duration-fast) var(--pen-easing-default);
}
.page-content a:hover { color: var(--pen-color-warm-copper); }
@media (max-width: 600px) {
  .page-content { font-size: 16px; }
  .page-content h2 { font-size: 20px; }
}

/* ============================================================
   POST BODY TYPOGRAPHY — richer prose treatment for articles
   Scoped to body.post-template to inherit base .page-content rules
   from above, then layer on article-specific styling for visual
   rhythm (lede, H2 with copper accent, paragraph spacing, CTA card).
   ============================================================ */
body.post-template .page-content {
  font-size: 18px;
  line-height: 1.75;
}
/* Lede: first paragraph after hero — larger, lighter, sets the tone */
body.post-template .page-content > p:first-child {
  font-size: 22px;
  line-height: 1.55;
  color: var(--pen-color-warm-slate);
  margin-bottom: var(--pen-space-xl);
  font-weight: 400;
}
/* Paragraph spacing: more breathing room than page body */
body.post-template .page-content p {
  margin: 0 0 var(--pen-space-lg);
}
/* H2 with copper left-border accent — replaces page-content's top border */
body.post-template .page-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--pen-color-charcoal);
  margin: var(--pen-space-2xl) 0 var(--pen-space-md);
  padding: 0 0 0 var(--pen-space-md);
  border-top: none;
  border-left: 4px solid var(--pen-color-warm-copper);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
body.post-template .page-content h2:first-of-type {
  margin-top: var(--pen-space-2xl);
  padding-top: 0;
  border-top: none;
  border-left: 4px solid var(--pen-color-warm-copper);
  padding-left: var(--pen-space-md);
}
/* H3 — smaller heading in dark copper, callout-style */
body.post-template .page-content h3 {
  font-family: var(--pen-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--pen-color-dark-copper);
  margin: var(--pen-space-xl) 0 var(--pen-space-sm);
  letter-spacing: -0.2px;
  line-height: 1.3;
}
/* CTA card: final paragraph styled as a callout with copper accent */
body.post-template .page-content > p:last-child {
  padding: var(--pen-space-xl);
  background: rgba(154, 96, 19, 0.06);
  border-left: 4px solid var(--pen-color-warm-copper);
  margin-top: var(--pen-space-2xl);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.6;
}
/* CTA link bolder inside the card */
body.post-template .page-content > p:last-child a {
  font-weight: 600;
}
/* Mobile adjustments */
@media (max-width: 600px) {
  body.post-template .page-content { font-size: 17px; line-height: 1.7; }
  body.post-template .page-content > p:first-child { font-size: 19px; }
  body.post-template .page-content h2 { font-size: 22px; padding-left: var(--pen-space-sm); }
  body.post-template .page-content h2:first-of-type { padding-left: var(--pen-space-sm); }
  body.post-template .page-content h3 { font-size: 18px; }
  body.post-template .page-content > p:last-child { padding: var(--pen-space-lg); }
}

/* ============================================================
   ARCHIVE FEED — tag.hbs + author.hbs single-column post list
   Reuses .feed__card from /writing/ feed inside .container-narrow.
   Hero matches page.hbs pattern (overline + h1 + copper rule + lede).
   ============================================================ */
.archive-feed {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--pen-space-2xl);
  display: grid;
  gap: var(--pen-space-md);
}
.archive-feed li { margin: 0; }
.archive-empty {
  color: var(--pen-color-warm-slate);
  padding: var(--pen-space-2xl) 0;
  text-align: center;
  font-style: italic;
  margin: 0 0 var(--pen-space-2xl);
}
.archive-back {
  margin-top: var(--pen-space-xl);
  text-align: center;
}
.archive-back .link-arrow {
  font-size: 15px;
}
/* Archive card link reset (replaces inline style="display:block; color:inherit; text-decoration:none;") */
.archive-feed__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   PILLAR CTA LINKS — used inside .pillar-panel description text on /writing/
   Pulled out of inline styles per L016 design-token discipline.
   ============================================================ */
.pillar-cta-link {
  display: inline-block;
  margin-top: var(--pen-space-sm);
}

/* Pillar tag modifier — when used inside body content (NOT inside an image
   container), override the default absolute positioning so the tag flows
   naturally above the title. */
.feed__pillar--inline {
  position: static;
  display: inline-block;
  margin-bottom: var(--pen-space-md);
}

/* Generic inline link reset — strips underline + inherits parent color.
   Use on links that wrap a title/element where you want the link to be
   invisible (no visual change from the parent element). */
.reset-link {
  color: inherit;
  text-decoration: none;
}

/* /writing/ feed: 3-column secondary row for posts 4-6. Suppressed when
   fewer than 4 posts exist (via page-writing.hbs {{#match posts.length}}). */
.feed__row--three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pen-space-md);
  margin-top: var(--pen-space-xl);
}

/* ============================================================
   ERROR PAGE (404 + server) — dark hero with oversized copper code
   ============================================================ */
.error-page {
  background: var(--pen-color-charcoal);
  color: var(--pen-color-warm-ivory);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--pen-space-4xl) var(--pen-space-lg);
  text-align: center;
}
.error-header { margin-bottom: var(--pen-space-2xl); }
.error-code {
  font-family: var(--pen-font-heading);
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 700;
  color: var(--pen-color-warm-copper);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
}
.error-message {
  font-family: var(--pen-font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pen-color-warm-slate);
  margin-top: var(--pen-space-md);
}
.error-content {
  max-width: 540px;
  border-top: 2px solid var(--pen-color-warm-copper);
  padding-top: var(--pen-space-xl);
}
.error-content p {
  font-family: var(--pen-font-body);
  font-size: 18px;
  color: var(--pen-color-warm-ivory);
  margin-bottom: var(--pen-space-md);
}
.error-content a {
  color: var(--pen-color-warm-copper);
  border-bottom: 1px solid var(--pen-color-warm-copper);
  text-decoration: none;
}
.error-content a:hover { color: var(--pen-color-warm-ivory); }
