:root {
  --navy: #142744;
  --navy-deep: #0b172b;
  --ink: #1d2939;
  --muted: #5f6b78;
  --gold: #bd9140;
  --gold-light: #e5cc95;
  --teal: #416b6c;
  --mist: #eaf0f1;
  --paper: #f5f3ee;
  --white: #ffffff;
  --line: #d8dee2;
  --danger: #9a332b;
  --shadow: 0 18px 48px rgba(13, 29, 51, 0.12);
  --wrap: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 72px;
}

h2 {
  margin-bottom: 22px;
  font-size: 48px;
}

h3 {
  margin-bottom: 12px;
  font-size: 29px;
}

h4 {
  margin-bottom: 8px;
  font-size: 21px;
}

p {
  margin-bottom: 20px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(20, 39, 68, 0.1);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(11, 23, 43, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  width: 184px;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  color: #344052;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a:not(.btn) {
  position: relative;
  padding: 30px 0 27px;
  white-space: nowrap;
}

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

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.active::after {
  transform: scaleX(1);
}

.site-nav .leader-link {
  color: var(--teal);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}

.btn-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy-deep);
}

.btn-outline {
  border-color: currentColor;
  background: transparent;
  color: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gold);
  content: "";
}

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

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.lead-light {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 72px 0;
}

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

.section-mist {
  background: var(--mist);
}

.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.home-hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - 112px);
  max-height: 760px;
  overflow: hidden;
  background: var(--navy-deep) url("../assets/speaking-real.webp") center 49% / cover no-repeat;
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 33, 0.95) 0%, rgba(7, 17, 33, 0.82) 42%, rgba(7, 17, 33, 0.34) 69%, rgba(7, 17, 33, 0.12) 100%);
  content: "";
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 33, 0.55));
  content: "";
}

.home-hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.home-hero__content {
  max-width: 690px;
  padding: 58px 0 72px;
}

.home-hero h1 {
  max-width: 11ch;
  color: var(--white);
  font-size: 76px;
}

.home-hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-hero__tag {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.story-grid,
.split-grid,
.about-grid,
.method-hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.story-copy {
  max-width: 620px;
}

.story-lines {
  display: grid;
  gap: 7px;
  margin: 28px 0;
  padding: 0;
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  list-style: none;
}

.story-lines li {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}

.story-reveal {
  margin: 28px 0;
  padding: 25px 28px;
  border-left: 5px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.iceberg-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.iceberg-frame img {
  width: 100%;
}

.iceberg-label {
  position: absolute;
  left: 18px;
  padding: 8px 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.iceberg-label.visible {
  top: 18px;
}

.iceberg-label.hidden {
  bottom: 18px;
  background: rgba(20, 39, 68, 0.92);
  color: var(--white);
}

.path-grid,
.card-grid,
.resource-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.path-card,
.content-card,
.resource-card,
.principle,
.contact-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.path-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card:hover,
.path-card:focus-within {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.path-card.education {
  color: var(--navy);
  background: linear-gradient(180deg, rgba(234, 240, 241, 0.32), rgba(234, 240, 241, 0.97)), url("../assets/cultural.webp") center / cover;
}

.path-card.organizations {
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 39, 68, 0.25), rgba(20, 39, 68, 0.97)), url("../assets/deep-culture.webp") center / cover;
}

.path-card.organizations h3,
.path-card.organizations p,
.path-card.organizations .text-link {
  color: var(--white);
}

.path-card p {
  max-width: 46ch;
}

.path-label {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-band {
  position: relative;
  overflow: hidden;
}

.method-band::after {
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(229, 204, 149, 0.18);
  border-radius: 50%;
  content: "";
}

.method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.method-steps {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.method-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.method-step strong {
  color: var(--gold-light);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.method-step h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.method-step p {
  margin: 0;
}

.leader-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 74px;
}

.leader-feature__brand {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.leader-feature__brand img {
  width: min(100%, 440px);
  margin-inline: auto;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.inline-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.portrait-block {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--mist);
}

.portrait-block img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 88%;
  max-height: 500px;
  margin: auto;
  object-fit: contain;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact {
  padding: 20px;
  background: var(--white);
}

.fact strong {
  display: block;
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}

.fact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cta-band {
  padding: 78px 0;
  background: var(--teal);
  color: rgba(255, 255, 255, 0.85);
}

.cta-band h2 {
  max-width: 15ch;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.cta-copy {
  max-width: 680px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.page-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero--about {
  min-height: 560px;
  background: var(--navy-deep);
}

.page-hero--about .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 54px;
  min-height: inherit;
}

.page-hero--about .page-hero__copy {
  align-self: center;
  padding: 80px 0;
}

.page-hero--about img {
  align-self: end;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.page-hero--speaking {
  min-height: 620px;
  background: var(--navy-deep) url("../assets/speaking-real.webp") center 52% / cover no-repeat;
}

.page-hero--speaking::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 33, 0.94), rgba(7, 17, 33, 0.72) 48%, rgba(7, 17, 33, 0.18));
  content: "";
}

.page-hero--speaking .wrap {
  position: relative;
  z-index: 1;
}

.page-hero__copy {
  max-width: 760px;
  padding: 82px 0;
}

.method-hero {
  background: var(--paper);
  color: var(--ink);
}

.method-hero h1 {
  color: var(--navy);
}

.method-hero .lead {
  color: var(--muted);
}

.method-hero-grid {
  min-height: 560px;
}

.method-hero-grid .iceberg-frame {
  align-self: end;
  border: 0;
  background: transparent;
}

.method-hero-grid .iceberg-frame img {
  max-height: 520px;
  object-fit: contain;
}

.method-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.method-map > div {
  padding: 38px;
}

.method-map .above {
  background: var(--white);
}

.method-map .below {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.method-map .below h3 {
  color: var(--white);
}

.method-map ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.method-map li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.method-map .below li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.entry-list,
.service-list,
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.entry-list li {
  display: grid;
  grid-template-columns: 70px 0.65fr 1.35fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.entry-list .number {
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}

.entry-list p,
.entry-list h3 {
  margin: 0;
}

.sector-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sector-strip span {
  padding: 22px 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.service-group + .service-group {
  margin-top: 80px;
}

.service-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  margin-bottom: 38px;
}

.service-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-list li,
.service-list a {
  display: grid;
  grid-template-columns: 56px 1fr 1.4fr auto;
  align-items: start;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list .service-num {
  color: var(--gold);
  font-weight: 900;
}

.service-list h3,
.service-list p {
  margin: 0;
}

.service-list p {
  color: var(--muted);
}

.service-list .service-arrow {
  color: var(--teal);
  font-size: 22px;
}

.service-list a:hover h3,
.service-list a:focus-visible h3 {
  color: var(--teal);
}

.content-card {
  padding: 34px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

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

.topic-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.course-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.course-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px;
}

.course-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 3px;
  background: var(--mist);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "\2713";
  font-weight: 900;
}

.resource-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-width: 0;
  overflow: hidden;
}

.resource-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.resource-card__body {
  padding: 28px;
}

.leader-hero {
  min-height: 590px;
  background: var(--navy-deep);
}

.leader-hero .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 74px;
}

.leader-hero__logo {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.leader-hero__logo img {
  width: 100%;
}

.leader-hero h1 {
  font-size: 62px;
}

.journal {
  padding: 42px;
  border-left: 5px solid var(--gold);
  background: var(--paper);
}

.journal .meta {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  border-left: 2px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 0 0 42px 42px;
}

.timeline li::before {
  position: absolute;
  top: 4px;
  left: -8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline .when {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.principle {
  padding: 30px;
}

.principle .number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}

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

.contact-grid > *,
.contact-options,
.contact-option > div {
  min-width: 0;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px;
}

.contact-option:hover,
.contact-option:focus-visible {
  border-color: var(--gold);
}

.contact-option h3 {
  margin-bottom: 5px;
  font-size: 22px;
}

.contact-option p {
  margin: 0;
  color: var(--muted);
}

.contact-option span {
  align-self: center;
  color: var(--teal);
  font-size: 24px;
}

.contact-card {
  padding: 38px;
  border-radius: 6px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card .btn {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.social-links a {
  border-bottom: 1px solid var(--gold);
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 50px;
}

.footer-brand img {
  width: 190px;
  padding: 10px;
  background: var(--white);
}

.footer-brand p {
  max-width: 38ch;
  margin-top: 18px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1120px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(390px, 100%);
    padding: 24px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: -18px 20px 42px rgba(11, 23, 43, 0.16);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a:not(.btn) {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav > a:not(.btn)::after {
    display: none;
  }

  .site-nav .btn {
    margin-top: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero h1 {
    font-size: 62px;
  }

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

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

@media (max-width: 900px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .section {
    padding: 78px 0;
  }

  .home-hero {
    min-height: 580px;
    background-position: 61% 49%;
  }

  .home-hero::before {
    background: rgba(7, 17, 33, 0.76);
  }

  .home-hero h1 {
    font-size: 56px;
  }

  .home-hero__tag {
    display: none;
  }

  .story-grid,
  .split-grid,
  .about-grid,
  .method-layout,
  .leader-feature,
  .method-hero-grid,
  .contact-grid,
  .leader-hero .wrap {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .path-grid,
  .card-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 330px;
  }

  .leader-feature__brand {
    order: 2;
  }

  .page-hero--about .wrap {
    grid-template-columns: 1fr 0.7fr;
    gap: 20px;
  }

  .entry-list li {
    grid-template-columns: 52px 0.7fr 1.3fr;
  }

  .service-list li,
  .service-list a {
    grid-template-columns: 44px 0.8fr 1.2fr auto;
  }

  .sector-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .course-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

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

  h1,
  .home-hero h1,
  .leader-hero h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  .lead {
    font-size: 18px;
  }

  .site-brand {
    width: 158px;
  }

  .home-hero {
    min-height: 540px;
    height: calc(100svh - 94px);
    max-height: 680px;
    background-position: 65% 50%;
  }

  .home-hero__content {
    padding: 48px 0 64px;
  }

  .home-hero .lead {
    max-width: 32ch;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .path-card {
    min-height: 310px;
    padding: 30px 24px;
  }

  .method-layout {
    gap: 38px;
  }

  .leader-feature__brand {
    padding: 22px;
  }

  .portrait-block {
    min-height: 430px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .page-hero,
  .page-hero--speaking,
  .leader-hero {
    min-height: 500px;
  }

  .page-hero--about {
    min-height: auto;
  }

  .page-hero--about .wrap {
    grid-template-columns: 1fr;
  }

  .page-hero--about .page-hero__copy {
    padding: 70px 0 0;
  }

  .page-hero--about img {
    max-height: 390px;
  }

  .page-hero--speaking {
    background-position: 63% 52%;
  }

  .page-hero--speaking::before {
    background: rgba(7, 17, 33, 0.75);
  }

  .method-hero-grid {
    min-height: auto;
    padding: 60px 0 0;
  }

  .method-map {
    grid-template-columns: 1fr;
  }

  .entry-list li {
    grid-template-columns: 44px 1fr;
    gap: 10px 16px;
  }

  .entry-list li p {
    grid-column: 2;
  }

  .sector-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .service-list p {
    grid-column: 2 / -1;
  }

  .topic-list {
    grid-template-columns: 1fr;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-card img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .journal {
    padding: 30px 24px;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .contact-card .btn {
    width: 100%;
    padding-inline: 14px;
    font-size: 14px;
  }

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

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

@media (max-width: 480px) {
  h1,
  .home-hero h1,
  .leader-hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .home-hero {
    background-position: 67% 50%;
  }

  .home-hero__content {
    padding-top: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .story-reveal {
    padding: 22px;
    font-size: 21px;
  }

  .method-map > div,
  .course-card__body,
  .content-card {
    padding: 26px 22px;
  }

  .method-map ul {
    grid-template-columns: 1fr;
  }

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

  .contact-option {
    padding: 20px;
  }
}

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

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

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