:root {
  --ink: #0a0b0d;
  --ink-soft: #101216;
  --paper: #f4f2ed;
  --paper-2: #ebe7df;
  --white: #fbfaf7;
  --muted: #a7a7a4;
  --muted-dark: #5f615f;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(10,11,13,.14);
  --accent: #b39a73;
  --accent-soft: #d6c3a4;
  --shell: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 14px; background: var(--paper); color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(10,11,13,.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(10,11,13,.88); border-bottom-color: var(--line); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: .01em; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: 14px; color: #d6d6d2; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-contact { border: 1px solid rgba(255,255,255,.28); padding: 10px 16px; }
.menu-button { display: none; background: none; border: 0; width: 42px; height: 42px; position: relative; }
.menu-button span:not(.sr-only) { position: absolute; width: 20px; height: 1px; background: var(--paper); left: 11px; transition: transform .2s ease, top .2s ease; }
.menu-button span:nth-child(1) { top: 16px; }
.menu-button span:nth-child(2) { top: 24px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 56px;
  background:
    radial-gradient(circle at 78% 34%, rgba(179,154,115,.11), transparent 23%),
    linear-gradient(135deg, #08090b 0%, #0b0d10 50%, #090a0c 100%);
}
.hero-lines {
  position: absolute; inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 80%, transparent 100%);
}
.hero-lines::after {
  content: "";
  position: absolute;
  width: 650px; height: 650px;
  border: 1px solid rgba(179,154,115,.20);
  transform: rotate(45deg);
  right: -150px; top: 110px;
  box-shadow: 0 0 0 80px rgba(179,154,115,.018), 0 0 0 160px rgba(179,154,115,.012);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 88px; align-items: end; }
.eyebrow { margin: 0 0 24px; font-size: 12px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-soft); }
.hero h1 { margin: 0; font-size: clamp(66px, 8.2vw, 122px); line-height: .88; letter-spacing: -.055em; font-weight: 560; max-width: 850px; }
.hero h1 span { color: var(--accent-soft); }
.hero-deck { max-width: 650px; margin: 36px 0 0; color: #c7c7c2; font-size: clamp(19px, 2vw, 25px); line-height: 1.45; letter-spacing: -.015em; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; text-decoration: none; font-size: 14px; font-weight: 650; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--paper); border: 1px solid var(--paper); }
.button-primary:hover { background: #fff; }
.button-ghost { color: var(--paper); border: 1px solid rgba(255,255,255,.28); }
.button-ghost:hover { border-color: rgba(255,255,255,.62); }
.text-link { font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 4px; }
.text-link span { margin-left: 6px; }
.hero-panel { align-self: center; }
.hero-panel-inner { border-left: 1px solid rgba(179,154,115,.55); padding: 8px 0 8px 30px; }
.panel-label { margin: 0 0 24px; color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.panel-statement { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: -.03em; max-width: 340px; }
.panel-rule { width: 54px; height: 1px; background: var(--accent); margin: 28px 0; }
.panel-copy { margin: 0; color: #a9aaa8; font-size: 15px; max-width: 340px; }
.hero-footnote { position: relative; margin-top: 90px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; color: #858783; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.section { padding: 132px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-cream { background: var(--paper-2); color: var(--ink); }
.section-dark { background: var(--ink-soft); color: var(--paper); }
.split-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.section-kicker { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); }
.section-copy h2, .section-heading h2, .experience-copy h2, .leadership-copy h2, .confidentiality-copy h2, .contact-main h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 560;
}
.section-copy > p { max-width: 820px; font-size: 19px; color: #4d4f4d; }
.section-copy > p:first-of-type { margin-top: 32px; }
.section-copy > p:last-of-type { margin-bottom: 0; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.pillar { position: relative; min-height: 238px; padding: 30px 28px 38px 0; border-right: 1px solid var(--line-dark); }
.pillar::before { content: ""; position: absolute; top: -1px; left: 0; width: 42px; height: 2px; background: var(--accent); opacity: .72; }
.pillar + .pillar { padding-left: 28px; }
.pillar + .pillar::before { left: 28px; }
.pillar:last-child { border-right: 0; }
.pillar-number { display: block; font-size: 11px; letter-spacing: .12em; color: #898b87; margin-bottom: 24px; }
.pillar h3 { font-size: 30px; font-weight: 560; letter-spacing: -.03em; margin: 0 0 12px; }
.pillar p { color: #555754; margin: 0; font-size: 15px; line-height: 1.58; max-width: 245px; }

.section-heading { max-width: 800px; }
.section-heading h2 { max-width: 760px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--line); }
.capability { padding: 34px 44px 56px 0; border-bottom: 1px solid var(--line); }
.capability:nth-child(3n+2), .capability:nth-child(3n+3) { padding-left: 34px; }
.capability:nth-child(3n+2) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.capability h3 { margin: 0 0 18px; font-size: 22px; font-weight: 540; letter-spacing: -.025em; }
.capability p { color: #989a97; margin: 0; font-size: 15px; }

.experience-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: start; }
.dark-eyebrow { color: #74664f; }
.experience-copy > p:not(.eyebrow) { color: #51534f; font-size: 18px; max-width: 650px; margin-top: 30px; }
.sector-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.sector-list span { border: 1px solid rgba(10,11,13,.18); padding: 10px 13px; font-size: 13px; color: #444642; }
.proof-card { background: var(--ink); color: var(--paper); padding: 42px; }
.proof-label { margin: 0 0 34px; color: var(--accent-soft); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
.proof-stat { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line); align-items: center; }
.proof-stat strong { font-size: 34px; font-weight: 540; letter-spacing: -.04em; color: var(--white); }
.proof-stat span { font-size: 14px; color: #a6a7a4; }
.proof-note { margin: 26px 0 0; font-size: 11px; line-height: 1.55; color: #70726f; }

.confidentiality { padding: 104px 0; }
.confidentiality-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.light-kicker { color: #71736f; }
.confidentiality-copy h2 { font-size: clamp(42px, 5vw, 68px); }
.confidentiality-copy p { max-width: 780px; color: #9c9d99; font-size: 18px; margin: 30px 0 0; }

.leadership-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.portrait-photo { aspect-ratio: 4 / 5; max-width: 430px; width: 100%; background: #cfd3d6; overflow: hidden; }
.portrait-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leadership-copy > p:not(.eyebrow) { color: #4e504d; font-size: 18px; max-width: 720px; }
.leadership-copy > p:first-of-type { margin-top: 32px; }
.dark-link { color: var(--ink); border-bottom-color: rgba(10,11,13,.28); display: inline-block; margin-top: 12px; }

.contact-section { padding: 126px 0 118px; background: #07080a; color: var(--paper); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.contact-main h2 { max-width: 780px; }
.contact-email { display: inline-block; margin-top: 44px; font-size: clamp(22px, 2.8vw, 38px); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 6px; letter-spacing: -.03em; }
.contact-details { display: grid; gap: 26px; }
.contact-details > div:not(.contact-actions) { border-top: 1px solid var(--line); padding-top: 18px; }
.detail-label { display: block; font-size: 10px; color: #747672; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 7px; }
.contact-details a { text-decoration: none; }
.contact-details p { margin: 0; color: #b3b4b0; }
.contact-actions { display: flex; gap: 10px; margin-top: 10px; }

.site-footer { background: #07080a; border-top: 1px solid var(--line); padding: 30px 0 36px; color: #777975; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center; gap: 28px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #a9aaa7; }
.footer-brand .brand-mark { width: 30px; height: 30px; opacity: .8; }
.footer-grid p { margin: 0; }
.footer-grid p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.65,.2,1), transform .7s cubic-bezier(.2,.65,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-panel { max-width: 520px; }
  .split-intro, .confidentiality-grid { grid-template-columns: 1fr; gap: 38px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .pillar:nth-child(3) { padding-left: 0; }
  .pillar:nth-child(3)::before { left: 0; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability:nth-child(n) { padding-left: 0; padding-right: 28px; border-left: 0; border-right: 0; }
  .capability:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
  .experience-grid, .leadership-grid, .contact-grid { grid-template-columns: 1fr; gap: 68px; }
  .proof-card { max-width: 660px; }
  .portrait-photo { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid p:nth-child(2) { display: none; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .nav-wrap { height: 68px; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed; left: 0; right: 0; top: 68px;
    display: grid; gap: 0; padding: 12px 18px 24px;
    background: rgba(10,11,13,.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav .nav-contact { border: 0; border-bottom: 1px solid var(--line); padding: 15px 0; }
  .hero { padding-top: 138px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .hero-deck { font-size: 19px; margin-top: 28px; }
  .hero-actions { margin-top: 34px; align-items: flex-start; flex-direction: column; }
  .hero-panel-inner { padding-left: 22px; }
  .panel-statement { font-size: 24px; }
  .hero-footnote { margin-top: 66px; flex-direction: column; gap: 8px; }
  .section { padding: 90px 0; }
  .section-copy h2, .section-heading h2, .experience-copy h2, .leadership-copy h2, .confidentiality-copy h2, .contact-main h2 { font-size: clamp(38px, 12vw, 54px); }
  .section-copy > p, .experience-copy > p:not(.eyebrow), .leadership-copy > p:not(.eyebrow), .confidentiality-copy p { font-size: 17px; }
  .pillars { grid-template-columns: 1fr; margin-top: 60px; }
  .pillar:nth-child(n) { min-height: 0; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .pillar:nth-child(n)::before { left: 0; }
  .pillar:last-child { border-bottom: 0; }
  .pillar-number { margin-bottom: 18px; }
  .capability-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .capability:nth-child(n) { padding: 26px 0 34px; border-left: 0; border-right: 0; }
  .proof-card { padding: 28px 24px; }
  .proof-stat { grid-template-columns: 94px 1fr; }
  .proof-stat strong { font-size: 30px; }
  .contact-section { padding: 90px 0; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid p:last-child { text-align: left; }
}