:root {
  --ink: #000000;
  --paper: #ffffff;
  --soft: #f2f2ef;
  --muted: #5e5e5a;
  --line: #d7d7d2;
  --accent: #8a5b10;
  --accent-soft: #e8c17b;
  --measure: 76rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; background: var(--accent); color: white; }
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 2rem), var(--measure)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid #242424; background: rgba(0,0,0,.96); color: white; backdrop-filter: blur(14px); }
.nav-wrap { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.wordmark { display: inline-flex; align-items: center; color: var(--accent-soft); text-decoration: none; line-height: 1; }
.header-logo { display: block; width: clamp(12rem, 18vw, 15rem); height: auto; }
.nav-toggle { display: none; border: 1px solid var(--accent-soft); background: black; color: white; padding: .55rem .75rem; font: inherit; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { text-decoration: none; font-size: .84rem; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.site-nav .nav-cta { border: 1px solid var(--accent-soft); padding: .55rem .85rem; }
.site-nav .nav-cta:hover { background: var(--accent-soft); color: black; text-decoration: none; }

.hero { min-height: calc(100vh - 5rem); display: grid; align-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(18rem, .55fr); gap: clamp(3rem, 9vw, 8rem); align-items: center; padding-block: clamp(5rem, 10vw, 9rem); }
.eyebrow { margin: 0 0 1.25rem; color: var(--muted); font-size: .76rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 14ch; margin-bottom: 1.7rem; font-family: var(--serif); font-size: clamp(3.4rem, 8vw, 7.4rem); font-weight: 400; line-height: .93; letter-spacing: -.055em; }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); }
h2 { font-family: var(--serif); font-size: clamp(2.15rem, 4vw, 4.2rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
h3 { font-size: 1rem; line-height: 1.3; }
.lede { max-width: 42rem; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 3rem; padding: .7rem 1rem; border: 1px solid black; background: black; color: white; text-decoration: none; font-weight: 700; }
.button:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: black; }
.button.secondary { background: white; color: black; }
.button.secondary:hover { background: var(--soft); border-color: black; }
.arrow { font-size: 1.15em; }

.weave { aspect-ratio: 1; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); border: 1px solid var(--ink); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 20% 20%; }
.weave i { display: block; background: black; }
.weave i:nth-child(1) { grid-area: 1 / 2 / 5 / 3; }
.weave i:nth-child(2) { grid-area: 2 / 1 / 3 / 5; background: var(--accent); mix-blend-mode: multiply; }
.weave i:nth-child(3) { grid-area: 3 / 4 / 6 / 5; }
.weave i:nth-child(4) { grid-area: 4 / 3 / 5 / 6; background: #a9a9a3; mix-blend-mode: multiply; }
.brand-emblem { width: min(100%, 30rem); aspect-ratio: 1; object-fit: contain; background: black; }

.proof { background: black; color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 10rem; padding: 1.6rem; border-right: 1px solid #3d3d3d; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: .55rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1; }
.proof-item span { color: #c9c9c5; font-size: .88rem; }

.section { padding-block: clamp(5rem, 9vw, 9rem); }
.section.soft { background: var(--soft); }
.section.black { background: black; color: white; }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-head p { max-width: 42rem; font-size: 1.1rem; }
.rule-label { padding-top: .5rem; border-top: 1px solid currentColor; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.cap-card { min-height: 19rem; padding: 2rem 2rem 2.3rem 0; border-bottom: 1px solid var(--line); }
.cap-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 3rem; }
.cap-card:nth-child(even) { padding-left: 3rem; }
.cap-card .num { display: block; margin-bottom: 3.5rem; color: var(--muted); font-size: .75rem; }
.cap-card h3 { font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 400; }
.cap-card p { max-width: 31rem; color: var(--muted); }
.text-link { font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .28rem; }
.text-link:hover { color: var(--accent); }

.journey { margin-top: 4rem; }
.journey-track { display: grid; grid-template-columns: repeat(8, 1fr); border-block: 1px solid var(--ink); }
.journey-track span { padding: 1.2rem .5rem; border-right: 1px solid var(--line); text-align: center; font-size: .78rem; font-weight: 800; }
.journey-track span:last-child { border-right: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.tag-list span { padding: .45rem .7rem; border: 1px solid var(--line); font-size: .78rem; }

.statement { max-width: 17ch; margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5.8rem); font-weight: 400; line-height: 1.03; letter-spacing: -.045em; }
.statement em { color: var(--accent); font-style: normal; }
.black .statement em { color: var(--accent-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.split-copy { max-width: 34rem; font-size: 1.12rem; }

.experience-grid, .principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.experience-card, .person-card, .principle { min-height: 20rem; padding: 2rem; background: white; }
.team-feature { margin: 0 0 1.5rem; }
.team-feature img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.team-feature figcaption { padding: .65rem 0 0; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.experience-card .kicker, .person-card .kicker { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.experience-card h3, .person-card h3 { margin-top: 3.7rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.person-mark { display: grid; place-items: center; width: 4.2rem; aspect-ratio: 1; border-radius: 50%; background: black; color: white; font-family: var(--serif); font-size: 1.35rem; }
.person-card p:last-child { color: var(--muted); }
.principle { min-height: 15rem; }
.principle b { display: block; margin-bottom: 2.5rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }

.page-hero { padding-block: clamp(5rem, 10vw, 9rem); border-bottom: 1px solid var(--line); }
.page-hero .lede { margin-bottom: 0; }
.detail-list { border-top: 1px solid var(--ink); }
.detail-row { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); padding-block: 3rem; border-bottom: 1px solid var(--line); }
.detail-row h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.detail-row ul { columns: 2; margin: 1.2rem 0 0; padding-left: 1.1rem; }
.detail-row li { break-inside: avoid; margin-bottom: .35rem; }
.profile { display: grid; grid-template-columns: 16rem minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; padding-block: 4rem; border-top: 1px solid var(--line); }
.profile-photo-wrap { width: 16rem; aspect-ratio: 5 / 4; overflow: hidden; background: var(--soft); }
.profile-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.profile h2 { margin-bottom: .4rem; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.profile-role { margin-bottom: 2rem; color: var(--muted); font-weight: 700; }
.profile p { max-width: 45rem; font-size: 1.06rem; }

.cta { padding-block: clamp(5rem, 10vw, 9rem); background: var(--accent-soft); color: black; }
.cta h2 { max-width: 14ch; }
.cta .button { border-color: black; }
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-list li { padding-block: .75rem; border-top: 1px solid rgba(255,255,255,.45); }

.site-footer { padding-block: 3rem; background: black; color: white; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; }
.footer-wordmark { color: var(--accent-soft); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; letter-spacing: .02em; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: .45rem 1rem; }
.footer-nav a { color: #d1d1cd; text-decoration: none; font-size: .86rem; }
.footer-nav a:hover { color: white; text-decoration: underline; }
.footer-legal { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid #3d3d3d; color: #aaa; font-size: .75rem; }

@media (max-width: 850px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; inset: 5rem 0 auto; display: none; padding: 1.4rem 1rem 2rem; border-bottom: 1px solid #303030; background: black; color: white; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-grid, .section-head, .split, .detail-row, .profile, .footer-main { grid-template-columns: 1fr; }
  .profile-photo-wrap { width: min(70vw, 17rem); aspect-ratio: 5 / 4; }
  .hero-grid { gap: 3rem; }
  .weave { width: min(100%, 24rem); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid #3d3d3d; }
  .experience-grid, .people-grid, .principles-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: repeat(4, 1fr); }
  .journey-track span:nth-child(4) { border-right: 0; }
  .journey-track span:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card:nth-child(n) { min-height: auto; padding: 2rem 0; border-right: 0; }
  .cap-card .num { margin-bottom: 2rem; }
  .detail-row ul { columns: 1; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 8rem; border-right: 0; border-bottom: 1px solid #3d3d3d; }
  .proof-item:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
