@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-var-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #F5F1E8;
  --paper-deep: #E9E2D3;
  --ink: #121A3D;
  --ink-soft: #35405F;
  --night: #0B1026;
  --night-soft: #151D3B;
  --marigold: #F4AE1A;
  --coral: #C44B3D;
  --white: #FFFDF8;
  --line: rgba(18, 26, 61, 0.18);
  --line-light: rgba(255, 253, 248, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: 1240px;
  --header-height: 88px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-optical-sizing: none;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

figure,
blockquote {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p {
  max-width: 66ch;
  margin: 0 0 1.35rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 520;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 6.6vw, 6.7rem);
  letter-spacing: -0.052em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  letter-spacing: -0.025em;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section.compact {
  padding-block: clamp(3.75rem, 6vw, 6rem);
}

.section.dark {
  background: var(--night);
  color: var(--white);
}

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

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.4rem;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.dark .eyebrow,
.dark .kicker {
  color: var(--marigold);
}

.eyebrow::before,
.kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.lead {
  margin-top: 1.75rem;
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.dark .lead,
.dark .section-intro {
  color: rgba(255, 253, 248, .76);
}

.section-intro {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.accent {
  color: var(--coral);
}

.dark .accent {
  color: var(--marigold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 8px 8px 0 rgba(18, 26, 61, .14);
}

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

.button.secondary:hover {
  color: var(--white);
}

.book-hero .button.secondary {
  border-color: rgba(255, 253, 248, .72);
  color: var(--white);
}

.book-hero .button.secondary:hover {
  border-color: var(--marigold);
  background: var(--marigold);
  color: var(--night);
}

.book-hero :focus-visible {
  outline-color: var(--marigold);
}

.dark .button {
  border-color: var(--marigold);
  background: var(--marigold);
  color: var(--night);
}

.dark .button:hover {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(244, 174, 26, .24);
}

.dark .button.secondary {
  border-color: rgba(255, 253, 248, .55);
  background: transparent;
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-weight: 750;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--coral);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, .96);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: grid;
  gap: .08rem;
  flex: 0 0 auto;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}

.wordmark span {
  color: var(--ink-soft);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: .5rem 0;
  font-size: .82rem;
  font-weight: 760;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border: 2px solid var(--ink);
  background: var(--marigold);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4.5rem, 8vw, 7.5rem);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.hero-copy h1 {
  max-width: 10ch;
}

.hero-copy .lead {
  max-width: 34ch;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  border: 1px solid var(--ink);
  background: var(--night);
  box-shadow: 24px 24px 0 var(--marigold);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center 16%;
}

.move-label {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: grid;
  min-width: 142px;
  min-height: 116px;
  place-content: center;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.move-label b {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 450;
  line-height: 1;
}

.move-label span {
  margin-top: .3rem;
  color: var(--marigold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.credibility-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ledger-item {
  min-width: 0;
  padding: 1.35rem 1.1rem;
  border-right: 1px solid var(--line);
}

.ledger-item:last-child {
  border-right: 0;
}

.ledger-item b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 550;
}

.ledger-item span {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.statement-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.statement-grid h2 {
  max-width: 12ch;
}

.challenge-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.challenge-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-light);
}

.challenge-row span {
  color: var(--marigold);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.challenge-row p {
  margin: 0;
  color: rgba(255, 253, 248, .78);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.path-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.move-path {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: move;
}

.move-path::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: var(--ink);
  content: "";
}

.move-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 0 0 3.5rem;
  counter-increment: move;
}

.move-step:last-child {
  padding-bottom: 0;
}

.move-step::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-content: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  content: "0" counter(move);
  font-size: .76rem;
  font-weight: 850;
}

.move-step h3 {
  margin-bottom: .65rem;
}

.move-step p {
  margin: 0;
  color: var(--ink-soft);
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.book-plinth {
  position: relative;
  display: grid;
  min-height: 650px;
  place-content: center;
  border: 1px solid var(--line-light);
  background: var(--night-soft);
}

.book-plinth::after {
  position: absolute;
  right: 9%;
  bottom: 8%;
  left: 9%;
  height: 15%;
  border-top: 2px solid var(--marigold);
  content: "";
}

.book-plinth img {
  position: relative;
  z-index: 1;
  width: min(70%, 390px);
  margin: auto;
  box-shadow: 22px 28px 38px rgba(0, 0, 0, .42);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.3rem;
  color: var(--marigold);
  font-size: 1.1rem;
  letter-spacing: .08em;
}

.rating span {
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.outcome-list {
  display: grid;
  gap: .7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  color: rgba(255, 253, 248, .82);
}

.outcome-list li::before {
  color: var(--marigold);
  content: "◆";
  font-size: .65rem;
  line-height: 2.2;
}

.quote-block {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-block blockquote {
  max-width: 1000px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--coral);
  font-family: var(--sans);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.portrait-frame {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--ink);
  background: var(--night);
}

.portrait-frame::after {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  z-index: -1;
  border: 2px solid var(--marigold);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 18%;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.chip {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: .74rem;
  font-weight: 760;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 5rem);
  border: 2px solid var(--ink);
  background: var(--marigold);
}

.cta-panel h2 {
  max-width: 11ch;
}

.cta-panel .button-row {
  justify-content: flex-end;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 11ch;
}

.speaking-hero h1 {
  font-optical-sizing: auto;
}

.page-hero .portrait-frame {
  min-height: 560px;
}

.page-hero .portrait-frame img {
  min-height: 560px;
}

.hero-agenda {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--ink);
  background: var(--night);
  color: var(--white);
  box-shadow: 20px 20px 0 var(--marigold);
}

.agenda-list {
  display: grid;
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.agenda-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .85rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.agenda-row span {
  color: var(--marigold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.agenda-row b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
}

.agenda-row p {
  margin: .35rem 0 0;
  color: rgba(255, 253, 248, .68);
  font-size: .85rem;
}

.credential-grid,
.topic-grid,
.format-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.credential-card,
.topic-card,
.format-card,
.audience-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
}

.credential-card small,
.topic-card small,
.format-card small,
.audience-card small {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--coral);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.credential-card p,
.topic-card p,
.format-card p,
.audience-card p {
  margin: .85rem 0 0;
  color: var(--ink-soft);
}

.format-card h3 {
  color: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-index {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 360;
  letter-spacing: -.06em;
  line-height: .8;
}

.story-copy p:first-of-type {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.books-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.book-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1.7rem;
  align-items: center;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.book-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.book-card p {
  margin: .8rem 0 0;
  color: var(--ink-soft);
}

.book-hero {
  background: var(--night);
  color: var(--white);
}

.book-hero .lead {
  color: rgba(255, 253, 248, .82);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.book-cover-stage {
  position: relative;
  display: grid;
  min-height: 690px;
  place-content: center;
  border: 1px solid var(--line-light);
}

.book-cover-stage::before {
  position: absolute;
  top: 7%;
  right: 7%;
  bottom: 7%;
  left: 7%;
  border: 1px solid rgba(244, 174, 26, .55);
  content: "";
}

.book-cover-stage img {
  position: relative;
  z-index: 1;
  width: min(68%, 380px);
  margin: auto;
  box-shadow: 24px 34px 44px rgba(0, 0, 0, .46);
}

.learn-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.learn-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: .9rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.learn-list li::before {
  color: var(--coral);
  content: "✓";
  font-weight: 900;
}

.media-kit {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.media-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.download-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.download-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.download-card a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  font-size: .76rem;
  font-weight: 820;
}

.download-card a::after {
  content: "↓";
}

.bio-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.bio-block:last-child {
  border-bottom: 1px solid var(--line);
}

.bio-block h3 {
  margin-bottom: .8rem;
}

.copy-button {
  min-height: 42px;
  padding: .55rem .8rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-button:hover {
  background: var(--ink);
  color: var(--white);
}

.form-shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.inquiry-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .73rem;
  font-weight: 820;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: .75rem .85rem;
  border: 1px solid rgba(18, 26, 61, .45);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--coral);
  outline: 2px solid var(--coral);
  outline-offset: 1px;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--coral);
  background: var(--paper-deep);
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  margin: 1rem 0 0;
  padding: .75rem 1rem;
  border-left: 4px solid #b00020;
  background: var(--paper-deep);
  color: #b00020;
  font-size: .9rem;
  font-weight: 600;
}

.contact-links {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 760;
}

.contact-link:hover {
  color: var(--coral);
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h1 {
  margin-bottom: 1.5rem;
}

.legal-copy h2 {
  margin-top: 3rem;
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.site-footer {
  border-top: 1px solid var(--line-light);
  background: var(--night);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  gap: 3rem;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.footer-wordmark {
  margin: 0 0 .6rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.footer-copy {
  color: rgba(255, 253, 248, .68);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: .7rem;
}

.footer-links strong {
  margin-bottom: .35rem;
  color: var(--marigold);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 253, 248, .78);
  font-size: .84rem;
}

.footer-links a:hover {
  color: var(--marigold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, .56);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .book-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: 3rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 570px;
  }

  .credential-grid,
  .topic-grid,
  .format-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .books-strip,
  .media-kit {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 1.5rem 24px;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.8rem;
  }

  .hero-grid,
  .statement-grid,
  .path-layout,
  .book-feature,
  .split,
  .page-hero-grid,
  .story-grid,
  .book-hero-grid,
  .learn-grid,
  .media-kit,
  .form-shell,
  .cta-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .hero-copy {
    padding-left: 1.5rem;
  }

  .hero-visual,
  .hero-visual img,
  .portrait-frame,
  .portrait-frame img,
  .page-hero .portrait-frame,
  .page-hero .portrait-frame img,
  .hero-agenda {
    min-height: 540px;
  }

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

  .ledger-item:nth-child(2) {
    border-right: 0;
  }

  .ledger-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .path-intro {
    position: static;
  }

  .book-plinth,
  .book-cover-stage {
    min-height: 570px;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .section {
    padding-block: 4.5rem;
  }

  .wordmark strong {
    font-size: 1.18rem;
  }

  .wordmark span {
    display: none;
  }

  .hero {
    padding-top: 2.45rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-copy .lead {
    margin-top: 1.05rem;
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .hero-copy .button-row {
    margin-top: 1.35rem;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    min-height: 520px;
    box-shadow: 12px 12px 0 var(--marigold);
  }

  .hero-visual img {
    min-height: 520px;
  }

  .move-label {
    min-width: 116px;
    min-height: 92px;
  }

  .credibility-ledger {
    margin-top: 3.5rem;
  }

  .ledger-item {
    padding: 1rem .7rem;
  }

  .ledger-item b {
    font-size: 1.18rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

  .move-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1rem;
  }

  .move-path::before {
    left: 23px;
  }

  .move-step::before {
    width: 48px;
    height: 48px;
  }

  .book-plinth,
  .book-cover-stage {
    min-height: 500px;
  }

  .portrait-frame,
  .portrait-frame img,
  .page-hero .portrait-frame,
  .page-hero .portrait-frame img,
  .hero-agenda {
    min-height: 500px;
  }

  .credential-grid,
  .topic-grid,
  .format-grid,
  .audience-grid,
  .books-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
  }

  .media-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-card img {
    aspect-ratio: 3 / 4;
  }

  .form-field.full {
    grid-column: auto;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 861px) and (max-height: 950px) {
  .hero,
  .page-hero,
  .book-hero {
    min-height: min(calc(100svh - var(--header-height) - 1px), 820px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 4svh, 2.25rem) 0 clamp(1.25rem, 3svh, 1.75rem);
  }

  .page-hero,
  .book-hero {
    display: flex;
    min-height: min(calc(100svh - var(--header-height) - 1px), 760px);
    align-items: center;
    padding-block: clamp(1.75rem, 4svh, 2.25rem);
  }

  .hero h1,
  .page-hero h1,
  .book-hero h1 {
    font-size: clamp(3.15rem, min(5.5vw, 9svh), 5rem);
  }

  .hero .eyebrow,
  .page-hero .eyebrow,
  .book-hero .eyebrow {
    margin-bottom: .9rem;
  }

  .hero .lead,
  .page-hero .lead,
  .book-hero .lead {
    margin-top: 1rem;
    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    line-height: 1.45;
  }

  .hero .button-row,
  .page-hero .button-row,
  .book-hero .button-row {
    margin-top: 1.25rem;
  }

  .hero-visual,
  .hero-visual img {
    height: clamp(410px, 56svh, 510px);
    min-height: 0;
  }

  .credibility-ledger {
    margin-top: clamp(1rem, 2.25svh, 1.4rem);
  }

  .ledger-item {
    padding: .75rem .9rem;
  }

  .ledger-item b {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.05;
  }

  .page-hero .portrait-frame,
  .page-hero .portrait-frame img,
  .hero-agenda,
  .book-cover-stage {
    height: clamp(420px, 58svh, 520px);
    min-height: 0;
  }

  .page-hero .portrait-frame img {
    object-position: center 18%;
  }

  .hero-agenda {
    padding: clamp(1.5rem, 3svh, 2rem);
  }

  .hero-agenda .agenda-row {
    padding-block: .85rem;
  }

  .book-cover-stage img {
    width: auto;
    max-width: 68%;
    max-height: calc(100% - 48px);
  }

  .book-hero .rating {
    margin-bottom: .75rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
