/* T&M Capital — approved forest / ivory / muted-lime identity.
   Plain CSS, system fonts, no external imports. Edit the tokens to re-theme. */
:root {
  --paper: #f8f8f2;
  --forest: #203c2d;
  --ink: #20392c;
  --muted: #626b60;
  --line: #d9dfd1;
  --lime: #ddeaac;
  --sage: #edf0e6;
  --dark-line: #51644a;
  --max-width: 1280px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

/* 01 / Foundation */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 30px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button, summary { cursor: pointer; }
button:disabled { cursor: default; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { border-radius: 0; }
input, select, textarea { border-radius: 0; min-width: 0; }
figure, p { margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-inline-size: 0; }
[hidden] { display: none !important; }
::selection { background: var(--lime); color: var(--forest); }
:focus-visible { outline: 3px solid #73813d; outline-offset: 5px; }
.dark :focus-visible { outline-color: var(--lime); }
main:focus { outline: none; }
.container { width: calc(100% - 112px); max-width: var(--max-width); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 100; padding: 10px 18px; color: var(--paper); background: var(--forest); transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.icon { width: 21px; height: 21px; flex: 0 0 auto; }
.eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; line-height: 1.6; margin-bottom: 26px; }
.eyebrow--dot::before { content: ""; display: inline-block; width: 5px; height: 5px; background: #869e55; border-radius: 50%; margin-right: 10px; vertical-align: 2px; }
.micro { color: var(--muted); font-size: 11px; line-height: 1.65; }
.caps { font-size: 11px; line-height: 2.1; letter-spacing: .14em; text-transform: uppercase; }
.mini-rule { display: block; width: 30px; height: 1px; background: #7f946b; }
h1, h2, h3 { font-weight: 400; margin: 0; }
h1 { font-size: clamp(60px, 6.5vw, 92px); letter-spacing: -.07em; line-height: 1.02; }
h1 em, h2 em, .not-found em { font-family: var(--serif); font-weight: 400; }
h2 { font-size: clamp(35px, 3.5vw, 48px); letter-spacing: -.052em; line-height: 1.13; }
.serif-title { font-family: var(--serif); font-size: clamp(48px, 4.75vw, 70px); line-height: 1.04; letter-spacing: -.052em; }
.serif-title em { font-weight: 400; }
.lede { font-size: 16px; line-height: 1.8; color: var(--muted); }
.page-section { padding-top: 76px; padding-bottom: 74px; }
.page-intro > p:not(.eyebrow) { max-width: 430px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.page-intro .lede { margin-top: 29px; }
.page-intro p + p { margin-top: 17px; }
.page-intro > .button { margin-top: 30px; }
.button { min-height: 49px; padding: 14px 21px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 12px; line-height: 1.4; border: 1px solid var(--forest); transition: background-color .2s, color .2s; }
.button .icon { width: 17px; height: 17px; transition: transform .2s; }
.button:hover .icon { transform: translateX(3px); }
.button--solid { color: var(--paper); background: var(--forest); }
.button--solid:hover { background: #34533c; }
.button--outline { background: transparent; color: var(--forest); }
.button--outline:hover { background: var(--sage); }
.button--outline-light { color: var(--paper); border-color: #95a58b; background: transparent; }
.button--outline-light:hover { color: var(--forest); background: var(--lime); border-color: var(--lime); }
.text-link { display: inline-flex; gap: 20px; align-items: center; padding: 9px 0; font-size: 12px; line-height: 1.5; }
.text-link span { border-bottom: 1px solid #a1ad96; }
.text-link .icon { width: 16px; height: 16px; transition: transform .2s; }
.text-link:hover .icon { transform: translate(2px, -2px); }
.dark { background: var(--forest); color: var(--paper); }
.dark .eyebrow { color: var(--lime); }
.dark .text-link span { border-color: #728563; }

/* 02 / Shared navigation and footer */
.site-header { min-height: 96px; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 132px; height: 46.5px; }
.primary-nav { display: flex; align-items: center; gap: 32px; font-size: 12px; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 13px 0; }
.primary-nav > a:not(.nav-cta)::after { content: ""; height: 1px; position: absolute; left: 0; right: 0; bottom: 6px; background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; justify-content: space-between; border: 1px solid var(--forest); padding: 11px 18px; gap: 30px; margin-left: 16px; }
.nav-cta .icon { width: 16px; height: 16px; }
.nav-cta:hover, .nav-cta[aria-current="page"] { color: var(--paper); background: var(--forest); }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); width: 44px; height: 44px; padding: 11px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.site-footer { border-top: 1px solid var(--line); padding-top: 30px; padding-bottom: 25px; margin-top: 66px; }
.footer-main { display: flex; align-items: center; gap: 35px; }
.footer-main .brand img { width: 110px; height: 38.8px; }
.footer-tagline { color: var(--muted); font-size: 11px; line-height: 1.7; }
.footer-nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 23px; font-size: 11px; }
.footer-nav a:hover, .footer-nav [aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
.footer-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; margin-top: 29px; }
.footer-meta > div { display: flex; gap: 23px; }
.footer-meta a { border-bottom: 1px solid var(--line); }
.footer-meta a:hover { border-color: var(--forest); }
.footer-disclaimer { font-size: 10px; line-height: 1.8; color: var(--muted); max-width: 1050px; margin-top: 22px; }

/* 03 / Home — preserve the original first impression */
.home-hero { padding-top: 63px; }
.home-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 65px; padding-bottom: 55px; }
.home-hero-copy { padding-bottom: 8px; }
.home-hero-copy .eyebrow { margin-bottom: 26px; }
.home-hero h1 { margin: 0 0 29px; }
.home-hero h1 em { letter-spacing: -.062em; font-size: 1.025em; }
.home-hero .lede { font-size: 15px; max-width: 375px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.perspective-art { position: relative; overflow: hidden; background: #e9ede2; aspect-ratio: 1 / 1.045; }
.perspective-art::before, .perspective-art::after { content: "+"; position: absolute; top: 45px; font: 14px/1 var(--sans); color: #819175; }
.perspective-art::before { left: 26px; }
.perspective-art::after { right: 26px; }
.perspective-art > img { width: 100%; height: 100%; object-fit: cover; }
.art-top { position: absolute; left: 26px; right: 26px; top: 25px; display: flex; justify-content: space-between; gap: 20px; color: #52634a; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.art-top span:last-child { white-space: nowrap; }
.perspective-art figcaption { position: absolute; left: 26px; right: 26px; bottom: 23px; display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; line-height: 1.5; }
.perspective-art figcaption .icon { width: 20px; height: 20px; }
.principle-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-block: 1px solid var(--line); }
.principle-strip > span { display: inline-flex; align-items: center; gap: 13px; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.principle-strip .icon { color: #78886a; width: 20px; height: 20px; }
.editorial { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; padding-block: 84px; }
.editorial .eyebrow { margin-bottom: 27px; }
.editorial-copy { padding-top: 28px; }
.editorial-copy .lead { font-size: 20px; color: var(--ink); line-height: 1.55; letter-spacing: -.02em; margin-bottom: 17px; }
.editorial-copy > p { color: var(--muted); font-size: 14px; line-height: 1.85; max-width: 465px; }
.editorial-copy .text-link { margin-top: 22px; }
.home-intro { padding-block: 81px 18px; }
.home-intro h2 { font-size: clamp(35px, 3.6vw, 50px); }
.home-intro .editorial-copy { padding-top: 10px; }

/* 04 / The firm */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 92px; align-items: center; }
.about-visual { position: relative; padding: 0 67px 51px 0; max-width: 540px; width: 100%; margin-left: auto; }
.architecture-photo { position: relative; }
.architecture-photo img { width: 100%; height: 436px; object-fit: cover; object-position: 58% center; filter: saturate(.65); }
.architecture-photo figcaption { margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .04em; }
.about-statement { position: absolute; right: 0; bottom: 18px; background: var(--paper); min-width: 248px; padding: 29px 0 6px 29px; }
.about-statement .mini-rule { margin-bottom: 22px; }
.about-statement > p { font: 28px/1.14 var(--serif); letter-spacing: -.035em; }
.about-statement .eyebrow { display: block; margin-top: 24px; margin-bottom: 0; font-size: 8px; }
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-block: 34px; border-block: 1px solid var(--line); }
.value-item { padding: 0 33px; border-left: 1px solid var(--line); }
.value-item:first-child { padding-left: 0; border-left: 0; }
.value-item:last-child { padding-right: 0; }
.value-item .icon { width: 31px; height: 31px; margin-bottom: 20px; }
.value-item h3 { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 10px; }
.value-item p { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 230px; }
.statement-band { display: grid; grid-template-columns: .85fr 1fr; gap: 80px; margin-top: 54px; padding: 34px 40px; background: #eef2dc; }
.statement-words { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; line-height: 2.4; }
.statement-band > div:last-child > p { max-width: 435px; font-size: 14px; line-height: 1.8; }
.statement-band .text-link { margin-top: 13px; }

/* 05 / Our focus — small, keyboard-accessible asset explorer */
.focus-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 88px; align-items: center; padding-bottom: 47px; }
.focus-intro .lede { max-width: 565px; margin-top: 30px; font-size: 15px; }
.side-note { border-left: 1px solid var(--line); padding: 32px 0 32px 45px; font-size: 11px; letter-spacing: .14em; line-height: 2.2; text-transform: uppercase; }
.focus-tabs { display: none; }
.tabs-ready .focus-tabs { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.focus-tab { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 27px 14px; border: 0; border-left: 1px solid var(--line); background: transparent; line-height: 1.5; min-width: 0; transition: background .2s; }
.focus-tab:first-child { border-left: 0; }
.focus-tab .icon { width: 36px; height: 36px; margin-bottom: 19px; }
.focus-tab strong { font-weight: 500; font-size: 13px; }
.focus-tab > span { color: var(--muted); font-size: 11px; line-height: 1.65; margin-top: 9px; max-width: 160px; }
.focus-tab:hover { background: var(--sage); }
.focus-tab[aria-selected="true"] { background: var(--lime); }
.focus-note { margin: 14px 0 25px; font-size: 10px; }
.focus-panel { position: relative; display: grid; grid-template-columns: 1fr 1.05fr 1.12fr; gap: 32px; align-items: center; padding: 39px; min-height: 275px; margin-top: 20px; }
.focus-panel-title h2 { font: 32px/1.12 var(--serif); letter-spacing: -.035em; }
.focus-panel-title .eyebrow { font-size: 9px; margin-bottom: 18px; }
.focus-panel-title .caps { font-size: 9px; color: #c2d1b4; margin-top: 22px; }
.focus-illustration { width: 100%; height: 210px; object-fit: contain; opacity: .8; }
.focus-panel-copy > p { font-size: 13px; color: #d1dbca; line-height: 1.85; }
.focus-panel-copy .button { margin-top: 23px; width: 100%; max-width: 252px; font-size: 11px; padding: 11px 14px; gap: 14px; }
.compact { padding-block: 68px 0; }
.compact h2 { font-size: 38px; }
.compact .editorial-copy { padding-top: 0; }

/* 06 / Our approach */
.approach-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 51px 1fr; gap: 20px; padding: 23px 0; border-top: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; border-top: 0; }
.process-list li:last-child { padding-bottom: 0; }
.step-number { font: 26px/1.2 var(--serif); color: #8a9881; }
.process-list h2 { font: 18px/1.4 var(--sans); letter-spacing: -.02em; margin-bottom: 8px; }
.process-list p { font-size: 12px; color: var(--muted); line-height: 1.75; max-width: 370px; }
.framework-band { position: relative; display: grid; grid-template-columns: 1fr 1.12fr .58fr; gap: 32px; align-items: center; padding: 44px; }
.framework-band .serif-title { font-size: 42px; }
.framework-band p:not(.eyebrow) { font-size: 12px; color: #d0d9c9; line-height: 1.8; margin-top: 18px; max-width: 300px; }
.framework-band .text-link { margin-top: 22px; font-size: 11px; }
.framework-band .eyebrow { margin-bottom: 20px; }
.framework-band > img { width: 100%; height: 310px; object-fit: contain; }
.framework-labels { display: grid; gap: 21px; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; color: #d9e2ce; }
.art-index { position: absolute; top: 23px; right: 25px; color: #bdcba8; font-size: 9px; letter-spacing: .1em; }
.three-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; padding-top: 62px; }
.three-notes article + article { border-left: 1px solid var(--line); padding-left: 37px; }
.three-notes .eyebrow { display: block; font-size: 9px; margin-bottom: 15px; }
.three-notes h2 { font-size: 19px; line-height: 1.4; letter-spacing: -.03em; margin-bottom: 12px; }
.three-notes p { font-size: 12px; line-height: 1.8; color: var(--muted); }

/* 07 / Investor conversation — concepts, not invented performance data */
.investor-hero { display: grid; grid-template-columns: 1.18fr 1fr; gap: 100px; align-items: center; padding-bottom: 55px; }
.investor-principles { display: grid; gap: 27px; padding: 20px 0 20px 50px; border-left: 1px solid var(--line); text-transform: uppercase; font-size: 11px; letter-spacing: .13em; }
.capital-diagram { background: #f0f2e9; padding: 29px 34px 21px; border: 1px solid #e3e7db; }
.diagram-heading { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.diagram-heading .eyebrow { font-size: 9px; margin: 0; }
.diagram-heading .micro { font-size: 9px; }
.capital-diagram-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.capital-diagram-grid > img { width: 100%; }
.term-points { display: grid; grid-template-columns: repeat(3,1fr); }
.term-points > div { border-left: 1px solid #cdd6c1; padding: 10px 16px; }
.term-points strong { display: block; font: 24px/1.2 var(--serif); letter-spacing: -.04em; }
.term-points span { display: block; font-size: 10px; color: var(--muted); line-height: 1.6; margin-top: 12px; }
.investor-faq { padding-bottom: 0; }
.section-description { max-width: 350px; font-size: 13px; color: var(--muted); line-height: 1.8; margin-top: 23px; }
.investor-faq .text-link { margin-top: 20px; }
.faq { border-bottom: 1px solid var(--line); }
details { border-top: 1px solid var(--line); }
summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 21px 0; font-size: 13px; line-height: 1.5; }
summary::-webkit-details-marker { display: none; }
.faq-indicator { position: relative; width: 12px; height: 12px; flex-shrink: 0; }
.faq-indicator::before, .faq-indicator::after { content: ""; position: absolute; top: 5px; left: 1px; width: 10px; height: 1px; background: currentColor; }
.faq-indicator::after { transform: rotate(90deg); transition: transform .2s; }
details[open] .faq-indicator::after { transform: rotate(0); }
.faq-answer { padding: 0 26px 22px 0; font-size: 12px; color: var(--muted); line-height: 1.85; }

/* 08 / Contact */
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start; padding-bottom: 55px; }
.contact-intro .lede { margin-top: 29px; }
.contact-intro > p:not(.eyebrow) { font-size: 15px; color: var(--muted); line-height: 1.85; max-width: 400px; }
.contact-intro > p + p { margin-top: 15px; }
.contact-topics { display: grid; gap: 20px; margin-top: 37px; }
.contact-topics > div { display: flex; align-items: center; gap: 18px; font-size: 12px; }
.contact-topics .icon { width: 20px; height: 20px; }
.contact-intro .contact-caution { font-size: 11px !important; max-width: 345px !important; margin-top: 34px; }
.contact-form-card { padding: 27px; border: 1px solid var(--line); margin-top: 5px; }
.field { margin-bottom: 20px; }
.field label { display: block; text-transform: uppercase; font-size: 9px; letter-spacing: .11em; margin-bottom: 9px; }
.field .optional { color: var(--muted); letter-spacing: 0; text-transform: none; }
input, select, textarea { display: block; width: 100%; padding: 13px 14px; background: transparent; border: 1px solid #d3dccc; box-shadow: none; font-size: 13px; line-height: 1.5; }
input, select { min-height: 47px; }
input::placeholder, textarea::placeholder { color: #737d6c; opacity: 1; }
input:focus, select:focus, textarea:focus { border-color: var(--forest); }
textarea { resize: vertical; min-height: 148px; max-height: 500px; }
.form-submit { width: 100%; justify-content: center; gap: 45px; margin-top: 4px; }
.form-note { font-size: 10px; line-height: 1.7; color: var(--muted); margin-top: 13px; }
.form-note span { display: block; }
.direct-contact { padding-top: 27px; }
.direct-contact .eyebrow { display: block; margin-bottom: 0; font-size: 9px; }
.direct-contact a { word-break: break-word; }
.location-contact { display: flex; align-items: center; gap: 18px; margin-top: 18px; font-size: 12px; }
.contact-close { display: flex; align-items: center; gap: 25px; border-top: 1px solid var(--line); padding-top: 33px; }
.contact-close p { font: 25px/1.2 var(--serif); letter-spacing: -.03em; }
.contact-close .caps { margin-left: auto; font-size: 9px; }

/* Native dialog: contact is a transparent draft flow, not a pretend backend. */
.draft-dialog { border: 1px solid var(--line); padding: 0; width: min(650px, calc(100% - 32px)); max-height: calc(100dvh - 42px); background: var(--paper); color: var(--ink); }
.draft-dialog::backdrop { background: rgb(17 32 24 / 62%); backdrop-filter: blur(3px); }
.dialog-inner { padding: 37px; position: relative; }
.dialog-close { position: absolute; top: 13px; right: 13px; width: 36px; height: 36px; border: 0; background: transparent; font: 27px/1 var(--sans); }
.dialog-inner h2 { font-size: 42px; margin-bottom: 23px; }
.dialog-inner .eyebrow { margin-bottom: 19px; }
#delivery-note { font-size: 12px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.draft-text { width: 100%; min-height: 210px; background: var(--sage); font: 12px/1.7 var(--sans); }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.dialog-actions .button { font-size: 11px; min-height: 43px; padding: 10px 15px; gap: 20px; }
#draft-status { min-height: 20px; margin-top: 14px; }
.dialog-open { overflow: hidden; }

/* 09 / Legal, utility, and alternate content */
.legal-layout { display: grid; grid-template-columns: .9fr 1.25fr; gap: 100px; }
.legal-layout aside .micro { margin-top: 27px; }
.legal-copy .lead { font-size: 22px; color: var(--forest); letter-spacing: -.02em; margin-bottom: 37px; }
.legal-copy h2 { font-size: 21px; line-height: 1.4; letter-spacing: -.025em; margin: 29px 0 14px; }
.legal-copy p { color: var(--muted); font-size: 14px; line-height: 1.85; }
.legal-copy p + p { margin-top: 14px; }
.legal-copy .text-link { margin-top: 30px; }
.not-found { padding-block: 100px; min-height: 60vh; }
.not-found h1 { font-size: 70px; }
.not-found > p:not(.eyebrow) { color: var(--muted); margin: 28px 0; }
.cta-band { background: var(--lime); display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; padding: 42px; margin-top: 65px; }
.cta-band h2 { font-size: 40px; }
.cta-band p:not(.eyebrow) { font-size: 13px; line-height: 1.75; max-width: 345px; }
.cta-band .button { margin-top: 22px; }

/* 10 / Responsive: layouts remain readable without JavaScript. */
@media (min-width: 1600px) {
  .home-hero h1 { font-size: 96px; }
}
@media (max-width: 1100px) {
  .container { width: calc(100% - 72px); }
  .primary-nav { gap: 23px; }
  .nav-cta { margin-left: 5px; gap: 20px; }
  .home-hero-grid { gap: 35px; }
  .home-hero h1 { font-size: 7.2vw; }
  .about-hero, .approach-hero, .contact-layout, .investor-hero, .legal-layout { gap: 56px; }
  .editorial { gap: 50px; }
  .footer-main { gap: 25px; }
  .footer-nav { gap: 17px; }
  .about-visual { padding-right: 42px; }
  .about-statement { min-width: 218px; padding-left: 25px; }
  .about-statement > p { font-size: 26px; }
  .architecture-photo img { height: 398px; }
  .focus-panel { padding: 29px; gap: 24px; }
  .focus-panel-title h2 { font-size: 28px; }
  .focus-panel-copy > p { font-size: 12px; }
  .focus-panel-copy .button { font-size: 10px; padding-inline: 11px; }
  .framework-band { gap: 22px; padding: 35px; }
  .framework-band > img { height: 265px; }
  .framework-band .serif-title { font-size: 37px; }
  .capital-diagram-grid { gap: 20px; }
  .term-points > div { padding-inline: 11px; }
  .term-points strong { font-size: 22px; }
  .contact-form-card { padding: 23px; }
}
@media (max-width: 880px) {
  .container { width: calc(100% - 48px); }
  .header-inner { flex-wrap: wrap; gap: 0; padding-block: 18px; }
  .header-inner .brand { margin-block: 2px; }
  .primary-nav { width: 100%; justify-content: space-between; padding-top: 12px; gap: 14px; }
  .primary-nav .nav-cta { margin-left: 0; }
  .enhanced .site-header, .enhanced .header-inner { min-height: 85px; }
  .enhanced .header-inner { padding-block: 0; flex-wrap: nowrap; }
  .enhanced .menu-toggle { display: block; }
  .enhanced .primary-nav { display: none; }
  .enhanced .primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 16px 24px 28px; border-bottom: 1px solid var(--line); gap: 2px; box-shadow: 0 15px 20px rgb(32 60 45 / 5%); max-height: calc(100dvh - 85px); overflow-y: auto; }
  .enhanced .primary-nav.is-open a { padding: 15px 0; }
  .enhanced .primary-nav.is-open .nav-cta { padding: 13px 17px; margin-top: 13px; }
  .home-hero { padding-top: 38px; }
  .home-hero-grid { gap: 24px; padding-bottom: 33px; }
  .home-hero-copy .eyebrow { font-size: 8px; margin-bottom: 21px; }
  .home-hero h1 { font-size: 7.4vw; margin-bottom: 20px; }
  .home-hero .lede { font-size: 13px; }
  .hero-actions { gap: 18px; margin-top: 24px; }
  .hero-actions .button { font-size: 10px; padding: 12px 13px; gap: 17px; }
  .hero-actions .text-link { font-size: 10px; gap: 10px; }
  .art-top { left: 17px; right: 17px; top: 17px; font-size: 6px; }
  .perspective-art figcaption { left: 17px; right: 17px; bottom: 16px; font-size: 9px; }
  .principle-strip > span { font-size: 8px; gap: 9px; }
  .principle-strip .icon { width: 17px; height: 17px; }
  .editorial { gap: 35px; padding-block: 58px; }
  .home-intro { padding-bottom: 0; }
  .home-intro h2 { font-size: 35px; }
  .editorial-copy .lead { font-size: 18px; }
  .editorial-copy > p { font-size: 13px; }
  .page-section { padding-top: 53px; padding-bottom: 51px; }
  .serif-title { font-size: 51px; }
  .about-hero, .approach-hero, .investor-hero, .contact-layout, .legal-layout { gap: 38px; }
  .page-intro > p:not(.eyebrow) { font-size: 13px; }
  .about-visual { padding-right: 26px; padding-bottom: 43px; }
  .architecture-photo img { height: 353px; }
  .architecture-photo figcaption { max-width: 175px; font-size: 8px; }
  .about-statement { min-width: 189px; bottom: 37px; padding: 23px 0 0 21px; }
  .about-statement > p { font-size: 23px; }
  .value-item { padding-inline: 21px; }
  .value-item h3 { font-size: 10px; }
  .value-item p { font-size: 11px; }
  .statement-band { padding: 28px; gap: 40px; }
  .statement-band > div:last-child > p { font-size: 13px; }
  .focus-intro { gap: 40px; }
  .focus-intro .lede { font-size: 13px; }
  .side-note { padding-left: 26px; font-size: 9px; }
  .focus-tab { padding: 22px 9px; }
  .focus-tab strong { font-size: 11px; }
  .focus-tab > span { font-size: 10px; }
  .focus-panel { grid-template-columns: 1fr .8fr; gap: 12px 25px; }
  .focus-panel-title { grid-column: 1; grid-row: 1; }
  .focus-panel-copy { grid-column: 1; grid-row: 2; }
  .focus-illustration { grid-column: 2; grid-row: 1 / 3; height: 220px; }
  .focus-panel-title .caps { display: none; }
  .focus-panel-title .eyebrow { margin-bottom: 14px; }
  .focus-panel-copy .button { font-size: 11px; }
  .compact { padding-bottom: 0; }
  .compact h2 { font-size: 33px; }
  .process-list li { grid-template-columns: 33px 1fr; gap: 15px; padding-block: 17px; }
  .process-list h2 { font-size: 16px; }
  .process-list p { font-size: 11px; }
  .framework-band { grid-template-columns: 1fr 1fr; }
  .framework-labels { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px 29px; margin-top: 4px; font-size: 9px; }
  .framework-band > img { height: 263px; }
  .three-notes { gap: 23px; padding-top: 46px; }
  .three-notes article + article { padding-left: 22px; }
  .three-notes h2 { font-size: 17px; }
  .three-notes p { font-size: 11px; }
  .investor-principles { font-size: 9px; gap: 25px; padding-left: 28px; }
  .capital-diagram-grid { grid-template-columns: 1fr; gap: 10px; }
  .capital-diagram-grid > img { max-width: 540px; margin-inline: auto; }
  .term-points > div:first-child { border-left: 0; padding-left: 0; }
  .term-points { border-top: 1px solid #cdd6c1; padding-top: 18px; }
  .term-points strong { font-size: 23px; }
  .investor-faq h2 { font-size: 35px; }
  .investor-faq { padding-bottom: 0; }
  .contact-layout { gap: 32px; }
  .contact-form-card { padding: 19px; }
  .contact-intro > p:not(.eyebrow) { font-size: 13px; }
  .contact-topics { gap: 18px; margin-top: 29px; }
  .contact-topics > div { font-size: 11px; }
  .footer-main { flex-wrap: wrap; gap: 22px; }
  .footer-nav { width: 100%; margin-left: 0; margin-top: 12px; }
  .footer-meta { margin-top: 23px; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 40px); }
  .eyebrow { font-size: 9px; margin-bottom: 22px; }
  .brand img { width: 114px; height: 40.2px; }
  .primary-nav { display: grid; grid-template-columns: 1fr 1fr; align-items: center; font-size: 12px; }
  .primary-nav .nav-cta { grid-column: 1 / -1; margin-top: 10px; }
  .enhanced .primary-nav.is-open { padding-inline: 20px; }
  .enhanced .site-header, .enhanced .header-inner { min-height: 79px; }
  .home-hero { padding-top: 49px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .home-hero-copy { padding-bottom: 0; }
  .home-hero-copy .eyebrow { font-size: 8px; margin-bottom: 25px; }
  .home-hero h1 { font-size: clamp(53px, 12.9vw, 76px); margin-bottom: 25px; }
  .home-hero .lede { font-size: 14px; max-width: 370px; }
  .hero-actions { margin-top: 27px; gap: 26px; }
  .hero-actions .button { font-size: 11px; padding: 13px 16px; gap: 22px; }
  .hero-actions .text-link { font-size: 11px; gap: 13px; }
  .perspective-art { aspect-ratio: 1 / 1.025; }
  .art-top { font-size: 7px; left: 21px; right: 21px; top: 21px; }
  .perspective-art figcaption { left: 21px; right: 21px; bottom: 20px; font-size: 10px; }
  .principle-strip { align-items: stretch; gap: 0; padding-block: 19px; }
  .principle-strip > span { flex-direction: column; align-items: flex-start; flex: 1; max-width: 33.33%; gap: 10px; font-size: 7px; letter-spacing: .07em; padding-inline: 12px; }
  .principle-strip > span:first-child { padding-left: 0; }
  .principle-strip > span:last-child { padding-right: 0; }
  .principle-strip > span + span { border-left: 1px solid var(--line); }
  .editorial { grid-template-columns: 1fr; gap: 28px; padding-top: 50px; padding-bottom: 45px; }
  .home-intro { padding-bottom: 0; }
  .editorial h2, .home-intro h2 { font-size: clamp(32px, 8.2vw, 42px); }
  .editorial-copy { padding-top: 0; }
  .home-intro .editorial-copy { padding-top: 0; }
  .editorial-copy .lead { font-size: 19px; }
  .editorial-copy > p { font-size: 14px; }
  .page-section { padding-top: 47px; padding-bottom: 42px; }
  .page-intro > p:not(.eyebrow) { font-size: 14px; max-width: 440px; }
  .serif-title { font-size: clamp(46px, 11.6vw, 63px); }
  .about-hero, .approach-hero, .investor-hero, .contact-layout, .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .about-visual { max-width: 440px; padding-right: 45px; padding-bottom: 45px; margin: 0; }
  .architecture-photo img { height: 343px; }
  .architecture-photo figcaption { font-size: 8px; max-width: 220px; }
  .about-statement { min-width: 212px; bottom: 11px; padding: 25px 0 0 25px; }
  .about-statement > p { font-size: 27px; }
  .about-statement .eyebrow { margin-top: 21px; }
  .values-row { grid-template-columns: repeat(2,1fr); row-gap: 29px; padding-block: 27px; }
  .value-item { padding-inline: 18px; }
  .value-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .value-item:nth-child(2) { padding-right: 0; }
  .value-item .icon { width: 28px; height: 28px; margin-bottom: 17px; }
  .value-item p { font-size: 12px; }
  .statement-band { grid-template-columns: 1fr; padding: 25px; gap: 24px; margin-top: 33px; }
  .statement-words { font-size: 10px; line-height: 2.1; }
  .statement-band > div:last-child > p { font-size: 14px; }
  .focus-intro { grid-template-columns: 1fr; gap: 29px; }
  .focus-intro .lede { font-size: 14px; }
  .side-note { font-size: 9px; padding-block: 4px; padding-left: 22px; }
  .tabs-ready .focus-tabs { display: flex; overflow-x: auto; padding-bottom: 0; scroll-snap-type: x proximity; }
  .focus-tab { min-width: 142px; width: 142px; flex-shrink: 0; scroll-snap-align: start; padding: 21px 13px; }
  .focus-tab .icon { width: 32px; height: 32px; }
  .focus-tab > span { font-size: 10px; }
  .focus-tab strong { font-size: 12px; }
  .focus-note { font-size: 10px; margin-top: 12px; }
  .focus-panel { grid-template-columns: 1fr; gap: 8px; padding: 27px; }
  .focus-panel-title { grid-column: auto; grid-row: auto; }
  .focus-panel-title h2 { font-size: 34px; }
  .focus-panel-copy { grid-column: auto; grid-row: 3; }
  .focus-panel-copy > p { font-size: 13px; }
  .focus-panel-copy .button { max-width: none; margin-top: 21px; }
  .focus-illustration { grid-column: auto; grid-row: 2; max-width: 260px; height: 180px; margin: 2px auto 7px; }
  .compact { padding-bottom: 0; }
  .process-list li { padding-block: 22px; grid-template-columns: 39px 1fr; gap: 18px; }
  .process-list li:first-child { border-top: 1px solid var(--line); padding-top: 22px; }
  .process-list h2 { font-size: 18px; }
  .process-list p { font-size: 13px; }
  .framework-band { grid-template-columns: 1fr; padding: 29px; gap: 22px; }
  .framework-band .serif-title { font-size: 40px; }
  .framework-band p:not(.eyebrow) { font-size: 13px; }
  .framework-band > img { max-width: 320px; height: 247px; margin-inline: auto; }
  .framework-labels { font-size: 8px; gap: 13px 23px; border-top: 1px solid var(--dark-line); padding-top: 21px; }
  .three-notes { grid-template-columns: 1fr; gap: 25px; padding-top: 39px; }
  .three-notes article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
  .three-notes h2 { font-size: 20px; }
  .three-notes p { font-size: 13px; }
  .investor-principles { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; gap: 18px; font-size: 9px; }
  .capital-diagram { padding: 23px 17px 22px; }
  .diagram-heading { gap: 8px; }
  .diagram-heading .eyebrow { font-size: 8px; }
  .diagram-heading .micro { font-size: 8px; }
  .capital-diagram-grid { gap: 3px; }
  .capital-diagram-grid > img { margin-block: 16px 11px; }
  .term-points strong { font-size: 19px; }
  .term-points span { font-size: 9px; margin-top: 9px; }
  .term-points > div { padding: 2px 10px; }
  .investor-faq { gap: 31px; padding-bottom: 0; }
  .investor-faq .section-description { font-size: 14px; }
  summary { font-size: 13px; padding-block: 21px; }
  .faq-answer { font-size: 13px; }
  .contact-intro > p:not(.eyebrow) { font-size: 14px; }
  .contact-topics > div { font-size: 12px; }
  .contact-intro .contact-caution { max-width: 390px !important; }
  .contact-form-card { padding: 22px; margin-top: 0; }
  input, select, textarea { font-size: 16px; }
  .field label { font-size: 9px; }
  .form-note { font-size: 10px; }
  .contact-close { gap: 18px; }
  .contact-close p { font-size: 22px; }
  .contact-close .caps { display: none; }
  .dialog-inner { padding: 31px 23px 23px; }
  .dialog-inner h2 { font-size: 35px; }
  .draft-text { font-size: 12px; }
  .dialog-actions { gap: 10px; }
  .dialog-actions .button { min-height: 44px; }
  .site-footer { margin-top: 46px; padding-top: 27px; }
  .footer-main { gap: 20px; }
  .footer-main .brand img { width: 101px; height: 35.6px; }
  .footer-tagline { font-size: 10px; }
  .footer-nav { font-size: 11px; gap: 12px 20px; margin-top: 7px; }
  .footer-meta { flex-direction: column; gap: 17px; font-size: 9px; }
  .footer-disclaimer { font-size: 9px; margin-top: 18px; }
  .legal-layout { padding-bottom: 0; }
  .legal-copy .lead { font-size: 21px; margin-bottom: 28px; }
  .legal-copy h2 { font-size: 20px; }
  .legal-copy p { font-size: 14px; }
  .not-found h1 { font-size: 51px; }
  .not-found { padding-block: 70px; }
  .cta-band { grid-template-columns: 1fr; gap: 23px; padding: 27px; margin-top: 38px; }
  .cta-band h2 { font-size: 33px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
@media print {
  body { background: #fff; color: #111; font-size: 11pt; }
  .site-header, .site-footer, .menu-toggle, .hero-actions, .button, dialog, .contact-form-card, .focus-tabs { display: none !important; }
  .container { width: 100%; max-width: none; }
  .page-section, .editorial { padding-block: 20px; }
  .dark, .statement-band, .capital-diagram { background: #fff; color: #111; border: 1px solid #bbb; }
  .dark p, .dark .eyebrow { color: #333 !important; }
  .serif-title, h1 { font-size: 32pt !important; }
  [data-tabs] .focus-panel[hidden] { display: grid !important; }
  .focus-panel, .framework-band, .value-item { break-inside: avoid; }
}
