:root {
  --ink: #080d16;
  --ink-soft: #1e2930;
  --muted: #65706a;
  --line: rgba(8, 13, 22, 0.16);
  --line-strong: #cfc8bb;
  --paper: #fbfaf7;
  --paper-white: #ffffff;
  --paper-soft: #f1eee7;
  --oxblood: #760915;
  --oxblood-dark: #52050e;
  --forest: #173427;
  --forest-soft: #d7dfd4;
  --gold: #a8783f;
  --shadow: 0 28px 70px rgba(8, 13, 22, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --header-height: 86px;
  --gutter: 5.2vw;
  --motion: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.028) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 13, 22, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 13, 22, 0.018) 1px, transparent 1px);
  background-size: 100% 112px, 112px 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), transparent 78%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper-white);
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: min-height var(--motion), box-shadow var(--motion), background var(--motion);
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 16px 40px rgba(8, 13, 22, 0.08);
}

.brand,
.footer-brand {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.brand-lockup,
.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
}

.brand-mark,
.footer-mark {
  flex: 0 0 auto;
  object-fit: contain;
}

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

.footer-mark {
  width: 46px;
  height: 46px;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: var(--paper-white);
}

.brand-lockup span,
.footer-lockup span {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.94rem;
}

.site-nav a,
.text-link {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.2rem;
  height: 1px;
  background: currentColor;
  transition: right var(--motion);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  right: 0;
}

.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0 1.35rem !important;
  background: var(--oxblood);
  color: var(--paper-white);
  font-weight: 700;
}

.nav-book::after {
  display: none;
}

.nav-book span,
.button span {
  transition: transform var(--motion);
}

.nav-book:hover span,
.nav-book:focus-visible span,
.button:hover span,
.button:focus-visible span {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform var(--motion), opacity var(--motion);
}

.message-stack {
  position: fixed;
  z-index: 50;
  top: calc(var(--header-height) + 1rem);
  right: var(--gutter);
  width: min(360px, calc(100vw - 2rem));
}

.message {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(23, 52, 39, 0.22);
  background: var(--paper-white);
  color: var(--forest);
  box-shadow: var(--shadow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: 6.8rem;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: 3.25rem;
}

h3 {
  font-size: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0 1.7rem;
  border: 1px solid currentColor;
  font-weight: 800;
  text-align: center;
}

.button-primary {
  border-color: var(--oxblood);
  background: var(--oxblood);
  color: var(--paper-white);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-light {
  border-color: var(--paper-white);
  color: var(--paper-white);
}

.button-forest {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper-white);
}

.text-link {
  display: inline-flex;
  color: var(--forest);
  font-weight: 700;
}

.external::before {
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.92fr) minmax(420px, 0.86fr);
  grid-template-rows: minmax(640px, calc(100vh - var(--header-height) - 104px)) 104px;
  min-height: calc(100vh - var(--header-height));
  border-bottom: 1px solid var(--line);
}

.hero-rail {
  grid-row: 1 / 3;
  display: grid;
  align-content: space-between;
  justify-items: center;
  padding: 3.5rem 0 1rem;
  border-right: 1px solid var(--line);
  color: var(--oxblood);
  font-size: 0.82rem;
}

.hero-rail span:last-child {
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hero-copy {
  grid-column: 2;
  align-self: center;
  padding: 5rem 4vw 4rem;
}

.signature-rule {
  width: min(340px, 70%);
  height: 2px;
  margin: 1.4rem 0 2rem;
  background: var(--oxblood);
}

.hero-role {
  max-width: 620px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions.stacked {
  align-items: flex-start;
  flex-direction: column;
}

.hero-portrait {
  position: relative;
  grid-column: 3;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 520px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.hero-portrait::before {
  content: "";
  display: none;
  position: absolute;
  z-index: 1;
  right: 5vw;
  top: 46%;
  width: 31%;
  height: 30%;
  border: 1px solid rgba(8, 13, 22, 0.08);
  background-image: linear-gradient(rgba(8, 13, 22, 0.08) 1px, transparent 1px);
  background-size: 100% 26px;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  width: 28%;
  height: 100%;
  background:
    linear-gradient(rgba(23, 52, 39, 0.95), rgba(23, 52, 39, 0.95)),
    var(--forest);
}

.hero-portrait > img {
  position: relative;
  z-index: 2;
  width: 92%;
  max-height: 94%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 36px rgba(8, 13, 22, 0.16));
}

.portrait-paper {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 14%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow);
}

.portrait-paper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.next-preview {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: center;
  min-height: 104px;
  padding: 0 4vw;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
  font-family: var(--serif);
  font-size: 2.8rem;
}

.next-preview span:last-child {
  justify-self: end;
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 1.5rem;
}

.section {
  scroll-margin-top: var(--header-height);
  padding: 5.3rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section-numbered {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 2rem;
}

.section-marker {
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.section-intro p {
  max-width: 360px;
  color: var(--muted);
}

.about-copy,
.editorial-list,
.career-timeline,
.substack-panel,
.contact-form {
  grid-column: 3;
}

.about-copy {
  max-width: 920px;
}

.about-copy > p {
  max-width: 720px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-pillars article {
  min-height: 190px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
}

.about-pillars span,
.row-number,
.career-date,
.status-label {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-pillars h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.45rem;
}

.about-pillars p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.editorial-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: center;
  min-height: 112px;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--motion), transform var(--motion), background var(--motion);
}

a.editorial-row:hover,
a.editorial-row:focus-visible,
.editorial-row:hover {
  color: var(--oxblood);
  transform: translateX(8px);
}

.editorial-row strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.editorial-row small {
  display: block;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
}

.editorial-row.compact {
  min-height: 98px;
}

.service-row {
  align-items: start;
  min-height: 164px;
  padding: 1.7rem 0;
}

.service-row strong {
  margin-bottom: 0.55rem;
}

.service-row small {
  max-width: 850px;
  margin-top: 0.38rem;
}

.service-row b {
  color: var(--forest);
  font-weight: 800;
}

.row-arrow {
  color: var(--oxblood);
  font-size: 1.4rem;
}

.career-section {
  background:
    linear-gradient(90deg, rgba(23, 52, 39, 0.05), transparent 34%),
    var(--paper);
}

.career-timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 2.5rem;
  align-items: start;
}

.career-rail {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 0.3rem 0 0.3rem 1.55rem;
}

.career-rail::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 7px;
  width: 2px;
  background: rgba(23, 52, 39, 0.16);
}

.career-rail-progress {
  position: absolute;
  top: 1.1rem;
  left: 7px;
  width: 2px;
  height: var(--career-progress);
  max-height: calc(100% - 2.2rem);
  background: linear-gradient(var(--oxblood), var(--forest));
  transition: height 360ms ease;
}

.career-node {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(8, 13, 22, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    var(--paper);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--motion), background var(--motion), box-shadow var(--motion), transform var(--motion);
}

.career-node:hover,
.career-node:focus-visible {
  border-color: rgba(23, 52, 39, 0.38);
  transform: translateX(6px);
}

.career-node.is-active {
  border-color: rgba(23, 52, 39, 0.55);
  background:
    linear-gradient(90deg, rgba(118, 9, 21, 0.11), rgba(23, 52, 39, 0.08)),
    var(--paper-white);
  box-shadow: 0 18px 42px rgba(8, 13, 22, 0.1);
  transform: translateX(6px);
}

.career-node-dot {
  position: absolute;
  top: 50%;
  left: -1.55rem;
  width: 16px;
  height: 16px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.career-node.is-active .career-node-dot {
  background: var(--forest);
  box-shadow: 0 0 0 7px rgba(23, 52, 39, 0.1);
}

.career-node-number {
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.career-node strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.career-node small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-node em {
  justify-self: end;
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(23, 52, 39, 0.24);
  color: var(--forest);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.career-stage {
  position: sticky;
  top: calc(var(--header-height) + 1.6rem);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 39, 0.18);
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(8, 13, 22, 0.035) 1px, transparent 1px) 0 0 / 100% 58px,
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(8, 13, 22, 0.08);
}

.career-panel {
  position: relative;
  display: none;
  min-height: 100%;
  padding: clamp(1.6rem, 4vw, 3.2rem);
}

.career-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 38%;
  height: 44%;
  border-left: 1px solid rgba(118, 9, 21, 0.18);
  border-top: 1px solid rgba(118, 9, 21, 0.18);
  background:
    linear-gradient(90deg, rgba(118, 9, 21, 0.07) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(rgba(118, 9, 21, 0.06) 1px, transparent 1px) 0 0 / 100% 22px;
}

.career-panel.is-active {
  display: grid;
  align-content: center;
  animation: careerPanelIn 280ms ease;
}

.career-panel[hidden] {
  display: none;
}

.career-panel-index {
  position: absolute;
  right: 1.6rem;
  top: 1.1rem;
  color: rgba(8, 13, 22, 0.05);
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 1;
}

.career-panel-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-panel-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  max-width: 430px;
  margin-bottom: 1.8rem;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.career-panel-visual i {
  height: 2px;
  background:
    linear-gradient(90deg, var(--oxblood), var(--forest));
}

.career-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 0.7rem;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
}

.career-title {
  position: relative;
  z-index: 1;
  margin-bottom: 1.8rem;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
}

.career-panel p:not(.career-title) {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.career-signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2.3rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.career-signal-grid div {
  padding: 1rem;
  background: var(--paper);
}

.career-signal-grid strong,
.career-signal-grid span {
  display: block;
}

.career-signal-grid strong {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-signal-grid span {
  color: var(--forest);
  font-weight: 700;
}

@keyframes careerPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.status-label {
  align-self: end;
  justify-self: start;
  margin-top: 0.7rem;
  padding-top: 0.4rem;
  border-top: 1px solid currentColor;
}

.floating-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    var(--paper);
  box-shadow: 0 18px 40px rgba(8, 13, 22, 0.11);
}

.floating-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.floating-photo figcaption {
  display: grid;
  gap: 0.28rem;
  padding: 0.72rem 0.78rem;
}

.floating-photo figcaption span {
  color: var(--oxblood);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-photo figcaption strong {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.18;
}

.about-presence-photo {
  float: right;
  width: min(220px, 32%);
  margin: 0.2rem 0 1.2rem 1.75rem;
  transform: rotate(1.4deg);
}

.intro-photo {
  width: min(215px, 100%);
  margin: 1.25rem 0 0;
  transform: rotate(-1.2deg);
}

.service-presence-photo img {
  aspect-ratio: 16 / 9;
}

.photo-stack {
  position: relative;
  min-height: 246px;
  margin-top: 1.25rem;
}

.photo-stack .floating-photo {
  position: absolute;
  float: none;
  width: 148px;
  margin: 0;
}

.photo-stack .floating-photo:first-child {
  left: 0;
  top: 0;
  transform: rotate(-2.2deg);
}

.photo-stack .floating-photo:last-child {
  right: 0;
  top: 72px;
  transform: rotate(2deg);
}

.photo-stack .floating-photo img {
  aspect-ratio: 3 / 4;
}

.photo-stack .floating-photo figcaption {
  padding: 0.62rem 0.68rem;
}

.consultation-presence-photo {
  width: min(220px, 100%);
  margin: 1.05rem 0 1.4rem;
  transform: rotate(1.2deg);
}

.consultation-presence-photo img {
  aspect-ratio: 4 / 3;
}

.writing-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.94), rgba(23, 52, 39, 0.82) 48%, rgba(8, 13, 22, 0.58)),
    url("../img/events/event-podcast-interview.jpg") center / cover;
  color: var(--paper-white);
}

.writing-feature .section-marker,
.writing-feature .section-intro p,
.writing-feature .text-link {
  color: var(--paper-white);
}

.substack-panel {
  display: grid;
  align-items: end;
  min-height: 430px;
  padding: clamp(1.6rem, 4vw, 3.8rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.44), rgba(8, 13, 22, 0.18)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2px);
}

.substack-copy {
  max-width: 720px;
}

.substack-copy h3 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  color: var(--paper-white);
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.substack-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.42;
}

.substack-copy .button {
  margin-top: 1.2rem;
}

.consultation-section {
  grid-template-columns: 72px minmax(220px, 0.3fr) minmax(280px, 0.42fr) minmax(260px, 0.28fr);
  align-items: stretch;
}

.consultation-copy {
  grid-column: 2;
}

.consultation-copy p {
  color: var(--muted);
}

.consultation-image {
  grid-column: 3;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prep-list {
  grid-column: 4;
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.prep-list h3 {
  margin-bottom: 1.3rem;
}

.prep-list div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.prep-list strong,
.prep-list small {
  display: block;
}

.prep-list small {
  color: var(--muted);
}

.contact-section {
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.2rem;
}

.contact-link-button {
  min-height: 48px;
  padding: 0 1.1rem;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-error-note,
.form-errors {
  margin: 0;
  color: var(--oxblood);
  font-weight: 700;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 5rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.thank-you-copy h1 {
  max-width: 760px;
}

.thank-you-copy p {
  max-width: 640px;
  font-size: 1.16rem;
}

.booking-note {
  margin-top: 1.6rem;
  color: var(--forest);
  font-size: 0.95rem !important;
}

.thank-you-prep {
  grid-column: auto;
}

.thank-you-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.thank-you-image {
  height: 360px;
  overflow: hidden;
}

.thank-you-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rich-copy {
  padding: 3rem var(--gutter);
}

.site-footer {
  padding: 3rem var(--gutter) 1.75rem;
  background:
    linear-gradient(rgba(8, 13, 22, 0.92), rgba(8, 13, 22, 0.92)),
    var(--forest);
  color: var(--paper-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(160px, 0.7fr) minmax(180px, 0.7fr);
  gap: 3rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid .footer-brand {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--paper-white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.footer-grid h2 {
  margin: 0 0 0.8rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-grid .footer-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--paper-white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 1.2rem;
  }

  h1 {
    font-size: 5.3rem;
  }

  .hero {
    grid-template-columns: 58px minmax(0, 0.98fr) minmax(340px, 0.82fr);
  }

  .career-timeline {
    grid-template-columns: 1fr;
  }

  .career-stage {
    position: relative;
    top: auto;
  }

}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 40;
    left: 0;
    right: 0;
    top: var(--header-height);
    display: grid;
    gap: 0;
    padding: 0.6rem var(--gutter) 1rem;
    background: var(--paper-white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(8, 13, 22, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--motion), transform var(--motion);
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-book {
    justify-content: center;
    margin-top: 0.75rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --gutter: 1.25rem;
  }

  body {
    background: var(--paper);
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand,
  .footer-brand {
    font-size: 1.55rem;
  }

  .brand-lockup,
  .footer-lockup {
    gap: 0.62rem;
  }

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

  .footer-mark {
    width: 40px;
    height: 40px;
    padding: 0.25rem;
  }

  .footer-grid .footer-brand {
    font-size: 1.55rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-rail {
    display: none;
  }

  .hero-copy {
    grid-column: 1;
    padding: 3.4rem var(--gutter) 1.5rem;
  }

  .hero-role {
    font-size: 1.25rem;
  }

  .hero-actions,
  .form-grid,
  .footer-grid,
  .footer-base,
  .thank-you-hero,
  .thank-you-band {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    grid-column: 1;
    min-height: 350px;
    border-top: 1px solid var(--line);
  }

  .hero-portrait > img {
    width: 82%;
    max-height: 390px;
  }

  .hero-portrait::before,
  .hero-portrait::after,
  .portrait-paper {
    display: none;
  }

  .next-preview {
    grid-column: 1;
    min-height: 86px;
    padding: 0 var(--gutter);
    font-size: 2rem;
  }

  .section,
  .section-numbered,
  .consultation-section {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-marker {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .about-copy,
  .editorial-list,
  .career-timeline,
  .substack-panel,
  .contact-form {
    grid-column: auto;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .editorial-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .row-arrow,
  .editorial-row .text-link,
  .editorial-row > .status-label {
    grid-column: 2;
    justify-self: start;
  }

  .career-timeline {
    gap: 1.5rem;
  }

  .career-rail {
    order: 2;
  }

  .career-node {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 76px;
  }

  .career-node em {
    grid-column: 2;
    justify-self: start;
  }

  .career-stage {
    order: 1;
    min-height: auto;
  }

  .career-panel {
    padding: 1.45rem;
  }

  .career-panel h3 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .career-panel::before {
    width: 58%;
    height: 30%;
  }

  .about-presence-photo {
    float: right;
    width: min(150px, 44%);
    margin: 0.2rem 0 0.85rem 1rem;
    transform: rotate(1deg);
  }

  .about-presence-photo figcaption {
    padding: 0.58rem 0.62rem;
  }

  .about-presence-photo figcaption strong {
    font-size: 0.78rem;
  }

  .intro-photo,
  .consultation-presence-photo {
    float: none;
    width: min(220px, 100%);
    margin: 1rem 0 1.35rem;
    transform: none;
  }

  .photo-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-height: 0;
    margin: 1.2rem 0 0;
  }

  .photo-stack .floating-photo {
    position: static;
    width: min(145px, 100%);
    transform: none;
  }

  .photo-stack .floating-photo:first-child {
    justify-self: start;
  }

  .photo-stack .floating-photo:last-child {
    justify-self: end;
  }

  .substack-panel {
    min-height: 360px;
  }

  .consultation-copy,
  .consultation-image,
  .prep-list {
    grid-column: auto;
  }

  .consultation-image {
    margin: 2rem 0;
    min-height: 280px;
  }

  .prep-list {
    padding-left: 0;
    border-left: 0;
  }

  .thank-you-hero {
    gap: 2rem;
    min-height: auto;
  }

  .thank-you-prep {
    padding-left: 0;
    border-left: 0;
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    padding-top: 2.8rem;
  }

  .signature-rule {
    width: 92%;
  }

  .hero-portrait {
    min-height: 300px;
  }

  .about-copy > p {
    font-size: 1.18rem;
  }

  .editorial-row,
  .editorial-row.compact {
    grid-template-columns: 1fr;
  }

  .row-arrow,
  .editorial-row .text-link,
  .editorial-row > .status-label {
    grid-column: auto;
  }

  .career-signal-grid {
    grid-template-columns: 1fr;
  }

  .substack-panel {
    min-height: auto;
    padding: 1.35rem;
  }

  .substack-copy h3 {
    font-size: 2.35rem;
  }

  .substack-copy p {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
