:root {
  --ink: #111411;
  --paper: #f1efe8;
  --paper-deep: #e5e1d7;
  --acid: #d9ff44;
  --cobalt: #2649db;
  --coral: #ff735c;
  --plum: #6e3d67;
  --line: rgba(17, 20, 17, 0.18);
  --muted: #5c5f59;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

main,
footer { position: relative; z-index: 1; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

:where(.approach, .advisory-focus, footer) :where(a, button, input, select, textarea):focus-visible {
  outline-color: var(--acid);
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(241, 239, 232, 0.86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.wordmark {
  width: max-content;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.wordmark span { color: var(--cobalt); }

.brand-lockup {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
}

.brand-lockup small {
  color: var(--muted);
  font: 400 12px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  gap: 34px;
}

nav a,
.header-cta {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

nav a { color: var(--muted); }
nav a:hover { color: var(--ink); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.menu-toggle,
.mobile-nav-cta { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  padding: 142px 3vw 42px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  right: -18vw;
  top: -23vw;
  background: var(--acid);
  filter: blur(1px);
}

.hero-copy { min-width: 0; }

.section-label,
.project-meta,
.project-tags,
.hero-foot {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
}

.hero h1 {
  max-width: 1020px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 10.4vw, 170px);
  line-height: 0.79;
  font-weight: 300;
  letter-spacing: -0.07em;
}

.hero h1 em {
  display: inline-block;
  color: var(--cobalt);
  font-weight: 300;
}

.hero-intro {
  width: 100%;
  max-width: 540px;
  margin: 6vh 0 0;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.hero-founder {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-founder a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.hero-founder-name {
  position: relative;
  z-index: 0;
  margin: 0 2px;
  color: var(--cobalt);
  transition: opacity 180ms ease;
}

.hero-founder-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5px -4px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.2,.7,.3,1);
}

.hero-founder-name:hover::before,
.hero-founder-name:focus-visible::before { transform: scaleX(1); }

.hero-founder-name:hover { opacity: .78; }

.hero-founder-name span {
  display: inline-block;
  color: var(--muted);
  font-size: .82em;
  transition: transform 220ms ease;
}

.hero-founder-name:hover span,
.hero-founder-name:focus-visible span { transform: translate(2px, -2px); }

.hero-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  margin-top: 80px;
  color: var(--muted);
}

.hero-foot a {
  display: flex;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.projects { padding: 11vw 3vw 3vw; }

.section-intro {
  margin-bottom: 9vw;
}

.section-label {
  margin: 0;
  color: var(--muted);
}

.section-title,
.approach h2,
.founder h2,
.contact h2 {
  margin: 0;
  font: 300 clamp(46px, 6vw, 92px)/0.94 var(--serif);
  letter-spacing: -0.055em;
}

.section-intro > p:last-child {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.project {
  height: clamp(620px, 68vh, 700px);
  min-height: 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  margin: 0 0 3vw;
  border: 1px solid var(--line);
  overflow: hidden;
}

.project:nth-of-type(odd) { grid-template-columns: 1.28fr 0.72fr; }
.project:nth-of-type(odd) .project-copy { order: 2; }

.project-copy {
  padding: clamp(28px, 4.5vw, 76px);
  display: flex;
  flex-direction: column;
}

.project-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(18px, 3vw, 48px);
  min-height: 2.8em;
  color: var(--muted);
  line-height: 1.4;
}

.project-meta span:last-child { text-align: right; }
.project-meta .project-status {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 10px;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 99px;
  text-align: left;
}

.editorial-placeholder {
  color: inherit;
  border-bottom: 1px dashed currentColor;
}

.project h3 {
  margin: auto 0 20px;
  font: 400 clamp(58px, 7.3vw, 116px)/0.85 var(--serif);
  letter-spacing: -0.065em;
}

.project-copy > p {
  max-width: 560px;
  margin: 0 0 48px;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 99px;
}

.project-cta {
  width: max-content;
  min-height: 44px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.project-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.project-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-wellform { color: #34172f; background: #f8d8e5; }
.media-wellform { background: #f7f3ed; }
.media-wellform img { object-fit: contain; padding: 7%; mix-blend-mode: multiply; }
.media-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font: 12px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-healthcare-billing { color: #0e2d24; background: #d9eee3; }
.media-healthcare-billing {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 80px);
  background: #edf5ef;
}
.billing-system {
  width: min(100%, 720px);
  padding: clamp(26px, 4vw, 58px);
  border: 1px solid rgba(14, 45, 36, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 18px 22px 0 rgba(14, 45, 36, 0.12);
}
.billing-system-label {
  display: block;
  color: #547268;
  font: 500 12px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.billing-system-total {
  margin: clamp(60px, 9vw, 130px) 0 36px;
  font: 300 clamp(44px, 6vw, 90px)/0.9 var(--serif);
  letter-spacing: -0.055em;
}
.billing-system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(14, 45, 36, 0.25);
  border-left: 1px solid rgba(14, 45, 36, 0.25);
}
.billing-system-grid span {
  padding: 16px;
  border-right: 1px solid rgba(14, 45, 36, 0.25);
  border-bottom: 1px solid rgba(14, 45, 36, 0.25);
  font: 500 12px/1.3 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.media-screen { padding: clamp(24px, 3.6vw, 64px) 0 clamp(24px, 3.6vw, 64px) clamp(24px, 3.6vw, 64px); }
.media-screen img {
  border: 1px solid rgba(17, 20, 17, 0.15);
  border-radius: 12px 0 0 12px;
  box-shadow: -22px 28px 50px rgba(17, 20, 17, 0.12);
  object-position: left center;
}

.project-cueset { color: #321b08; background: #ffd8ad; }
.media-cueset { display: grid; place-items: center; background: #ff5b10; }
.cueset-card {
  width: min(74%, 520px);
  padding: clamp(24px, 4vw, 58px);
  background: #fff8e9;
  box-shadow: 20px 22px 0 #1f1d18;
  rotate: -2deg;
}
.cueset-card img {
  width: 34%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 40px;
  border-radius: 24%;
}
.cueset-card div { display: grid; gap: 8px; font: 400 clamp(17px, 2vw, 28px)/1.2 var(--serif); }

.project-voclair { color: #f6f1ff; background: #172453; }
.media-voclair { background: #d9d9ee; }
.media-voclair img { object-position: left center; }
.project-voclair .project-meta { color: #b9c3e8; }

.project-adage { color: #fff9ee; background: #4c243f; }
.media-adage { background: #eee8dd; }
.media-adage img { object-fit: cover; object-position: center; }
.project-adage .project-meta { color: #dcbccc; }

.client-work {
  padding: 11vw 3vw 7vw;
  background: #dcd8f6;
  border-top: 1px solid var(--line);
}

.client-work-heading {
  margin-bottom: 7vw;
}

.client-work-heading .section-title { max-width: 1100px; }

.client-work-heading > p:last-child {
  max-width: 380px;
  margin: 0;
  color: #55546a;
  font-size: 17px;
  line-height: 1.55;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 20, 17, 0.28);
  border-bottom: 1px solid rgba(17, 20, 17, 0.28);
}

.engagement-card {
  min-height: 430px;
  padding: 30px 3vw 32px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(17, 20, 17, 0.28);
}

.engagement-card + .engagement-card { padding-left: 3vw; }
.engagement-card:last-child { border-right: 0; }

.engagement-meta,
.engagement-scope,
.client-work-foot {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.engagement-meta {
  display: flex;
  color: #55546a;
}

.engagement-card h3 {
  max-width: none;
  margin: 80px 0 18px;
  text-wrap: balance;
  font: 400 clamp(30px, 3.1vw, 48px)/0.96 var(--serif);
  letter-spacing: -0.045em;
}

.engagement-card > p {
  max-width: 380px;
  margin: 0 0 30px;
  color: #3f3f4c;
  font-size: 16px;
  line-height: 1.6;
}

.engagement-result {
  max-width: 390px;
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 20, 17, 0.28);
}

.engagement-result strong {
  font: 300 clamp(42px, 4.5vw, 72px)/0.78 var(--serif);
  letter-spacing: -0.06em;
}

.engagement-result span {
  max-width: 230px;
  color: #55546a;
  font-size: 13px;
  line-height: 1.45;
}

.engagement-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.engagement-scope span {
  padding: 6px 9px;
  border: 1px solid rgba(17, 20, 17, 0.5);
  border-radius: 99px;
}

.client-work-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: #55546a;
}

.client-work-foot a {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.approach {
  padding: 11vw 3vw;
  color: var(--paper);
  background: var(--ink);
}

.approach-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.7fr;
  gap: 4vw;
  margin-bottom: 4vw;
}

.approach-heading .section-label { color: #b6b9b0; }
.approach-heading h2 { max-width: 1000px; margin: 0; }

.approach-summary {
  max-width: 760px;
  margin: 0 0 7vw calc(0.45 / 2.15 * 100% + 4vw);
  color: #c2c4bd;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(241, 239, 232, 0.25);
}

.principle {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px 3vw 20px 0;
  border-right: 1px solid rgba(241, 239, 232, 0.25);
}

.principle + .principle { padding-left: 3vw; }
.principle:last-child { border-right: 0; }
.principle span { color: var(--acid); font: 12px var(--mono); letter-spacing: 0.1em; }
.principle h3 {
  margin: 72px 0 16px;
  font: 400 clamp(26px, 2.7vw, 34px)/1.1 var(--serif);
  letter-spacing: -0.02em;
}
.principle p {
  max-width: 340px;
  margin: 0;
  color: #d0d2cb;
  font-size: 16px;
  line-height: 1.6;
}

.founder {
  padding: 11vw 3vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.founder-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--acid);
  background: var(--cobalt);
  font: 300 clamp(90px, 14vw, 220px)/1 var(--serif);
  letter-spacing: -0.08em;
}

.founder-copy h2 { margin: 28px 0 42px; }
.founder-copy > p:not(.section-label),
.founder-bio p {
  max-width: 700px;
  margin: 0 0 38px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.52;
  letter-spacing: -0.03em;
}
.founder-bio p {
  margin-bottom: 22px;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.founder-bio p:last-child { margin-bottom: 0; }
.founder-credentials {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--line);
}
.founder-credentials li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #45483f;
  font: 500 12px/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.founder-copy a,
.contact-link {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.advisory-invitation {
  padding: clamp(70px, 8vw, 130px) 3vw;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 4vw;
  color: var(--paper);
  background: var(--cobalt);
  border-bottom: 1px solid rgba(241, 239, 232, 0.2);
}
.advisory-invitation .section-label { color: rgba(241, 239, 232, 0.66); }
.advisory-invitation h2 {
  max-width: 950px;
  margin: 0;
  font: 300 clamp(44px, 6.2vw, 96px)/0.94 var(--serif);
  letter-spacing: -0.055em;
}
.advisory-invitation div > p {
  max-width: 620px;
  margin: 38px 0;
  color: rgba(241, 239, 232, 0.76);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.advisory-invitation a {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.advisory-page { background: #ebe8ff; }
.advisory-hero {
  min-height: 94svh;
  padding: 150px 3vw 7vw;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 4vw;
  align-content: end;
  border-bottom: 1px solid var(--line);
}
.advisory-hero h1 {
  grid-column: 1 / -1;
  max-width: 1320px;
  margin: 9vw 0 5vw;
  font: 300 clamp(68px, 10vw, 158px)/0.82 var(--serif);
  letter-spacing: -0.065em;
}
.advisory-hero h1 em { color: var(--cobalt); font-weight: 300; }
.advisory-hero-copy { grid-column: 2; max-width: 750px; }
.advisory-hero-copy p {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.advisory-hero-copy p:last-child { color: #55546a; }

.advisory-useful,
.advisory-focus,
.engagement-structure,
.fit-section,
.advisory-inquiry { padding: 10vw 3vw; }
.advisory-useful {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 8vw;
  background: var(--paper);
}
.advisory-section-heading h2,
.engagement-structure h2,
.advisory-inquiry h2 {
  max-width: 850px;
  margin: 28px 0 0;
  font: 300 clamp(46px, 6vw, 92px)/0.94 var(--serif);
  letter-spacing: -0.055em;
}
.useful-list,
.fit-column ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.useful-list li,
.fit-column li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.45;
}
.useful-list li::before { content: "↳"; margin-right: 18px; color: var(--cobalt); }

.advisory-focus { color: var(--paper); background: var(--ink); }
.advisory-focus .section-label { color: #a5a89f; }
.advisory-focus .advisory-section-heading { margin-bottom: 7vw; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(241, 239, 232, 0.25); }
.focus-card { min-height: 400px; padding: 28px 3vw 36px 0; border-right: 1px solid rgba(241, 239, 232, 0.25); }
.focus-card + .focus-card { padding-left: 3vw; }
.focus-card:last-child { border-right: 0; }
.focus-card span { color: var(--acid); font: 12px var(--mono); }
.focus-card h3 { margin: 100px 0 20px; font: 400 clamp(28px, 3vw, 44px)/1 var(--serif); }
.focus-card p { max-width: 370px; margin: 0; color: #c8cac3; font-size: 16px; line-height: 1.65; }

.advisory-proof { background: #dcd8f6; }
.engagement-structure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  color: var(--paper);
  background: var(--cobalt);
}
.engagement-structure .section-label { color: rgba(241, 239, 232, 0.66); }
.engagement-structure-copy > p:last-child { max-width: 590px; margin: 36px 0 0; color: rgba(241, 239, 232, 0.75); font-size: 17px; line-height: 1.6; }
.engagement-facts { margin: 0; border-top: 1px solid rgba(241, 239, 232, 0.35); }
.engagement-facts div { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(241, 239, 232, 0.35); }
.engagement-facts dt { color: rgba(241, 239, 232, 0.78); font: 12px var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }
.engagement-facts dd { margin: 0; text-align: right; font: 400 clamp(20px, 2.1vw, 31px)/1.1 var(--serif); }
.editorial-placeholder { color: var(--acid); text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 6px; }

.fit-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--paper); }
.fit-column .section-label { margin-bottom: 34px; }
.fit-column li { display: flex; gap: 14px; font-size: 16px; }
.fit-column li::before { content: "+"; color: var(--cobalt); font-family: var(--mono); }
.fit-column + .fit-column li::before { content: "—"; color: var(--muted); }

.advisory-inquiry {
  scroll-margin-top: 76px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  background: var(--acid);
}
.advisory-inquiry-intro > p:last-child { max-width: 430px; margin: 34px 0 0; font-size: 16px; line-height: 1.6; }

.contact {
  padding: 11vw 3vw 6vw;
  background: var(--acid);
}
.contact h2 { margin: 7vw 0 3vw; font-size: clamp(64px, 10vw, 158px); }
.reach-out-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.reach-out-card {
  position: relative;
  min-height: 350px;
  padding: clamp(22px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.reach-out-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateY(101%);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reach-out-card:hover::before,
.reach-out-card:focus-visible::before { transform: translateY(0); }

.reach-out-card > * { position: relative; z-index: 1; }
.reach-kicker { font: 500 12px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.11em; }
.reach-out-card strong {
  max-width: 390px;
  margin: auto 0 14px;
  font: 300 clamp(25px, 2.7vw, 43px)/1.06 var(--serif);
  letter-spacing: -0.04em;
}
.reach-out-card p {
  max-width: 390px;
  min-height: 4.4em;
  margin: 0 0 26px;
  color: #34372f;
  font-size: 15px;
  line-height: 1.48;
}
.reach-arrow { align-self: flex-end; font-size: 22px; }

.contact-form-wrap {
  scroll-margin-top: 76px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  margin: 10vw -3vw -6vw;
  padding: 8vw 3vw;
  background: var(--paper);
  border-top: 1px solid var(--ink);
}

.contact-form-intro h3 {
  margin: 34px 0 24px;
  font: 300 clamp(48px, 6vw, 92px)/0.92 var(--serif);
  letter-spacing: -0.055em;
}

.contact-form-intro > p:last-child {
  max-width: 350px;
  color: #42463d;
  font-size: 15px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  font: 500 12px/1.2 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  font: 400 16px/1.4 var(--sans);
  outline: none;
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  border: 1px solid var(--ink);
  padding: 16px;
}

.contact-form input:focus,
.contact-form select:focus { border-bottom-width: 2px; }
.contact-form textarea:focus { outline: 2px solid var(--ink); outline-offset: -2px; }
.contact-form :where(input, select, textarea):focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.contact-form :where(input, select, textarea)[aria-invalid="true"] {
  border-color: #8a2119;
}

.form-error-summary {
  margin: 0;
  border-left: 4px solid #8a2119;
  padding: 12px 14px;
  color: #681710;
  background: rgba(138, 33, 25, .08);
  font-size: 14px;
  line-height: 1.45;
}

.form-error-summary:empty { display: none; }

.form-field-error {
  margin: -4px 0 0;
  color: #681710;
  font-size: 13px;
  line-height: 1.4;
}

.form-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.form-submit-row p {
  max-width: 390px;
  margin: 0;
  color: #42463d;
  font-size: 13px;
  line-height: 1.5;
}

.form-submit-row button {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  min-height: 48px;
  font: 500 12px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.form-submit-row button:hover { color: var(--ink); background: var(--paper); }

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background: var(--acid);
}

.thanks-card { max-width: 900px; text-align: center; }
.thanks-card .wordmark { display: inline-block; margin-bottom: 14vh; }
.thanks-card h1 {
  margin: 0 0 34px;
  font: 300 clamp(68px, 11vw, 160px)/0.82 var(--serif);
  letter-spacing: -0.065em;
}
.thanks-card p { margin: 0 0 38px; font-size: clamp(17px, 1.7vw, 24px); }
.thanks-card > a:last-child {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
}

footer {
  padding: 38px 3vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}
footer p,
footer > span { margin: 0; color: #b8bbb2; font: 12px var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
footer > span a { color: inherit; text-underline-offset: 4px; }

.legal-header { grid-template-columns: 1fr auto; }

.privacy-main {
  padding: clamp(150px, 18vw, 250px) 3vw 10vw;
  background: var(--paper);
}

.privacy-hero {
  max-width: 1050px;
  padding-bottom: clamp(70px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  margin: 20px 0 36px;
  font: 300 clamp(76px, 12vw, 180px)/0.82 var(--serif);
  letter-spacing: -0.07em;
}

.privacy-hero > p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.privacy-content {
  width: min(100%, 820px);
  margin: 0 0 0 auto;
}

.privacy-content section {
  padding: clamp(42px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0 0 24px;
  font: 400 clamp(30px, 3vw, 44px)/1 var(--serif);
  letter-spacing: -0.04em;
}

.privacy-content p {
  margin: 0 0 18px;
  color: #40433e;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content a { color: var(--ink); text-underline-offset: 4px; }
footer > span { justify-self: end; }
footer .wordmark span { color: var(--acid); }

/* No-JS / default state is fully visible; the fade only applies when
   site.js adds .reveal-armed, so content never depends on script. */
.reveal-armed .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal-armed .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-armed .reveal-delay-1 { transition-delay: 90ms; }
.reveal-armed .reveal-delay-2 { transition-delay: 180ms; }
.reveal-armed .reveal-delay-3 { transition-delay: 270ms; }

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 18px; height: 66px; padding: 0 20px; }
  .site-header nav { display: none; }
  .header-cta { display: inline-flex; }
  .menu-toggle {
    min-width: 48px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: var(--paper);
    font: 600 12px/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
  }
  .site-header.menu-open {
    background: var(--paper);
    border-color: var(--line);
  }
  .site-header.menu-open nav {
    position: fixed;
    z-index: 0;
    inset: 66px 0 auto;
    min-height: calc(100svh - 66px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 20px 40px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .site-header > :not(nav) { position: relative; z-index: 1; }
  .site-header.menu-open nav a {
    min-height: 64px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font: 400 clamp(28px, 8vw, 48px)/1 var(--serif);
  }
  .site-header.menu-open .mobile-nav-cta {
    margin-top: auto;
    display: inline-flex;
    color: var(--cobalt);
  }

  .hero { grid-template-columns: 1fr; padding: 120px 20px 28px; }
  .hero::before { width: 80vw; height: 80vw; right: -36vw; top: -36vw; }
  .hero h1 { font-size: clamp(64px, 16.5vw, 120px); }
  .hero-intro { max-width: 315px; margin-top: 36px; }
  .hero-foot { margin-top: 32px; }

  .projects { padding: 110px 20px 20px; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 80px; }
  .project,
  .project:nth-of-type(odd) { height: auto; grid-template-columns: 1fr; min-height: auto; margin-bottom: 20px; }
  .project:nth-of-type(odd) .project-copy { order: 0; }
  .project-copy { min-height: 440px; padding: 30px 24px; }
  .project h3 { margin-top: auto; }
  .project-media { min-height: 390px; }
  .media-screen { padding: 28px 0 28px 28px; }
  .media-voclair { min-height: 360px; }

  .client-work { padding: 100px 20px 70px; }
  .client-work-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 70px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card,
  .engagement-card + .engagement-card {
    min-height: 360px;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 17, 0.28);
  }
  .engagement-card:last-child { border-bottom: 0; }
  .engagement-card h3 { margin-top: 56px; }
  .client-work-foot { align-items: flex-start; flex-direction: column; gap: 28px; }

  .approach { padding: 100px 20px; }
  .approach-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 80px; }
  .approach-summary { margin-left: 0; }
  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle + .principle { min-height: auto; padding: 28px 0 36px; border-right: 0; border-bottom: 1px solid rgba(241,239,232,.25); }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 50px; }

  .founder { grid-template-columns: 1fr; padding: 100px 20px; }
  .founder-mark { width: min(80vw, 520px); }
  .advisory-invitation { grid-template-columns: 1fr; gap: 34px; padding: 90px 20px; }
  .advisory-hero { min-height: auto; grid-template-columns: 1fr; padding: 130px 20px 90px; }
  .advisory-hero h1 { margin: 100px 0 60px; }
  .advisory-hero-copy { grid-column: 1; }
  .advisory-useful,
  .engagement-structure,
  .fit-section,
  .advisory-inquiry { grid-template-columns: 1fr; gap: 70px; padding: 100px 20px; }
  .advisory-focus { padding: 100px 20px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card,
  .focus-card + .focus-card { min-height: auto; padding: 28px 0 42px; border-right: 0; border-bottom: 1px solid rgba(241, 239, 232, 0.25); }
  .focus-card:last-child { border-bottom: 0; }
  .focus-card h3 { margin-top: 56px; }
  .contact { padding: 100px 20px 70px; }
  .reach-out-list { grid-template-columns: 1fr; }
  .reach-out-card { min-height: 310px; }
  .reach-out-card p { min-height: 0; }
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 70px;
    margin: 100px -20px -70px;
    padding: 100px 20px 70px;
  }
  footer { grid-template-columns: 1fr auto; padding: 30px 20px; }
  footer p { display: none; }

  .privacy-main { padding: 130px 20px 80px; }
  .privacy-content { margin-left: 0; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header .header-cta { display: none; }
  .hero h1 { font-size: 18vw; }
  .project-copy { min-height: 390px; }
  .project h3 { font-size: 18vw; }
  .project-copy > p { margin-bottom: 34px; }
  .project-media { min-height: 310px; }
  .cueset-card { width: 78%; box-shadow: 12px 14px 0 #1f1d18; }
  .founder-copy > p:not(.section-label),
  .founder-bio p { font-size: 18px; }
  .advisory-hero h1 { font-size: 18vw; }
  .engagement-facts div { grid-template-columns: 1fr; }
  .engagement-facts dd { text-align: left; }
  .contact h2 { font-size: 18vw; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row button { width: 100%; }
}

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