:root {
  --navy: #0d1117;
  --navy-soft: #151d26;
  --ivory: #f4f1e9;
  --ivory-deep: #e9e3d7;
  --parchment: #e8dfcf;
  --parchment-light: #f0e9dc;
  --brass: #a8864b;
  --brass-light: #c4a66c;
  --green: #17251f;
  --stone: #6b695e;
  --ink: #101923;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Aptos, Helvetica, Arial, sans-serif;
  --shell: min(1220px, calc(100vw - 64px));
  --header-height: 128px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 4px;
}

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

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

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

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

.section-light {
  color: var(--ink);
  background-color: var(--parchment);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.38), transparent 27%),
    radial-gradient(circle at 86% 72%, rgba(168, 134, 75, 0.075), transparent 34%),
    linear-gradient(108deg, rgba(255, 255, 255, 0.09), transparent 42%, rgba(122, 91, 48, 0.035));
}

.section-dark {
  color: var(--ivory);
  background: var(--navy);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  color: var(--ivory);
  background: color-mix(in srgb, var(--navy) 97%, transparent);
  border-bottom: 1px solid rgba(168, 134, 75, 0.28);
  backdrop-filter: blur(18px);
  transition: height 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms ease;
}

.site-header.is-scrolled {
  height: 88px;
  background: color-mix(in srgb, var(--navy) 99%, transparent);
  box-shadow: 0 12px 36px rgba(5, 8, 11, 0.22);
}

.header-topline {
  height: 32px;
  flex: none;
  overflow: hidden;
  color: var(--brass-light);
  background: #090d12;
  border-bottom: 1px solid rgba(168, 134, 75, 0.13);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 32px;
  text-align: right;
  text-transform: uppercase;
  transition: height 300ms var(--ease), opacity 220ms ease;
}

.site-header.is-scrolled .header-topline {
  height: 0;
  opacity: 0;
}

.header-inner {
  width: var(--shell);
  min-height: 0;
  flex: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.brand-emblem {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  flex: none;
}

.emblem-crest {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.emblem-l {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 45px;
  object-fit: contain;
}

.header-wordmark {
  width: 244px;
  height: auto;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-navigation a:not(.nav-cta) {
  color: #ddd8ce;
}

.site-navigation a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.site-navigation a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

.nav-cta {
  min-height: 46px;
  padding: 12px 20px;
  display: inline-grid;
  place-items: center;
  color: var(--brass-light);
  background: transparent;
  border: 1px solid var(--brass);
  transition: color 220ms ease, background 220ms ease;
}

.nav-cta:hover {
  color: var(--navy);
  background: var(--brass-light);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--brass-light);
  transition: transform 240ms ease;
}

.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-height) + 84px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(70, 51, 27, 0.035) 1px, transparent 1px) center / 20% 100%,
    linear-gradient(rgba(70, 51, 27, 0.026) 1px, transparent 1px) center / 100% 25%;
  mask-image: linear-gradient(to right, transparent, black 24%, black 74%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
}

.section-index,
.eyebrow,
.panel-label {
  margin: 0 0 26px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 0 3px 16px;
  background: currentColor;
}

.section-index-light {
  color: var(--brass-light);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 1020px;
  color: #11263b;
  font-size: clamp(3.45rem, 5vw, 5.1rem);
  letter-spacing: -0.038em;
}

h2 {
  font-size: clamp(2.7rem, 3.75vw, 4.1rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(2rem, 2.7vw, 3rem);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #836b3c;
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 930px;
  margin: 34px 0 36px;
  color: #2f3c47;
  font-size: 1.05rem;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 34px;
}

.hero-text-link {
  padding: 14px 0;
  color: #806a44;
  border-bottom: 1px solid rgba(128, 106, 68, 0.34);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}

.hero-text-link:hover {
  color: var(--navy);
  border-bottom-color: var(--brass);
}

.button {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

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

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

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

.button-brass:hover {
  color: var(--ivory);
  background: transparent;
}

.hero-crest {
  position: absolute;
  z-index: 0;
  top: calc(var(--header-height) + 34px);
  right: clamp(22px, 3.8vw, 70px);
  width: min(45vw, 610px);
  height: min(650px, 68%);
  object-fit: contain;
  object-position: right top;
  opacity: 0.18;
  pointer-events: none;
}

.relationship-card {
  z-index: 3;
  position: relative;
  width: min(1040px, calc(100% - 96px));
  margin: 64px max(32px, calc((100vw - 1220px) / 2)) 0 auto;
  padding: 42px clamp(34px, 5vw, 64px) 34px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 0%, rgba(168, 134, 75, 0.08), transparent 35%),
    var(--navy-soft);
  border-top: 2px solid var(--brass);
  box-shadow: 0 26px 54px rgba(13, 17, 23, 0.13);
}

.relationship-card .eyebrow {
  margin-bottom: 18px;
}

.relationship-card h2 {
  color: var(--ivory);
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  line-height: 1.04;
}

.relationship-card ol {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.relationship-card li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(244, 241, 233, 0.18);
  color: #d4d2cc;
  font-size: 0.92rem;
  line-height: 1.55;
}

.relationship-card li span {
  color: var(--brass-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.value-section {
  position: relative;
  padding: 62px 0 0;
  color: var(--ivory);
  background: var(--green);
}

.value-section h2 {
  max-width: 920px;
  color: var(--ivory);
  font-size: clamp(2.2rem, 3.2vw, 3.45rem);
  line-height: 1.08;
}

.value-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244, 241, 233, 0.2);
}

.value-grid > div {
  padding: 30px clamp(20px, 3vw, 42px) 34px 0;
  border-right: 1px solid rgba(244, 241, 233, 0.17);
}

.value-grid > div:not(:first-child) {
  padding-left: clamp(20px, 3vw, 42px);
}

.value-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-grid p {
  margin: 0;
  color: #d7dad6;
}

.value-grid .value-label {
  margin-bottom: 9px;
  color: var(--brass-light);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.challenge,
.ownership,
.development,
.leadership,
.purpose,
.consultation {
  position: relative;
  padding: clamp(92px, 10vw, 144px) 0;
}

.challenge {
  overflow: hidden;
}

.challenge::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 34%;
  background: linear-gradient(135deg, transparent, rgba(168, 134, 75, 0.09));
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.split-layout,
.development-grid,
.purpose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 160px);
}

.development h2,
.leadership h2,
.consultation h2 {
  color: var(--ivory);
}

.challenge h2 {
  color: #102840;
}

.challenge-copy,
.development-copy,
.purpose-copy,
.leadership-copy,
.consultation-intro {
  font-size: 1rem;
}

.challenge-copy > p,
.development-copy > p,
.purpose-copy > p,
.leadership-copy > p,
.consultation-intro > p {
  margin: 0 0 24px;
}

.lead-copy {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  line-height: 1.32;
}

.challenge-copy > p:not(.lead-copy) {
  color: #33414d;
}

.bridge-statement {
  margin-top: 42px;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 26px;
  color: var(--ivory);
  background: var(--navy);
  border: 1px solid rgba(168, 134, 75, 0.42);
  box-shadow: 0 20px 45px rgba(13, 17, 23, 0.1);
}

.bridge-statement p {
  margin: 0;
}

.bridge-line {
  display: block;
  width: 1px;
  height: 100%;
  margin-left: 2px;
  background: var(--brass);
}

.ownership {
  background:
    radial-gradient(circle at 90% 10%, rgba(168, 134, 75, 0.08), transparent 28%),
    var(--parchment);
}

.ownership-intro {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: end;
}

.ownership h2,
.purpose h2 {
  color: #102840;
}

.ownership-summary {
  color: #33414d;
}

.ownership-summary p {
  margin: 0 0 22px;
}

.ownership-experience {
  margin-top: 84px;
  display: grid;
  grid-template-columns: minmax(290px, 0.42fr) minmax(0, 0.58fr);
  min-height: 420px;
  border-top: 1px solid rgba(13, 17, 23, 0.17);
  border-bottom: 1px solid rgba(13, 17, 23, 0.17);
}

.ownership-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(13, 17, 23, 0.17);
}

.ownership-tab {
  position: relative;
  min-height: 132px;
  padding: 28px 30px 28px 0;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 16px;
  align-items: center;
  color: var(--stone);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 17, 23, 0.12);
  cursor: pointer;
  transition: color 240ms ease, padding 300ms var(--ease);
}

.ownership-tab:last-child {
  border-bottom: 0;
}

.ownership-tab::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: var(--brass);
  transform: scaleY(0);
  transition: transform 280ms var(--ease);
}

.ownership-tab:hover,
.ownership-tab.is-active {
  padding-left: 14px;
  color: var(--navy);
}

.ownership-tab.is-active::after {
  transform: scaleY(1);
}

.ownership-tab span {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.ownership-tab strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.ownership-tab i {
  color: var(--brass);
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.ownership-tab.is-active i {
  transform: rotate(45deg);
}

.ownership-panels {
  padding: 54px clamp(34px, 5.5vw, 84px);
  display: grid;
  align-items: center;
}

.ownership-panel {
  grid-area: 1 / 1;
  max-width: 660px;
  animation: panel-in 420ms var(--ease) both;
}

.ownership-panel p:not(.panel-label) {
  margin: 28px 0 0;
  color: #33414d;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.development {
  color: var(--ivory);
  background: var(--green);
  overflow: hidden;
}

.development-crest {
  position: absolute;
  left: -7%;
  bottom: -28%;
  width: 52%;
  height: 125%;
  object-fit: contain;
  opacity: 0.09;
  pointer-events: none;
}

.development-copy > p:not(.lead-copy):not(.scope-note) {
  color: #c8ceca;
}

.scope-note {
  margin-top: 36px !important;
  padding: 26px 28px;
  color: #e2ddd2;
  border-left: 2px solid var(--brass);
  background: rgba(255, 255, 255, 0.035);
}

.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.15rem;
  transition: transform 220ms var(--ease);
}

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

.leadership {
  color: var(--ivory);
  background:
    linear-gradient(100deg, rgba(18, 37, 31, 0.98), rgba(23, 37, 31, 0.92)),
    var(--green);
  overflow: hidden;
}

.leadership-crest {
  position: absolute;
  z-index: 0;
  top: -18%;
  left: 40%;
  width: min(54vw, 720px);
  height: 138%;
  object-fit: contain;
  opacity: 0.16;
  pointer-events: none;
}

.leadership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

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

.leadership-copy > p:not(.section-index):not(.leadership-role) {
  color: #ced2cf;
}

.leadership-role {
  margin: 16px 0 40px !important;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-style: italic;
}

.leadership .button {
  margin-top: 16px;
}

.portrait-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 365px);
}

.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d8d6;
  border: 1px solid rgba(196, 166, 108, 0.55);
  box-shadow: 28px 30px 0 rgba(13, 17, 23, 0.33);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 10px rgba(244, 241, 233, 0.04);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.portrait-caption {
  display: block;
  margin-top: 30px;
  color: #abb4af;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.purpose {
  background:
    linear-gradient(rgba(70, 51, 27, 0.036) 1px, transparent 1px) top / 100% 25%,
    radial-gradient(circle at 86% 16%, rgba(168, 134, 75, 0.08), transparent 28%),
    var(--parchment);
}

.purpose-copy {
  color: #33414d;
}

.purpose-copy .lead-copy {
  color: #102840;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
}

.discretion-card {
  margin-top: clamp(74px, 9vw, 120px);
  padding: 46px clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 36px;
  align-items: start;
  color: var(--ivory);
  background: var(--navy);
}

.discretion-card p {
  max-width: 900px;
  margin: 0;
}

.discretion-card .eyebrow {
  margin-bottom: 14px;
}

.discretion-mark {
  width: 44px;
  height: 44px;
  display: block;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}

.discretion-mark::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 14px;
  background: var(--brass);
}

.consultation {
  padding-bottom: clamp(100px, 11vw, 150px);
  background:
    radial-gradient(circle at 10% 15%, rgba(168, 134, 75, 0.08), transparent 24%),
    var(--navy);
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.consultation-intro {
  position: sticky;
  top: 130px;
}

.consultation-intro > p:not(.section-index) {
  max-width: 480px;
  color: #b9c0c4;
}

.consultation-intro h2 {
  margin-bottom: 38px;
}

.form-card {
  padding: clamp(30px, 5vw, 66px);
  color: var(--ink);
  background: var(--ivory);
  border-top: 3px solid var(--brass);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.form-progress {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(13, 17, 23, 0.15);
}

.progress-step {
  position: relative;
  padding: 0 8px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--stone);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-step span {
  color: var(--brass);
}

.progress-step::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.progress-step.is-current {
  color: var(--navy);
}

.progress-step.is-current::after,
.progress-step.is-complete::after {
  transform: scaleX(1);
}

.progress-step:disabled {
  cursor: default;
}

.form-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  animation: panel-in 380ms var(--ease) both;
}

.form-step legend {
  width: 100%;
  margin-bottom: 34px;
  color: #11263b;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

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

.field {
  margin-bottom: 28px;
  display: block;
}

.field-grid .field {
  margin: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.choice-group > p {
  margin: 0 0 10px;
  display: block;
  color: #263540;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.field em,
.choice-group em {
  color: var(--stone);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 17, 23, 0.3);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field select {
  padding-right: 30px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 1px 0 var(--brass);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #8f2f2f;
}

.field small {
  margin-top: 9px;
  display: block;
  color: var(--stone);
  font-size: 0.72rem;
  line-height: 1.55;
}

.choice-group {
  margin-bottom: 36px;
}

.choice-group.has-error > p {
  color: #8f2f2f;
}

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

.choice-grid label {
  position: relative;
  min-height: 52px;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  height: 100%;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  color: #33414d;
  background: rgba(13, 17, 23, 0.025);
  border: 1px solid rgba(13, 17, 23, 0.16);
  font-size: 0.75rem;
  line-height: 1.4;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.choice-grid input:checked + span {
  color: var(--ivory);
  background: var(--navy);
  border-color: var(--navy);
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.form-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-actions-end {
  justify-content: flex-end;
}

.button-form {
  color: var(--ivory);
  background: var(--navy);
  border-color: var(--navy);
}

.button-form:hover {
  color: var(--navy);
  background: transparent;
}

.button-form:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.text-button {
  padding: 12px 0;
  color: var(--stone);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-note {
  margin: 32px 0 0;
  padding: 22px 24px;
  color: var(--stone);
  background: rgba(13, 17, 23, 0.035);
  border-left: 2px solid var(--brass);
  font-size: 0.73rem;
  line-height: 1.65;
}

.privacy-note a {
  color: var(--navy);
  border-bottom: 1px solid var(--brass);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-status {
  padding: 24px;
  color: var(--navy);
  background: rgba(168, 134, 75, 0.12);
  border-left: 3px solid var(--brass);
}

.form-status.is-error {
  color: #671f1f;
  background: rgba(143, 47, 47, 0.08);
  border-left-color: #8f2f2f;
}

.site-footer {
  margin: 0;
  padding: 72px 0 28px;
  color: var(--ivory);
  background: #080c11;
  border-top: 1px solid rgba(168, 134, 75, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) auto;
  gap: 50px;
  align-items: center;
}

.footer-emblem {
  width: 82px;
  height: 82px;
}

.footer-emblem .emblem-crest {
  opacity: 0.65;
}

.footer-emblem .emblem-l {
  width: 31px;
  height: 45px;
}

.footer-wordmark {
  width: 230px;
}

.footer-contact p {
  margin: 0 0 8px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-contact a,
.footer-nav a,
.footer-legal {
  color: #aab1b6;
  font-size: 0.72rem;
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--ivory);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
}

.footer-legal {
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 241, 233, 0.12);
}

.footer-legal p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.privacy-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 80px) 0 100px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.38), transparent 27%),
    var(--parchment);
}

.error-page {
  position: relative;
  min-height: 100svh;
  padding: 80px 0;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: var(--navy);
  overflow: hidden;
}

.error-crest {
  position: absolute;
  right: 3%;
  width: min(62vw, 720px);
  height: 120%;
  object-fit: contain;
  opacity: 0.13;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-content h1 {
  max-width: 760px;
  color: var(--ivory);
}

.error-content > p:not(.section-index) {
  margin: 32px 0;
  color: #bdc4c8;
}

.privacy-content {
  max-width: 840px;
}

.privacy-content h1 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.privacy-content h2 {
  margin: 58px 0 18px;
  color: #11263b;
  font-size: 2.25rem;
}

.privacy-content p,
.privacy-content li {
  color: #33414d;
}

.privacy-content a {
  color: #11263b;
  border-bottom: 1px solid var(--brass);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .header-wordmark {
    width: 214px;
  }

  .brand-emblem {
    width: 72px;
    height: 72px;
  }

  .site-navigation {
    gap: 22px;
  }

  .hero-grid,
  .ownership-intro,
  .split-layout,
  .development-grid,
  .purpose-grid,
  .leadership-grid,
  .consultation-grid {
    gap: 64px;
  }

  .consultation-grid {
    grid-template-columns: 0.65fr 1.35fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .header-topline {
    display: none;
  }

  .header-wordmark {
    width: 184px;
  }

  .brand-emblem {
    width: 64px;
    height: 64px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    padding: 54px 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--ivory);
    background: var(--navy);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a:not(.nav-cta) {
    padding: 22px 0;
    border-bottom: 1px solid rgba(244, 241, 233, 0.13);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 32px;
    color: var(--navy);
    background: var(--brass-light);
    border-color: var(--brass-light);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-grid,
  .split-layout,
  .development-grid,
  .purpose-grid,
  .leadership-grid,
  .consultation-grid,
  .ownership-intro {
    grid-template-columns: 1fr;
  }

  .hero-crest {
    top: calc(var(--header-height) + 28px);
    right: 18px;
    width: 64vw;
    height: 560px;
    opacity: 0.14;
  }

  .relationship-card {
    width: min(820px, calc(100% - 48px));
    margin: 58px 24px 0 auto;
  }

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

  .value-grid > div,
  .value-grid > div:not(:first-child) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 233, 0.17);
  }

  .value-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading h2 br {
    display: none;
  }

  .ownership-experience {
    grid-template-columns: 1fr;
  }

  .ownership-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.17);
  }

  .ownership-tab {
    min-height: 150px;
    padding: 24px 18px;
    grid-template-columns: 1fr;
    align-content: center;
    border-right: 1px solid rgba(13, 17, 23, 0.12);
    border-bottom: 0;
  }

  .ownership-tab::after {
    inset: auto 0 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .ownership-tab.is-active::after {
    transform: scaleX(1);
  }

  .ownership-tab:hover,
  .ownership-tab.is-active {
    padding-left: 18px;
  }

  .ownership-tab i {
    display: none;
  }

  .leadership-copy {
    order: 1;
  }

  .portrait-stage {
    order: 0;
    justify-self: start;
    width: min(64vw, 340px);
  }

  .leadership-crest {
    top: -6%;
    left: 26%;
    width: 72vw;
    height: 90%;
  }

  .consultation-intro {
    position: static;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 26px;
    text-align: left;
  }
}

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

  .site-header.is-scrolled {
    height: 72px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-emblem {
    width: 58px;
    height: 58px;
  }

  .emblem-l {
    width: 22px;
    height: 33px;
  }

  .header-wordmark {
    width: 154px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  h1 {
    font-size: clamp(2.75rem, 11.5vw, 4rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.35rem, 9.7vw, 3.35rem);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-text-link {
    align-self: flex-start;
  }

  .hero-crest {
    top: calc(var(--header-height) + 24px);
    right: 12px;
    width: 76vw;
    height: 430px;
  }

  .relationship-card {
    width: calc(100% - 28px);
    margin: 46px 14px 0 auto;
    padding: 34px 24px 26px;
  }

  .relationship-card h2 br {
    display: none;
  }

  .relationship-card li {
    grid-template-columns: 34px 1fr;
    font-size: 0.86rem;
  }

  .value-section {
    padding-top: 52px;
  }

  .challenge,
  .ownership,
  .development,
  .leadership,
  .purpose,
  .consultation {
    padding: 88px 0;
  }

  .split-layout,
  .development-grid,
  .purpose-grid,
  .leadership-grid,
  .consultation-grid,
  .ownership-intro {
    gap: 46px;
  }

  .lead-copy {
    font-size: 1.75rem;
  }

  .bridge-statement {
    padding: 28px 24px;
    gap: 18px;
  }

  .ownership-experience {
    margin-top: 58px;
    border-bottom: 0;
  }

  .ownership-tabs {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(13, 17, 23, 0.17);
  }

  .ownership-tab {
    min-height: auto;
    padding: 22px 4px;
    grid-template-columns: 36px 1fr 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.12);
  }

  .ownership-tab:hover,
  .ownership-tab.is-active {
    padding-left: 10px;
  }

  .ownership-tab i {
    display: block;
  }

  .ownership-panels {
    padding: 44px 4px 10px;
  }

  .development-crest {
    left: -30%;
    width: 110%;
  }

  .leadership-crest {
    left: 3%;
    width: 105vw;
    opacity: 0.12;
  }

  .portrait-stage {
    width: min(80vw, 320px);
  }

  .portrait-frame {
    box-shadow: 16px 18px 0 rgba(13, 17, 23, 0.33);
  }

  .discretion-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .discretion-mark {
    width: 36px;
    height: 36px;
  }

  .discretion-mark::after {
    width: 10px;
    height: 10px;
    margin: 12px;
  }

  .form-card {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 30px 22px;
  }

  .form-progress {
    gap: 4px;
  }

  .progress-step {
    padding-inline: 0;
    font-size: 0.56rem;
  }

  .progress-step span {
    display: none;
  }

  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
  }

  .button-form {
    padding-inline: 16px;
  }

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

  .footer-brand {
    gap: 10px;
  }

  .footer-emblem {
    width: 70px;
    height: 70px;
  }

  .footer-wordmark {
    width: 190px;
  }

  .footer-nav {
    grid-column: auto;
    flex-direction: column;
  }

  .footer-legal {
    gap: 20px;
    flex-direction: column;
  }
}

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

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

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