:root {
  --ink: #14212b;
  --deep: #15323a;
  --blue: #2e4a5b;
  --slate: #6f817d;
  --sand: #d2c5ad;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --copper: #9a6846;
  --copper-light: #c78f68;
  --line: rgba(20, 33, 43, 0.16);
  --soft-line: rgba(245, 241, 232, 0.2);
  --shadow: 0 24px 70px rgba(20, 33, 43, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body,
header,
main,
footer {
  max-width: 100%;
}

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

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

a:hover {
  text-decoration-thickness: 2px;
}

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

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

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

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

.preview-notice {
  padding: 9px 20px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--soft-line);
  font-size: 0.76rem;
  letter-spacing: 0.035em;
  text-align: center;
}

.preview-notice strong {
  color: #edd9c8;
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--ink);
  background: rgba(245, 241, 232, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--shell);
  min-height: 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.wordmark img {
  width: 46px;
  height: 46px;
}

.wordmark-text {
  display: grid;
  gap: 1px;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.wordmark-meta {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.primary-nav a {
  position: relative;
  padding: 38px 0 34px;
  color: var(--blue);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
}

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

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

.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--copper);
  border-color: var(--copper);
}

.button-primary:hover {
  background: #7e4f30;
  border-color: #7e4f30;
}

.button-light {
  color: var(--deep);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 253, 248, 0.55);
}

.button-outline-light:hover {
  color: var(--deep);
  background: var(--white);
  border-color: var(--white);
}

.button-outline-dark {
  color: var(--deep);
  background: transparent;
  border-color: var(--deep);
}

.button-outline-dark:hover {
  color: var(--white);
  background: var(--deep);
}

.button-arrow::after {
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 28%, #000 100%);
}

.hero::after {
  position: absolute;
  width: 610px;
  height: 610px;
  right: -250px;
  top: -230px;
  content: "";
  border: 1px solid rgba(210, 197, 173, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(210, 197, 173, 0.045), 0 0 0 180px rgba(210, 197, 173, 0.035);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 710px;
  margin: 0 auto;
  padding: 86px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--copper-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: var(--copper);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 em,
.page-hero h1 em {
  color: var(--sand);
  font-weight: 400;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #d9e0dc;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

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

.hero-art {
  position: relative;
  max-width: 510px;
  justify-self: end;
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(3, 18, 22, 0.35));
}

.art-caption {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: min(250px, 70%);
  padding: 18px 20px;
  color: var(--deep);
  background: var(--white);
  border-left: 4px solid var(--copper);
  box-shadow: var(--shadow);
}

.art-caption strong,
.art-caption span {
  display: block;
}

.art-caption strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
}

.art-caption span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-ribbon {
  color: var(--ink);
  background: var(--sand);
  border-bottom: 1px solid rgba(20, 33, 43, 0.16);
}

.fact-ribbon-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
}

.ribbon-item {
  min-height: 94px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid rgba(20, 33, 43, 0.15);
}

.ribbon-item:last-child {
  border-right: 1px solid rgba(20, 33, 43, 0.15);
}

.ribbon-index {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.ribbon-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.45;
}

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

.section {
  padding: 110px 0;
}

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

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

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

.section-slate {
  color: var(--white);
  background: var(--blue);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2,
.split-heading h2,
.contact-panel h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.section-heading p,
.split-heading > p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--blue);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-slate .section-heading p,
.section-dark .split-heading > p,
.section-slate .split-heading > p {
  color: #d6dedb;
}

.section-label-row {
  margin-bottom: 42px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section-label-row span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:nth-child(3) {
  min-height: 290px;
  grid-column: span 12;
  display: grid;
  grid-template-columns: 100px 1fr minmax(180px, 0.35fr);
  align-items: end;
  gap: 24px;
  background: #e7e1d5;
}

.service-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
}

.service-card h3 {
  max-width: 430px;
  margin: 50px 0 13px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  max-width: 620px;
  margin: 0;
  color: var(--blue);
}

.service-card a {
  width: fit-content;
  color: var(--deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.service-card a::after {
  padding-left: 8px;
  content: "›";
  color: var(--copper);
  font-size: 1.2rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 120px);
}

.process-intro {
  align-self: start;
}

.process-intro .button {
  margin-top: 28px;
}

.process-list {
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-item {
  position: relative;
  min-height: 168px;
  padding: 5px 0 36px 88px;
  counter-increment: process;
  border-bottom: 1px solid var(--soft-line);
}

.process-item + .process-item {
  padding-top: 36px;
}

.process-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  content: "0" counter(process);
  color: var(--copper-light);
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.process-item + .process-item::before {
  top: 34px;
}

.process-item h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-item p {
  margin: 0;
  color: #cfd8d4;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0;
}

.founder-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.founder-visual::before,
.founder-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 50%;
}

.founder-visual::before {
  width: 420px;
  height: 420px;
}

.founder-visual::after {
  width: 300px;
  height: 300px;
}

.initials {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 9rem);
  font-style: italic;
  letter-spacing: -0.08em;
}

.visual-note {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: #e0e7e3;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy {
  padding: clamp(48px, 8vw, 100px);
  background: #e8e2d7;
}

.founder-copy h2 {
  max-width: 610px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.founder-copy p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--blue);
  font-size: 1.03rem;
}

.founder-copy .text-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.text-link::after {
  content: "›";
  color: var(--copper);
  font-size: 1.3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 8vw, 110px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 54px 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--copper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 54px 27px 0;
  color: var(--blue);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--copper);
}

.cta-band::after {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  bottom: -330px;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 253, 248, 0.04), 0 0 0 140px rgba(255, 253, 248, 0.03);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 360px;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.cta-band h2 {
  max-width: 740px;
}

.cta-band p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #fff1e7;
}

.cta-band-actions {
  display: grid;
  gap: 12px;
}

.privacy-note {
  margin-top: 13px;
  color: #fff1e7;
  font-size: 0.75rem;
}

.site-footer {
  color: #d7dfdc;
  background: #0d2026;
}

.footer-main {
  width: var(--shell);
  margin: 0 auto;
  padding: 70px 0 55px;
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.92fr;
  gap: clamp(42px, 7vw, 90px);
}

.footer-brand .wordmark {
  color: var(--white);
}

.footer-brand .wordmark-meta {
  color: #b8c9c5;
}

.footer-brand > p {
  max-width: 420px;
  margin: 25px 0 0;
  color: #aebebb;
  font-size: 0.86rem;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--sand);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column ul,
.footer-column address {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  color: var(--white);
}

.footer-column address {
  color: #bdcac7;
}

.footer-column address a {
  display: inline-block;
  margin-top: 12px;
}

.footer-column address small {
  margin-top: 14px;
  display: block;
  color: #9dafab;
  font-size: 0.68rem;
  line-height: 1.5;
}

.footer-disclosure {
  width: var(--shell);
  margin: 0 auto;
  padding: 25px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  color: #9dafab;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.7rem;
}

.footer-disclosure p {
  max-width: 830px;
  margin: 0;
}

.footer-private {
  color: var(--sand);
  white-space: nowrap;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 480px;
  margin: 0 auto;
  padding: 80px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: 72px;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.page-hero-side {
  padding: 24px 0 6px 25px;
  border-left: 1px solid rgba(255, 253, 248, 0.34);
}

.page-hero-side p {
  margin: 0;
  color: #d3ddda;
  font-size: 0.95rem;
}

.page-hero-side a {
  display: inline-block;
  margin-top: 20px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 130px);
}

.intro-title {
  position: sticky;
  top: 30px;
  align-self: start;
}

.intro-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.7vw, 4.3rem);
  font-weight: 400;
  line-height: 1.03;
}

.prose-large > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.prose-large p {
  max-width: 780px;
  color: var(--blue);
}

.prose-large p + p {
  margin-top: 22px;
}

.callout {
  margin-top: 40px;
  padding: 28px 30px;
  color: var(--deep);
  background: #e5ddd0;
  border-left: 4px solid var(--copper);
}

.callout p {
  margin: 0;
  color: inherit;
}

.detail-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-row {
  padding: 36px;
  display: grid;
  grid-template-columns: 72px 0.7fr 1.3fr;
  gap: 28px;
  background: var(--white);
}

.detail-row-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.detail-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.detail-row p {
  margin: 0;
  color: var(--blue);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--soft-line);
  border-left: 1px solid var(--soft-line);
}

.ledger-card {
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.ledger-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
}

.ledger-card h3 {
  margin: 70px 0 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.ledger-card p {
  margin: 0;
  color: #cfdbd8;
  font-size: 0.92rem;
}

.metric-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--line);
}

.metric-copy {
  padding: clamp(42px, 7vw, 82px);
}

.metric-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.metric-copy p {
  margin: 24px 0 0;
  color: var(--blue);
}

.metric-art {
  min-height: 470px;
  padding: 50px;
  display: flex;
  align-items: end;
  background: var(--sand);
}

.risk-chart {
  width: 100%;
  height: 300px;
  padding: 26px 22px;
  display: flex;
  align-items: end;
  gap: 7%;
  border-bottom: 2px solid rgba(20, 33, 43, 0.4);
  border-left: 2px solid rgba(20, 33, 43, 0.4);
}

.risk-bar {
  position: relative;
  flex: 1;
  background: var(--blue);
}

.risk-bar::before {
  position: absolute;
  top: -28px;
  left: 50%;
  color: var(--deep);
  content: attr(data-label);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
}

.risk-bar-one {
  height: 30%;
}

.risk-bar-two {
  height: 51%;
}

.risk-bar-three {
  height: 72%;
}

.risk-bar-four {
  height: 92%;
  background: var(--copper);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.founder-profile .founder-visual {
  min-height: 630px;
}

.profile-copy {
  padding: clamp(45px, 8vw, 100px);
  background: var(--white);
}

.profile-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.profile-copy p {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--blue);
}

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

.fact-list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.fact-list strong {
  color: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.principle {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.principle span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.principle h3 {
  margin: 62px 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.contact-panel {
  min-height: 520px;
  padding: clamp(38px, 7vw, 78px);
  color: var(--white);
  background: var(--deep);
}

.contact-panel .eyebrow {
  color: var(--copper-light);
}

.contact-panel p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #d5dfdc;
}

.contact-links {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--soft-line);
}

.contact-links li {
  border-bottom: 1px solid var(--soft-line);
}

.contact-links a {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-links a::after {
  content: "↗";
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 1rem;
}

.contact-links small {
  display: block;
  color: #b6c6c2;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-panel {
  min-height: 520px;
  padding: clamp(38px, 7vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--sand);
}

.office-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.office-panel address {
  margin-top: 40px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-style: normal;
  line-height: 1.45;
}

.office-marker {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--copper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.disclosure-box {
  padding: clamp(34px, 6vw, 66px);
  background: var(--white);
  border: 1px solid var(--line);
}

.disclosure-box + .disclosure-box {
  margin-top: 18px;
}

.disclosure-box h2,
.disclosure-box h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.disclosure-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.disclosure-box h3 {
  font-size: 1.65rem;
}

.disclosure-box p {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--blue);
}

.disclosure-box .button {
  margin-top: 26px;
}

.source-note {
  margin-top: 28px;
  padding-top: 18px;
  color: var(--slate);
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

.page-index {
  color: var(--blue);
  background: #e7e1d5;
  border-bottom: 1px solid var(--line);
}

.page-index-inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.page-index strong {
  color: var(--copper);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-index a {
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: -18px;
    padding-bottom: 14px;
  }

  .primary-nav ul {
    justify-content: center;
  }

  .primary-nav a {
    padding: 8px 0 12px;
  }

  .primary-nav a::after {
    bottom: 5px;
  }

  .hero-inner {
    min-height: 650px;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6.6vw, 5rem);
  }

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

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .header-inner {
    padding: 18px 0 14px;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    margin-top: 2px;
  }

  .primary-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .primary-nav a {
    padding: 9px 7px;
    display: block;
    background: rgba(21, 50, 58, 0.045);
    text-align: center;
  }

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

  .hero-inner {
    padding: 70px 0 60px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 670px;
  }

  .hero-art {
    width: min(100%, 490px);
    justify-self: center;
  }

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

  .ribbon-item,
  .ribbon-item:last-child {
    min-height: 72px;
    border-right: 1px solid rgba(20, 33, 43, 0.15);
    border-bottom: 1px solid rgba(20, 33, 43, 0.15);
  }

  .section {
    padding: 82px 0;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 12;
  }

  .service-card:nth-child(3) {
    min-height: 350px;
    display: flex;
    align-items: stretch;
  }

  .process-layout,
  .faq-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-title {
    position: static;
  }

  .founder-grid,
  .founder-profile,
  .metric-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .founder-visual,
  .founder-profile .founder-visual {
    min-height: 430px;
  }

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

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

  .page-hero-inner {
    min-height: 430px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-hero-side {
    max-width: 550px;
  }

  .detail-row {
    grid-template-columns: 55px 1fr;
  }

  .detail-row p {
    grid-column: 2;
  }

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

  .ledger-card {
    min-height: auto;
  }

  .ledger-card h3 {
    margin-top: 42px;
  }

  .metric-art {
    min-height: 380px;
  }

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

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

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

  .preview-notice {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.69rem;
  }

  .header-inner {
    display: block;
  }

  .wordmark {
    margin: 0 auto 16px;
  }

  .wordmark img {
    width: 40px;
    height: 40px;
  }

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

  .primary-nav li:last-child {
    grid-column: 1 / -1;
  }

  .primary-nav a {
    font-size: 0.74rem;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions,
  .action-row,
  .cta-band-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .action-row .button,
  .cta-band-actions .button {
    width: 100%;
  }

  .art-caption {
    right: 10px;
    bottom: 18px;
  }

  .ribbon-item {
    padding-right: 17px;
    padding-left: 17px;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-heading h2,
  .contact-panel h2,
  .cta-band h2,
  .founder-copy h2,
  .profile-copy h2,
  .metric-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .service-card,
  .service-card:nth-child(3) {
    min-height: 330px;
    padding: 27px;
  }

  .process-item,
  .process-item + .process-item {
    padding-left: 68px;
  }

  .founder-copy,
  .profile-copy,
  .metric-copy,
  .contact-panel,
  .office-panel {
    padding: 38px 26px;
  }

  .founder-visual,
  .founder-profile .founder-visual {
    min-height: 350px;
  }

  .initials {
    font-size: 5.5rem;
  }

  .faq-list summary {
    font-size: 1.12rem;
  }

  .cta-band-inner {
    padding: 58px 0;
  }

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

  .footer-main {
    padding-top: 55px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-private {
    white-space: normal;
  }

  .page-hero-inner {
    padding: 60px 0 55px;
  }

  .detail-row {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-row p {
    grid-column: auto;
  }

  .ledger-card,
  .principle {
    padding: 27px;
  }

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

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .metric-art {
    min-height: 320px;
    padding: 34px 25px;
  }

  .office-panel,
  .contact-panel {
    min-height: 460px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .preview-notice,
  .site-header,
  .cta-band,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
