:root {
  --paper: #f1ecdf;
  --paper-light: #fbf7ed;
  --paper-deep: #e8e0d0;
  --ink: #142d27;
  --ink-soft: #29433b;
  --muted: #5f6963;
  --line: #c9c0ae;
  --red: #b44a36;
  --red-deep: #913a2b;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 45, 39, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 34px;
  font-family: var(--sans);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(180, 74, 54, 0.42);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  word-break: auto-phrase;
}

.display-lines {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}

.display-lines > span {
  display: block;
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

.narrow-break {
  display: none;
}

.responsibility .mobile-break {
  display: initial;
}

.eyebrow {
  color: var(--red);
  font: 800 10px/1.5 var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(22px, 4vw, 64px);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 237, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  min-width: 242px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  color: #374b44;
  font-size: 12px;
  white-space: nowrap;
}

.nav a {
  padding: 10px 0 7px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
  border-color: var(--red);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(540px, 1.08fr);
  min-height: 690px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.story-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(36px, 6vw, 100px) 62px;
}

.story-hero h1 {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.38;
}

.hero-lead {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.12;
}

.hero-signature {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 42px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.hero-signature span {
  color: var(--muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.12em;
}

.hero-signature strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.hero-photo,
.story-photo,
.profile-card figure {
  position: relative;
  overflow: hidden;
  background: #d6cfc2;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero-photo::after,
.story-photo::after,
.profile-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 45, 39, 0.05), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-photo figcaption,
.story-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  color: var(--paper-light);
  background: rgba(20, 45, 39, 0.9);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.13em;
}

.hero-photo figcaption span,
.story-photo figcaption span {
  color: #e17761;
}

.trust-ledger {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -28px auto 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 16px 42px rgba(20, 45, 39, 0.08);
  isolation: isolate;
}

.trust-ledger > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 108px;
  align-content: center;
  column-gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.ledger-no {
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 4px;
  color: var(--red);
  font: 800 11px/1 var(--mono);
}

.trust-ledger small,
.trust-ledger strong {
  display: block;
}

.trust-ledger small {
  grid-column: 2;
  color: var(--muted);
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.trust-ledger strong {
  grid-column: 2;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  white-space: nowrap;
}

.opening {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(38px, 6vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 138px 0 134px;
}

.section-index {
  padding-top: 4px;
  border-top: 1px solid var(--ink);
}

.section-index span {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font: 800 12px/1 var(--mono);
}

.section-index p {
  margin-top: 16px;
  color: var(--muted);
  font: 700 9px/1.6 var(--mono);
  letter-spacing: 0.15em;
}

.opening h2,
.operators h2,
.responsibility h2,
.operator-ledger h2 {
  margin-top: 18px;
  font-size: clamp(36px, 4.3vw, 54px);
  line-height: 1.5;
}

.opening h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.opening-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.16;
}

.opening-note {
  align-self: end;
  padding: 24px 0 12px 25px;
  border-left: 4px solid var(--red);
}

.opening-note span,
.opening-note strong {
  display: block;
}

.opening-note span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.opening-note strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.75;
}

.interview {
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 140px;
  color: var(--paper-light);
  background: var(--ink);
}

.interview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: end;
  gap: 36px 60px;
  margin-bottom: 74px;
}

.interview-heading .eyebrow {
  grid-column: 1 / -1;
}

.interview-heading h2 {
  color: inherit;
  font-size: clamp(40px, 4.2vw, 52px);
  line-height: 1.52;
}

.interview-heading > p:last-child {
  max-width: 500px;
  padding: 4px 0 4px 25px;
  border-left: 1px solid #567067;
  color: #bdc8c3;
  font-size: 13px;
  line-height: 2;
}

.story-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  min-height: 620px;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.question-block {
  position: relative;
  padding: clamp(42px, 4vw, 56px);
}

.question-block-light {
  color: var(--ink);
  background: var(--paper-light);
}

.question-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
}

.question-meta span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.question-meta em {
  padding: 5px 8px 4px;
  border: 1px solid currentColor;
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.question-block h3,
.question-row h3 {
  margin-top: 62px;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.58;
}

.answer-placeholder {
  margin-top: 50px;
}

.answer-placeholder p {
  max-width: 480px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.answer-placeholder span,
.answer-lines span {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: var(--line);
}

.answer-placeholder span:nth-of-type(2) {
  width: 88%;
}

.answer-placeholder span:nth-of-type(3) {
  width: 70%;
}

.question-row {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(360px, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  margin-top: 82px;
  padding: 72px 64px 72px 0;
  border-top: 1px solid #526860;
  border-bottom: 1px solid #526860;
}

.question-number {
  color: #3f5a51;
  font: 500 clamp(72px, 9vw, 126px)/0.8 var(--serif);
}

.question-row .question-meta {
  display: flex;
}

.question-row .question-meta em {
  color: #aebcb6;
}

.question-row h3 {
  margin-top: 26px;
  color: var(--paper-light);
}

.answer-placeholder-compact {
  align-self: end;
  margin-top: 0;
  padding-left: 44px;
  border-left: 1px solid #526860;
}

.answer-placeholder-compact p {
  color: #aebcb6;
}

.answer-placeholder-compact span {
  background: #526860;
}

.operators {
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 0;
}

.operators-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.operators-intro > p {
  padding: 4px 0 4px 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 2.1;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.profile-card figure {
  aspect-ratio: 4 / 4.4;
}

.profile-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-card:first-child img {
  object-position: 48% center;
}

.profile-card:last-child img {
  object-position: 42% center;
}

.profile-card-offset {
  margin-top: 64px;
}

.profile-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  color: var(--paper-light);
  background: linear-gradient(transparent, rgba(14, 33, 28, 0.92));
}

.profile-card figcaption span {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.1em;
}

.profile-card figcaption small {
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.question-block-dark {
  margin-top: 82px;
  padding: 66px 70px 74px;
  color: var(--paper-light);
  background: var(--ink);
  border-left: 4px solid var(--red);
}

.question-block-dark .question-meta em {
  color: #aebcb6;
}

.dark-question-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 80px;
  align-items: end;
}

.question-block-dark h3 {
  margin-top: 55px;
  color: inherit;
  font-size: clamp(34px, 4vw, 50px);
}

.question-block-dark .answer-placeholder {
  margin-top: 55px;
  padding-left: 42px;
  border-left: 1px solid #526860;
}

.question-block-dark .answer-placeholder p {
  color: #aebcb6;
}

.question-block-dark .answer-placeholder span {
  background: #526860;
}

.after-consultation {
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 128px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.after-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.after-header .question-meta {
  width: min(430px, 48%);
}

.after-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 80px;
  align-items: start;
  margin-top: 52px;
}

.after-layout h2 {
  font-size: clamp(38px, 4.2vw, 48px);
  line-height: 1.58;
}

.after-answer {
  position: relative;
  min-height: 300px;
  padding: 45px 46px 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.after-answer p {
  position: relative;
  z-index: 2;
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.quote-mark {
  position: absolute;
  top: 22px;
  right: 30px;
  color: rgba(180, 74, 54, 0.12);
  font: 120px/1 var(--serif);
}

.answer-lines {
  margin-top: 50px;
}

.answer-lines span:nth-child(2) {
  width: 90%;
}

.answer-lines span:nth-child(3) {
  width: 68%;
}

.responsibility {
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 124px 0 110px;
  border-bottom: 1px solid var(--line);
}

.responsibility-copy {
  align-self: end;
  padding-left: 38px;
  border-left: 4px solid var(--red);
}

.responsibility-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2.12;
}

.responsibility-copy p + p {
  margin-top: 20px;
}

.operator-ledger {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 78px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 0 126px;
}

.operator-ledger dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.operator-ledger dl > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operator-ledger dt,
.operator-ledger dd {
  padding: 15px 17px;
}

.operator-ledger dt {
  color: var(--muted);
  background: rgba(251, 247, 237, 0.58);
  font-size: 10px;
  font-weight: 800;
}

.operator-ledger dd {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 800;
}

.operator-email {
  overflow-wrap: normal;
  word-break: normal;
}

.consultation-cta {
  display: grid;
  place-items: center;
  padding: 112px 24px 120px;
  color: var(--paper-light);
  background:
    linear-gradient(rgba(20, 45, 39, 0.91), rgba(20, 45, 39, 0.96)),
    url("./assets/operators-together.jpg") center 35% / cover no-repeat;
  text-align: center;
}

.consultation-cta h2 {
  margin-top: 25px;
  color: inherit;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.55;
}

.consultation-cta > p:not(.eyebrow) {
  margin-top: 25px;
  color: #c4cec9;
  font-size: 14px;
}

.consultation-cta > a {
  display: inline-flex;
  min-width: 270px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding: 0 22px 0 28px;
  color: #fffaf1;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.consultation-cta > a:hover {
  background: var(--red-deep);
}

.consultation-cta > small {
  margin-top: 17px;
  color: #aebcb6;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.page-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 48px clamp(24px, 5vw, 74px) 46px;
  border-top: 4px solid var(--red);
  color: #d0d9d5;
  background: #0e211c;
}

.brand-footer {
  min-width: 0;
}

.brand-footer .brand-copy strong {
  color: var(--paper-light);
}

.page-footer p {
  margin-top: 14px;
  color: #8fa29a;
  font-size: 11px;
}

.page-footer > small {
  color: #6f857c;
  font: 700 9px/1.5 var(--mono);
  letter-spacing: 0.11em;
}

@media (max-width: 1200px) {
  .opening,
  .operators,
  .responsibility,
  .operator-ledger {
    width: calc(100% - 48px);
  }

  .story-hero {
    grid-template-columns: minmax(390px, 0.95fr) minmax(460px, 1.05fr);
  }

  .story-hero h1 {
    font-size: clamp(42px, 4.4vw, 58px);
  }

  .opening {
    grid-template-columns: 76px minmax(0, 1.2fr) minmax(270px, 0.8fr);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

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

  .story-hero-copy {
    min-height: 590px;
  }

  .hero-photo {
    height: 680px;
  }

  .opening {
    grid-template-columns: 72px 1fr;
  }

  .opening-note {
    grid-column: 2;
  }

  .interview-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .interview-heading .eyebrow {
    grid-column: auto;
  }

  .interview-heading > p:last-child {
    max-width: 640px;
  }

  .story-spread {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 560px;
  }

  .question-row {
    grid-template-columns: 80px 1fr;
    padding-right: 0;
  }

  .answer-placeholder-compact {
    grid-column: 2;
  }

  .operators-intro,
  .responsibility,
  .operator-ledger {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dark-question-layout,
  .after-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .question-block-dark .answer-placeholder {
    padding-left: 0;
    border-left: 0;
  }

  .operator-ledger dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .trust-ledger {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 40px));
    margin-top: -20px;
  }

  .trust-ledger > div {
    min-height: 78px;
  }
}

@media (max-width: 700px) {
  [id] {
    scroll-margin-top: 76px;
  }

  .mobile-break {
    display: initial;
  }

  body {
    background-size: 100% 30px;
  }

  .page-header {
    min-height: 70px;
    gap: 12px;
    padding: 9px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 18px;
  }

  .brand-copy strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .story-hero-copy {
    min-height: 0;
    padding: 54px 20px 48px;
  }

  .story-hero h1 {
    margin-top: 19px;
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 1.5;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 13px;
    line-height: 2;
  }

  .hero-signature {
    display: grid;
    gap: 9px;
    margin-top: 31px;
  }

  .hero-signature strong {
    font-size: 15px;
  }

  .hero-photo {
    height: 390px;
  }

  .hero-photo img {
    object-position: 51% center;
  }

  .hero-photo figcaption,
  .story-photo figcaption {
    min-width: auto;
    font-size: 8px;
  }

  .trust-ledger {
    width: calc(100% - 28px);
    margin-top: -16px;
  }

  .trust-ledger > div {
    grid-template-columns: 26px minmax(0, 1fr);
    min-height: 82px;
    column-gap: 10px;
    padding: 16px 18px;
  }

  .ledger-no {
    margin-top: 3px;
  }

  .trust-ledger strong {
    margin-top: 6px;
    font-size: 15px;
  }

  .opening,
  .operators,
  .responsibility,
  .operator-ledger {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .opening {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 92px 0 88px;
  }

  .section-index {
    display: none;
  }

  .opening h2,
  .operators h2,
  .responsibility h2,
  .operator-ledger h2 {
    margin-top: 14px;
    line-height: 1.52;
  }

  .opening h2 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.62;
  }

  .operators h2,
  .responsibility h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .operator-ledger h2 {
    font-size: clamp(34px, 9.3vw, 40px);
  }

  .opening-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 13px;
    line-height: 2;
  }

  .opening-note {
    grid-column: auto;
    padding: 18px 0 4px 18px;
  }

  .opening-note strong {
    font-size: 19px;
  }

  .interview {
    padding: 88px 20px 94px;
  }

  .interview-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 45px;
  }

  .interview-heading .eyebrow {
    grid-column: auto;
  }

  .interview-heading h2 {
    font-size: clamp(30px, 8.3vw, 34px);
    line-height: 1.62;
  }

  .interview-heading > p:last-child {
    padding-left: 17px;
    font-size: 12px;
  }

  .story-photo {
    min-height: 315px;
  }

  .story-photo img {
    object-position: 54% center;
  }

  .question-block {
    padding: 35px 24px 43px;
  }

  .question-meta {
    align-items: flex-start;
  }

  .question-block h3,
  .question-row h3 {
    margin-top: 36px;
    font-size: clamp(26px, 7.7vw, 33px);
    line-height: 1.65;
  }

  .answer-placeholder {
    margin-top: 36px;
  }

  .question-row {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 54px;
    padding: 48px 0;
  }

  .question-number {
    font-size: 68px;
  }

  .answer-placeholder-compact {
    grid-column: auto;
    padding: 24px 0 0;
    border-top: 1px solid #526860;
    border-left: 0;
  }

  .operators {
    padding: 90px 0;
  }

  .operators-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .operators-intro > p {
    padding-left: 17px;
    font-size: 12px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .profile-card figure {
    aspect-ratio: 4 / 4.15;
  }

  .profile-card-offset {
    margin-top: 0;
  }

  .profile-card figcaption {
    padding: 18px 20px;
  }

  .profile-card figcaption span {
    font-size: 20px;
  }

  .question-block-dark {
    margin-top: 46px;
    padding: 42px 24px 48px;
  }

  .question-block-dark h3 {
    margin-top: 37px;
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .question-block-dark .answer-placeholder {
    margin-top: 26px;
    padding-top: 27px;
    border-top: 1px solid #526860;
  }

  .after-consultation {
    padding: 84px 20px 92px;
  }

  .after-header {
    display: grid;
    gap: 24px;
  }

  .after-header .question-meta {
    width: 100%;
  }

  .after-layout {
    gap: 30px;
    margin-top: 38px;
  }

  .after-layout h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .after-answer {
    min-height: 260px;
    padding: 34px 24px 30px;
  }

  .responsibility {
    gap: 34px;
    padding: 88px 0 76px;
  }

  .responsibility-copy {
    padding-left: 19px;
  }

  .responsibility-copy p {
    font-size: 12px;
    line-height: 2;
  }

  .operator-ledger {
    gap: 34px;
    padding: 72px 0 88px;
  }

  .operator-ledger dl > div {
    grid-template-columns: 76px 1fr;
  }

  .operator-ledger dt,
  .operator-ledger dd {
    padding: 13px 12px;
  }

  .operator-ledger dd {
    font-size: 11px;
  }

  .consultation-cta {
    padding: 88px 20px 92px;
  }

  .consultation-cta h2 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.65;
  }

  .consultation-cta > p:not(.eyebrow) {
    font-size: 12px;
  }

  .consultation-cta > a {
    width: 100%;
    min-width: 0;
  }

  .page-footer {
    display: grid;
    gap: 36px;
    padding: 42px 20px;
  }
}

@media (max-width: 350px) {
  .page-header {
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 10px;
  }

  .narrow-break {
    display: initial;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
