:root {
  --ink: #17191c;
  --paper: #f6f2e9;
  --white: #fffdf8;
  --gold: #f4bd45;
  --teal: #087f7a;
  --coral: #e75b45;
  --muted: #656a6e;
  --line: #d6d0c5;
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --body: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --wrap: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-color: var(--coral); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 14px; background: var(--white); border: 2px solid var(--ink); }
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.eyebrow { margin: 0 0 14px; font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 5px; margin: 0 9px 2px 0; background: var(--gold); }
.eyebrow.teal::before { background: var(--teal); }
.eyebrow.coral::before { background: var(--coral); }
.kicker { font-family: var(--serif); font-size: 22px; line-height: 1.4; color: #34383b; }
.lede { max-width: 720px; font-family: var(--serif); font-size: 25px; line-height: 1.45; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 10px 18px; border: 2px solid var(--ink); background: var(--ink); color: var(--white); font-size: 14px; font-weight: 800; text-decoration: none; transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--gold); text-decoration: none; }
.button.light { background: var(--white); color: var(--ink); }
.button.teal { border-color: var(--teal); background: var(--teal); }
.text-link { font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link::after { content: " \2197"; color: var(--coral); }

.site-header { position: relative; z-index: 20; background: var(--ink); color: var(--white); border-bottom: 1px solid #393c3f; }
.header-row { min-height: 80px; display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; border: 1px solid #56595c; background: #24272a; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--display); font-size: 19px; }
.brand-copy span { margin-top: 5px; color: #bfc2c2; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.site-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.nav-list a { padding-block: 8px; color: #dddeda; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--gold); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid #55585b; background: transparent; color: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 160ms ease; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 700px; background: var(--ink); color: var(--white); overflow: hidden; }
.hero-grid { min-height: 700px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr); }
.hero-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 84px 70px 96px 0; }
.hero-copy::before { content: ""; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: #3e4144; }
.hero h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: 78px; font-weight: 500; line-height: 0.98; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-intro { max-width: 690px; margin: 30px 0 0; color: #d0d2d2; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-board { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; padding: 65px 0 65px 54px; }
.hero-board::after { content: ""; position: absolute; inset: 0 -50vw 0 0; background-color: var(--gold); background-image: linear-gradient(#dca937 1px, transparent 1px), linear-gradient(90deg, #dca937 1px, transparent 1px); background-size: 44px 44px; z-index: 0; }
.board-top, .board-bottom { position: relative; z-index: 1; }
.board-label { display: inline-block; padding: 7px 10px; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.board-score { margin: 20px 0 0; font-family: var(--serif); font-size: 104px; line-height: 0.85; color: var(--ink); }
.board-score span { display: block; margin-top: 16px; font-family: var(--body); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.board-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.board-list li { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(23,25,28,0.45); font-size: 13px; font-weight: 750; }
.board-list b { font-family: var(--serif); font-size: 18px; font-weight: 600; }

.signal-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.signals { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal { min-height: 128px; padding: 27px 26px; border-left: 1px solid var(--line); }
.signal:last-child { border-right: 1px solid var(--line); }
.signal strong { display: block; font-family: var(--serif); font-size: 31px; font-weight: 600; line-height: 1.1; }
.signal span { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }

.section { padding: 100px 0; }
.section.tight { padding: 72px 0; }
.section-head { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: start; margin-bottom: 55px; }
.section-head h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: 56px; font-weight: 500; line-height: 1.03; }
.section-head p { margin: 0; max-width: 620px; }
.services-ledger { border-top: 2px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 80px minmax(180px, 0.7fr) 1.3fr auto; gap: 30px; align-items: start; padding: 29px 0; border-bottom: 1px solid var(--line); }
.service-row .number { font-family: var(--serif); font-size: 18px; color: var(--teal); }
.service-row h3 { margin: 0; font-family: var(--display); font-size: 22px; }
.service-row p { margin: 0; color: #4d5254; }
.service-row .mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-weight: 800; }
.service-row:hover .mark { background: var(--gold); }

.dark-band { background: var(--ink); color: var(--white); }
.dark-band .eyebrow { color: #adb0b0; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #46494c; border-left: 1px solid #46494c; }
.method { min-height: 330px; padding: 34px; border-right: 1px solid #46494c; border-bottom: 1px solid #46494c; }
.method b { color: var(--gold); font-family: var(--serif); font-size: 54px; font-weight: 500; }
.method h3 { margin: 70px 0 12px; font-size: 20px; }
.method p { margin: 0; color: #bec1c1; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.work-item { position: relative; min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.work-item:nth-child(1) { grid-column: span 7; }
.work-item:nth-child(2) { grid-column: span 5; margin-top: 90px; }
.work-item:nth-child(3) { grid-column: 4 / span 7; }
.work-visual { min-height: 300px; display: grid; place-items: center; padding: 32px; background-color: #e8e4dc; background-image: linear-gradient(#d6d1c8 1px, transparent 1px), linear-gradient(90deg, #d6d1c8 1px, transparent 1px); background-size: 28px 28px; }
.work-visual img { width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 18px 26px rgba(23,25,28,0.18)); }
.work-copy { padding: 25px 28px 28px; }
.work-copy h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 29px; font-weight: 600; }
.work-copy p { margin: 0; color: var(--muted); }

.quote-band { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--teal); color: var(--white); }
.quote-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: center; }
.quote-layout img { width: 230px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 8px solid var(--gold); }
.quote-layout blockquote { margin: 0; font-family: var(--serif); font-size: 38px; line-height: 1.22; }
.quote-layout cite { display: block; margin-top: 22px; font-family: var(--body); font-size: 13px; font-style: normal; font-weight: 800; text-transform: uppercase; }

.insight-list { border-top: 2px solid var(--ink); }
.insight-row { display: grid; grid-template-columns: 160px 1fr 160px; gap: 25px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.insight-row:hover { background: var(--white); padding-inline: 18px; }
.insight-row .topic { color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.insight-row h3 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1.15; }
.insight-row .read { justify-self: end; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }

.cta-band { background: var(--gold); }
.cta-layout { min-height: 330px; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: center; }
.cta-layout h2 { margin: 0; font-family: var(--serif); font-size: 58px; font-weight: 500; line-height: 1; }
.cta-layout p { margin: 18px 0 0; max-width: 650px; }
.cta-actions { display: grid; gap: 12px; justify-items: stretch; }

.site-footer { padding: 65px 0 32px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 0.55fr 0.55fr; gap: 60px; }
.footer-brand { max-width: 510px; }
.footer-brand h2 { margin: 0; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.footer-brand p { color: #b9bcbc; }
.footer-nav h3 { margin: 0 0 14px; color: #999c9e; font-size: 11px; text-transform: uppercase; }
.footer-nav a { display: block; margin: 8px 0; color: #e1e2df; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 55px; padding-top: 24px; border-top: 1px solid #3b3e41; color: #999c9e; font-size: 12px; }

.page-hero { padding: 105px 0 80px; background: var(--ink); color: var(--white); border-bottom: 12px solid var(--gold); }
.page-hero .shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: 70px; font-weight: 500; line-height: 1; }
.page-hero p { margin: 18px 0 0; max-width: 720px; color: #c7caca; font-size: 19px; }
.page-index { border: 1px solid #4a4d50; padding: 22px; }
.page-index span { display: block; margin-bottom: 8px; color: var(--gold); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.page-index strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 80px; align-items: start; }
.sticky-label { position: sticky; top: 30px; }
.sticky-label h2 { margin: 0; font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: 1.05; }
.prose { max-width: 780px; }
.prose h2 { margin: 58px 0 18px; font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1.08; }
.prose h3 { margin: 38px 0 12px; font-size: 22px; line-height: 1.2; }
.prose p, .prose li { color: #393e40; font-family: var(--serif); font-size: 20px; line-height: 1.65; }
.dark-band .prose p, .dark-band .prose li { color: #c7caca; }
.dark-band .prose h2, .dark-band .prose h3 { color: var(--white); }
.prose ul, .prose ol { padding-left: 24px; }
.prose .pullquote { margin: 46px 0; padding: 28px 32px; border-left: 7px solid var(--gold); background: var(--white); color: var(--ink); font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #b8bbbb; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) 280px; gap: 90px; align-items: start; }
.article-aside { position: sticky; top: 28px; padding: 24px; border-top: 5px solid var(--teal); background: var(--white); }
.article-aside h2 { margin: 0 0 13px; font-size: 16px; }
.article-aside p { color: var(--muted); font-size: 14px; }

.service-matrix { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-panel { min-height: 360px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.service-panel:nth-child(2n) { background: #efeadf; }
.service-panel .icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--gold); border: 2px solid var(--ink); border-radius: 50%; font-weight: 900; }
.service-panel h2 { margin: 70px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 600; }
.service-panel p { color: var(--muted); }
.service-panel ul { margin: 18px 0 0; padding: 0; list-style: none; }
.service-panel li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 14px; font-weight: 700; }

.people-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.people-photo { position: relative; }
.people-photo img { width: 100%; max-width: 470px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 14px solid var(--gold); filter: grayscale(1); }
.people-photo::after { content: "collective / 01"; position: absolute; right: 0; bottom: 30px; padding: 8px 12px; background: var(--coral); color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.people-copy h2 { margin: 0; font-family: var(--serif); font-size: 52px; font-weight: 500; line-height: 1.04; }
.people-copy p { font-family: var(--serif); font-size: 21px; }

.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.contact-card { padding: 36px; background: var(--ink); color: var(--white); }
.contact-card h2 { margin: 0; font-family: var(--serif); font-size: 38px; font-weight: 500; }
.contact-card p { color: #bec1c1; }
.contact-card a { color: var(--gold); font-size: 20px; overflow-wrap: anywhere; }
.brief-list { counter-reset: brief; margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.brief-list li { counter-increment: brief; display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.brief-list li::before { content: counter(brief, decimal-leading-zero); color: var(--teal); font-family: var(--serif); }
.brief-list strong { display: block; font-size: 18px; }
.brief-list span { display: block; margin-top: 5px; color: var(--muted); }

.archive-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-button { min-height: 40px; padding: 7px 13px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }
.filter-button.active, .filter-button:hover { background: var(--ink); color: var(--white); }
.article-card[hidden] { display: none; }
.article-stack { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.article-card { display: grid; grid-template-columns: 130px 1fr 110px; gap: 28px; align-items: center; min-height: 150px; padding: 25px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.article-card:hover { padding-inline: 18px; background: var(--white); }
.article-card time, .article-card .article-type { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.article-card h2 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.15; }
.article-card p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.article-card .article-type { justify-self: end; color: var(--teal); }
.empty-state { padding: 35px; border: 1px solid var(--line); background: var(--white); }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .header-row { grid-template-columns: 1fr auto auto; }
  .site-nav { position: fixed; inset: 80px 0 0; display: none; padding: 30px 24px; background: var(--ink); }
  .menu-open .site-nav { display: block; }
  .nav-list { display: grid; gap: 0; }
  .nav-list li { border-bottom: 1px solid #3e4144; }
  .nav-list a { display: block; padding: 17px 0; font-size: 18px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 630px; padding-right: 0; }
  .hero-copy::before { display: none; }
  .hero-board { min-height: 470px; padding: 55px 0; }
  .hero-board::after { inset: 0 -50vw; }
  .signals { grid-template-columns: repeat(2, 1fr); }
  .signal:nth-child(2) { border-right: 1px solid var(--line); }
  .section-head, .split, .quote-layout, .contact-layout, .people-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 55px 0.75fr 1.25fr auto; gap: 18px; }
  .page-hero .shell { grid-template-columns: 1fr; }
  .page-index { max-width: 360px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .sticky-label { position: static; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 30px), var(--wrap)); }
  .header-row { min-height: 70px; }
  .site-nav { inset-block-start: 70px; }
  .brand-copy span { display: none; }
  .brand img { width: 40px; height: 40px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-copy { min-height: 570px; padding: 66px 0 72px; }
  .hero h1 { font-size: 50px; }
  .hero-intro { font-size: 17px; }
  .hero-board { min-height: 430px; padding-left: 0; }
  .board-score { font-size: 86px; }
  .signals { grid-template-columns: 1fr 1fr; }
  .signal { min-height: 112px; padding: 22px 16px; }
  .signal strong { font-size: 24px; }
  .section { padding: 72px 0; }
  .section-head { gap: 24px; margin-bottom: 38px; }
  .section-head h2 { font-size: 43px; }
  .lede { font-size: 22px; }
  .service-row { grid-template-columns: 42px 1fr auto; }
  .service-row p { grid-column: 2 / -1; }
  .method-grid { grid-template-columns: 1fr; }
  .method { min-height: 250px; }
  .method h3 { margin-top: 35px; }
  .work-grid { display: grid; grid-template-columns: 1fr; }
  .work-item:nth-child(n) { grid-column: auto; margin-top: 0; }
  .work-visual { min-height: 230px; }
  .quote-layout { gap: 35px; }
  .quote-layout img { width: 175px; }
  .quote-layout blockquote { font-size: 30px; }
  .insight-row { grid-template-columns: 1fr auto; gap: 12px; }
  .insight-row .topic { grid-column: 1 / -1; }
  .insight-row h3 { font-size: 25px; }
  .cta-layout { grid-template-columns: 1fr; gap: 30px; padding: 55px 0; }
  .cta-layout h2 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 75px 0 60px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero .shell { gap: 35px; }
  .service-matrix { grid-template-columns: 1fr; }
  .service-panel { min-height: 310px; }
  .service-panel h2 { margin-top: 45px; }
  .people-copy h2, .sticky-label h2 { font-size: 42px; }
  .article-card { grid-template-columns: 85px 1fr; gap: 16px; }
  .article-card .article-type { display: none; }
  .article-card h2 { font-size: 23px; }
  .article-layout { gap: 45px; }
  .prose h2 { font-size: 34px; }
  .prose p, .prose li { font-size: 18px; }
  .prose .pullquote { padding: 22px; font-size: 24px; }
}

@media (max-width: 420px) {
  .brand-copy strong { font-size: 17px; }
  .hero h1 { font-size: 45px; }
  .hero-actions .button { width: 100%; }
  .signals { grid-template-columns: 1fr; }
  .signal, .signal:nth-child(2), .signal:last-child { border-right: 1px solid var(--line); }
  .service-row { grid-template-columns: 34px 1fr auto; }
  .service-row .mark { width: 30px; height: 30px; }
  .quote-layout blockquote { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .page-hero h1 { font-size: 42px; }
  .people-copy h2, .sticky-label h2 { font-size: 37px; }
  .contact-card { padding: 27px; }
  .article-card { grid-template-columns: 1fr; }
}
