:root {
  --navy: #13283d;
  --navy-deep: #0d1d2b;
  --paper: #f5f2ec;
  --white: #fcfbf8;
  --charcoal: #26323a;
  --slate: #5e6a72;
  --accent: #a47551;
  --accent-dark: #80583a;
  --line: #d9d7d1;
  --line-dark: rgba(19, 40, 61, 0.22);
  --success: #2f6b4f;
  --error: #9c352f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 92px;
  --section-space: clamp(92px, 11vw, 156px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--accent-dark);
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 14.6ch;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.99;
}

h2 {
  max-width: 19ch;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.1vw, 4.5rem);
  line-height: 1.04;
}

h3 {
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.18;
}

::selection {
  background: rgba(164, 117, 81, 0.24);
  color: var(--navy-deep);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(164, 117, 81, 0.62);
  outline-offset: 4px;
}

.eyebrow,
.section-label,
.section-number,
.career-kicker,
.career-years {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-number {
  margin-bottom: 8px;
  color: var(--accent);
}

.section-label {
  margin-bottom: 0;
  color: var(--slate);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.87rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

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

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

.button-primary:hover {
  background: var(--navy-deep);
  color: #fff;
}

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

.button-secondary:hover {
  background: var(--navy);
  color: #fff;
}

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

.button-light:hover {
  background: #fff;
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

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

.section {
  padding-block: var(--section-space);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(252, 251, 248, 0);
  transition: height 240ms var(--ease), background-color 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 74px;
  border-bottom-color: rgba(19, 40, 61, 0.12);
  background: rgba(252, 251, 248, 0.96);
  box-shadow: 0 8px 28px rgba(19, 40, 61, 0.04);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy);
  line-height: 1.2;
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.brand-role {
  margin-top: 3px;
  color: var(--slate);
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--navy-deep);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(70px, 8vw, 118px));
  padding-bottom: clamp(76px, 8vw, 120px);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(19, 40, 61, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 40, 61, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0,0,0,.3), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.14fr) minmax(310px, 0.76fr);
  gap: clamp(56px, 7.5vw, 120px);
}

.hero-copy {
  padding-top: 30px;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 38px;
  color: #4d5b63;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--slate);
  font-size: 0.82rem;
}

.availability > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.1);
}

.hero-portrait-wrap {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.portrait-rule {
  position: absolute;
  top: 4%;
  right: 0;
  width: 42%;
  height: 1px;
  background: var(--accent);
}

.hero-portrait {
  position: absolute;
  top: 0;
  right: 6%;
  width: min(78%, 390px);
  margin: 0;
}

.hero-portrait::before {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -44px;
  width: 100%;
  height: calc(100% - 10px);
  border: 1px solid rgba(164, 117, 81, 0.46);
  content: "";
}

.hero-portrait img {
  width: 100%;
  height: auto;
  background: #17324c;
  box-shadow: 0 28px 80px rgba(13, 29, 43, 0.19);
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(76%, 365px);
  padding: 18px 0 0 34px;
  border-top: 1px solid var(--line-dark);
  color: var(--slate);
  font-size: 0.76rem;
  line-height: 1.45;
}

.portrait-caption span {
  display: block;
}

.portrait-caption span:first-child {
  margin-bottom: 3px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.credibility {
  border-top: 1px solid rgba(19, 40, 61, 0.08);
  border-bottom: 1px solid rgba(19, 40, 61, 0.12);
  background: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.metric {
  min-height: 138px;
  padding: 33px 24px 30px;
  border-left: 1px solid var(--line);
}

.metric:last-child {
  border-right: 1px solid var(--line);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.78rem);
  font-weight: 400;
  line-height: 1.1;
}

.metric span {
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.45;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
}

.section-marker {
  padding-top: 11px;
}

.split-content > .eyebrow {
  margin-bottom: 22px;
}

.split-content > h2 {
  max-width: 17ch;
}

.editorial-columns {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 70px);
}

.editorial-columns p {
  margin-bottom: 0;
  color: var(--slate);
}

.closing-statement {
  max-width: 900px;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  line-height: 1.4;
}

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

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.wide-heading {
  grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
}

.wide-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.wide-heading .eyebrow {
  margin-bottom: 20px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 62px);
  padding: clamp(35px, 4.2vw, 57px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-number {
  margin: 2px 0 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.service-title-block h3 {
  margin-bottom: 14px;
}

.service-title-block p,
.service-detail p {
  margin-bottom: 0;
  color: var(--slate);
}

.service-title-block p {
  font-size: 0.92rem;
  line-height: 1.58;
}

.service-detail {
  padding-left: clamp(0px, 2vw, 30px);
}

.service-detail p {
  max-width: 700px;
}

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

.impact-section h2,
.impact-section h3 {
  color: #fff;
}

.impact-section .section-label {
  color: rgba(255, 255, 255, 0.53);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 150px);
}

.impact-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.impact-intro h2 {
  margin-top: 34px;
  font-size: clamp(2.35rem, 3.8vw, 4.1rem);
}

.impact-intro > p:last-child {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
}

.impact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.impact-item {
  padding: clamp(40px, 5.2vw, 70px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.impact-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.impact-item h3 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.impact-item p {
  max-width: 720px;
  margin-bottom: 0;
}

.engagement-section {
  background: var(--white);
}

.engagement-list {
  max-width: 920px;
  margin: 54px 0 46px;
  border-top: 1px solid var(--line-dark);
}

.engagement-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.63fr) minmax(0, 1fr);
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

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

.engagement-list h3 {
  font-size: 1.3rem;
}

.engagement-list p {
  color: var(--slate);
}

.experience-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.logo-band img {
  width: 100%;
  height: 112px;
  padding: 31px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 180ms ease;
}

.logo-band img:hover {
  opacity: 1;
}

.logo-disclaimer {
  margin: 14px 0 70px;
  color: var(--slate);
  font-size: 0.73rem;
}

.career-timeline {
  border-top: 1px solid var(--line-dark);
}

.career-entry {
  display: grid;
  grid-template-columns: 160px minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 60px);
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.career-featured {
  padding-block: 50px;
}

.career-entry h3 {
  margin-bottom: 7px;
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.career-entry > p:last-child {
  margin-bottom: 0;
  color: var(--slate);
}

.career-org {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 720;
}

.career-org span {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-weight: 500;
}

.career-kicker,
.career-years {
  padding-top: 5px;
}

.biography-section {
  background: var(--white);
}

.biography-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.05fr);
  gap: clamp(70px, 11vw, 160px);
}

.biography-statement blockquote {
  position: relative;
  max-width: 13ch;
  margin: 50px 0 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.6vw, 4.15rem);
  line-height: 1.08;
}

.biography-statement blockquote::before {
  display: block;
  width: 90px;
  height: 1px;
  margin-bottom: 28px;
  background: var(--accent);
  content: "";
}

.biography-copy h2 {
  max-width: 16ch;
}

.biography-copy > p:not(.eyebrow) {
  color: var(--slate);
}

.jurisdiction-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.jurisdiction-line span {
  padding: 11px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.technology-section {
  background: #ede9e1;
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(70px, 10vw, 150px);
}

.technology-copy h2 {
  margin-top: 32px;
  max-width: 16ch;
}

.technology-copy > p:not(.section-number):not(.section-label):not(.eyebrow) {
  max-width: 720px;
  color: var(--slate);
}

.technology-copy .eyebrow {
  margin-top: 64px;
}

.principles-panel {
  align-self: center;
  border-top: 1px solid var(--line-dark);
}

.principles-panel > div {
  display: grid;
  grid-template-columns: 50px minmax(150px, 0.6fr) minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles-panel span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.principles-panel strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.principles-panel p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.55;
}

.coaching-section {
  background: var(--white);
}

.coaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 160px);
}

.coaching-heading h2 {
  margin-top: 46px;
}

.coaching-copy {
  align-self: end;
}

.coaching-copy > p:first-child {
  color: var(--slate);
  font-size: 1.06rem;
}

.topic-flow {
  display: flex;
  flex-wrap: wrap;
  margin: 42px 0 34px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.topic-flow span {
  flex: 1 1 220px;
  padding: 16px 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.credential-note {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-style: italic;
}

.credentials-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.compact-heading {
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 60px;
}

.compact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
}

.credential-rows {
  border-top: 1px solid var(--line-dark);
}

.credential-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1fr);
  gap: 60px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
}

.credential-row h3,
.credential-row p {
  margin-bottom: 0;
}

.credential-row h3 {
  font-size: 1.24rem;
}

.credential-row p {
  color: var(--slate);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading h2 {
  margin-top: 42px;
  font-size: clamp(2.25rem, 3.7vw, 4rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 50px 28px 0;
  color: var(--slate);
}

.final-cta {
  padding-block: clamp(84px, 9vw, 128px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.final-cta-inner {
  position: relative;
}

.final-cta-inner::before {
  position: absolute;
  top: 0;
  right: 1%;
  width: 180px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.final-cta .eyebrow {
  margin-bottom: 26px;
  color: #c8a98f;
}

.final-cta h2 {
  max-width: 18ch;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: #e4c5ac;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.12fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact-intro .eyebrow {
  margin-top: 56px;
}

.contact-intro h2 {
  font-size: clamp(2.3rem, 3.9vw, 4.15rem);
}

.contact-intro > p:not(.section-number):not(.section-label):not(.eyebrow) {
  color: var(--slate);
}

.contact-intro a {
  color: var(--navy);
}

.contact-meta {
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.contact-meta > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-meta dt {
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-meta dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
}

.contact-form {
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 22px;
}

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

.field {
  margin-bottom: 23px;
}

.field label:not(.check-label) {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
}

.optional {
  margin-left: 6px;
  color: var(--slate);
  font-size: 0.66rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeb3b3;
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 150px;
  padding-block: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--accent-dark);
  box-shadow: 0 1px 0 var(--accent-dark);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-bottom-color: var(--error);
}

.field-hint {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 0.68rem;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.check-label {
  display: grid;
  align-items: start;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  color: var(--slate);
  font-size: 0.74rem;
  line-height: 1.5;
}

.check-label input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.check-label a {
  color: var(--navy);
}

.turnstile-area {
  min-height: 66px;
  margin: 2px 0 14px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 6px;
}

.submit-button[disabled] {
  opacity: 0.66;
  cursor: wait;
  transform: none;
}

.form-status {
  flex: 1;
  margin: 0;
  color: var(--slate);
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 66px 0 28px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.55fr;
  gap: 70px;
}

.footer-grid > div:last-child {
  text-align: right;
}

.footer-grid p {
  margin-bottom: 6px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-name {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 42px, 1000px);
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-cta) {
    font-size: 0.76rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
    gap: 50px;
  }

  .hero-portrait-wrap {
    min-height: 550px;
  }

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

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(5) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 52px minmax(230px, 0.72fr) minmax(0, 1fr);
  }

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

  .technology-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
    --section-space: clamp(76px, 10vw, 112px);
  }

  body {
    font-size: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 64px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 0;
  }

  .menu-toggle-label {
    font-size: 0.72rem;
    font-weight: 700;
  }

  .menu-toggle-lines {
    display: grid;
    width: 23px;
    gap: 6px;
  }

  .menu-toggle-lines span {
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 34px max(24px, calc((100vw - var(--shell)) / 2));
    background: var(--white);
    overflow-y: auto;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 28px;
    padding: 17px 20px;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-top: 12px;
  }

  .hero-portrait-wrap {
    width: min(100%, 560px);
    min-height: 600px;
    margin: 10px auto 0;
  }

  .hero-portrait {
    right: 10%;
    width: min(72%, 365px);
  }

  .portrait-caption {
    right: 4%;
  }

  .split-layout,
  .wide-heading,
  .impact-layout,
  .biography-grid,
  .technology-grid,
  .coaching-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-marker {
    display: flex;
    gap: 12px;
  }

  .section-marker .section-number,
  .section-marker .section-label {
    margin-bottom: 0;
  }

  .impact-intro {
    position: static;
  }

  .impact-intro h2 {
    max-width: 18ch;
  }

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

  .service-detail {
    grid-column: 2;
    padding-left: 0;
  }

  .career-entry {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .career-entry > p:last-child {
    grid-column: 2;
  }

  .biography-statement blockquote {
    max-width: 18ch;
  }

  .technology-copy .eyebrow,
  .contact-intro .eyebrow {
    margin-top: 32px;
  }

  .principles-panel {
    max-width: 760px;
  }

  .coaching-copy {
    max-width: 780px;
  }

  .compact-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-space: 76px;
  }

  html {
    scroll-padding-top: 85px;
  }

  h1 {
    font-size: clamp(2.65rem, 12.3vw, 4.15rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.1rem, 9.6vw, 3.25rem);
  }

  .brand-role {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

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

  .hero-actions,
  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button,
  .final-cta-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .final-cta-actions .text-link {
    align-self: flex-start;
  }

  .hero-portrait-wrap {
    min-height: 510px;
  }

  .hero-portrait {
    right: 12%;
    width: min(74%, 315px);
  }

  .hero-portrait::before {
    top: 28px;
    right: -28px;
  }

  .portrait-caption {
    right: 2%;
    bottom: 4px;
    width: 84%;
  }

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

  .metric {
    min-height: 126px;
    padding: 26px 16px;
  }

  .metric:nth-child(3),
  .metric:nth-child(4),
  .metric:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .metric:last-child {
    grid-column: 1 / -1;
  }

  .editorial-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .service-detail {
    grid-column: 1 / -1;
    padding-top: 6px;
  }

  .impact-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .engagement-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .logo-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-band img {
    height: 96px;
    padding: 28px 19px;
  }

  .career-entry {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .career-entry > p:last-child {
    grid-column: 1;
    margin-top: 12px;
  }

  .career-kicker,
  .career-years {
    padding-top: 0;
  }

  .biography-statement blockquote {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .principles-panel > div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .principles-panel p {
    grid-column: 2;
  }

  .credential-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-grid.two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

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

  .footer-grid > div:last-child {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 35px;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100vw - 26px);
  }

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

  .metric,
  .metric:nth-child(even),
  .metric:last-child {
    grid-column: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .metric:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .logo-band {
    grid-template-columns: 1fr;
  }
}

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

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

.legal-page {
  min-height: 75vh;
  padding-top: calc(var(--header-height) + 90px);
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.legal-layout aside {
  padding-top: 12px;
}

.legal-layout aside .text-link {
  margin-top: 34px;
}

.legal-layout article {
  max-width: 820px;
}

.legal-layout h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.legal-layout h2 {
  max-width: none;
  margin: 52px 0 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.legal-layout p {
  color: var(--slate);
}

.legal-lead {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.legal-note {
  margin-top: 58px;
  padding: 24px 26px;
  border-left: 3px solid var(--accent);
  background: var(--white);
}

.legal-note strong {
  color: var(--navy);
}

.legal-note p {
  margin: 7px 0 0;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
