/* =============================================================
   chriswiselouisville.com  ·  shared design system v2
   institutional dark · navy + gold + cream · matches forvue.io
   ============================================================= */

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

:root {
  /* palette — institutional dark */
  --navy-deep:    #0D2137;        /* primary background */
  --navy-darker:  #081826;        /* footer, deepest contrast */
  --navy-card:    #142B43;        /* elevated surfaces, alt sections */
  --navy-soft:    #1B3553;        /* hover / subtle elevation */
  --cream:        #F5F1EB;        /* primary text */
  --cream-soft:   #E8E2D6;        /* secondary text */
  --cream-mute:   #B0A99A;        /* muted text, captions */
  --gold:         #B8954E;        /* primary accent */
  --gold-bright:  #D4AC68;        /* hover, highlights */
  --gold-deep:    #8F7236;        /* pressed, deep accent */
  --rule:         rgba(245, 241, 235, 0.12);
  --rule-soft:    rgba(245, 241, 235, 0.06);
  --gold-glow:    rgba(184, 149, 78, 0.15);

  /* typography */
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* scale */
  --max-w:    1280px;
  --read-w:   720px;
  --gutter:   clamp(1.25rem, 4vw, 3.5rem);

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* legacy variable aliases for any inline-styled remnants */
  --bone: var(--cream);
  --paper: var(--navy-card);
  --ink: var(--cream);
  --ink-soft: var(--cream-soft);
  --slate: var(--cream-mute);
  --slate-soft: var(--cream-mute);
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* atmospheric gradient — subtle, not distracting */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184, 149, 78, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(184, 149, 78, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer, nav, section { position: relative; z-index: 1; }

::selection { background: var(--gold); color: var(--navy-deep); }

/* =====  TYPOGRAPHY  ===== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1.25em; max-width: 68ch; color: var(--cream-soft); }
p.lede {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 400;
}

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* prose links inside paragraphs — keep cream, gold underline */
.prose p a, .read p a {
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
}
.prose p a:hover, .read p a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* small caps section labels */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* =====  LAYOUT  ===== */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.read {
  max-width: var(--read-w);
  margin-left: auto;
  margin-right: auto;
}

section { padding: clamp(5rem, 12vh, 9rem) 0; }
section + section { border-top: 1px solid var(--rule); }

/* alt sections — slightly elevated for visual rhythm */
section.alt {
  background: var(--navy-card);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.divider {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 3rem 0;
}

/* =====  NAVIGATION  ===== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 33, 55, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-decoration: none;
  border: 0;
  padding: 0;
}
.brand:hover { color: var(--gold); border: 0; }
.brand em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--cream-mute);
  position: relative;
  padding-bottom: 4px;
  border: 0;
  letter-spacing: 0.01em;
  transition: color 200ms var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--cream);
  border: 0;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: var(--cream);
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
  }
  .site-nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-deep);
    padding: 1.5rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--rule);
    gap: 1.25rem;
  }
}

/* =====  HERO  ===== */

.hero {
  padding-top: clamp(4rem, 10vh, 7rem);
  padding-bottom: clamp(5rem, 12vh, 8rem);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 78, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero-name em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
}
.hero-tagline {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--cream-soft);
  max-width: 42ch;
  margin-bottom: 2.75rem;
}

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-card);
}
.hero-photo-wrap::before,
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  z-index: 3;
}
.hero-photo-wrap::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}
.hero-photo-wrap::after {
  bottom: -2px;
  right: -2px;
  border-left: 0;
  border-top: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 420px; }
}

/* =====  IDENTITY TRIPTYCH  ===== */

.identities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 1rem;
}
.identity {
  padding: 2.75rem 2.25rem;
  background: var(--navy-deep);
  transition: background 250ms var(--ease);
}
.identity:hover {
  background: var(--navy-card);
}
.identity-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  text-transform: uppercase;
}
.identity h3 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: 1.55rem;
  line-height: 1.15;
}
.identity p {
  font-size: 0.96rem;
  color: var(--cream-mute);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.identity-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: all 200ms var(--ease);
}
.identity-link::after { content: ' →'; transition: padding 200ms var(--ease); }
.identity-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.identity-link:hover::after { padding-left: 4px; }

@media (max-width: 800px) {
  .identities { grid-template-columns: 1fr; }
}

/* =====  STAT STRIP — DOMINANT MOMENT  ===== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy-deep) 100%);
}
.stats > div {
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--rule);
  text-align: left;
}
.stats > div:last-child { border-right: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div { padding: 2rem 1.25rem; }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(1), .stats > div:nth-child(2) {
    border-bottom: 1px solid var(--rule);
  }
}

/* =====  PRESS TIERS  ===== */

.press-tier { margin-bottom: 4.5rem; }
.press-tier h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.press-tier h3 .tier-tag {
  color: var(--gold);
}

.press-list { list-style: none; }
.press-item {
  display: grid;
  grid-template-columns: 9rem 1fr auto;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
  transition: padding-left 200ms var(--ease);
}
.press-item:hover {
  padding-left: 0.5rem;
}
.press-item:last-child { border-bottom: 0; }
.press-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.press-outlet {
  font-weight: 600;
  color: var(--cream);
}
.press-title {
  color: var(--cream-soft);
  margin-left: 0.5rem;
}
.press-link {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.press-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

@media (max-width: 720px) {
  .press-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .press-link { justify-self: start; }
  .press-tier h3 { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* =====  CTA BUTTONS  ===== */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1.05rem 1.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
  transition: all 200ms var(--ease);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-mute);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* =====  TIMELINE  ===== */

.timeline {
  border-left: 1px solid var(--rule);
  padding-left: 2.25rem;
  margin: 2.5rem 0;
}
.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.4rem;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: translateX(-5px);
  box-shadow: 0 0 0 4px var(--navy-deep);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.timeline-item h4 {
  margin-bottom: 0.5rem;
  color: var(--cream);
  font-size: 1.15rem;
}
.timeline-item p {
  font-size: 0.96rem;
  color: var(--cream-mute);
  margin-bottom: 0;
}

/* =====  RECOGNITION GRID  ===== */

.recognition {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 1.5rem 0;
}
.recognition-item {
  padding: 1.75rem 1.5rem;
  background: var(--navy-deep);
}
.recognition-year {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.recognition-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.recognition-item p {
  font-size: 0.92rem;
  color: var(--cream-mute);
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .recognition { grid-template-columns: 1fr; }
}

/* =====  WORK CARDS  ===== */

.work-card {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.work-card:last-of-type { border-bottom: 0; }
.work-meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.work-meta-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.work-card h3 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}
.work-card .role {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.work-card p { color: var(--cream-soft); }
.work-card p em { color: var(--cream-mute); font-style: italic; }
.work-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.work-link::after { content: ' →'; }
.work-link:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

@media (max-width: 720px) {
  .work-card { grid-template-columns: 1fr; }
}

/* =====  SPEAKING TOPICS  ===== */

.topics { counter-reset: topic; }
.topic {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.75rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
  counter-increment: topic;
}
.topic:last-child { border-bottom: 0; }
.topic::before {
  content: counter(topic, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.topic h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
}
.topic p {
  font-size: 0.96rem;
  color: var(--cream-soft);
  margin-bottom: 0;
}

/* =====  CONTACT ROUTES  ===== */

.routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.route {
  padding: 2.25rem 2rem;
  background: var(--navy-card);
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  border: 0;
  transition: background 250ms var(--ease);
}
.route:hover {
  background: var(--navy-soft);
  border: 0;
  color: var(--cream);
}
.route:hover .route-arrow { color: var(--gold-bright); }
.route-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.route h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
}
.route-detail {
  color: var(--cream-mute);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.route-arrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.route-arrow::after { content: ' →'; }

@media (max-width: 720px) {
  .routes { grid-template-columns: 1fr; }
}

/* =====  NAP BLOCK  ===== */

.nap {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--cream-soft);
  background: var(--navy-card);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
}
.nap strong { color: var(--cream); font-weight: 600; }
.nap a { color: var(--gold); border-bottom: 1px solid var(--rule); }
.nap a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* =====  DISCLOSURES  ===== */

.disclosure-block {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.disclosure-block:last-of-type { border-bottom: 0; }
.disclosure-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--cream);
}
.disclosure-block p {
  font-size: 0.95rem;
  color: var(--cream-soft);
  line-height: 1.65;
}
.disclosure-block a { color: var(--gold); border-bottom: 1px solid var(--rule); }
.disclosure-block a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* =====  FOOTER  ===== */

.site-foot {
  margin-top: 0;
  padding: 4.5rem 0 2rem;
  background: var(--navy-darker);
  color: var(--cream-soft);
  border-top: 1px solid var(--gold);
}
.site-foot a {
  color: var(--cream-soft);
  border-bottom: 1px solid var(--rule);
}
.site-foot a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; }
.foot-col li {
  margin-bottom: 0.6rem;
  font-size: 0.93rem;
  color: var(--cream-mute);
}

.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--cream);
}
.foot-nap {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream-mute);
  font-family: var(--font-mono);
}
.foot-nap strong { color: var(--cream); }

.foot-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--cream-mute);
}

@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =====  PAGE HEADER (subpage hero)  ===== */

.page-head {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy-deep) 100%);
}
.page-head .eyebrow { margin-bottom: 1.25rem; }
.page-head h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.page-head h1 em { color: var(--gold); }
.page-head .lede {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--cream-soft);
  max-width: 60ch;
}

/* =====  BREADCRUMBS  ===== */

.crumbs {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 2rem;
}
.crumbs a {
  color: var(--cream-mute);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.crumbs a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.crumbs span:not(:last-child)::after {
  content: ' / ';
  color: var(--rule);
  padding: 0 0.5em;
}

/* =====  PROSE BLOCKS  ===== */

.prose h2 {
  margin: 3.5rem 0 1.25rem;
  color: var(--cream);
}
.prose h3 {
  margin: 2.25rem 0 0.85rem;
  color: var(--cream);
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream-soft);
}
.prose blockquote {
  border-left: 3px solid var(--gold);
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--cream);
  background: var(--navy-card);
  padding: 1.75rem 2rem;
}

/* =====  ACCESSIBILITY  ===== */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.6rem 1rem;
  text-decoration: none;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====  REVEAL ON LOAD  ===== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 800ms var(--ease) forwards;
}
.reveal-2 { animation-delay: 150ms; }
.reveal-3 { animation-delay: 300ms; }
.reveal-4 { animation-delay: 450ms; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
