:root {
  --navy: #0a2742;
  --navy-deep: #061a2d;
  --navy-soft: #173b59;
  --gold: #dca43a;
  --gold-light: #f0c76c;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --ink: #10202c;
  --muted: #66717a;
  --line: rgba(10, 39, 66, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(6, 26, 45, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
}

.eyebrow-light {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--navy);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-light {
  color: var(--navy);
  background: var(--paper);
}

.button-light:hover {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  top: 7px;
  left: 16px;
  width: 1px;
  height: 21px;
  background: currentColor;
  content: "";
}

.brand-mark::after {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 0;
  height: 0;
  border-right: 8px solid currentColor;
  border-bottom: 16px solid transparent;
  content: "";
}

.brand-mark i {
  position: absolute;
  top: 13px;
  left: 18px;
  width: 0;
  height: 0;
  border-bottom: 13px solid currentColor;
  border-left: 7px solid transparent;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  padding-block: 29px;
  color: #34424c;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Abstract post visuals */
.post-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
    var(--navy);
  isolation: isolate;
}

.post-visual::before {
  position: absolute;
  z-index: -1;
  top: -34%;
  right: -10%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.04),
    0 0 0 68px rgba(255, 255, 255, 0.025);
  content: "";
}

.post-visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(120deg, black, transparent 68%);
}

.visual-kicker,
.visual-category,
.visual-number {
  position: absolute;
  z-index: 2;
}

.visual-kicker {
  top: 22px;
  left: 24px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-number {
  bottom: -25px;
  left: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--serif);
  font-size: clamp(7rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 1;
}

.visual-category {
  right: 24px;
  bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-orbit {
  position: absolute;
  top: 28%;
  right: 15%;
  width: 28%;
  aspect-ratio: 1;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
}

.visual-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
}

.visual-portfolio {
  background-color: #173b59;
}

.visual-risk {
  background-color: #6c2f2f;
}

.visual-team {
  background-color: #315247;
}

.visual-stakeholder {
  background-color: #4c4168;
}

.visual-integration {
  background-color: #1c5360;
}

.visual-timeline {
  background-color: #8a5a27;
}

.visual-pmo {
  background-color: #3f4e63;
}

.visual-banking {
  background-color: #164b70;
}

.visual-trust {
  background-color: #5c3c49;
}

/* Home */
.hero {
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 78px;
}

.hero-copy h1,
.archive-hero h1,
.about-hero h1,
.contact-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero-copy h1 em,
.archive-hero h1 em,
.about-hero h1 em,
.contact-hero h1 em,
.contact-cta h2 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-intro {
  max-width: 540px;
  margin: 34px 0 0;
  color: #495862;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.featured-panel {
  display: block;
  color: white;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.featured-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(6, 26, 45, 0.22);
}

.featured-panel .post-visual {
  min-height: 290px;
}

.featured-content {
  padding: 28px 30px 30px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-content .post-meta {
  color: rgba(255, 255, 255, 0.62);
}

.featured-content h2 {
  margin: 17px 0 12px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.featured-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.65;
}

.featured-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  background: var(--navy);
  white-space: nowrap;
}

.hero-ticker div {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 16px 24px;
}

.hero-ticker span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-ticker i {
  color: var(--gold);
  font-style: normal;
}

.section {
  padding-block: 110px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-header .eyebrow {
  margin-bottom: 15px;
}

.section-header h2,
.topics-grid h2,
.reading-grid h2,
.timeline-layout h2,
.education-grid h2,
.contact-primary h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.post-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.post-card-link {
  display: block;
  height: 100%;
}

.post-card-body {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 26px 26px 24px;
}

.category-pill {
  color: var(--navy);
}

.post-card h3 {
  margin: 20px 0 14px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.post-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 28px;
}

.post-card-footer time {
  color: var(--muted);
  font-size: 0.72rem;
}

.arrow-link {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow-link b {
  color: var(--gold);
}

.manifesto-section {
  padding-block: 112px;
  color: white;
  background: var(--navy);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 90px;
  align-items: end;
}

.manifesto-copy h2 {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid > div {
  min-height: 180px;
  padding: 28px;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.stats-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topics-section {
  background: var(--cream);
}

.topics-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.topic-list {
  border-top: 1px solid var(--line);
}

.topic-list a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.topic-list a span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.topic-list a strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 500;
  transition: transform 180ms ease;
}

.topic-list a i {
  color: var(--gold);
  font-style: normal;
}

.topic-list a:hover strong {
  transform: translateX(8px);
}

/* Archive */
.archive-hero,
.contact-hero {
  padding-block: 100px 90px;
  color: white;
  background: var(--navy);
}

.archive-hero-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.archive-hero h1,
.contact-hero h1 {
  color: white;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

.archive-hero-grid > p,
.contact-hero-grid > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

.archive-section {
  background: var(--paper);
}

.archive-tools {
  margin-bottom: 28px;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--navy);
}

.search-field input {
  min-width: 0;
  padding: 18px 6px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.search-field input::placeholder {
  color: #8c9499;
}

.search-field button {
  padding: 10px 8px 10px 30px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-field button span {
  margin-left: 10px;
  color: var(--gold);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 18px 34px;
}

.category-filter a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: #4e5a62;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.category-filter a:hover,
.category-filter a.active {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.archive-count {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 28px;
}

.archive-count strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.archive-count span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-grid {
  row-gap: 36px;
}

.archive-post,
.archive-post .post-card {
  height: 100%;
}

.archive-post[hidden],
.empty-state[hidden] {
  display: none;
}

.empty-state {
  padding: 80px 30px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
}

.empty-state h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.5rem;
}

.empty-state p {
  margin: 0 0 28px;
  color: var(--muted);
}

/* Article */
.article-header {
  padding-block: 48px 42px;
  background: var(--cream);
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.article-heading .post-meta a {
  color: var(--gold);
}

.article-heading h1 {
  max-width: 880px;
  margin: 24px 0 25px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.article-deck {
  max-width: 760px;
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: #4d5b64;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.article-header-grid .post-visual {
  min-height: 400px;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 13px;
}

.author-chip > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.author-chip div {
  display: grid;
}

.author-chip strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.author-chip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.share-button {
  padding: 10px 0 10px 18px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.share-button span {
  margin-left: 10px;
  color: var(--gold);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 100px;
  align-items: start;
  padding-block: 90px 105px;
}

.article-content {
  color: #283943;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.9;
}

.article-content > p:first-child {
  color: var(--navy);
  font-size: 1.36rem;
  line-height: 1.75;
}

.article-content h2 {
  margin: 2.2em 0 0.65em;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  scroll-margin-top: 110px;
}

.article-content p {
  margin: 0 0 1.45em;
}

.article-content ul,
.article-content ol {
  margin: 1.6em 0;
  padding-left: 1.35em;
}

.article-content li {
  margin-bottom: 0.75em;
  padding-left: 0.35em;
}

.article-content li::marker {
  color: var(--gold);
}

.article-content strong {
  color: var(--navy);
}

.article-content blockquote {
  margin: 2em 0;
  padding: 26px 28px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: var(--cream);
  font-size: 1.35rem;
  font-style: italic;
}

.article-content blockquote p {
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside > div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.aside-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-pagination a {
  display: grid;
  min-height: 160px;
  align-content: center;
  padding: 28px;
}

.article-pagination a + a {
  border-left: 1px solid var(--line);
}

.article-pagination .next {
  text-align: right;
}

.article-pagination span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-pagination strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.related-section {
  background: var(--cream);
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* About */
.about-hero {
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.about-hero-grid {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding-block: 95px;
}

.about-hero h1 {
  color: white;
}

.about-intro {
  align-self: end;
  padding-bottom: 28px;
}

.about-intro p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.7;
}

.portrait-monogram {
  position: absolute;
  right: -3%;
  bottom: -20%;
  display: flex;
  width: 340px;
  height: 340px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
  pointer-events: none;
}

.portrait-monogram i {
  margin-left: -22px;
  color: rgba(220, 164, 58, 0.18);
  font-style: normal;
}

.portrait-monogram small {
  position: absolute;
  top: 42px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reading-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.prose-large {
  color: #3e4d56;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.9;
}

.prose-large p {
  margin: 0 0 1.35em;
}

.prose-large blockquote {
  margin: 40px 0 0;
  padding: 30px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: var(--cream);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.5;
}

.numbers-band {
  color: white;
  background: var(--navy);
}

.stats-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid-wide > div {
  border-top: 0;
}

.expertise-section {
  background: var(--cream);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.expertise-grid article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expertise-grid article > span,
.degree-grid article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.expertise-grid h3 {
  margin: 54px 0 15px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
}

.expertise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.timeline h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.education-section {
  background: var(--cream);
}

.education-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.degree-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.degree-grid article {
  min-height: 215px;
  padding: 26px;
  background: var(--paper);
}

.degree-grid h3 {
  margin: 44px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.degree-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.training-list {
  margin-top: 38px;
}

.training-list h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.training-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.training-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #52616a;
  font-size: 0.82rem;
}

.contact-cta {
  padding-block: 100px;
  color: white;
  background: var(--navy-deep);
  text-align: center;
}

.contact-cta h2 {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.contact-cta p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px auto 34px;
  color: rgba(255, 255, 255, 0.65);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-primary > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 40px;
  color: var(--muted);
}

.email-link {
  position: relative;
  display: grid;
  padding: 25px 55px 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.email-link > span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-link strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 500;
}

.email-link i {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--gold);
  font-style: normal;
  transform: translateY(-50%);
}

.contact-options {
  border-top: 1px solid var(--line);
}

.contact-options article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.contact-options h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-options p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.linkedin-band {
  padding-block: 62px;
  color: white;
  background: var(--gold);
}

.linkedin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.linkedin-inner > div > span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.linkedin-inner h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.linkedin-inner > a {
  display: inline-flex;
  min-width: 200px;
  justify-content: space-between;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Legal */
.legal-page {
  padding-block: 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.legal-layout h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.legal-layout header > p:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  margin: 2em 0 0.5em;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #45545d;
  line-height: 1.85;
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  color: white;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 90px;
  padding-block: 78px 65px;
}

.brand-light .brand-copy strong {
  color: white;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.75;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid section > h2 {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: grid;
  gap: 12px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  transition: color 160ms ease;
}

.footer-grid nav a:hover {
  color: white;
}

.footer-posts nav a {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-line);
  font-family: var(--serif);
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid var(--white-line);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.67rem;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 48px;
  }

  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-grid,
  .article-header-grid,
  .reading-grid,
  .timeline-layout,
  .education-grid {
    gap: 55px;
  }

  .article-layout {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100dvh - 84px);
    padding: 30px max(18px, calc((100vw - 720px) / 2));
    color: white;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--white-line);
    color: white;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .archive-hero-grid,
  .contact-hero-grid,
  .about-hero-grid,
  .manifesto-grid,
  .topics-grid,
  .article-header-grid,
  .reading-grid,
  .timeline-layout,
  .education-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 68px 54px;
  }

  .featured-panel {
    max-width: 580px;
  }

  .manifesto-grid,
  .topics-grid,
  .archive-hero-grid,
  .contact-hero-grid,
  .reading-grid,
  .timeline-layout,
  .education-grid,
  .contact-grid,
  .legal-layout {
    gap: 52px;
  }

  .archive-hero,
  .contact-hero {
    padding-block: 72px;
  }

  .archive-hero-grid > p,
  .contact-hero-grid > p {
    margin: 0;
  }

  .article-header-grid .post-visual {
    min-height: 300px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .about-hero-grid {
    min-height: 680px;
    align-content: center;
  }

  .about-intro {
    max-width: 600px;
    padding: 0;
  }

  .portrait-monogram {
    right: -12%;
    bottom: -23%;
  }

  .stats-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
  }

  .footer-posts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-mark::before {
    top: 5px;
    left: 14px;
  }

  .brand-mark::after {
    top: 7px;
    left: 7px;
    border-right-width: 7px;
    border-bottom-width: 15px;
  }

  .brand-mark i {
    top: 11px;
    left: 16px;
  }

  .site-nav {
    top: 74px;
    height: calc(100dvh - 74px);
    padding-inline: 15px;
  }

  .hero-grid {
    gap: 45px;
    padding-block: 55px 42px;
  }

  .hero-copy h1,
  .archive-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .hero-intro {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .featured-panel .post-visual {
    min-height: 230px;
  }

  .featured-content {
    padding: 24px 22px;
  }

  .hero-ticker div {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
  }

  .section {
    padding-block: 78px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .posts-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .post-card-body {
    min-height: 305px;
    padding: 23px 21px;
  }

  .manifesto-section {
    padding-block: 78px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid > div {
    min-height: 145px;
    padding: 20px;
  }

  .topics-grid {
    gap: 42px;
  }

  .topic-list a {
    grid-template-columns: 38px 1fr auto;
  }

  .search-field input {
    font-size: 1.25rem;
  }

  .search-field button {
    padding-left: 12px;
  }

  .article-header {
    padding-block: 35px;
  }

  .back-link {
    margin-bottom: 30px;
  }

  .article-heading h1 {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
  }

  .article-header-grid {
    gap: 38px;
  }

  .article-header-grid .post-visual {
    min-height: 240px;
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-layout {
    padding-block: 62px;
  }

  .article-content {
    font-size: 1.06rem;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .article-pagination {
    grid-template-columns: 1fr;
  }

  .article-pagination a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-pagination .next {
    text-align: left;
  }

  .about-hero-grid {
    min-height: 620px;
    gap: 40px;
    padding-block: 70px 130px;
  }

  .portrait-monogram {
    right: -30%;
    bottom: -27%;
    width: 290px;
    height: 290px;
    font-size: 8rem;
  }

  .stats-grid-wide {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid article {
    min-height: 230px;
  }

  .timeline li {
    grid-template-columns: 70px 1fr;
  }

  .degree-grid,
  .training-list ul {
    grid-template-columns: 1fr;
  }

  .contact-cta h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .linkedin-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .linkedin-inner > a {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-posts {
    grid-column: auto;
  }
}

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