:root {
  --ink: #08090a;
  --ink-2: #111315;
  --ink-3: #1a1d20;
  --paper: #eee9df;
  --paper-2: #f6f2ea;
  --paper-3: #d8d1c5;
  --muted: #9e9b95;
  --muted-dark: #68665f;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(8, 9, 10, 0.14);
  --bronze: #b78d57;
  --bronze-light: #d7b884;
  --danger: #bc695d;
  --shell: min(1180px, calc(100vw - 40px));
  --reading: 760px;
  --display: "Fraunces", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .12;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.04) 0 1px, transparent 1.5px);
  background-size: 18px 18px, 24px 24px;
  mix-blend-mode: soft-light;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--bronze); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 3px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,9,10,.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.wordmark-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bronze);
  color: var(--bronze-light);
  font: 600 15px/1 var(--serif);
  letter-spacing: .08em;
}
.wordmark-name,
.footer-wordmark {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .11em;
  font-stretch: condensed;
  text-decoration: none;
}
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  position: relative;
  color: rgba(238,233,223,.72);
  font-size: .79rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--paper); }
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 1px;
  background: var(--bronze);
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--ink);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .22s var(--ease), background .22s ease, color .22s ease;
}
.header-cta:hover,
.button:hover { transform: translateY(-2px); background: var(--bronze-light); }
.button-secondary { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.28); }
.button-secondary:hover { background: var(--paper); color: var(--ink); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,10,1) 0%, rgba(8,9,10,.98) 37%, rgba(8,9,10,.65) 58%, rgba(8,9,10,.08) 82%);
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; filter: saturate(.84) contrast(1.06); }
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  align-content: center;
  padding-block: clamp(90px, 13vw, 180px);
}
.hero-copy { max-width: 670px; }
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow span { width: 54px; height: 1px; background: var(--bronze); }
.hero h1,
.page-hero h1,
.article-header h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 11vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.01em;
  text-transform: uppercase;
  max-width: 880px;
}
.hero h1 em { display: block; font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(238,233,223,.55); }
.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(238,233,223,.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  color: rgba(238,233,223,.58);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-facts span { display: flex; align-items: center; gap: 9px; }
.hero-facts span::before { content: ""; width: 5px; height: 5px; background: var(--bronze); border-radius: 50%; }
.scroll-mark {
  position: absolute;
  right: 24px;
  bottom: 30px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(238,233,223,.45);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-mark::after { content: ""; display: inline-block; width: 1px; height: 60px; margin-top: 12px; background: linear-gradient(var(--bronze), transparent); }

.section { padding: clamp(88px, 11vw, 150px) 0; }
.section-tight { padding: 70px 0; }
.section-paper { background: var(--paper-2); color: var(--ink); }
.section-ink-2 { background: var(--ink-2); }
.section-head { max-width: 780px; margin-bottom: 52px; }
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .93;
  letter-spacing: -.008em;
  text-transform: uppercase;
}
.section-head > p:not(.eyebrow) { margin: 24px 0 0; max-width: 700px; color: var(--muted); font-size: 1.06rem; }
.section-paper .section-head > p:not(.eyebrow) { color: var(--muted-dark); }

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}
.identity-copy .lede {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.28;
  letter-spacing: -.025em;
}
.identity-copy .lede strong { color: var(--bronze); font-weight: 500; }
.identity-copy > p { color: var(--muted-dark); font-size: 1.04rem; max-width: 760px; }
.identity-card {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}
.facts-list { margin: 0; }
.facts-list div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.facts-list dt { color: var(--muted-dark); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.facts-list dd { margin: 0; font-weight: 550; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--ink); font-size: .78rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; text-decoration: none; }
.text-link::after { content: "→"; color: var(--bronze); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.dark-link { color: var(--paper); }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar-card { min-height: 320px; padding: 32px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.pillar-card .number { color: var(--bronze); font-size: .67rem; font-weight: 600; letter-spacing: .15em; }
.pillar-card h3 { margin: auto 0 12px; font-family: var(--display); font-size: 2.15rem; line-height: 1; text-transform: uppercase; }
.pillar-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.company-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.company-card { position: relative; min-height: 390px; border: 1px solid var(--line-dark); padding: clamp(28px, 4vw, 50px); display: flex; flex-direction: column; background: rgba(255,255,255,.18); overflow: hidden; }
.company-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; top: -120px; border: 1px solid rgba(183,141,87,.3); border-radius: 50%; }
.company-card .company-status { color: var(--bronze); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.company-card h3 { margin: auto 0 10px; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: .9; text-transform: uppercase; }
.company-card .role { margin: 0 0 18px; color: var(--muted-dark); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.company-card p { margin: 0; max-width: 520px; color: #3e3c37; }

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.article-card { position: relative; min-height: 360px; padding: clamp(28px, 4vw, 44px); background: var(--ink); display: flex; flex-direction: column; transition: background .25s ease, transform .25s var(--ease); }
.article-card:hover { background: #101214; }
.article-card-featured { grid-column: 1 / -1; min-height: 400px; }
.article-card-link { position: absolute; inset: 0; z-index: 1; }
.article-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--bronze-light); font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.article-meta time { color: var(--muted); }
.article-card h3 { margin: auto 0 18px; max-width: 900px; font-family: var(--display); font-size: clamp(2.1rem, 4.5vw, 4.7rem); line-height: .95; letter-spacing: -.035em; text-transform: uppercase; }
.article-card:not(.article-card-featured) h3 { font-size: clamp(2rem, 3.5vw, 3.1rem); }
.article-card p { margin: 0; color: var(--muted); max-width: 720px; }
.article-card-footer { margin-top: 30px; display: flex; justify-content: space-between; color: rgba(238,233,223,.5); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-item { padding: 28px 0 0; border-top: 1px solid var(--line-dark); }
.proof-item strong { display: block; font-family: var(--display); font-size: 1.65rem; text-transform: uppercase; }
.proof-item p { color: var(--muted-dark); font-size: .9rem; }

.quote-band { padding: clamp(95px, 13vw, 170px) 0; border-block: 1px solid var(--line); text-align: center; }
.quote-band blockquote { margin: 0 auto; max-width: 1040px; }
.quote-band p { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 5rem); line-height: 1.08; letter-spacing: -.035em; }
.quote-band cite { display: block; margin-top: 28px; color: var(--bronze-light); font-style: normal; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.page-hero { padding: clamp(90px, 13vw, 170px) 0 clamp(70px, 9vw, 120px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(4rem, 10vw, 8.4rem); }
.page-hero .page-lead { margin: 32px 0 0; max-width: 780px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.page-hero-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr); gap: clamp(38px, 8vw, 110px); align-items: end; }
.page-hero-portrait { aspect-ratio: 1/1.05; overflow: hidden; border: 1px solid var(--line); }
.page-hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

.bio-grid { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(50px, 9vw, 120px); }
.bio-sidebar { position: sticky; top: 110px; align-self: start; }
.bio-sidebar h2 { margin: 0 0 16px; font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; }
.bio-sidebar nav { display: grid; }
.bio-sidebar a { padding: 10px 0; border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .8rem; font-weight: 500; text-decoration: none; }
.bio-content { max-width: 800px; }
.bio-content > p:first-child { margin-top: 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.3; }
.bio-content h2 { margin: 75px 0 20px; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1; text-transform: uppercase; }
.bio-content p { color: #393733; font-size: 1.05rem; }
.timeline { margin-top: 30px; border-top: 1px solid var(--line-dark); }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.timeline-item time { color: var(--bronze); font-size: .75rem; font-weight: 600; letter-spacing: .12em; }
.timeline-item h3 { margin: 0 0 6px; font-size: 1rem; }
.timeline-item p { margin: 0; color: var(--muted-dark); font-size: .94rem; }
.faq { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 38px 22px 0; position: relative; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--bronze); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: -2px 0 24px; max-width: 680px; }

.companies-stack { display: grid; gap: 24px; }
.company-feature { position: relative; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.company-feature::after { content: attr(data-mark); position: absolute; right: -20px; bottom: -58px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: clamp(9rem, 25vw, 22rem); font-weight: 600; line-height: 1; }
.company-feature-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--bronze-light); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.company-feature h2 { position: relative; z-index: 1; margin: 80px 0 18px; font-family: var(--display); font-size: clamp(4rem, 9vw, 8rem); line-height: .82; text-transform: uppercase; }
.company-feature .company-role { color: rgba(238,233,223,.54); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.company-feature > p { position: relative; z-index: 1; max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.company-disclosure { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(238,233,223,.45); font-size: .78rem; max-width: 860px; }

.insights-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 40px; }
.topic-list { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-list span { border: 1px solid var(--line); padding: 7px 10px; color: var(--muted); font-size: .67rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }

.article-page { background: var(--paper-2); color: var(--ink); }
.article-page .site-header { background: rgba(246,242,234,.9); border-color: var(--line-dark); }
.article-page .wordmark-name,
.article-page .desktop-nav a,
.article-page .button-secondary { color: var(--ink); }
.article-page .desktop-nav a[aria-current="page"] { color: var(--ink); }
.article-page .header-cta { color: var(--ink); }
.article-page .mobile-nav summary span { background: var(--ink); }
.article-page .site-footer { background: var(--ink); color: var(--paper); }
.article-header { padding: clamp(90px, 13vw, 160px) 0 68px; border-bottom: 1px solid var(--line-dark); }
.article-header h1 { font-size: clamp(3.5rem, 8vw, 7.3rem); color: var(--ink); max-width: 1100px; }
.article-deck { max-width: 800px; margin: 30px 0 0; color: var(--muted-dark); font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.45; }
.article-byline { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px 28px; color: var(--muted-dark); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.article-shell { width: min(1120px, calc(100vw - 40px)); margin: 0 auto; display: grid; grid-template-columns: 230px minmax(0, var(--reading)); gap: clamp(40px, 8vw, 110px); padding: 74px 0 120px; }
.article-toc { position: sticky; top: 110px; align-self: start; }
.article-toc p { margin: 0 0 12px; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.article-toc a { display: block; padding: 7px 0; color: var(--muted-dark); font-size: .76rem; line-height: 1.35; text-decoration: none; }
.article-toc a.toc-level-3 { padding-left: 14px; font-size: .72rem; }
.article-body { min-width: 0; }
.article-body > p:first-child { margin-top: 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 2rem); line-height: 1.45; color: #272521; }
.article-body p,
.article-body li { font-family: var(--serif); font-size: 1.13rem; line-height: 1.78; color: #33312d; }
.article-body h2 { margin: 72px 0 20px; scroll-margin-top: 110px; font-family: var(--display); font-size: clamp(2.35rem, 5vw, 4.2rem); line-height: .98; text-transform: uppercase; }
.article-body h3 { margin: 45px 0 16px; scroll-margin-top: 110px; font-family: var(--display); font-size: 1.7rem; text-transform: uppercase; }
.article-body blockquote { margin: 54px 0; padding: 28px 0 28px 30px; border-left: 3px solid var(--bronze); }
.article-body blockquote p { margin: 0; font-family: var(--serif); font-size: 1.65rem; line-height: 1.4; font-style: italic; color: var(--ink); }
.article-body code { padding: .1em .3em; background: #ded8ce; border-radius: 3px; font: .85em ui-monospace, monospace; }
.article-body pre { overflow-x: auto; padding: 22px; background: var(--ink); color: var(--paper); }
.article-body pre code { padding: 0; background: none; color: inherit; }
.article-body a { color: #6e4d25; }
.article-body hr { border: 0; border-top: 1px solid var(--line-dark); margin: 60px 0; }
.article-disclosure { margin-top: 70px; padding: 25px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .78rem; }
.article-author { margin-top: 46px; display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: center; }
.article-author img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; }
.article-author h2 { margin: 0 0 5px; font-size: 1rem; }
.article-author p { margin: 0; color: var(--muted-dark); font-family: var(--sans); font-size: .86rem; line-height: 1.55; }

.media-hero { min-height: 74svh; display: grid; align-items: end; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.media-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; filter: contrast(1.05); }
.media-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,1) 0%, rgba(8,9,10,.76) 48%, rgba(8,9,10,.1) 100%); }
.media-hero .shell { position: relative; z-index: 1; padding-bottom: 85px; }
.media-hero h1 { max-width: 680px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 10vw, 8rem); line-height: .85; text-transform: uppercase; }
.bio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bio-card { border: 1px solid var(--line-dark); padding: 28px; }
.bio-card .label { color: var(--bronze); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.bio-card p { color: #393733; font-size: .95rem; }
.press-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.press-image { border: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.press-image figure { margin: 0; }
.press-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 35%; }
.press-image figcaption { padding: 20px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.press-image figcaption span { color: var(--muted); font-size: .8rem; }
.download-link { color: var(--bronze-light); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 9vw, 120px); }
.contact-copy h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .95; text-transform: uppercase; }
.contact-copy p { color: var(--muted); }
.contact-types { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-types div { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; }
.contact-types strong { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-types span { color: var(--muted); font-size: .85rem; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { color: rgba(238,233,223,.65); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.field input,
.field select,
.field textarea { width: 100%; border: 1px solid var(--line); background: var(--ink-2); color: var(--paper); padding: 14px 15px; border-radius: 0; outline: none; }
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--bronze); box-shadow: 0 0 0 2px rgba(183,141,87,.18); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.form-note { color: var(--muted); font-size: .75rem; }

.standards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.standard-card { padding: 32px; border: 1px solid var(--line-dark); }
.standard-card h2 { margin: 0 0 12px; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.standard-card p { color: var(--muted-dark); }

.site-footer { padding: 74px 0 25px; border-top: 1px solid var(--line); background: #060708; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .7fr; gap: 50px; }
.footer-grid p { max-width: 430px; color: var(--muted); font-size: .9rem; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links a,
.footer-social a { color: var(--muted); font-size: .79rem; text-decoration: none; }
.footer-links a:hover,
.footer-social a:hover { color: var(--paper); }
.footer-social { margin-top: 14px; display: grid; gap: 8px; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: rgba(238,233,223,.38); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

.error-page { min-height: 70svh; display: grid; place-items: center; text-align: center; }
.error-page h1 { margin: 0; font-family: var(--display); font-size: clamp(7rem, 22vw, 17rem); line-height: .75; color: transparent; -webkit-text-stroke: 1px rgba(238,233,223,.4); }
.error-page p { color: var(--muted); }

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; width: 23px; height: 1px; background: var(--paper); }
  .mobile-nav nav { position: fixed; top: 74px; left: 0; right: 0; padding: 18px 20px 28px; background: var(--ink); border-bottom: 1px solid var(--line); display: grid; }
  .mobile-nav nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
  .hero::after { background: linear-gradient(90deg, rgba(8,9,10,.98) 0%, rgba(8,9,10,.78) 72%, rgba(8,9,10,.38)); }
  .hero-copy { max-width: 610px; }
  .hero h1 { font-size: clamp(4rem, 15vw, 7rem); }
  .identity-grid, .page-hero-split, .contact-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { display: none; }
  .article-shell { grid-template-columns: 1fr; }
  .article-toc { position: static; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
  .article-toc nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
  .bio-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wordmark-name { font-size: .83rem; }
  .hero { min-height: 820px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(8,9,10,1) 0%, rgba(8,9,10,.9) 50%, rgba(8,9,10,.3) 100%); }
  .hero-media img { object-position: 58% 20%; }
  .hero-inner { align-content: end; padding: 320px 0 58px; }
  .hero h1 { font-size: clamp(3.85rem, 19vw, 6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr; gap: 8px; margin-top: 40px; }
  .scroll-mark { display: none; }
  .section { padding: 78px 0; }
  .pillar-grid, .company-grid, .article-grid, .proof-grid, .press-grid, .standards-grid { grid-template-columns: 1fr; }
  .article-card-featured { grid-column: auto; }
  .pillar-card { min-height: 240px; }
  .company-card { min-height: 330px; }
  .page-hero { padding-top: 85px; }
  .page-hero h1 { font-size: clamp(3.5rem, 18vw, 5.6rem); }
  .facts-list div { grid-template-columns: 1fr; gap: 4px; }
  .timeline-item { grid-template-columns: 72px 1fr; gap: 14px; }
  .company-feature { padding: 30px 24px; }
  .company-feature h2 { margin-top: 65px; }
  .insights-toolbar { align-items: start; flex-direction: column; }
  .article-header h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .article-shell { width: min(100% - 32px, 760px); padding-top: 48px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .media-hero { min-height: 680px; }
  .media-hero::after { background: linear-gradient(0deg, rgba(8,9,10,1) 0%, rgba(8,9,10,.76) 50%, rgba(8,9,10,.1)); }
  .media-hero img { object-position: 58% center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

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


/* ============ v3 refinements: lighter type, no uppercase display, T|S mark, light motion ============ */

.hero h1, .page-hero h1, .article-header h1 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  text-transform: none;
}
.hero h1 em, .page-hero h1 em, .media-hero h1 em {
  display: inline;
  -webkit-text-stroke: 0;
  color: var(--bronze-light);
  font-style: italic;
  font-weight: 480;
}
.hero h1 em { display: block; }
.section-head h2 {
  font-weight: 560; font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08; letter-spacing: -.012em; text-transform: none;
}
.pillar-card h3 { font-size: 1.5rem; text-transform: none; font-weight: 560; line-height: 1.15; }
.company-card h3 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); text-transform: none; font-weight: 560; line-height: 1.06; }
.company-feature h2 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); text-transform: none; font-weight: 560; line-height: 1.04; }
.company-feature::after { font-weight: 600; }
.article-card h3 { font-size: clamp(1.7rem, 3.2vw, 2.9rem); text-transform: none; font-weight: 560; line-height: 1.14; letter-spacing: -.01em; }
.article-card:not(.article-card-featured) h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.article-header h1 { font-size: clamp(2.5rem, 5.5vw, 4.6rem); max-width: 1000px; }
.article-body h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); text-transform: none; font-weight: 560; line-height: 1.12; }
.article-body h3 { font-size: 1.3rem; text-transform: none; font-weight: 580; }
.bio-content h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); text-transform: none; font-weight: 560; line-height: 1.1; }
.bio-sidebar h2 { font-size: 1.15rem; text-transform: none; font-weight: 580; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); text-transform: none; font-weight: 560; line-height: 1.08; }
.standard-card h2 { font-size: 1.4rem; text-transform: none; font-weight: 580; }
.proof-item strong { font-size: 1.25rem; text-transform: none; font-weight: 580; font-family: var(--display); }
.media-hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); text-transform: none; font-weight: 560; line-height: 1.05; }
.error-page h1 { font-family: var(--display); font-weight: 500; -webkit-text-stroke: 0; color: var(--bronze); font-size: clamp(6rem, 18vw, 13rem); line-height: 1; }
.quote-band p { font-weight: 480; }
.page-hero h1 { font-size: clamp(2.9rem, 6.5vw, 5.6rem); }
.hero h1 { max-width: 820px; }

/* wordmark: refined */
.wordmark-name, .footer-wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-wordmark { font-size: .9rem; margin: 0 0 14px; }

/* T|S mark */
.ts-mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid rgba(183,141,87,.65);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.02rem; font-weight: 500; line-height: 1;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ts-mark .ts-bar { width: 1px; height: 17px; background: var(--bronze); }
.wordmark:hover .ts-mark { border-color: var(--bronze-light); box-shadow: 0 0 0 3px rgba(183,141,87,.12); }
.article-page .ts-mark { color: var(--ink); }

/* nav: lighter, animated underline */
.desktop-nav a { font-weight: 500; letter-spacing: .12em; font-size: .78rem; }
.desktop-nav a::before {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
  background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.desktop-nav a:hover::before { transform: scaleX(1); }
.header-cta, .button { font-weight: 600; letter-spacing: .08em; }

/* light motion */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-media img { animation: heroZoom 2.4s var(--ease) both; }
.hero-copy .eyebrow   { animation: fadeUp .7s var(--ease) .05s both; }
.hero-copy h1         { animation: fadeUp .7s var(--ease) .15s both; }
.hero-copy .hero-lead { animation: fadeUp .7s var(--ease) .28s both; }
.hero-copy .hero-actions { animation: fadeUp .7s var(--ease) .4s both; }
.hero-copy .hero-facts { animation: fadeUp .7s var(--ease) .52s both; }
.page-hero .eyebrow, .article-header .eyebrow { animation: fadeUp .6s var(--ease) .05s both; }
.page-hero h1, .article-header h1 { animation: fadeUp .6s var(--ease) .14s both; }
.page-hero .page-lead, .article-header .article-deck { animation: fadeUp .6s var(--ease) .26s both; }
.pillar-card, .company-card, .article-card, .standard-card, .press-image { transition: transform .3s var(--ease), background .25s ease, border-color .25s ease, box-shadow .3s ease; }
.pillar-card:hover, .company-card:hover, .standard-card:hover { transform: translateY(-4px); border-color: rgba(183,141,87,.45); }
.article-card:hover { transform: translateY(-4px); }
.press-image:hover { transform: translateY(-4px); border-color: rgba(183,141,87,.45); }
@supports (animation-timeline: view()) {
  .section-head, .pillar-card, .company-card, .article-card, .proof-item, .standard-card, .bio-card, .press-image, .timeline-item {
    animation: fadeUp .7s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .hero-copy *, .page-hero *, .article-header *, .section-head, .pillar-card, .company-card, .article-card, .proof-item, .standard-card, .bio-card, .press-image, .timeline-item { animation: none !important; }
}


/* ============ v4: grotesque display restored (per Tyk) — bold uppercase, engineered fit, no overlap ============ */

:root { --grot: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; }

/* Big display: bold grotesque, tight but never overlapping */
.hero h1, .page-hero h1, .article-header h1, .media-hero h1 {
  font-family: var(--grot);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: -.022em;
  font-style: normal;
}
.hero h1 { font-size: clamp(3.6rem, 9.5vw, 8rem); max-width: none; }
.page-hero h1 { font-size: clamp(3rem, 7.5vw, 6.6rem); }
.media-hero h1 { font-size: clamp(2.9rem, 7vw, 6rem); }
.article-header h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.02; letter-spacing: -.018em; }

/* Outline treatment: second line hollow, cleanly spaced */
.hero h1 em, .page-hero h1 em, .media-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(238,233,223,.62);
  text-stroke: 1.5px rgba(238,233,223,.62);
}
.hero h1 em { display: block; margin-top: .06em; }
.page-hero h1 em, .media-hero h1 em { display: inline; }
.article-page .page-hero h1 em { -webkit-text-stroke-color: rgba(8,9,10,.45); }

/* Section + card headings: grotesque, calibrated weights */
.section-head h2 {
  font-family: var(--grot); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem); line-height: 1.02; letter-spacing: -.018em;
}
.pillar-card h3 { font-family: var(--grot); font-weight: 700; text-transform: uppercase; font-size: 1.28rem; letter-spacing: -.01em; line-height: 1.1; }
.company-card h3 { font-family: var(--grot); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.018em; line-height: 1; }
.company-feature h2 { font-family: var(--grot); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -.02em; line-height: .98; }
.article-card h3 { font-family: var(--grot); font-weight: 750; text-transform: none; font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -.02em; line-height: 1.08; }
.article-card:not(.article-card-featured) h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.contact-copy h2 { font-family: var(--grot); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 3.4vw, 2.9rem); letter-spacing: -.018em; line-height: 1.02; }
.error-page h1 { font-family: var(--grot); font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px rgba(238,233,223,.5); font-size: clamp(7rem, 22vw, 16rem); line-height: .8; }
.proof-item strong { font-family: var(--grot); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .015em; }
.standard-card h2 { font-family: var(--grot); font-weight: 700; text-transform: uppercase; font-size: 1.08rem; letter-spacing: .02em; }
.bio-sidebar h2 { font-family: var(--grot); font-weight: 700; text-transform: uppercase; font-size: .95rem; letter-spacing: .04em; }

/* Long-form headings stay mixed-case for readability */
.article-body h2 { font-family: var(--grot); font-weight: 700; text-transform: none; font-size: clamp(1.5rem, 2.8vw, 2.1rem); letter-spacing: -.015em; line-height: 1.15; }
.article-body h3 { font-family: var(--grot); font-weight: 650; text-transform: none; font-size: 1.18rem; }
.bio-content h2 { font-family: var(--grot); font-weight: 700; text-transform: none; font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.12; }

/* Serif stays where it earns contrast: ledes, decks, quotes, first paragraphs */
.quote-band p { font-family: var(--serif); }

/* T|S monogram v2: smooth bold dual-font mark, no box */
.ts-mark {
  width: auto; height: auto; border: 0; box-shadow: none;
  display: inline-flex; align-items: center; gap: 0;
  line-height: 1;
}
.ts-mark .ts-t {
  font-family: var(--grot); font-weight: 800; font-size: 1.5rem;
  color: var(--paper); letter-spacing: -.02em;
}
.ts-mark .ts-bar {
  width: 2.5px; height: 22px; margin: 0 6px;
  background: var(--bronze);
  border-radius: 1px;
  transition: transform .3s var(--ease), background .3s ease;
}
.ts-mark .ts-s {
  font-family: var(--grot); font-style: normal; font-weight: 800; font-size: 1.5rem;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(238,233,223,.8);
  text-stroke: 1.3px rgba(238,233,223,.8);
}
.wordmark:hover .ts-mark { border: 0; box-shadow: none; }
.wordmark:hover .ts-bar { transform: scaleY(1.2); background: var(--bronze-light); }
.article-page .ts-mark .ts-t { color: var(--ink); }
.article-page .ts-mark .ts-s { -webkit-text-stroke-color: rgba(8,9,10,.65); text-stroke: 1.3px rgba(8,9,10,.65); }

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .page-hero h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
}
