:root {
  --green: #29362d;
  --green-deep: #1d2922;
  --green-soft: #3a4a40;
  --gold: #b3986b;
  --gold-light: #d8c7a8;
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --ink: #1d2520;
  --muted: #677069;
  --line: rgba(41, 54, 45, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(25, 35, 29, 0.13);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1200px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--green-deep); }

.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;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--green);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -0.035em; }
h3 { font-size: 1.7rem; letter-spacing: -0.02em; }
.lead { font-size: 1.22rem; line-height: 1.7; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(179, 152, 107, 0.58);
  outline-offset: 3px;
}
.button-gold { color: var(--green-deep); background: var(--gold-light); }
.button-gold:hover { background: #e1d2b7; }
.button-outline { color: var(--ivory); border-color: rgba(216, 199, 168, 0.58); }
.button-outline:hover { color: var(--green-deep); background: var(--gold-light); border-color: var(--gold-light); }
.button-dark { color: var(--ivory); background: var(--green); }
.button-dark:hover { background: var(--green-deep); }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: var(--ivory); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(29, 41, 34, 0.84), rgba(29, 41, 34, 0));
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled, .site-header-solid {
  border-color: rgba(216, 199, 168, 0.17);
  background: rgba(29, 41, 34, 0.97);
  box-shadow: 0 8px 30px rgba(11, 17, 13, 0.16);
  backdrop-filter: blur(12px);
}
.nav-shell { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 248px; flex: 0 0 auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,0.84); }
.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(216,199,168,0.55);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cta:hover { color: var(--green-deep); background: var(--gold-light); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid rgba(216,199,168,0.4); background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--gold-light); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 178px 0 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 84% 16%, rgba(179,152,107,0.12), transparent 32%),
    linear-gradient(132deg, var(--green-deep) 0%, var(--green) 58%, #33443a 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 90%);
}
.hero::after {
  position: absolute;
  top: -170px;
  right: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(216,199,168,0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(216,199,168,0.025), 0 0 0 180px rgba(216,199,168,0.018);
  content: "";
}
.hero-beam { position: absolute; z-index: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(216,199,168,0.4), transparent); transform-origin: right center; }
.hero-beam-one { top: 235px; right: -40px; width: 700px; transform: rotate(18deg); }
.hero-beam-two { top: 350px; right: -130px; width: 820px; transform: rotate(-10deg); opacity: 0.55; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.72fr); gap: 90px; align-items: center; }
.hero-copy { max-width: 760px; padding-bottom: 100px; }
.hero h1 { margin-bottom: 30px; font-size: clamp(3.65rem, 7vw, 7rem); letter-spacing: -0.055em; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-lede { max-width: 690px; margin-bottom: 36px; color: rgba(255,255,255,0.73); font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 27px; align-items: center; }
.hero-principles { display: flex; flex-wrap: wrap; gap: 0; margin-top: 54px; color: rgba(255,255,255,0.55); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-principles span { display: flex; align-items: center; }
.hero-principles span:not(:last-child)::after { display: block; width: 4px; height: 4px; margin: 0 15px; border-radius: 50%; background: var(--gold); content: ""; }
.hero-framework {
  position: relative;
  overflow: hidden;
  padding: 48px 44px 44px;
  border: 1px solid rgba(216,199,168,0.28);
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 32px 80px rgba(8,15,10,0.22);
  backdrop-filter: blur(12px);
}
.framework-mark { position: absolute; top: -58px; right: -42px; width: 250px; opacity: 0.055; transform: rotate(4deg); }
.framework-kicker { margin: 0 0 16px; color: var(--gold-light); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-framework h2 { position: relative; max-width: 410px; margin-bottom: 35px; font-size: clamp(2.15rem, 3vw, 3.15rem); }
.framework-list { position: relative; margin: 0; padding: 0; list-style: none; }
.framework-list li { padding: 18px 0; border-top: 1px solid var(--white-line); }
.framework-list strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.framework-list small { display: block; color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.5; }
.framework-image { margin: 24px 0 10px; overflow: hidden; }
.framework-image img { width: 100%; height: 150px; object-fit: cover; object-position: center; opacity: 0.88; }
.hero-footnote { position: relative; z-index: 2; display: flex; min-height: 94px; align-items: center; justify-content: space-between; border-top: 1px solid var(--white-line); color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-footnote i { width: 65px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.section-intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 110px; align-items: start; }
.section-heading h2 { max-width: 640px; }
.intro-image { width: min(100%, 500px); margin: 34px 0 0; overflow: hidden; box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 200px; object-fit: cover; object-position: center; }
.intro-copy { padding-top: 45px; color: var(--muted); }
.intro-copy > p { max-width: 720px; }
.intro-copy blockquote { position: relative; margin: 46px 0 0; padding: 35px 38px 35px 65px; border-left: 2px solid var(--gold); background: var(--ivory); color: var(--ink); }
.quote-mark { position: absolute; top: 18px; left: 22px; color: var(--gold); font-family: var(--serif); font-size: 3.3rem; line-height: 1; }
.intro-copy blockquote p { margin: 0; font-family: var(--serif); font-size: 1.5rem; line-height: 1.45; }

.section-about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 100px; align-items: center; }
.about-image { position: relative; min-height: 620px; margin: 0; overflow: hidden; background: var(--green); box-shadow: var(--shadow); }
.about-image::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,41,34,0.2), transparent 45%); content: ""; }
.about-image img { width: 100%; height: 620px; object-fit: cover; object-position: center; }
.about-copy { max-width: 670px; color: var(--muted); }
.about-copy h2 { max-width: 620px; color: var(--ink); }
.about-copy .lead { color: var(--ink); }
.about-copy .text-link { margin-top: 12px; color: var(--green); }

.section-services { background: var(--ivory); }
.section-heading-wide { display: grid; grid-template-columns: 1.25fr 0.6fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading-wide > p { max-width: 430px; margin: 0 0 14px; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 470px; padding: 46px 48px 50px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,0.44); transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.service-card:hover { z-index: 2; background: var(--paper); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-image { width: calc(100% + 96px); height: 150px; margin: -46px -48px 34px; object-fit: cover; filter: saturate(0.72) contrast(0.96); }
.service-image-diligence { object-position: center 12%; }
.service-card h3 { max-width: 440px; margin-bottom: 18px; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.service-card > p { max-width: 510px; color: var(--muted); }
.service-card ul { margin: 27px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; padding: 8px 0 8px 22px; color: #515b54; font-size: 0.92rem; }
.service-card li::before { position: absolute; top: 18px; left: 0; width: 8px; height: 1px; background: var(--gold); content: ""; }

.section-approach { color: var(--ivory); background: var(--green); }
.approach-grid { display: grid; grid-template-columns: 0.72fr 1.15fr; gap: 120px; align-items: start; }
.approach-sticky { position: sticky; top: 145px; }
.approach-sticky h2 { max-width: 500px; }
.approach-sticky > p:not(.eyebrow) { max-width: 500px; margin-bottom: 36px; color: rgba(255,255,255,0.62); }
.timeline { border-top: 1px solid var(--white-line); }
.timeline-item { padding: 43px 0 47px; border-bottom: 1px solid var(--white-line); }
.timeline-label { margin-bottom: 10px; color: var(--gold-light); font-size: 0.67rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 15px; color: var(--ivory); font-size: clamp(1.8rem, 3vw, 2.55rem); }
.timeline-item p:last-child { max-width: 660px; margin: 0; color: rgba(255,255,255,0.57); }

.section-holdings { overflow: hidden; background: var(--paper); }
.section-heading-centered { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.section-heading-centered p:last-child { max-width: 650px; margin-inline: auto; color: var(--muted); }
.holdings-map { position: relative; display: grid; min-height: 660px; grid-template-columns: 1fr 0.8fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.holdings-map::before { position: absolute; inset: 9% 18%; z-index: 0; border: 1px solid rgba(179,152,107,0.2); border-radius: 50%; content: ""; }
.holdings-map::after { position: absolute; inset: 25% 28%; z-index: 0; border: 1px dashed rgba(41,54,45,0.17); border-radius: 50%; content: ""; }
.holding-card, .holding-center { position: relative; z-index: 2; }
.holding-card { align-self: center; padding: 27px 28px; border: 1px solid var(--line); background: var(--ivory); box-shadow: 0 14px 40px rgba(29,41,34,0.06); }
.holding-card span { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 1.4rem; }
.holding-card small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }
.holding-one { grid-area: 1 / 1; }
.holding-two { grid-area: 2 / 1; }
.holding-three { grid-area: 3 / 1; }
.holding-four { grid-area: 1 / 3; }
.holding-five { grid-area: 2 / 3; }
.holding-six { grid-area: 3 / 3; }
.holding-center { display: flex; grid-area: 1 / 2 / 4 / 3; width: 245px; height: 245px; align-self: center; justify-self: center; align-items: center; justify-content: center; border: 1px solid rgba(216,199,168,0.42); border-radius: 50%; color: var(--ivory); background: var(--green); box-shadow: 0 24px 70px rgba(29,41,34,0.22); text-align: center; }
.holding-center::before { position: absolute; inset: -18px; border: 1px solid rgba(179,152,107,0.28); border-radius: 50%; content: ""; }
.holding-center img { position: absolute; width: 210px; opacity: 0.07; }
.holding-center strong { position: relative; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.25; }

.section-principles { color: var(--ivory); background: var(--green-deep); }
.principles-grid { display: grid; grid-template-columns: 0.8fr 1.15fr; gap: 120px; align-items: start; }
.principles-copy { position: sticky; top: 145px; }
.principles-copy h2 { max-width: 550px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.principles-list { border-top: 1px solid var(--white-line); }
.principle { padding: 39px 0; border-bottom: 1px solid var(--white-line); }
.principle h3 { margin-bottom: 11px; color: var(--gold-light); font-size: 1.65rem; }
.principle p { max-width: 650px; margin: 0; color: rgba(255,255,255,0.55); }

.section-contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 100px; align-items: start; }
.contact-copy h2 { max-width: 590px; }
.contact-copy > p:not(.eyebrow):not(.sensitive-note) { max-width: 560px; color: var(--muted); }
.contact-details { margin-top: 46px; border-top: 1px solid var(--line); }
.contact-details > * { display: flex; gap: 25px; align-items: baseline; justify-content: space-between; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: 0.69rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-details strong { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; text-align: right; }
.contact-details a:hover strong { color: var(--gold); }
.sensitive-note { margin-top: 30px; padding-left: 17px; border-left: 2px solid var(--gold); color: var(--muted); font-size: 0.78rem; }
.contact-form { padding: 46px; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 22px 65px rgba(29,41,34,0.08); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { margin-bottom: 23px; }
.field label { display: block; margin-bottom: 8px; color: var(--green); font-size: 0.69rem; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(41,54,45,0.2); border-radius: 0; color: var(--ink); background: #fbf9f3; transition: border-color 180ms ease, background-color 180ms ease; }
.field input, .field select { height: 51px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; outline: none; }
.field textarea::placeholder { color: #939b95; }
.contact-form .button { width: 100%; margin-top: 4px; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: 0.8rem; }

.site-footer { padding: 80px 0 0; color: rgba(255,255,255,0.7); background: #172019; }
.footer-top { display: grid; grid-template-columns: 1fr 0.72fr; gap: 90px; padding-bottom: 55px; }
.footer-brand img { width: 315px; }
.footer-brand p { margin: 23px 0 0; color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 55px; }
.footer-links h2 { margin-bottom: 20px; color: var(--gold-light); font-family: var(--sans); font-size: 0.66rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin: 10px 0; font-size: 0.86rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-disclosure { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-disclosure p { max-width: 1060px; margin: 0; color: rgba(255,255,255,0.42); font-size: 0.72rem; line-height: 1.65; }
.footer-bottom { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 25px; color: rgba(255,255,255,0.42); font-size: 0.74rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-delay, .reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 260ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--paper); }
.legal-return { display: inline-flex; }
.legal-hero { padding: 190px 0 85px; color: var(--ivory); background: var(--green); }
.legal-hero-inner { max-width: 800px; }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.legal-hero p:last-child { max-width: 650px; color: rgba(255,255,255,0.62); font-size: 1.1rem; }
.legal-content { background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 100px; align-items: start; }
.legal-nav { position: sticky; top: 140px; padding: 26px; border: 1px solid var(--line); background: var(--ivory); }
.legal-nav p { margin-bottom: 14px; color: var(--gold); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 9px 0; color: var(--muted); font-size: 0.86rem; }
.legal-nav a:hover { color: var(--green); }
.legal-copy section { scroll-margin-top: 130px; padding: 0 0 35px; margin: 0 0 38px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3rem); }
.legal-copy p { color: var(--muted); }
.legal-copy a { color: var(--green); border-bottom: 1px solid var(--gold); }
.legal-updated { margin-bottom: 45px; color: var(--gold) !important; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-footer { padding-top: 0; }

@media (max-width: 1100px) {
  .primary-nav { gap: 20px; }
  .primary-nav > a:not(.nav-cta) { font-size: 0.69rem; }
  .hero-grid { gap: 50px; }
  .hero h1 { font-size: clamp(3.4rem, 7.4vw, 6.2rem); }
  .approach-grid, .principles-grid { gap: 75px; }
  .contact-grid { gap: 65px; }
  .holdings-map { grid-template-columns: 1fr 0.65fr 1fr; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .nav-shell { min-height: 78px; }
  .brand { width: 218px; }
  .nav-toggle { display: block; position: relative; z-index: 1002; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 95px 40px 40px;
    background: var(--green-deep);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > a:not(.nav-cta) { width: 100%; padding: 11px 0; font-family: var(--serif); font-size: 2rem; font-weight: 500; letter-spacing: -0.02em; text-transform: none; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta { margin-top: 22px; padding: 15px 19px; font-size: 0.74rem; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 138px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 25px; }
  .hero-framework { max-width: 650px; margin-bottom: 80px; }
  .hero-footnote { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 25px 0; }
  .hero-footnote i { display: none; }

  .intro-grid, .about-grid, .section-heading-wide, .approach-grid, .principles-grid, .contact-grid, .footer-top, .legal-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-copy { padding-top: 0; }
  .about-image, .about-image img { min-height: 0; height: min(110vw, 620px); }
  .approach-sticky, .principles-copy, .legal-nav { position: static; }
  .section-heading-wide { margin-bottom: 45px; }
  .section-heading-wide > p { margin: 0; }
  .holdings-map { min-height: auto; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: auto; }
  .holdings-map::before, .holdings-map::after { display: none; }
  .holding-one, .holding-two, .holding-three, .holding-four, .holding-five, .holding-six, .holding-center { grid-area: auto; }
  .holding-center { grid-column: 1 / -1; grid-row: 1; width: 210px; height: 210px; margin: 0 auto 20px; }
  .legal-nav { display: none; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .brand { width: 190px; }
  .nav-shell { min-height: 72px; }
  .hero { padding-top: 124px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-principles { gap: 9px 0; }
  .hero-principles span:not(:last-child)::after { margin: 0 10px; }
  .hero-framework { padding: 35px 26px 29px; margin-bottom: 65px; }
  .hero-framework h2 { font-size: 2.1rem; }
  .hero-footnote { font-size: 0.59rem; }

  .intro-grid { gap: 15px; }
  .intro-copy blockquote { padding: 30px 25px 30px 48px; }
  .intro-copy blockquote p { font-size: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 38px 28px 42px; }
  .service-image { width: calc(100% + 56px); margin: -38px -28px 30px; }
  .holdings-map { grid-template-columns: 1fr; }
  .holding-center { grid-column: auto; }
  .contact-details > * { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-details strong { text-align: left; }
  .contact-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-links { gap: 30px; }
  .footer-brand img { width: 275px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
  .legal-hero { padding: 145px 0 62px; }
  .legal-return { padding: 10px 12px; font-size: 0.61rem; }
}

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