:root {
  --ink: #1a1917;
  --coal: #24221f;
  --ivory: #f0ede5;
  --paper: #faf8f2;
  --brass: #b77a20;
  --line: rgba(26, 25, 23, .18);
  --muted: #716c62;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  padding: 0 clamp(24px, 4.5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, .92);
  backdrop-filter: blur(16px);
}
.wordmark { font-weight: 600; letter-spacing: -.04em; font-size: 1.3rem; }
.wordmark span { color: var(--brass); }
nav { display: flex; gap: 36px; font-size: .86rem; }
nav a, .header-cta { transition: color .2s ease; }
nav a:hover, .header-cta:hover { color: var(--brass); }
.header-cta { justify-self: end; font-size: .86rem; font-weight: 600; }
.header-cta span { margin-left: 8px; color: var(--brass); }

.hero {
  min-height: calc(100vh - 84px);
  padding: clamp(70px, 9vw, 140px) clamp(24px, 6vw, 100px) 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(26,25,23,.05) 50%, transparent 50.1%),
    linear-gradient(rgba(26,25,23,.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 88px;
}
.hero-kicker, .section-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 600;
  color: var(--brass);
}
h1, h2, .display-copy {
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -.04em;
}
h1 {
  margin: 50px 0 70px;
  max-width: 1200px;
  font-size: clamp(4rem, 8.2vw, 9.4rem);
  line-height: .86;
}
h1 em, .contact h2 em { color: var(--brass); font-weight: 400; }
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  max-width: 1100px;
  margin-left: auto;
}
.hero-bottom p { margin: 0; font-size: clamp(1.12rem, 1.6vw, 1.45rem); line-height: 1.55; }
.text-link { width: fit-content; font-weight: 600; padding-bottom: 6px; border-bottom: 1px solid currentColor; }
.text-link span { margin-left: 24px; color: var(--brass); }
.signal {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.signal i { height: 1px; background: var(--line); position: relative; }
.signal i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }

.band { background: var(--ink); color: var(--ivory); }
.manifesto {
  padding: clamp(90px, 12vw, 180px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 3fr;
  gap: 7vw;
}
.manifesto-copy { max-width: 1100px; }
.display-copy { margin: 0 0 70px; font-size: clamp(2.8rem, 5.2vw, 6rem); line-height: 1.04; }
.display-copy span { color: #d59a3c; }
.manifesto-copy > p:last-child { max-width: 630px; margin-left: auto; color: #bdb8ae; font-size: 1.18rem; }

.work, .proof { padding: clamp(100px, 12vw, 170px) clamp(24px, 6vw, 100px); }
.section-intro { display: grid; grid-template-columns: 1fr 3fr; gap: 7vw; margin-bottom: 100px; }
.section-intro h2, .proof h2 { margin: -10px 0 0; font-size: clamp(3.3rem, 6vw, 7rem); line-height: .96; }
.engagement-block { margin-bottom: clamp(90px, 10vw, 140px); }
.engagement-heading, .capability-intro { display: grid; grid-template-columns: 1fr 3fr; gap: 7vw; align-items: end; margin-bottom: 34px; }
.engagement-heading > p, .capability-intro > p { margin: 0; max-width: 700px; font-family: "Newsreader", serif; font-size: clamp(1.5rem, 2.4vw, 2.6rem); line-height: 1.08; letter-spacing: -.025em; }
.engagement-triggers { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.engagement-triggers p { display: grid; grid-template-columns: 34px 1fr; gap: 12px; margin: 0; padding: 22px 24px 22px 0; border-bottom: 1px solid var(--line); }
.engagement-triggers p:nth-child(odd) { border-right: 1px solid var(--line); }
.engagement-triggers p:nth-child(even) { padding-left: 24px; }
.engagement-triggers p:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
.engagement-triggers span { color: var(--brass); font-size: .72rem; }
.capability-intro { margin-bottom: 40px; }
.capability-list { border-top: 1px solid var(--line); }
.capability {
  display: grid;
  grid-template-columns: 60px minmax(220px, 1fr) 2fr 1.3fr;
  gap: 36px;
  align-items: start;
  padding: 34px 0 48px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, color .3s ease;
}
.capability:hover { padding-left: 14px; color: var(--brass); }
.capability > span { font-size: .75rem; color: var(--brass); }
.capability h3 { margin: 0; font-size: 1.55rem; font-weight: 500; letter-spacing: -.03em; }
.capability p { margin: 0; max-width: 590px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags b { border: 1px solid var(--line); border-radius: 20px; padding: 6px 10px; font-size: .72rem; font-weight: 500; color: var(--muted); }

.engagement-model {
  margin-top: clamp(90px, 10vw, 150px);
  padding: clamp(40px, 5vw, 72px);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.engagement-model-head { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8vw; align-items: end; }
.engagement-model-head h3 { margin: 18px 0 0; max-width: 820px; font-family: "Newsreader", serif; font-size: clamp(2.6rem, 4.5vw, 5.4rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.engagement-model-head > p { margin: 0; color: var(--muted); }
.engagement-options { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.engagement-options article { min-height: 300px; padding: 24px 28px 30px 0; border-right: 1px solid var(--line); }
.engagement-options article:not(:first-child) { padding-left: 28px; }
.engagement-options article:last-child { border-right: 0; }
.engagement-options span { color: var(--brass); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.engagement-options h4 { margin: 72px 0 16px; font-family: "Newsreader", serif; font-size: clamp(1.7rem, 2.4vw, 2.7rem); font-weight: 400; line-height: 1.05; }
.engagement-options p { margin: 0; color: var(--muted); }

.method { padding: clamp(100px, 12vw, 170px) clamp(24px, 6vw, 100px); }
.section-intro.light { grid-template-columns: 1fr 2fr 1fr; align-items: end; }
.section-intro.light h2 { color: var(--ivory); }
.section-intro.light > p { color: #a9a49b; margin: 0; }
.method-path { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(240,237,229,.22); }
.method-path article { position: relative; padding: 32px 30px 20px 0; min-height: 290px; border-right: 1px solid rgba(240,237,229,.16); }
.method-path article:not(:first-child) { padding-left: 30px; }
.method-path article::before { content: ""; position: absolute; top: -3px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.method-num { color: var(--brass); font-size: .75rem; }
.method-path h3 { margin: 82px 0 14px; font-family: "Newsreader", serif; font-size: 2rem; font-weight: 400; }
.method-path p { color: #a9a49b; font-size: .9rem; max-width: 260px; }

.proof-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 9vw; margin-top: 72px; }
.proof-statement p { max-width: 570px; margin-top: 45px; font-size: 1.12rem; color: var(--muted); }
.metrics { border-top: 1px solid var(--line); }
.metrics article { padding: 26px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: baseline; }
.metrics strong { font-family: "Newsreader", serif; font-size: 2.3rem; font-weight: 400; color: var(--brass); }
.metrics span { color: var(--muted); font-size: .86rem; }
.endorsements { margin-top: clamp(80px, 10vw, 140px); }
.testimonial-carousel { margin-top: 34px; padding: clamp(38px, 5vw, 72px) clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.testimonial-track { min-height: 300px; display: grid; align-items: center; }
.testimonial-slide { margin: 0 auto; max-width: 1040px; }
.testimonial-slide[hidden] { display: none; }
.testimonial-slide p { margin: 0; font-family: "Newsreader", serif; font-size: clamp(1.25rem, 1.65vw, 1.55rem); line-height: 1.38; letter-spacing: -.025em; }
.testimonial-slide footer { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-top: 34px; padding: 0; border: 0; color: var(--ink); font-size: .82rem; font-weight: 600; }
.testimonial-slide footer span { color: var(--muted); font-weight: 400; }
.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.testimonial-dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: #c8c3ba; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.testimonial-dot:hover, .testimonial-dot:focus-visible { transform: scale(1.2); }
.testimonial-dot.is-active { background: var(--ink); }
.media-proof { margin-top: clamp(70px, 8vw, 110px); }
.media-feature { margin: 34px 0 0; }
.media-feature img { display: block; width: 100%; height: auto; }
.media-feature figcaption { max-width: 980px; margin-top: 14px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.media-wordmarks { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.media-mark { min-height: 150px; display: flex; align-items: center; justify-content: center; padding: 30px clamp(24px, 4vw, 52px); border-right: 1px solid var(--line); color: inherit; text-decoration: none; cursor: pointer; }
.media-mark:focus-visible { outline: 2px solid var(--brass); outline-offset: -3px; }
.media-mark:nth-child(3n) { border-right: 0; }
.media-mark:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
.media-mark img { display: block; width: 100%; max-width: 230px; max-height: 58px; object-fit: contain; }
.media-mark--current { gap: 12px; }
.media-mark--current img { width: 38px; height: 38px; }
.media-mark--current span { font-family: "Newsreader", serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.03em; white-space: nowrap; }
.media-mark--podcast img { width: 82px; height: 82px; max-height: 82px; border-radius: 4px; }

.founder { padding: clamp(100px, 12vw, 170px) clamp(24px, 6vw, 100px); }
.founder-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 9vw; margin-top: 80px; }
.founder-name { margin: 0; font-family: "Newsreader", serif; font-size: clamp(2.6rem, 4vw, 5rem); letter-spacing: -.03em; line-height: 1; }
.founder-title { color: #9d988f; }
.founder-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; padding-bottom: 4px; border-bottom: 1px solid rgba(183, 122, 32, .55); color: #d59a3c; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: border-color .2s ease, color .2s ease; }
.founder-link:hover { color: var(--ivory); border-color: var(--ivory); }
.founder-copy { max-width: 760px; }
.founder-copy p { margin: 0 0 26px; font-size: clamp(1.15rem, 1.6vw, 1.4rem); color: #c5c0b7; }
.brass { color: #d59a3c; margin-top: 36px; }

.contact { min-height: 80vh; padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 100px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contact h2 { margin: 40px 0 55px; font-size: clamp(4.3rem, 9vw, 10rem); line-height: .85; }
.contact-button { cursor: pointer; border: 1px solid var(--ink); border-radius: 100px; background: transparent; padding: 18px 28px; font-weight: 600; transition: .25s ease; }
.contact-button:hover { background: var(--ink); color: var(--paper); }
.contact-button span { margin-left: 20px; color: var(--brass); }
.contact-note { margin-top: 30px; max-width: 520px; color: var(--muted); font-size: .86rem; transition: opacity .2s ease; }

footer { display: grid; grid-template-columns: 1.2fr 2fr 1fr 1fr; align-items: end; gap: 30px; padding: 60px clamp(24px, 4.5vw, 76px); border-top: 1px solid var(--line); font-size: .75rem; color: var(--muted); }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .8s cubic-bezier(.2,.75,.25,1) forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .25s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 72px; }
  nav { display: none; }
  .hero { min-height: calc(100vh - 72px); }
  .hero-bottom, .manifesto, .section-intro, .section-intro.light, .engagement-heading, .capability-intro, .proof-grid, .founder-grid { grid-template-columns: 1fr; }
  .manifesto, .section-intro, .section-intro.light, .engagement-heading, .capability-intro, .proof-grid, .founder-grid { gap: 42px; }
  .hero-bottom { margin-left: 0; max-width: 680px; }
  .capability { grid-template-columns: 40px 1fr; }
  .capability p, .capability .tags { grid-column: 2; }
  .engagement-model-head { grid-template-columns: 1fr; gap: 30px; }
  .engagement-options { grid-template-columns: 1fr; }
  .engagement-options article, .engagement-options article:not(:first-child) { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .engagement-options article:last-child { border-bottom: 0; }
  .engagement-options h4 { margin-top: 38px; }
  .method-path { grid-template-columns: 1fr 1fr; }
  .method-path article:nth-child(2) { border-right: 0; }
  footer { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 600px) {
  .header-cta { font-size: 0; }
  .header-cta::before { content: "Connect"; font-size: .8rem; }
  h1 { margin-top: 75px; font-size: clamp(3.5rem, 16vw, 5rem); }
  h1 br { display: none; }
  .signal { grid-template-columns: auto 1fr auto; }
  .signal span:nth-of-type(2), .signal i:nth-of-type(2) { display: none; }
  .manifesto-copy > p:last-child { margin-left: 0; }
  .engagement-triggers { grid-template-columns: 1fr; }
  .engagement-triggers p, .engagement-triggers p:nth-child(even), .engagement-triggers p:last-child:nth-child(odd) { grid-column: auto; padding: 20px 0; border-right: 0; }
  .capability { gap: 18px; }
  .capability:hover { padding-left: 0; }
  .engagement-model { padding: 34px 22px; }
  .method-path { grid-template-columns: 1fr; }
  .method-path article, .method-path article:not(:first-child) { padding: 25px 0; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(240,237,229,.16); }
  .method-path h3 { margin: 42px 0 10px; }
  .metrics article { grid-template-columns: 1fr; }
  .testimonial-track { min-height: 460px; }
  .media-wordmarks { grid-template-columns: 1fr 1fr; }
  .media-mark { min-height: 112px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .media-mark:nth-child(3n) { border-right: 1px solid var(--line); }
  .media-mark:nth-child(even) { border-right: 0; }
  .media-mark:nth-last-child(-n+2) { border-bottom: 0; }
  .media-mark img { max-width: 160px; max-height: 46px; }
  .media-mark--podcast img { width: 68px; height: 68px; max-height: 68px; }
  footer { grid-template-columns: 1fr; }
}

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