@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;500;600&display=swap");

:root {
  --paper: #f1eee6;
  --paper-bright: #f8f5ed;
  --paper-soft: #e7e1d5;
  --ink: #17211e;
  --ink-soft: #52605b;
  --green: #173c35;
  --green-deep: #0c2521;
  --green-night: #071815;
  --green-muted: #31584f;
  --copper: #b87c52;
  --copper-bright: #d0a079;
  --rule: rgba(23, 33, 30, 0.16);
  --rule-dark: rgba(241, 238, 230, 0.2);
  --shadow: 0 28px 70px rgba(7, 24, 21, 0.12);
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --page: min(1280px, calc(100vw - 80px));
  --narrow: min(900px, calc(100vw - 80px));
  --header-height: 76px;
  --ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

::selection {
  background: var(--copper);
  color: var(--green-night);
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.container,
.section-inner,
.header-inner,
.footer-inner {
  width: var(--page);
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--rule);
  background: rgba(241, 238, 230, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 13px;
  white-space: nowrap;
}

.site-brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.brand-role {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: #34423d;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  content: "";
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .language-link {
  min-width: 34px;
  border-left: 1px solid var(--rule);
  padding-left: 22px;
  color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
  margin-inline: auto;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle > span[aria-hidden="true"] {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle > span:nth-of-type(2) {
  transform: translate(-50%, -4px);
}

.nav-toggle > span:nth-of-type(3) {
  transform: translate(-50%, 4px);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  background: var(--paper-bright);
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 132px) max(50px, calc((100vw - 1280px) / 2 + 40px));
  padding-right: clamp(52px, 7vw, 112px);
}

.hero-copy-inner {
  width: min(680px, 100%);
}

.eyebrow,
.kicker,
.section-kicker,
.card-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before,
.section-kicker::before,
.card-kicker::before {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.1vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.hero h1 em,
.display-title em,
.section-title em {
  color: var(--copper);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: #41504a;
  font-size: clamp(1.03rem, 1.4vw, 1.25rem);
  line-height: 1.66;
}

.hero-intro {
  max-width: 640px;
  margin: 34px 0 0;
  color: #41504a;
  font-size: clamp(1.03rem, 1.4vw, 1.25rem);
  line-height: 1.66;
}

.hero-note {
  display: flex;
  max-width: 630px;
  align-items: flex-start;
  gap: 15px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-detail {
  display: flex;
  max-width: 630px;
  align-items: flex-start;
  gap: 15px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-detail::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 0.72em;
  background: var(--copper);
  content: "";
}

.hero-note::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 0.72em;
  background: var(--copper);
  content: "";
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
}

.btn,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

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

.btn-primary,
.button-primary {
  background: var(--green-deep);
  color: var(--paper-bright);
}

.btn-primary:hover,
.button-primary:hover {
  background: var(--green-muted);
}

.btn-secondary,
.button-secondary {
  border-color: rgba(23, 33, 30, 0.32);
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover,
.button-secondary:hover {
  border-color: var(--copper);
  color: #7e5034;
}

.btn-light {
  border-color: rgba(241, 238, 230, 0.32);
  color: var(--paper-bright);
}

.btn-light:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.text-link::after {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 220ms var(--ease);
}

.text-link:hover::after {
  width: 50px;
}

.hero-visual {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-left: 1px solid var(--rule);
  background-color: var(--green-deep);
  background-position: center;
  background-size: cover;
}

.hero-art,
.home-hero-art {
  margin: 0;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.page-home .hero-visual,
.hero-visual--threshold {
  background-image: url("../images/hero-threshold.png");
  background-position: center 46%;
}

.page-wealth .hero-visual,
.hero-visual--wealth {
  background-image: url("../images/wealth-generations.jpg");
  background-position: 52% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 21, 0.02), rgba(7, 24, 21, 0.2));
  content: "";
  pointer-events: none;
}

.page-wealth .hero-visual::after,
.hero-visual--wealth::after {
  background:
    linear-gradient(90deg, rgba(7, 24, 21, 0.13), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(7, 24, 21, 0.25));
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 38px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(208, 160, 121, 0.52);
  border-radius: 50%;
  color: var(--copper-bright);
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.hero-mark::before {
  width: 1px;
  height: 86px;
}

.hero-mark::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.section {
  padding: clamp(88px, 10vw, 156px) 0;
}

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

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

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

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

.section-head {
  display: grid;
  align-items: end;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.section-title,
.display,
.display-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-intro,
.lede,
.display-intro {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.section-dark .section-intro,
.section-night .section-intro,
.section-dark .lede,
.section-night .lede,
.section-dark .display-intro,
.section-night .display-intro {
  color: rgba(241, 238, 230, 0.7);
}

.section-dark .section-kicker,
.section-night .section-kicker {
  color: var(--copper-bright);
}

.path-grid,
.route-grid,
.mandate-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(50px, 6vw, 84px);
  background: rgba(241, 238, 230, 0.18);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.route-card,
.mandate-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--paper);
  isolation: isolate;
}

.path-card::before,
.route-card::before,
.mandate-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.82);
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.path-card::after,
.route-card::after,
.mandate-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 21, 0.15) 5%, rgba(7, 24, 21, 0.92) 92%);
  content: "";
}

.path-card--wealth::before,
.route-card--wealth::before,
.mandate-card--wealth::before {
  background-image: url("../images/wealth-generations.jpg");
  background-position: center;
}

.path-card--sovereign::before,
.route-card--sovereign::before,
.mandate-card--sovereign::before {
  background-image: url("../images/hero-threshold.png");
  background-position: center 47%;
}

.path-card:hover::before,
.route-card:hover::before,
.mandate-card:hover::before {
  transform: scale(1.025);
  filter: saturate(0.95);
}

.path-card-inner,
.route-card-inner,
.mandate-card-inner {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(35px, 5vw, 70px);
}

.path-card h3,
.route-card h3,
.mandate-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.path-card p,
.route-card p,
.mandate-card p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(241, 238, 230, 0.78);
}

.path-card .text-link,
.route-card .text-link,
.mandate-card .text-link {
  margin-top: 30px;
  color: var(--copper-bright);
}

.principle-band,
.statement-band {
  border-block: 1px solid var(--rule);
  padding: clamp(70px, 8vw, 120px) 0;
  background: var(--paper);
}

.principle-band blockquote,
.statement-band blockquote {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.7vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.042em;
  line-height: 1.04;
  text-align: center;
}

.principle-band blockquote em,
.statement-band blockquote em {
  color: var(--copper);
  font-style: italic;
}

.split-section {
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.two-col {
  display: grid;
  align-items: start;
  gap: clamp(44px, 7vw, 108px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-sticky {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.prose {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.prose p {
  margin: 0 0 1.35em;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.section-dark .prose,
.section-night .prose {
  color: rgba(241, 238, 230, 0.72);
}

.section-dark .prose strong,
.section-night .prose strong {
  color: var(--paper);
}

.feature-grid,
.capability-grid,
.audience-grid,
.insight-grid,
.process-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(50px, 6vw, 80px);
  background: var(--rule);
  border: 1px solid var(--rule);
}

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

.audience-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.capability-card,
.audience-card,
.insight-card,
.process-step {
  min-height: 260px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper-bright);
}

.section-dark .feature-grid,
.section-dark .capability-grid,
.section-dark .audience-grid,
.section-dark .insight-grid,
.section-dark .process-grid,
.section-night .feature-grid,
.section-night .capability-grid,
.section-night .audience-grid,
.section-night .insight-grid,
.section-night .process-grid {
  background: var(--rule-dark);
  border-color: var(--rule-dark);
}

.section-dark .feature-card,
.section-dark .capability-card,
.section-dark .audience-card,
.section-dark .insight-card,
.section-dark .process-step,
.section-night .feature-card,
.section-night .capability-card,
.section-night .audience-card,
.section-night .insight-card,
.section-night .process-step {
  background: var(--green-deep);
}

.card-number,
.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.feature-card h3,
.capability-card h3,
.audience-card h3,
.insight-card h3,
.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.feature-card p,
.capability-card p,
.audience-card p,
.insight-card p,
.process-step p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.section-dark .feature-card p,
.section-dark .capability-card p,
.section-dark .audience-card p,
.section-dark .insight-card p,
.section-dark .process-step p,
.section-night .feature-card p,
.section-night .capability-card p,
.section-night .audience-card p,
.section-night .insight-card p,
.section-night .process-step p {
  color: rgba(241, 238, 230, 0.66);
}

.wealth-definition {
  display: grid;
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.wealth-definition-visual {
  min-height: 600px;
  background: url("../images/wealth-generations.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.quote-mark {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
}

.profile-panel,
.profile-grid,
.contact-panel {
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.image-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background-color: var(--green-deep);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel--wealth {
  background-image: url("../images/wealth-generations.jpg");
}

.image-panel--threshold {
  background-image: url("../images/hero-threshold.png");
  background-position: center 46%;
}

.profile-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.profile-facts div {
  display: grid;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 130px 1fr;
}

.profile-facts dt {
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.contact-panel {
  align-items: end;
}

.contact-panel .section-title {
  max-width: 710px;
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.legal-note,
.regulatory-note {
  max-width: 900px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.65;
}

.legal-strip {
  border-block: 1px solid var(--rule);
  padding: 20px 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.65;
}

.section-dark .legal-strip,
.section-night .legal-strip {
  border-color: var(--rule-dark);
  color: rgba(241, 238, 230, 0.58);
}

.section-dark .legal-note,
.section-dark .regulatory-note,
.section-night .legal-note,
.section-night .regulatory-note {
  color: rgba(241, 238, 230, 0.56);
}

.site-footer {
  border-top: 1px solid var(--rule-dark);
  padding: 28px 0;
  background: var(--green-night);
  color: rgba(241, 238, 230, 0.65);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer-brand {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.back-link::before {
  content: "←";
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal="left"] {
  transform: translateX(-24px);
}

.js [data-reveal="right"] {
  transform: translateX(24px);
}

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

.js [data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal-delay="3"] {
  transition-delay: 270ms;
}

/* Current static home contract */

.section-index {
  margin: 3px 0 0;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-head {
  align-items: start;
  grid-template-columns: minmax(62px, 108px) minmax(0, 1fr);
}

.section-head > div {
  max-width: 920px;
}

.section-head h2,
.section-main h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  font-weight: 500;
  letter-spacing: -0.046em;
  line-height: 0.98;
}

.section-head .section-intro {
  margin-top: 25px;
}

.path-card-wealth::before {
  background-image: url("../images/wealth-generations.jpg");
  background-position: center;
}

.path-card-sovereign::before {
  background-image: url("../images/hero-threshold.png");
  background-position: center 47%;
}

.path-label {
  margin: 0 0 24px !important;
  color: var(--copper-bright) !important;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-perspective .section-inner {
  display: grid;
  align-items: start;
  gap: clamp(48px, 7vw, 108px);
  grid-template-columns: minmax(62px, 108px) minmax(0, 1fr);
}

.section-aside {
  min-width: 0;
}

.section-main {
  min-width: 0;
}

.section-perspective .section-main h2 {
  max-width: 1060px;
  font-size: clamp(2.75rem, 5.3vw, 5.75rem);
  line-height: 1;
}

.copy-columns {
  display: grid;
  max-width: 1050px;
  gap: clamp(28px, 5vw, 70px);
  margin-top: 48px;
  color: var(--ink-soft);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-columns p {
  margin: 0;
}

.method-grid {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.item-index {
  display: block;
  margin-bottom: 42px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

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

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

.section-profile .section-inner {
  display: grid;
  align-items: start;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: 170px minmax(62px, 108px) minmax(0, 1fr);
}

.profile-monogram {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(184, 124, 82, 0.58);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.5rem;
  letter-spacing: -0.045em;
}

.profile-copy {
  max-width: 860px;
}

.profile-copy .lead,
.lead {
  margin: 30px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.profile-copy > p:not(.lead) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.profile-copy .text-link {
  margin-top: 32px;
}

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

.topic-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.topic-list .insight-card {
  display: flex;
  min-height: 178px;
  align-items: flex-end;
  padding: 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

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

.section-contact .section-intro {
  color: rgba(241, 238, 230, 0.68);
}

.contact-grid {
  gap: 1px;
  margin-top: clamp(50px, 6vw, 80px);
  background: var(--rule-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  display: flex;
  min-height: 390px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(32px, 4vw, 56px);
  background: var(--paper-bright);
  color: var(--ink);
}

.contact-card-sovereign {
  background: var(--green-night);
  color: var(--paper);
}

.contact-card h3 {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.25vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-card > p:not(.path-label) {
  max-width: 590px;
  margin: 22px 0 32px;
  color: var(--ink-soft);
}

.contact-card-sovereign > p:not(.path-label) {
  color: rgba(241, 238, 230, 0.67);
}

.contact-card .btn {
  margin-top: auto;
}

.contact-card-sovereign .btn-secondary {
  border-color: rgba(241, 238, 230, 0.38);
  color: var(--paper);
}

.contact-card-sovereign .btn-secondary:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
}

.site-footer > p {
  max-width: 620px;
  margin: 0;
}

.site-footer {
  display: grid;
  padding: 34px max(20px, calc((100vw - 1280px) / 2));
  gap: 18px 70px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
}

.site-footer > p:first-child {
  color: var(--paper);
  grid-column: 1;
  grid-row: 1;
}

.site-footer > p:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.site-footer .footer-meta {
  color: rgba(241, 238, 230, 0.46);
  font-size: 0.68rem;
  grid-column: 2;
  grid-row: 2;
}

.site-footer .footer-copy {
  color: rgba(241, 238, 230, 0.46);
  font-size: 0.68rem;
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 56px, 1180px);
    --narrow: min(100% - 56px, 860px);
  }

  .brand-role {
    display: none;
  }

  .site-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-copy {
    padding-inline: 40px;
  }

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

  .section-profile .section-inner {
    gap: 34px;
    grid-template-columns: 140px 82px minmax(0, 1fr);
  }

  .profile-monogram {
    width: 126px;
    height: 126px;
  }

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

@media (max-width: 900px) {
  :root {
    --page: min(100% - 40px, 760px);
    --narrow: min(100% - 40px, 760px);
    --header-height: 70px;
  }

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

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 108px 34px 42px;
    opacity: 0;
    background: var(--paper-bright);
    transition: visibility 0s linear 280ms, opacity 260ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
    font-family: var(--serif);
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .language-link {
    border-left: 0;
    padding-left: 0;
    color: var(--copper);
  }

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

  .hero-copy {
    min-height: min(760px, calc(100svh - var(--header-height)));
    padding: 82px 20px 88px;
  }

  .hero-copy-inner {
    width: var(--page);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 12vw, 6.4rem);
  }

  .hero-visual {
    min-height: 72svh;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .page-home .hero-visual,
  .hero-visual--threshold {
    background-position: center 43%;
  }

  .page-wealth .hero-visual,
  .hero-visual--wealth {
    min-height: 58svh;
    background-position: center;
  }

  .section-head,
  .split-section,
  .two-col,
  .wealth-definition,
  .profile-panel,
  .profile-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .section-perspective .section-inner {
    grid-template-columns: 1fr;
  }

  .section-perspective .section-aside {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .section-perspective .section-kicker {
    margin-bottom: 0;
  }

  .section-profile .section-inner {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .section-profile .profile-monogram {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .section-profile .section-aside {
    grid-column: 2;
    grid-row: 1;
  }

  .section-profile .profile-copy {
    grid-column: 2;
    grid-row: 2;
  }

  .split-sticky {
    position: static;
  }

  .path-card,
  .route-card,
  .mandate-card {
    min-height: 500px;
  }

  .feature-grid,
  .capability-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wealth-definition-visual {
    min-height: 520px;
    order: -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 32px);
    --narrow: calc(100% - 32px);
  }

  .brand-name {
    font-size: 1.06rem;
  }

  .site-brand {
    font-size: 1.06rem;
  }

  .hero-copy {
    min-height: auto;
    padding-block: 64px 72px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.6vw, 5.4rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 1rem;
  }

  .hero-intro {
    margin-top: 27px;
    font-size: 1rem;
  }

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

  .btn,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 70svh;
  }

  .page-wealth .hero-visual,
  .hero-visual--wealth {
    min-height: 52svh;
    background-position: 47% center;
  }

  .hero-mark {
    right: 25px;
    bottom: 28px;
    width: 54px;
    height: 54px;
  }

  .section {
    padding-block: 80px;
  }

  .section-title,
  .display,
  .display-title {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .path-grid,
  .route-grid,
  .mandate-grid,
  .feature-grid,
  .capability-grid,
  .audience-grid,
  .insight-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .route-card,
  .mandate-card {
    min-height: 480px;
  }

  .path-card-inner,
  .route-card-inner,
  .mandate-card-inner {
    padding: 34px 25px;
  }

  .path-card h3,
  .route-card h3,
  .mandate-card h3 {
    font-size: 2.8rem;
  }

  .principle-band blockquote,
  .statement-band blockquote {
    text-align: left;
  }

  .section-perspective .section-main h2 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .copy-columns {
    gap: 20px;
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .section-profile .section-inner {
    grid-template-columns: 1fr;
  }

  .section-profile .profile-monogram,
  .section-profile .section-aside,
  .section-profile .profile-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .profile-monogram {
    width: 108px;
    height: 108px;
    font-size: 2rem;
  }

  .feature-card,
  .capability-card,
  .audience-card,
  .insight-card,
  .process-step {
    min-height: 0;
    padding: 30px 25px 34px;
  }

  .card-number,
  .step-number {
    margin-bottom: 28px;
  }

  .wealth-definition-visual {
    min-height: 62svh;
    background-position: 47% center;
  }

  .profile-facts div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 0;
  }

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

  .site-footer > p:first-child,
  .site-footer > p:nth-child(2),
  .site-footer .footer-meta,
  .site-footer .footer-copy {
    grid-column: 1;
    grid-row: auto;
  }

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

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

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

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