:root {
  --paper: #efeeeb;
  --ink: #0b0c10;
  --muted: #6f706f;
  --accent: #ffc107;
  --rule: rgba(11, 12, 16, 0.72);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", "Yu Mincho", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --gutter: clamp(20px, 2.4vw, 34px);
  --header-h: 62px;
}

/* Four-slide home — the complete story stays on one page. */
.site-slide {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.slide-number {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-h) + 18px);
  right: var(--gutter);
  margin: 0;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
}

.hero.site-slide { min-height: 100svh; }

.slide-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.slide-heading .section-kicker { align-self: start; }
.slide-heading h2 {
  grid-column: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 9vw, 136px);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.075em;
}
.slide-heading > p:last-child {
  grid-column: 2;
  margin: 12px 0 0;
  font-size: 12px;
}

.strength-section {
  min-height: 100svh;
  padding: 18svh var(--gutter) 8svh;
  background: rgba(239, 238, 235, .93);
}

.strength-photo-word {
  position: absolute;
  z-index: 0;
  top: 5%;
  right: -3vw;
  margin: 0;
  background: url("/assets/gimmicks/field-notes/clinic-exterior.webp") center 50% / cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: grayscale(1) contrast(1.18);
  font-family: var(--display);
  font-size: clamp(170px, 27vw, 390px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.09em;
  opacity: .18;
  pointer-events: none;
  white-space: nowrap;
}

.strength-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 9svh;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.strength-card {
  min-height: 34svh;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(239, 238, 235, .82);
}
.strength-card .feature-index {
  margin: 0 0 auto;
  font-size: clamp(36px, 4vw, 62px);
}
.strength-card h3 {
  margin: 24px 0 5px;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}
.strength-card strong { font-size: 13px; }
.strength-card > p:last-child { margin: 18px 0 0; font-size: 12px; line-height: 1.85; }

.services-section {
  min-height: 100svh;
  padding: 17svh var(--gutter) 8svh;
  background: rgba(239, 238, 235, .86);
}
.consulting-heading h2 { font-size: clamp(54px, 7vw, 106px); }
.consulting-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 24px;
  margin-top: 6svh;
}
.consulting-summary { padding-right: clamp(20px, 5vw, 72px); }
.consulting-lead {
  margin: 0 0 30px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.5;
}
.consulting-summary ul { margin: 0; padding: 0; border-top: 1px solid var(--rule); list-style: none; }
.consulting-summary li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
}
.consulting-summary li span { font-family: var(--display); }

.consulting-offer {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  padding: 22px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.consulting-offer .meta-label { grid-column: 1 / -1; }
.consulting-price { margin: 0; }
.consulting-price strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 106px);
  font-weight: 400;
  line-height: .75;
  letter-spacing: -.07em;
}
.consulting-price span { display: block; margin-top: 14px; font-size: 11px; }
.consulting-offer > p:nth-of-type(3) { margin: 0; font-size: 12px; line-height: 1.8; }
.consulting-cta {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-items: center;
  margin-top: 8px;
  padding: 18px 20px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.consulting-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 320ms cubic-bezier(.2,.75,.25,1);
}
.consulting-cta:hover::before,
.consulting-cta:focus-visible::before { transform: translateX(0); }
.consulting-cta > * { position: relative; z-index: 1; }
.consulting-cta span { font-size: clamp(19px, 2vw, 29px); }
.consulting-cta small { grid-column: 1; font-size: 10px; }
.consulting-cta i { grid-column: 2; grid-row: 1 / 3; font-size: 28px; font-style: normal; }
.consulting-cta:hover,
.consulting-cta:focus-visible { color: var(--ink); }

.member-section.site-slide {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 15svh var(--gutter) 0;
  background: var(--ink);
  color: var(--paper);
}
.profile-results-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 24px;
  min-height: 0;
}
.profile-results-portrait {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  border-top: 1px solid rgba(239,238,235,.5);
}
.profile-results-portrait img {
  width: 100%;
  height: 100%;
  max-height: 58svh;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07);
}
.profile-results-portrait figcaption { padding: 12px 0; font-size: 12px; line-height: 1.45; }
.profile-results-portrait figcaption span { color: #b5b5b1; font-size: 10px; }
.profile-results-copy { padding: 0 0 4svh clamp(20px, 4vw, 64px); }
.profile-results-copy h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 98px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.06em;
}
.profile-intro { max-width: 720px; margin: 0 0 4svh; font-size: 13px; line-height: 1.85; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(239,238,235,.5);
  border-left: 1px solid rgba(239,238,235,.5);
}
.result-grid article {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 10px;
  border-right: 1px solid rgba(239,238,235,.5);
  border-bottom: 1px solid rgba(239,238,235,.5);
}
.result-grid strong {
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 54px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.result-grid strong small { font-family: var(--sans); font-size: 9px; letter-spacing: 0; }
.result-grid span { font-size: 9px; line-height: 1.55; }
.credentials { margin: 18px 0 0; color: #b5b5b1; font-size: 10px; }
.slide-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  min-height: 72px;
  border-top: 1px solid rgba(239,238,235,.5);
  font-size: 10px;
}
.slide-footer a { width: max-content; font-size: 13px; }
.slide-footer a:hover { color: var(--accent); }
.slide-footer p { margin: 0; }

@media (max-width: 900px) {
  .slide-heading { grid-template-columns: 30% 70%; }
  .strength-grid { grid-template-columns: 1fr; margin-top: 5svh; }
  .strength-card { min-height: auto; display: grid; grid-template-columns: 56px 1fr; gap: 6px 18px; }
  .strength-card .feature-index { grid-row: 1 / 4; margin: 0; }
  .strength-card h3 { margin: 0; }
  .strength-card > p:last-child { margin-top: 7px; }
  .consulting-layout,
  .profile-results-layout { grid-template-columns: 1fr; }
  .consulting-summary { padding-right: 0; }
  .member-section.site-slide { padding-top: 12svh; }
  .profile-results-portrait { grid-template-columns: minmax(0, .7fr) .3fr; grid-template-rows: minmax(240px, 34svh); }
  .profile-results-portrait img { max-height: none; }
  .profile-results-portrait figcaption { align-self: end; padding: 12px 16px; }
  .profile-results-copy { padding: 4svh 0; }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { grid-template-columns: repeat(4, auto); gap: 9px; font-size: 9px; }
  .brand-mark { display: none; }
  .slide-number { top: calc(var(--header-h) + 8px); font-size: 9px; }
  .hero.site-slide { min-height: 100svh; }
  .hero-copy { top: 39%; right: var(--gutter); width: calc(100% - var(--gutter) * 2); }
  .hero > .jst-clock { top: 67%; }
  .hero-ledger { bottom: 8svh; grid-template-columns: 1fr; }
  .hero-ledger dl { margin-top: 14px; }
  .slide-heading { display: block; padding-bottom: 16px; }
  .slide-heading h2 { font-size: clamp(62px, 20vw, 92px); }
  .slide-heading > p:last-child { margin-top: 10px; }
  .strength-section { min-height: 100svh; padding-top: 15svh; }
  .strength-photo-word { top: 10%; font-size: 44vw; }
  .strength-card { padding: 12px; }
  .strength-card h3 { font-size: 25px; }
  .strength-card > p:last-child { font-size: 10px; line-height: 1.65; }
  .services-section { min-height: 100svh; padding-top: 14svh; }
  .consulting-layout { margin-top: 3svh; }
  .consulting-lead { margin-bottom: 14px; font-size: 17px; }
  .consulting-summary li { padding: 7px 0; }
  .consulting-offer { gap: 10px 18px; padding: 14px; }
  .consulting-price strong { font-size: 52px; }
  .consulting-offer > p:nth-of-type(3) { font-size: 10px; }
  .consulting-cta { padding: 12px 14px; }
  .member-section.site-slide { min-height: 100svh; padding-top: 12svh; }
  .profile-results-portrait { grid-template-columns: 66% 34%; grid-template-rows: 25svh; }
  .profile-results-copy { padding: 2.5svh 0; }
  .profile-results-copy h2 { margin-bottom: 12px; font-size: 49px; }
  .profile-intro { margin-bottom: 2.5svh; font-size: 10px; line-height: 1.65; }
  .result-grid article { min-height: 96px; padding: 9px 6px; }
  .result-grid strong { font-size: 25px; }
  .result-grid span { font-size: 7px; }
  .credentials { margin-top: 10px; font-size: 8px; }
  .slide-footer { grid-template-columns: 1fr auto; gap: 10px; min-height: 54px; }
  .slide-footer time { display: none; }
  .slide-footer a { font-size: 10px; }
  .slide-footer p { font-size: 8px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-140%);
}

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

#shape-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

main, .contact-section { position: relative; z-index: 1; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 42%) 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gutter);
  color: var(--ink);
  mix-blend-mode: normal;
  transition: color 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto var(--gutter) 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.92);
  transition: opacity 240ms ease, transform 240ms ease;
}

.site-header.is-compact::after { opacity: .18; transform: scaleX(1); }
.site-header[data-theme="dark"] { color: var(--paper); }

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
  white-space: nowrap;
}

.brand-jp { font-size: 12px; font-weight: 650; letter-spacing: .06em; }
.brand-mark {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.05em;
}

.primary-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.primary-nav a {
  position: relative;
  width: max-content;
  min-height: 30px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.primary-nav a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%) scale(0);
  transition: transform 220ms ease;
}

.primary-nav a:hover::before,
.primary-nav a:focus-visible::before,
.primary-nav a[aria-current="true"]::before { transform: translateY(-50%) scale(1); }

.primary-nav a span {
  display: inline-block;
  transition: transform 260ms cubic-bezier(.2,.75,.25,1);
}

.primary-nav a:hover span,
.primary-nav a:focus-visible span { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: 111svh;
  background: var(--paper);
  padding: var(--header-h) var(--gutter) 28px;
  overflow: hidden;
}

.hero-word {
  position: absolute;
  z-index: 0;
  left: -1.4vw;
  top: 5.7vh;
  width: 102vw;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(150px, 27vw, 410px);
  line-height: .62;
  letter-spacing: -.102em;
  white-space: nowrap;
  transform: scaleX(1.045);
  transform-origin: left center;
}

.hero-word::first-letter { font-style: italic; }

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 46.5%;
  right: 29.5%;
  width: min(43vw, 590px);
  transform: translateY(-7%);
}

.eyebrow,
.section-kicker,
.meta-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .015em;
}

.hero-copy > p:last-child {
  margin: 0;
  font-size: clamp(11px, .95vw, 14px);
  line-height: 1.75;
  text-align: justify;
}

.jst-clock {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hero > .jst-clock {
  position: absolute;
  top: 47%;
  right: var(--gutter);
  font-size: 11px;
}

.hero-ledger {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: calc(11svh + 20px);
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: end;
  column-gap: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.hero-ledger h2 {
  margin: 0;
  font-size: clamp(27px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero-ledger dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  gap: 0 30px;
}

.hero-ledger dl div { display: grid; gap: 2px; }
.hero-ledger dt { font-size: 10px; color: #595a59; }
.hero-ledger dd { margin: 0; font-size: 11px; }

.scroll-cue {
  position: absolute;
  left: 0;
  right: 28%;
  bottom: -20px;
  height: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
  overflow: hidden;
  background: rgba(49, 220, 198, .16);
  font-size: 10px;
}

.scroll-cue-fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: scaleX(var(--hero-progress, .08));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.shape-section { position: relative; background: transparent; }
.ruled-section { position: relative; background: var(--paper); }

.target-section {
  min-height: 156svh;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: start;
  gap: 24px;
  padding: 22svh var(--gutter) 20svh;
}

.target-title-wrap { position: relative; z-index: 2; }

.target-title-wrap h2 {
  margin: 0;
  font-size: clamp(76px, 9.5vw, 148px);
  line-height: .72;
  font-weight: 450;
  letter-spacing: -.075em;
}

.target-copy {
  position: relative;
  z-index: 2;
  padding: 22vh 0 0;
}

.statement {
  max-width: 770px;
  margin: 0 0 74px;
  font-size: clamp(24px, 3.15vw, 48px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.target-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 76px);
  max-width: 850px;
}

.target-columns p { margin: 0; font-size: 13px; line-height: 2.05; }

.wordmask-section {
  min-height: 102svh;
  background: var(--paper);
}

.wordmask-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wordmask {
  width: 100vw;
  margin-left: 0;
  background: url("/assets/gimmicks/field-notes/clinic-exterior.webp") center 48% / cover no-repeat;
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(165px, 30vw, 405px);
  line-height: .66;
  letter-spacing: -.08em;
  white-space: nowrap;
  filter: grayscale(1) contrast(1.14);
  transform: translateY(var(--mask-y, 0px)) scaleX(.84) scale(var(--mask-scale, .95));
  transform-origin: center;
  will-change: transform;
}

.wordmask-meta,
.wordmask-caption {
  position: absolute;
  left: var(--gutter);
  margin: 0;
  font-size: 10px;
  letter-spacing: .08em;
}

.wordmask-meta { top: 22%; }
.wordmask-caption { right: var(--gutter); bottom: 18%; left: auto; }

.positioning {
  min-height: 84svh;
  display: grid;
  grid-template-columns: 39% 61%;
  gap: 24px;
  align-items: center;
  padding: 24svh var(--gutter) 12svh;
}

.positioning-meta {
  display: grid;
  gap: 8px;
  align-self: end;
  padding-bottom: 7vh;
  font-size: 10px;
  letter-spacing: .08em;
}

.positioning-copy { max-width: 760px; }
.positioning-copy h2 {
  margin: 0 0 44px;
  font-size: clamp(38px, 5.3vw, 80px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.045em;
}
.positioning-copy p { max-width: 650px; margin: 0; font-size: 14px; line-height: 2; }

.section-heading {
  min-height: 30svh;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: end;
  gap: 24px;
  padding: 0 var(--gutter) 22px;
  border-bottom: 1px solid var(--rule);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.05em;
}

.section-heading p { margin: 0; padding-bottom: 2px; font-size: 12px; }

.feature-row,
.service-row {
  position: relative;
  min-height: 67svh;
  display: grid;
  grid-template-columns: 39% 61%;
  gap: 24px;
  align-items: center;
  padding: 9vh var(--gutter);
  border-bottom: 1px solid var(--rule);
}

.feature-index,
.service-index {
  align-self: end;
  margin: 0 0 1vh;
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 300;
}

.feature-copy,
.service-copy {
  width: min(100%, 770px);
  justify-self: start;
  position: relative;
  z-index: 2;
}

.feature-copy h3,
.service-copy h3 {
  margin: 0 0 42px;
  font-size: clamp(35px, 4.6vw, 69px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.04em;
}

.feature-copy h3 span {
  display: block;
  margin-top: 16px;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.5;
  letter-spacing: .015em;
}

.feature-copy > p {
  width: min(100%, 610px);
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.service-row { min-height: 110.5svh; }
.service-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4.15vw, 62px);
}
.service-jp { margin: 0 0 52px; font-size: 15px; }

.service-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.service-copy li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(11,12,16,.35);
  font-size: 13px;
}

.proof-section {
  min-height: 162svh;
  display: grid;
  grid-template-columns: 39% 61%;
  gap: 24px;
  padding: 28svh var(--gutter) 18svh;
}

.proof-intro { align-self: start; padding-right: 5vw; }
.proof-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -.055em;
}
.proof-lead { margin: 0 0 36px; font-size: clamp(22px, 2.3vw, 34px); line-height: 1.45; }
.proof-intro > p:last-child { max-width: 470px; margin: 0; font-size: 13px; }

.proof-grid {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.proof-grid article {
  min-height: clamp(160px, 18vw, 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 12px 14px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-grid strong {
  font-family: var(--display);
  font-size: clamp(39px, 4.5vw, 68px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 500;
  white-space: nowrap;
}
.proof-grid strong small { font-family: var(--sans); font-size: 11px; letter-spacing: 0; }
.proof-grid span { font-size: 10px; line-height: 1.55; }

.member-section {
  min-height: 154svh;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 24px;
  padding: 24svh var(--gutter) 18svh;
}

.member-intro {
  position: sticky;
  top: 16vh;
  align-self: start;
  padding-right: clamp(20px, 7vw, 110px);
}

.member-intro h2 {
  margin: 0 0 36px;
  font-size: clamp(31px, 3.55vw, 54px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -.035em;
}
.member-intro > p:last-child { margin: 0; font-size: 13px; }

.member-list { align-self: start; border-top: 1px solid var(--rule); }
.member-list > div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
}

.outline-section {
  min-height: 185svh;
  padding: 18svh var(--gutter) 24svh;
}

.outline-section h2 {
  margin: 0 0 30px;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: .75;
  font-weight: 400;
  letter-spacing: -.055em;
  overflow: hidden;
  height: .62em;
}

.outline-list { margin: 0; border-top: 1px solid var(--rule); }
.outline-list > div {
  min-height: 106px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}
.outline-list dt,
.outline-list dd { margin: 0; font-size: 13px; }

.contact-section {
  min-height: 106svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18svh var(--gutter) 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-headline {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 16svh;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 108px);
  line-height: .96;
  letter-spacing: -.045em;
  text-align: center;
}
.contact-headline span { display: inline; }
.contact-headline span + span { margin-left: .12em; }
.contact-headline:hover { color: var(--accent); }

.contact-meta {
  display: grid;
  grid-template-columns: 1.05fr .9fr 2.6fr 1.4fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
  font-size: 11px;
}
.contact-meta p { margin: 0; }
.contact-meta time { font-variant-numeric: tabular-nums; white-space: nowrap; }
.copyright { text-align: right; white-space: nowrap; }

.footer-mark {
  width: 106vw;
  margin: 0 0 -3.5vw -3vw;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(160px, 27vw, 410px);
  font-weight: 700;
  line-height: .62;
  letter-spacing: -.105em;
  white-space: nowrap;
  transform: scaleX(1.03);
  transform-origin: left bottom;
}

.noscript {
  position: fixed;
  z-index: 100;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}

.page-index-section {
  min-height: 118svh;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 24px;
  padding: 22svh var(--gutter) 18svh;
  background: var(--paper);
}

.page-index-heading {
  position: sticky;
  top: 16vh;
  align-self: start;
  padding-right: clamp(24px, 7vw, 110px);
}

.page-index-heading h2 {
  margin: 30px 0 28px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
}

.page-index-heading > p:last-child {
  max-width: 25em;
  margin: 0;
  color: #4d4d49;
  font-size: 12px;
}

.page-index-list { border-top: 1px solid var(--ink); }

.page-index-list a {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(180px, .9fr) minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  min-height: 154px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(11,12,16,.35);
  isolation: isolate;
}

.page-index-list a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  content: '';
}

.page-index-list a:hover,
.page-index-list a:focus-visible { color: var(--paper); }
.page-index-list a:hover::before,
.page-index-list a:focus-visible::before { transform: scaleY(1); }

.page-index-list span,
.page-index-list small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .07em;
}

.page-index-list strong {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.page-index-list small { color: #62625e; line-height: 1.7; }
.page-index-list a:hover small,
.page-index-list a:focus-visible small { color: var(--accent); }
.page-index-list i { justify-self: end; font-size: 22px; font-style: normal; }

@media (max-width: 760px) {
  .page-index-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .page-index-heading { position: static; padding-right: 0; }
  .page-index-heading h2 { font-size: 58px; }
  .page-index-list a {
    grid-template-columns: 38px 1fr 24px;
    gap: 8px 14px;
    min-height: 168px;
  }
  .page-index-list strong { grid-column: 2; font-size: 27px; }
  .page-index-list small { grid-column: 2; }
  .page-index-list i { grid-column: 3; grid-row: 1 / 4; align-self: center; }
}

.js .reveal {
  opacity: .001;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 850ms cubic-bezier(.18,.78,.18,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 34% 66%; }
  .hero-copy { right: 24%; width: 52vw; }
  .hero > .jst-clock { top: 58%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid article { min-height: 190px; }
  .contact-meta { grid-template-columns: repeat(3, 1fr); }
  .contact-meta time { grid-column: 1 / 3; }
}

@media (max-width: 720px) {
  :root { --gutter: 17px; --header-h: 52px; }
  body { font-size: 14px; }
  .site-header { grid-template-columns: 1fr auto; gap: 10px; }
  .brand { gap: 8px; }
  .brand-jp { font-size: 10px; }
  .brand-mark { display: none; }
  .primary-nav { display: flex; gap: 22px; }
  .primary-nav a { font-size: 10px; }
  .primary-nav a:nth-child(1),
  .primary-nav a:nth-child(2),
  .primary-nav a:nth-child(3) { display: none; }

  .hero { min-height: 940px; padding-bottom: 16px; }
  .hero-word {
    top: 88px;
    left: -5.5vw;
    font-size: 27.8vw;
    letter-spacing: -.105em;
    transform: scaleX(1.09);
  }
  .hero-copy {
    top: 267px;
    left: var(--gutter);
    right: var(--gutter);
    width: auto;
    transform: none;
  }
  .hero-copy h1 { font-size: 24px; }
  .hero-copy > p:last-child { font-size: 12px; line-height: 1.86; text-align: left; }
  .hero > .jst-clock { top: 660px; right: var(--gutter); font-size: 9px; }
  .hero-ledger {
    grid-template-columns: 1fr;
    bottom: 16px;
    padding-top: 15px;
  }
  .hero-ledger h2 { margin-bottom: 18px; }
  .hero-ledger dl { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-ledger dt, .hero-ledger dd { font-size: 9px; line-height: 1.45; }
  .scroll-cue { left: 0; right: 0; bottom: -16px; height: 16px; }

  .target-section {
    min-height: 1320px;
    display: block;
    padding-top: 170px;
    padding-bottom: 190px;
  }
  .target-title-wrap h2 { font-size: 25.5vw; }
  .target-copy { padding-top: 205px; }
  .statement { margin-bottom: 46px; font-size: 26px; }
  .target-columns { grid-template-columns: 1fr; gap: 25px; }
  .target-columns p { font-size: 12px; line-height: 1.95; }

  .wordmask-section { min-height: 1040px; }
  .wordmask { width: 100vw; margin-left: 0; font-size: 30vw; letter-spacing: -.08em; background-attachment: scroll; transform: translateY(var(--mask-y, 0px)) scaleX(.82) scale(var(--mask-scale, .95)); }
  .wordmask-meta { top: 23%; }
  .wordmask-caption { bottom: 22%; }

  .positioning {
    min-height: 1080px;
    display: block;
    padding-top: 540px;
    padding-bottom: 180px;
  }
  .positioning-meta { margin-bottom: 55px; padding: 0; }
  .positioning-copy h2 { margin-bottom: 32px; font-size: 43px; }
  .positioning-copy p { font-size: 12px; line-height: 1.95; }

  .section-heading {
    min-height: 230px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
  }
  .section-heading h2 { font-size: 54px; }
  .section-heading p { font-size: 11px; }

  .feature-row,
  .service-row {
    min-height: 700px;
    grid-template-columns: 28% 72%;
    gap: 8px;
    padding-top: 95px;
    padding-bottom: 80px;
  }
  .feature-index,
  .service-index { font-size: 45px; }
  .feature-copy h3,
  .service-copy h3 { margin-bottom: 34px; font-size: 39px; }
  .feature-copy h3 span { font-size: 14px; }
  .feature-copy > p { font-size: 12px; line-height: 1.95; }
  .service-row { min-height: 790px; }
  .service-jp { margin-bottom: 42px; font-size: 13px; }
  .service-copy li { font-size: 11px; }

  .proof-section {
    min-height: 1550px;
    display: block;
    padding-top: 220px;
    padding-bottom: 170px;
  }
  .proof-intro { padding: 0; margin-bottom: 90px; }
  .proof-intro h2 { font-size: 59px; }
  .proof-lead { font-size: 23px; }
  .proof-intro > p:last-child { font-size: 12px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid article { min-height: 180px; }
  .proof-grid strong { font-size: 43px; }

  .member-section {
    min-height: 1300px;
    display: block;
    padding-top: 190px;
    padding-bottom: 170px;
  }
  .member-intro { position: static; padding: 0; margin-bottom: 90px; }
  .member-intro h2 { font-size: 37px; }
  .member-intro > p:last-child { font-size: 12px; }
  .member-list > div {
    min-height: 96px;
    grid-template-columns: 42% 58%;
    gap: 12px;
    font-size: 10px;
  }

  .outline-section { min-height: 1350px; padding-top: 175px; padding-bottom: 180px; }
  .outline-section h2 { margin-bottom: 34px; font-size: 59px; }
  .outline-list > div {
    min-height: 122px;
    grid-template-columns: 31% 69%;
    gap: 14px;
  }
  .outline-list dt,
  .outline-list dd { font-size: 11px; line-height: 1.65; }

  .contact-section { min-height: 920px; padding-top: 150px; }
  .contact-headline {
    margin-bottom: 135px;
    font-size: 15.4vw;
    text-align: left;
  }
  .contact-headline span { display: block; }
  .contact-headline span + span { margin: 0; }
  .contact-meta { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; margin-bottom: 60px; font-size: 9px; }
  .contact-meta time { grid-column: auto; }
  .copyright { text-align: left; }
  .footer-mark { width: 164vw; margin-left: -29vw; font-size: 28.5vw; }
}

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

/* Intended audience — uses the existing ruled editorial rhythm */
.audience-section {
  min-height: 124svh;
  display: grid;
  grid-template-columns: 39% 61%;
  gap: 24px;
  padding: 24svh var(--gutter) 18svh;
  background: var(--paper);
}

.audience-intro {
  position: sticky;
  top: 16vh;
  align-self: start;
  padding-right: clamp(24px, 7vw, 110px);
}

.audience-intro h2 {
  max-width: 8em;
  margin: 28px 0 0;
  font-size: clamp(38px, 4.6vw, 70px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.12;
}

.audience-list {
  align-self: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.audience-list li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.audience-list span {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.05em;
}

.audience-list p {
  max-width: 23em;
  margin: 0;
  font-size: clamp(19px, 2.2vw, 31px);
  letter-spacing: -.02em;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .audience-section {
    min-height: auto;
    display: block;
    padding: 170px var(--gutter);
  }

  .audience-intro {
    position: static;
    padding: 0;
    margin-bottom: 80px;
  }

  .audience-intro h2 { font-size: 47px; }
  .audience-list li { min-height: 155px; grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .audience-list span { font-size: 28px; }
  .audience-list p { font-size: 21px; line-height: 1.5; }
}

/* Field journal — a quiet editorial pause before the profile section */
.journal-section {
  min-height: 1020px;
  display: grid;
  grid-template-columns: 38% 62%;
  padding: 170px var(--gutter);
  background: #d9d4ca;
}

.journal-heading {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-right: clamp(28px, 6vw, 90px);
}

.journal-heading h2 {
  max-width: 8em;
  margin: 30px 0 28px;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
}

.journal-heading > p:last-child {
  max-width: 26em;
  margin: 0;
  color: #4d4d49;
  font-size: 12px;
}

.journal-list { border-top: 1px solid var(--ink); }

.journal-entry {
  position: relative;
  display: grid;
  grid-template-columns: 54px 100px minmax(100px, .5fr) minmax(0, 1.5fr) 32px;
  gap: 18px;
  align-items: baseline;
  min-height: 148px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(11,12,16,.35);
  isolation: isolate;
}

.journal-entry::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  content: '';
}

.journal-entry:hover,
.journal-entry:focus-visible { color: var(--paper); }
.journal-entry:hover::before,
.journal-entry:focus-visible::before { transform: scaleY(1); }

.journal-index,
.journal-entry time,
.journal-category {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .08em;
}

.journal-category { color: #62625e; }
.journal-entry:hover .journal-category,
.journal-entry:focus-visible .journal-category { color: var(--accent); }

.journal-entry h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 37px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.journal-arrow { justify-self: end; font-size: 22px; }

.journal-all {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .journal-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .journal-heading { position: static; padding-right: 0; }
  .journal-heading h2 { font-size: 58px; }
  .journal-entry {
    grid-template-columns: 38px 1fr 24px;
    gap: 8px 14px;
    min-height: 168px;
  }
  .journal-entry time { grid-column: 2; }
  .journal-category { grid-column: 2; }
  .journal-entry h3 { grid-column: 2; font-size: 25px; }
  .journal-arrow { grid-column: 3; grid-row: 1 / 5; align-self: center; }
}

/* Keep the four-slide composition authoritative after legacy responsive rules. */
@media (max-width: 720px) {
  .primary-nav { display: flex; gap: 9px; }
  .primary-nav a { display: grid !important; font-size: 8px; }
  .hero.site-slide { min-height: 100svh; }
  .hero.site-slide .hero-copy {
    top: 34%;
    left: var(--gutter);
    right: var(--gutter);
    width: auto;
    transform: none;
  }
  .hero.site-slide > .jst-clock { top: 65%; }
  .hero.site-slide .hero-ledger { bottom: 7svh; }
  .strength-section.site-slide,
  .services-section.site-slide,
  .member-section.site-slide { min-height: 100svh; }
}
