@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;650&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap");

:root {
  --bg: #f4ede1;
  --bg-soft: #ebe2d4;
  --sage-band:
    linear-gradient(135deg, rgba(150, 166, 141, 0.24), rgba(150, 166, 141, 0.12)),
    rgba(241, 235, 224, 0.98);
  --sage-band-soft:
    linear-gradient(135deg, rgba(150, 166, 141, 0.18), rgba(150, 166, 141, 0.09)),
    rgba(243, 236, 226, 0.96);
  --sage-band-line: rgba(118, 134, 110, 0.18);
  --panel: rgba(233, 229, 218, 0.78);
  --panel-soft: rgba(246, 241, 233, 0.62);
  --forest: #203629;
  --forest-soft: rgba(32, 54, 41, 0.10);
  --forest-soft-strong: rgba(32, 54, 41, 0.14);
  --forest-line: rgba(32, 54, 41, 0.18);
  --clay-dot: #9a725e;
  --text: #1f211d;
  --muted: #65685f;
  --line: #d6cbbb;
  --accent: #526252;
  --accent-soft: #7d8a77;
  --clay: #8b6959;
  --max-width: 1120px;
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(82, 98, 82, 0.08), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(82, 98, 82, 0.06), transparent 26%),
    linear-gradient(180deg, #f6efe4 0%, #f4ede1 52%, #f1e8db 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(82, 98, 82, 0.16);
}

.site-shell {
  min-height: 100vh;
}

.wrap {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 22px;
  background: rgba(244, 237, 225, 0.9);
  backdrop-filter: blur(10px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(214, 203, 187, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  width: 48px;
  height: 2px;
  background: var(--forest);
  opacity: 0.84;
}

.brand-name {
  font-size: 0.87rem;
  font-weight: 560;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 430;
  letter-spacing: 0;
}

.site-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(214, 203, 187, 0.9);
}

.sage-band-row {
  background: var(--sage-band);
  box-shadow:
    inset 0 1px 0 rgba(118, 134, 110, 0.14),
    inset 0 -1px 0 rgba(118, 134, 110, 0.12);
}

.sage-band-row-soft {
  background: var(--sage-band-soft);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero {
  padding: 68px 0 44px;
}

.home-hero-frame {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 36px;
  align-items: center;
  max-width: 1140px;
  min-height: clamp(720px, 84vh, 860px);
  padding: 42px 0 48px;
}

.home-hero-note {
  max-width: 15rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.home-hero-note p {
  margin: 0;
}

.home-hero-note p + p {
  margin-top: 18px;
}

.home-hero-copy h1,
.home-contact-grid h2,
.page-copy h1,
.team-hero-copy h1,
.contact-copy h1 {
  margin: 0;
  line-height: 1.02;
  color: #232521;
}

.home-hero-copy h1 {
  max-width: 12.9ch;
  font-family: var(--font-sans);
  font-size: clamp(2.95rem, 5.6vw, 4.95rem);
  font-weight: 585;
  letter-spacing: -0.032em;
  line-height: 0.985;
  text-wrap: balance;
}

.home-lead {
  max-width: 32rem;
  margin: 30px 0 0;
  color: #30332e;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.48;
}

.home-hero-copy {
  max-width: 38rem;
  padding-left: 34px;
}

.home-hero-path {
  justify-self: start;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: clamp(480px, 34vw, 660px);
  padding-left: 0;
  overflow: hidden;
  transform: translateX(-8px);
}

.home-hero-path img {
  display: block;
  width: 100%;
  max-width: none;
  opacity: 0.96;
  clip-path: inset(42px 0 0 0);
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(1);
}

.home-section {
  padding: 72px 0;
}

.home-thesis {
  padding-top: 26px;
  padding-bottom: 42px;
}

.home-thesis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: 34px 52px;
  align-items: start;
}

.section-rail {
  padding-top: 0;
}

.section-rail .section-label {
  position: relative;
  z-index: 1;
}

.section-rail-line {
  position: relative;
  width: 100%;
  height: 184px;
  margin-top: 28px;
  border-left: 1px solid var(--forest-line);
}

.sage-band-row .section-rail-line {
  height: 188px;
  border-left-color: rgba(82, 98, 82, 0.24);
}

.section-rail-line::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay-dot);
}

.home-thesis-band {
  position: relative;
  width: 100%;
  padding: 82px 0 86px;
  overflow: hidden;
}

.home-section-copy {
  max-width: 760px;
  margin-left: 0;
  padding: 6px 0 0;
  background: transparent;
  border: 0;
}

.home-section-copy h2,
.home-contact-grid h2 {
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 1.03;
}

.home-section-copy p,
.home-contact-copy p,
.page-copy p,
.page-copy li {
  max-width: 40rem;
  margin: 20px 0 0;
  color: rgba(31, 33, 29, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.home-contact-copy a,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.contact-main {
  padding-top: 92px;
  padding-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: 36px 52px;
  align-items: start;
}

.contact-rail .section-rail-line {
  height: 150px;
  margin-top: 24px;
}

.contact-copy {
  max-width: 46rem;
  padding-top: 2px;
}

.contact-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-copy h1 {
  max-width: 15ch;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.036em;
  line-height: 1.05;
  text-wrap: balance;
}

.contact-copy p {
  max-width: 30rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-email-button {
  display: grid;
  gap: 10px;
  max-width: min(100%, 25rem);
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(118, 134, 110, 0.2);
  background: linear-gradient(135deg, rgba(150, 166, 141, 0.12), rgba(150, 166, 141, 0.05));
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-email-button:hover,
.contact-email-button:focus-visible {
  border-color: rgba(82, 98, 82, 0.34);
  background: linear-gradient(135deg, rgba(150, 166, 141, 0.16), rgba(150, 166, 141, 0.07));
  transform: translateY(-1px);
}

.contact-email-button:focus-visible {
  outline: 1px solid rgba(82, 98, 82, 0.42);
  outline-offset: 4px;
}

.contact-email-button span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-email-button strong {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 520;
  letter-spacing: -0.014em;
  line-height: 1.38;
  color: var(--text);
  overflow-wrap: anywhere;
}

.home-questions {
  padding-top: 42px;
  padding-bottom: 38px;
}

.home-questions-grid {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: 34px 52px;
  align-items: start;
}

.home-questions-copy {
  max-width: 720px;
}

.home-questions-intro {
  max-width: 31rem;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.home-question-stair {
  display: grid;
  gap: 18px;
  padding-top: 16px;
}

.question-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: min(100%, 33rem);
  min-height: 68px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(214, 203, 187, 0.74);
  background: transparent;
}

.question-step span {
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.question-step p {
  margin: 0;
  max-width: 28rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.question-step:nth-child(2) {
  margin-left: 24px;
}

.question-step:nth-child(3) {
  margin-left: 48px;
}

.question-step:nth-child(4) {
  margin-left: 72px;
}

.question-step:nth-child(5) {
  margin-left: 96px;
}

.question-step-cta {
  margin-left: 120px;
  color: var(--accent);
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(228, 235, 225, 0.22);
  text-decoration: none;
}

.home-insights {
  padding-top: 38px;
  padding-bottom: 72px;
}

.home-insights-band {
  width: 100%;
  padding: 70px 0 74px;
}

.home-insights-grid {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px 52px;
  align-items: start;
  padding-top: 8px;
}

.home-insights-rail .section-rail-line {
  height: 156px;
}

.home-insights-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.05;
}

.home-insights-copy p {
  max-width: 36rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.home-insights-visual {
  align-self: center;
  justify-self: end;
  width: clamp(440px, 36vw, 660px);
  margin-top: 18px;
  transform: translateX(54px);
  pointer-events: none;
}

.home-insights-visual img {
  display: block;
  width: 100%;
  max-width: none;
  opacity: 0.96;
  mix-blend-mode: multiply;
  filter: contrast(1.18) saturate(0.92);
}

.home-insight-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 64px;
  margin-top: 30px;
}

.home-insight-tile {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 168px;
  padding: 18px 16px 20px 0;
  border: 1px solid rgba(32, 54, 41, 0.12);
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.home-insight-tile:nth-child(2) {
  transform: translateY(18px);
}

.home-insight-tile span {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-insight-tile small {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 203, 187, 0.7);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-row p {
  margin: 0;
}

.page-main {
  padding: 76px 0 92px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 720px);
  gap: 28px 48px;
}

.page-copy {
  padding-top: 2px;
}

.page-copy h1 {
  max-width: 14ch;
  font-family: var(--font-sans);
  font-size: clamp(2.35rem, 4.7vw, 4.2rem);
  font-weight: 585;
  letter-spacing: -0.032em;
  line-height: 0.99;
  text-wrap: balance;
}

.page-intro {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.92rem;
}

.page-copy section + section {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-copy h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.page-copy ul {
  padding-left: 18px;
}

.detail-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1.08rem;
}

.team-main {
  padding-top: 92px;
}

.team-hero-grid,
.team-section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 0.94fr);
  gap: 36px 52px;
}

.team-hero {
  padding-top: 8px;
  padding-bottom: 72px;
}

.team-hero .team-hero-grid {
  grid-template-columns: minmax(150px, 210px) minmax(0, 0.92fr) minmax(220px, 0.52fr);
  align-items: center;
}

.team-hero-copy h1 {
  max-width: 10.2ch;
  font-family: var(--font-sans);
  font-size: clamp(2.7rem, 4.7vw, 4.35rem);
  font-weight: 585;
  letter-spacing: -0.032em;
  line-height: 0.99;
  text-wrap: balance;
}

.team-hero-copy .page-intro {
  max-width: 39rem;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.74;
}

.team-hero-line {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: 0.92rem;
  line-height: 1.6;
}

.team-hero-art {
  justify-self: start;
  width: clamp(320px, 26vw, 460px);
  pointer-events: none;
}

.team-hero-art img {
  display: block;
  width: 100%;
  max-width: none;
  opacity: 0.62;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(0.72) brightness(1.02);
}

.team-section {
  padding-top: 74px;
  padding-bottom: 76px;
}

.team-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.team-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 36px;
  max-width: 980px;
  padding-top: 12px;
}

.team-profile-head h2,
.advisor-item h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.team-lens {
  margin: 10px 0 0;
  max-width: 18rem;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.55;
}

.team-profile-card {
  position: relative;
  min-height: 488px;
  perspective: 1200px;
  outline: none;
}

.team-profile-card:focus-visible {
  outline: 1px solid rgba(82, 98, 82, 0.6);
  outline-offset: 6px;
}

.team-profile-image {
  margin: 0 0 18px;
  aspect-ratio: 0.84;
  overflow: hidden;
  border: 1px solid rgba(214, 203, 187, 0.54);
}

.team-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
}

.team-profile-flip {
  position: relative;
  width: 100%;
  min-height: 488px;
  transform-style: preserve-3d;
  transition: transform 320ms ease;
}

.team-profile-card:hover .team-profile-flip,
.team-profile-card:focus-visible .team-profile-flip {
  transform: rotateY(180deg);
}

.team-profile-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.team-profile-front {
  display: block;
  height: 100%;
}

.team-profile-back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 18px 20px;
  border: 1px solid rgba(214, 203, 187, 0.52);
  background: rgba(244, 237, 225, 0.92);
  transform: rotateY(180deg);
}

.team-profile-back h2 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.24;
}

.team-bio,
.advisor-item p,
.team-advisor-intro,
.team-closing p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.team-advisors {
  padding-top: 20px;
  padding-bottom: 30px;
}

.team-advisor-copy {
  max-width: 760px;
}

.team-advisor-copy h2 {
  margin: 0;
  max-width: 20rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.08;
}

.team-advisor-intro {
  max-width: 36rem;
  margin: 14px 0 18px;
}

.advisor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  padding-top: 10px;
}

.advisor-item {
  padding: 12px 0 0;
  border-top: 1px solid rgba(214, 203, 187, 0.72);
}

.advisor-item h2 {
  font-size: 1rem;
  font-weight: 540;
}

.advisor-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.62;
}

.team-closing {
  padding-top: 18px;
  padding-bottom: 10px;
}

.team-closing p {
  max-width: 30rem;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 203, 187, 0.72);
  font-size: 0.95rem;
  line-height: 1.68;
}

.work-main {
  padding-top: 96px;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: 36px 52px;
}

.work-hero {
  position: relative;
  padding-top: 12px;
  padding-bottom: 72px;
}

.work-hero .work-grid {
  grid-template-columns: minmax(150px, 210px) minmax(0, 0.98fr) minmax(240px, 0.52fr);
  align-items: center;
}

.work-copy h1,
.work-copy h2 {
  margin: 0;
}

.work-copy h1 {
  max-width: 11.4ch;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.2vw, 4.75rem);
  font-weight: 585;
  letter-spacing: -0.032em;
  line-height: 0.98;
}

.work-copy .page-intro {
  max-width: 42rem;
  margin-top: 28px;
  line-height: 1.74;
}

.work-kicker {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: 0.96rem;
  line-height: 1.6;
}

.work-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.work-method-band,
.work-moments-band {
}

.work-method-band .section-rail-line,
.work-moments-band .section-rail-line {
  height: 188px;
}

.work-section {
  padding-top: 82px;
  padding-bottom: 86px;
}

.work-copy h2 {
  max-width: 16ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.036em;
  line-height: 1.04;
}

.work-copy > p {
  max-width: 43rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.work-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 46px;
  margin-top: 40px;
}

.work-method-block {
  padding-top: 20px;
  border-top: 1px solid rgba(32, 54, 41, 0.16);
}

.work-method-block:last-child {
  grid-column: span 2;
  max-width: 28rem;
}

.work-step-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-method-block h3,
.work-moment h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: 1.28;
}

.work-method-block p,
.work-moment p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.68;
}

.work-output {
  padding-top: 72px;
  padding-bottom: 78px;
}

.work-output-field {
  position: relative;
  max-width: 760px;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
}

.work-output-field::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 0;
  width: 1px;
  height: 116px;
  background: var(--forest-line);
}

.work-output-field::after {
  content: "";
  position: absolute;
  left: -29px;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay-dot);
}

.work-output-field h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.work-output-field p {
  max-width: 34rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.work-moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px;
  margin-top: 34px;
}

.work-moment {
  padding-top: 18px;
  border-top: 1px solid rgba(32, 54, 41, 0.16);
}

.work-cta {
  padding-top: 82px;
  padding-bottom: 28px;
}

.work-cta-copy {
  max-width: 36rem;
}

.work-cta-copy p {
  max-width: 32rem;
}

.insight-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.insight-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.insight-status {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-item h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 920px) {
  .header-row,
  .home-hero-frame,
  .home-thesis-grid,
  .home-questions-grid,
  .home-insights-grid,
  .team-hero-grid,
  .team-section-grid,
  .work-grid,
  .page-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .header-row,
  .footer-row {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero-frame {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .home-hero-copy {
    padding-left: 0;
  }

  .home-hero-path img {
    width: min(100%, 320px);
    max-width: 100%;
  }

  .home-thesis-band {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .section-rail-line {
    height: 122px;
  }

  .home-insights-band {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .home-insights-grid {
    grid-template-columns: 1fr;
  }

  .home-insights-visual {
    display: none;
  }

  .home-insights-rail .section-rail-line {
    height: 110px;
  }

  .home-section-copy {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .work-band {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .work-hero .work-grid {
    grid-template-columns: 1fr;
  }

  .work-section {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .work-output-field::before,
  .work-output-field::after {
    display: none;
  }

  .team-profile-grid,
  .work-method-grid,
  .work-moment-grid,
  .advisor-list {
    grid-template-columns: 1fr;
  }

  .team-hero .team-hero-grid {
    grid-template-columns: 1fr;
  }

  .team-hero {
    padding-top: 0;
    padding-bottom: 54px;
  }

  .team-hero-art {
    width: min(100%, 220px);
    margin-top: 14px;
  }

  .team-hero-art img {
    opacity: 0.1;
  }

  .team-band {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .work-method-block:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .home-hero-note {
    max-width: 28rem;
  }

  .home-hero-path {
    justify-content: flex-start;
    padding-left: 0;
    overflow: visible;
    transform: none;
  }

  .home-hero-path img {
    width: min(100%, 260px);
    max-width: 100%;
    opacity: 0.52;
    clip-path: inset(20px 0 0 0);
  }

  .question-step,
  .question-step:nth-child(2),
  .question-step:nth-child(3),
  .question-step:nth-child(4),
  .question-step:nth-child(5),
  .question-step-cta {
    width: 100%;
    margin-left: 0;
  }

  .home-insight-links {
    grid-template-columns: 1fr;
  }

  .home-insight-tile:nth-child(2) {
    transform: none;
  }

  .home-section,
  .page-main {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-rail .section-rail-line {
    height: 88px;
    margin-top: 18px;
  }

  .contact-copy {
    max-width: none;
  }

  .contact-copy h1 {
    max-width: 18ch;
  }

  .contact-card {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-header {
    padding-top: 16px;
  }

  .header-row {
    gap: 12px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
  }

  .brand-name {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .site-nav {
    gap: 8px 16px;
    font-size: 0.76rem;
  }

  .home-hero {
    padding: 34px 0 24px;
  }

  .home-hero-frame {
    gap: 22px;
    padding: 18px 0 12px;
  }

  .home-hero-copy {
    order: 1;
    max-width: none;
  }

  .home-hero-note {
    order: 2;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .home-hero-note p + p {
    margin-top: 10px;
  }

  .home-hero-path {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .home-hero-path img {
    display: none;
  }

  .home-hero-copy h1 {
    max-width: 10.6ch;
    font-size: clamp(2.5rem, 13vw, 3.7rem);
    line-height: 0.97;
    letter-spacing: -0.038em;
  }

  .home-lead {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.56;
  }

  .home-section,
  .page-main {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .home-thesis {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .home-thesis-band,
  .home-insights-band,
  .work-section,
  .team-section {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .section-rail-line,
  .sage-band-row .section-rail-line,
  .home-insights-rail .section-rail-line,
  .work-method-band .section-rail-line,
  .work-moments-band .section-rail-line {
    height: 74px;
    margin-top: 18px;
  }

  .home-section-copy h2,
  .home-contact-grid h2,
  .work-copy h2,
  .work-output-field h2,
  .team-advisor-copy h2 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    line-height: 1.06;
  }

  .home-section-copy p,
  .home-insights-copy p,
  .page-copy p,
  .work-copy > p,
  .contact-copy p,
  .team-bio,
  .advisor-item p,
  .team-advisor-intro,
  .team-closing p,
  .work-output-field p,
  .work-method-block p,
  .work-moment p {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .home-questions {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .home-questions-intro {
    margin-bottom: 22px;
  }

  .question-step,
  .question-step:nth-child(2),
  .question-step:nth-child(3),
  .question-step:nth-child(4),
  .question-step:nth-child(5),
  .question-step-cta {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding-top: 14px;
  }

  .question-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .question-step p {
    font-size: 1rem;
    line-height: 1.38;
  }

  .home-insight-links {
    gap: 18px;
    margin-top: 24px;
  }

  .home-insight-tile {
    min-height: auto;
    padding: 16px 0 18px;
  }

  .page-copy h1,
  .team-hero-copy h1,
  .work-copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 11vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.038em;
  }

  .page-grid,
  .contact-grid,
  .work-grid,
  .team-hero-grid,
  .team-section-grid {
    gap: 20px;
  }

  .work-main,
  .team-main,
  .contact-main {
    padding-top: 56px;
  }

  .contact-main {
    padding-bottom: 56px;
  }

  .work-hero {
    padding-top: 2px;
    padding-bottom: 38px;
  }

  .work-copy .page-intro,
  .team-hero-copy .page-intro {
    margin-top: 18px;
    line-height: 1.66;
  }

  .work-kicker,
  .team-hero-line {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .work-method-grid,
  .work-moment-grid,
  .advisor-list,
  .team-profile-grid {
    gap: 22px;
    margin-top: 24px;
  }

  .work-output {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .work-output-field {
    padding-top: 0;
  }

  .team-hero {
    padding-bottom: 40px;
  }

  .team-hero-art {
    display: none;
  }

  .team-profile-image {
    margin-bottom: 14px;
    aspect-ratio: 0.9;
  }

  .team-profile-head h2,
  .advisor-item h2,
  .work-method-block h3,
  .work-moment h3 {
    font-size: 1rem;
  }

  .team-advisors {
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .team-closing {
    padding-top: 8px;
  }

  .team-closing p {
    max-width: none;
  }

  .contact-email-button {
    max-width: none;
    margin-top: 24px;
    padding: 17px 18px;
  }

  .footer-row {
    gap: 10px;
  }

  .team-profile-card {
    min-height: auto;
    perspective: none;
  }

  .team-profile-flip {
    min-height: auto;
    transform: none !important;
  }

  .team-profile-face {
    position: static;
    backface-visibility: visible;
  }

  .team-profile-back {
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
  }

  .team-profile-back h2 {
    display: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-nav {
    gap: 8px 14px;
    font-size: 0.74rem;
  }

  .home-hero {
    padding-top: 28px;
  }

  .home-hero-copy h1 {
    max-width: 9.9ch;
    font-size: clamp(2.25rem, 12.4vw, 3.25rem);
    letter-spacing: -0.042em;
  }

  .home-lead,
  .page-copy p,
  .contact-copy p,
  .work-copy > p,
  .team-hero-copy .page-intro {
    font-size: 0.96rem;
  }

  .section-rail-line,
  .sage-band-row .section-rail-line,
  .home-insights-rail .section-rail-line,
  .work-method-band .section-rail-line,
  .work-moments-band .section-rail-line {
    height: 58px;
    margin-top: 16px;
  }

  .page-copy h1,
  .team-hero-copy h1,
  .work-copy h1 {
    font-size: clamp(1.95rem, 11.4vw, 3rem);
  }

  .home-section-copy h2,
  .home-contact-grid h2,
  .work-copy h2,
  .work-output-field h2,
  .team-advisor-copy h2 {
    font-size: clamp(1.48rem, 7.4vw, 2rem);
  }

  .insight-item h3 {
    font-size: 1.18rem;
    line-height: 1.28;
  }

  .contact-email-button strong {
    font-size: 1rem;
  }

  .contact-copy h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.38rem);
    line-height: 1.08;
  }

  .contact-kicker {
    font-size: 0.88rem;
  }
}
