:root {
  --vault: #0a0c12;
  --vault-raised: #10131a;
  --vault-soft: #171b22;
  --ledger: #f2f1eb;
  --paper: #e8e5dc;
  --ink: #101319;
  --ink-soft: #444a51;
  --ink-muted: #747a7e;
  --mist: #b8bdba;
  --emerald: #44dd88;
  --emerald-dark: #102d20;
  --line-dark: rgba(255,255,255,.13);
  --line-soft: rgba(255,255,255,.075);
  --line-ink: rgba(10,12,18,.16);
  --focus: #8ff0b8;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --radius-sm: 2px;
  --radius-md: 8px;
  --shell: 1280px;
  --space: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vault);
  color: var(--ledger);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--emerald); color: var(--vault); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 8px 16px;
  background: var(--emerald);
  color: var(--vault);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(10,12,18,.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.brand-dot { color: var(--emerald); }
.brand-mark { width: 22px; height: 22px; display: flex; align-items: end; gap: 3px; }
.brand-mark i { display: block; width: 5px; background: var(--emerald); }
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 14px; }
.brand-mark i:nth-child(3) { height: 21px; }
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a { color: var(--mist); font-size: 13px; font-weight: 600; letter-spacing: .03em; transition: color .2s ease; }
.primary-nav a:hover { color: var(--ledger); }
.primary-nav .nav-cta { padding: 10px 16px; border: 1px solid var(--line-dark); color: var(--ledger); }
.primary-nav .nav-cta:hover { border-color: var(--emerald); color: var(--emerald); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-dark); background: transparent; color: white; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; transition: transform .25s ease; }

.section-dark { background: var(--vault); color: var(--ledger); }
.section-light { background: var(--ledger); color: var(--ink); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-green { background: var(--emerald); color: var(--ink); }
.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 700; line-height: 1.2; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 30px; margin-right: 8px; color: var(--emerald); }
.section-light .eyebrow span, .section-paper .eyebrow span { color: #16854a; }
.section-green .eyebrow span { color: var(--ink); }
h1, h2 { margin: 0; font-family: var(--sans); font-weight: 550; line-height: .97; letter-spacing: -.065em; }
h1 { max-width: 800px; font-size: clamp(58px, 7.5vw, 116px); }
h2 { font-size: clamp(48px, 6vw, 88px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h3 { margin: 0; line-height: 1.2; }
.section-head { padding-top: 120px; margin-bottom: 64px; }
.section-head h2 { max-width: 800px; }
.section-deck { max-width: 510px; margin: 32px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.section-dark .section-deck { color: var(--mist); }
.split-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: end; }
.split-head .section-deck { margin: 0 0 6px; }

.hero { position: relative; min-height: 1040px; overflow: hidden; padding-top: 80px; }
.hero-media { position: absolute; inset: 80px 0 auto 34%; height: 710px; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.hero-shade { position: absolute; inset: 80px 0 auto; height: 710px; background: linear-gradient(90deg, var(--vault) 0%, rgba(10,12,18,.9) 25%, rgba(10,12,18,.18) 64%, rgba(10,12,18,.05) 100%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 96px; padding-top: 112px; min-height: 710px; }
.hero-copy { align-self: center; padding-bottom: 56px; }
.hero-lead { max-width: 600px; margin: 32px 0 0; font-family: var(--serif); color: #d4d5d1; font-size: 22px; line-height: 1.45; }
.hero-actions { display: flex; gap: 32px; align-items: center; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 220px; gap: 32px; padding: 15px 18px; border: 1px solid transparent; font-size: 13px; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--emerald); color: var(--vault); }
.button-primary:hover { background: #72e7a4; }
.text-link { padding-block: 8px; border-bottom: 1px solid var(--line-dark); font-size: 13px; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--emerald); }
.hero-proof { align-self: end; margin-bottom: 56px; padding: 28px; background: rgba(10,12,18,.86); border: 1px solid var(--line-dark); backdrop-filter: blur(12px); }
.proof-index { margin-bottom: 56px; color: var(--emerald); font-size: 11px; letter-spacing: .14em; }
.hero-proof p { margin: 0; color: #c6c9c6; font-size: 13px; line-height: 1.75; }
.hero-proof p + p { margin-top: 20px; }
.hero-intro { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-block: 64px 88px; border-top: 1px solid var(--line-dark); }
.hero-intro p { margin: 0; color: var(--mist); }
.hero-intro p:first-child::first-letter { float: left; padding: 7px 9px 0 0; color: var(--emerald); font-family: var(--serif); font-size: 54px; line-height: .7; }
.ticker { overflow: hidden; border-block: 1px solid var(--line-dark); padding: 13px 0; white-space: nowrap; }
.ticker div { min-width: max-content; color: #8f9692; font-size: 11px; letter-spacing: .15em; text-align: center; }
.ticker b { margin-inline: 24px; color: var(--emerald); font-size: 8px; }

.services { padding-bottom: 128px; }
.services-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.service-visual { position: sticky; top: 112px; }
.service-visual img { aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.72); }
.image-caption { display: flex; justify-content: space-between; padding-top: 12px; color: var(--ink-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.service-list { border-top: 1px solid var(--line-ink); }
.service-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 36px 0 40px; border-bottom: 1px solid var(--line-ink); }
.service-no { padding-top: 4px; color: #18834b; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.service-item h3 { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.service-item p { max-width: 720px; margin: 16px 0 0; color: var(--ink-soft); font-size: 15px; }

.testimonials { padding-bottom: 128px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-ink); border-left: 1px solid var(--line-ink); }
.quote-card { position: relative; min-height: 430px; padding: 40px; border-right: 1px solid var(--line-ink); border-bottom: 1px solid var(--line-ink); display: flex; flex-direction: column; justify-content: space-between; }
.quote-featured { background: var(--vault); color: var(--ledger); }
.quote-wide { grid-column: 1 / -1; min-height: 350px; padding-right: 18%; }
.quote-mark { font-family: var(--serif); color: #178149; font-size: 64px; line-height: .7; }
.quote-featured .quote-mark { color: var(--emerald); }
blockquote { margin: 32px 0; font-family: var(--serif); font-size: 20px; line-height: 1.55; }
.quote-card footer { display: flex; align-items: center; gap: 14px; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 700; }
.quote-card footer span:last-child { display: flex; flex-direction: column; }
.quote-card strong { font-size: 12px; }
.quote-card small { color: var(--ink-muted); font-size: 10px; }
.quote-featured small { color: var(--mist); }

.approach { padding-bottom: 120px; }
.approach-visual { position: relative; margin-bottom: 64px; }
.approach-visual img { height: min(58vw, 650px); object-fit: cover; filter: saturate(.72) contrast(1.03); }
.chart-overlay { position: absolute; right: 24px; bottom: 24px; padding: 18px 22px; background: rgba(10,12,18,.9); border: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.chart-overlay span { color: var(--mist); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.chart-overlay b { color: var(--emerald); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.strategy-list { border-top: 1px solid var(--line-dark); }
.strategy { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; padding: 40px 0; border-bottom: 1px solid var(--line-dark); }
.strategy-title { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 16px; align-self: start; }
.strategy-title > span { color: var(--emerald); font-size: 10px; letter-spacing: .12em; }
.strategy h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.strategy p { margin: 0; color: var(--mist); font-size: 15px; }
.risk-meter { display: flex; gap: 3px; align-items: end; height: 24px; }
.risk-meter i { width: 4px; height: 7px; background: var(--line-dark); }
.risk-meter i:nth-child(2) { height: 12px; }
.risk-meter i:nth-child(3) { height: 17px; }
.risk-meter i:nth-child(4) { height: 22px; }
.strategy:nth-child(1) .risk-meter i:nth-child(1),
.strategy:nth-child(2) .risk-meter i:nth-child(-n+2),
.strategy:nth-child(3) .risk-meter i:nth-child(-n+3),
.strategy:nth-child(4) .risk-meter i { background: var(--emerald); }
.risk-note { margin: 24px 0 0; color: #7f8783; font-size: 11px; }

.reasons { padding-bottom: 120px; }
.section-green .section-deck { color: #153625; }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(10,12,18,.32); border-left: 1px solid rgba(10,12,18,.32); }
.reason-grid article { min-height: 300px; padding: 28px; border-right: 1px solid rgba(10,12,18,.32); border-bottom: 1px solid rgba(10,12,18,.32); }
.reason-grid span { font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.reason-grid h3 { margin-top: 64px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.reason-grid p { margin: 16px 0 0; color: #153625; font-size: 14px; line-height: 1.65; }

.contact { padding: 112px 0; border-bottom: 1px solid var(--line-dark); }
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.contact-copy p { margin: 0 0 32px; color: var(--mist); }
.contact .button { width: 100%; }
.site-footer { background: var(--vault); color: var(--ledger); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 64px; padding: 72px 0; }
.footer-top > p { margin: 0; color: var(--mist); font-family: var(--serif); font-size: 21px; line-height: 1.45; }
.footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.footer-top nav a { color: var(--mist); font-size: 12px; }
.footer-top nav a:hover { color: var(--emerald); }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0 28px; border-top: 1px solid var(--line-soft); color: #7f8783; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.legal-main { min-height: 70vh; padding: 152px 0 112px; background: var(--ledger); color: var(--ink); }
.legal-hero { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding-bottom: 72px; border-bottom: 1px solid var(--line-ink); }
.legal-hero h1 { font-size: clamp(48px, 6vw, 88px); }
.legal-intro { align-self: end; max-width: 600px; margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 22px; }
.legal-layout { display: grid; grid-template-columns: .35fr 1.65fr; gap: 80px; padding-top: 72px; }
.legal-nav { position: sticky; top: 112px; align-self: start; display: flex; flex-direction: column; border-top: 1px solid var(--line-ink); }
.legal-nav a { padding: 12px 0; border-bottom: 1px solid var(--line-ink); color: var(--ink-soft); font-size: 12px; }
.legal-nav a:hover { color: #16854a; }
.legal-content { max-width: 820px; }
.legal-content section { scroll-margin-top: 112px; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line-ink); }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin-bottom: 20px; font-family: var(--serif); font-size: 32px; font-weight: 400; letter-spacing: -.02em; line-height: 1.2; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 20px; }
.legal-meta { margin-top: 24px; color: var(--ink-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 80px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 32px 20px; background: var(--vault); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .menu-open .primary-nav { transform: translateX(0); visibility: visible; }
  .primary-nav a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: 26px; }
  .primary-nav .nav-cta { margin-top: 24px; padding: 16px; font-family: var(--sans); font-size: 14px; text-align: center; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-media { left: 18%; height: 670px; }
  .hero-shade { height: 670px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 670px; padding-top: 96px; }
  .hero-copy { padding-bottom: 0; }
  .hero-proof { display: none; }
  .hero-intro { margin-top: 0; }
  .services-layout { grid-template-columns: 1fr; }
  .service-visual { position: relative; top: auto; }
  .service-visual img { aspect-ratio: 16 / 9; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; }
  .legal-nav { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .nav-wrap { position: relative; height: 68px; }
  .menu-toggle { position: absolute; right: 0; top: 12px; flex: 0 0 44px; }
  .primary-nav { top: 68px; }
  .section-head { padding-top: 88px; margin-bottom: 48px; }
  .split-head { grid-template-columns: 1fr; gap: 32px; }
  .split-head .section-deck { margin: 0; }
  .hero { padding-top: 68px; }
  .hero-media { inset: 68px 0 auto 0; height: 560px; }
  .hero-media img { object-position: 61% center; opacity: .65; }
  .hero-shade { inset: 68px 0 auto; height: 560px; background: linear-gradient(0deg, var(--vault) 0%, rgba(10,12,18,.25) 66%, rgba(10,12,18,.2) 100%); }
  .hero-grid { min-height: 560px; padding-top: 72px; }
  .hero-copy { align-self: end; padding-bottom: 44px; }
  h1 { font-size: clamp(46px, 13vw, 64px); }
  h2 { font-size: clamp(44px, 13vw, 64px); }
  .hero-lead { font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 32px; }
  .text-link { align-self: flex-start; }
  .hero-copy, .hero-intro > *, .service-item > *, .strategy > * { min-width: 0; }
  .hero-lead, .hero-intro p, .service-item p, .strategy p { max-width: 100%; overflow-wrap: anywhere; }
  .hero-intro { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-block: 48px 64px; }
  .ticker div { text-align: left; }
  .services { padding-bottom: 88px; }
  .service-visual img { aspect-ratio: 4 / 5; }
  .service-item { grid-template-columns: 36px 1fr; gap: 12px; padding: 28px 0 32px; }
  .service-item h3 { font-size: 25px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card, .quote-wide { grid-column: auto; min-height: auto; padding: 32px 24px; }
  blockquote { font-size: 19px; }
  .approach-visual img { height: 430px; }
  .chart-overlay { inset: auto 12px 12px; }
  .strategy { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: auto; padding: 28px 24px 36px; }
  .reason-grid h3 { margin-top: 36px; }
  .contact { padding: 88px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .legal-main { padding: 120px 0 80px; }
  .legal-hero { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .legal-layout { padding-top: 48px; }
  .legal-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
