:root {
  color-scheme: light;
  --c-bg: #ffffff;
  --c-surface: #f2f4f6;
  --c-ink: #303a46;
  --c-heading: #15263d;
  --c-muted: #5a6573;
  --c-border: #d7dde4;
  --c-cta: #233f63;
  --c-cta-ink: #ffffff;
  --c-focus: #233f63;
  --c-soft-line: rgba(21, 38, 61, 0.12);
  --c-shadow: 0 18px 36px -28px rgba(21, 38, 61, 0.28);
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Zen Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --container: 1180px;
  --container-narrow: 880px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 56px;
  --space-10: 72px;
  --space-11: 96px;
  --space-12: 128px;
  --radius-1: 4px;
  --radius-2: 8px;
  --radius-3: 14px;
  --radius-4: 20px;
  --radius-5: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--c-bg);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-menu-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
body.is-menu-open,
body.is-menu-open * {
  overscroll-behavior: none;
}
img, picture, video, svg, canvas {
  display: block;
  max-width: 100%;
}
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-heading); }
button, input, select, textarea {
  font: inherit;
  color: inherit;
}
button { cursor: pointer; }
::selection { background: rgba(35, 63, 99, 0.15); color: var(--c-heading); }

:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--c-cta);
  color: var(--c-cta-ink);
  padding: 12px 16px;
  border-radius: 6px;
}
.skip-link:focus { left: 12px; top: 12px; }

:where(main, #main, [role="main"], .main) { display: block; }
:where(.l-container, .container, .wrap) {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
:where(.l-narrow) {
  width: min(var(--container-narrow), calc(100% - 48px));
  margin-inline: auto;
}
@media (max-width: 767px) {
  :where(.l-container, .container, .wrap, .l-narrow) {
    width: calc(100% - 32px);
  }
}

:where(section, .section, [data-section]) {
  position: relative;
  padding-block: var(--space-11);
}
:where(section + section, .section + .section, [data-section] + [data-section]) {
  border-top: 1px solid var(--c-border);
}
:where(.section--tight) { padding-block: var(--space-9); }
:where(.section--spacious) { padding-block: var(--space-12); }
:where(.section--soft) { background: var(--c-surface); }
:where(.section--navy) { background: var(--c-heading); color: #fff; }
:where(.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4, .section--navy .c-kicker, .section--navy .c-section-no, .section--navy .c-section-head, .section--navy .c-pullword, .section--navy .c-notice, .section--navy .c-preview-note) {
  color: #fff;
}
:where(.section--navy) :where(a) { color: #fff; }
:where(.section--navy) :where(.c-button--outline, .c-button--light) {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

h1, h2, h3, h4, .c-section-head, .c-pullword, .c-manifesto__title, .c-hero__title, .c-page-hero__title {
  font-family: var(--font-serif);
  color: var(--c-heading);
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
  margin: 0;
}
@supports (word-break: auto-phrase) {
  h1, h2, h3, h4, .c-section-head, .c-pullword, .c-manifesto__title, .c-hero__title, .c-page-hero__title {
    word-break: auto-phrase;
  }
}
h1, .c-page-hero__title, .c-hero__title {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
}
h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.35;
  letter-spacing: -0.012em;
}
h4 {
  font-size: 1.08rem;
  line-height: 1.45;
}
p { margin: 0; }
.lead, .c-prose > p:first-child, .c-page-hero__lead, .c-hero__lead {
  font-size: clamp(1.03rem, 1.15vw, 1.18rem);
  line-height: 1.95;
  color: var(--c-muted);
}
.c-prose { max-width: 42rem; }
.c-prose > * + * { margin-top: 1.1em; }
.c-prose p + p { margin-top: 1em; }
.c-prose ul, .c-prose ol { padding-left: 1.2em; margin: 0; }
.c-prose li + li { margin-top: 0.45em; }

.c-kicker,
.section-eyebrow,
.c-section-no,
.c-section-headline,
.c-page-hero__eyebrow,
.c-hero__eyebrow,
.c-notice,
.c-preview-note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.c-section-no { color: var(--c-cta); }
.c-section-head {
  display: block;
  margin-top: .45rem;
}
.c-section-head + .lead,
.c-section-head + .c-page-hero__lead,
.c-section-head + .c-hero__lead { margin-top: 1rem; }

.c-split,
.split {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.c-split--2,
.split--2 { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
.c-split--3,
.split--3 { grid-template-columns: [col-1] minmax(0, 1fr) [col-2] minmax(0, 1fr) [col-3] minmax(0, 1fr) [end]; }
.c-split--wide,
.split--wide { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.c-split--reverse,
.split--reverse { direction: rtl; }
.c-split--reverse > *, .split--reverse > * { direction: ltr; }
@media (max-width: 959px) {
  .c-split--2,
  .c-split--3,
  .c-split--wide,
  .split--2,
  .split--3,
  .split--wide { grid-template-columns: 1fr; }
}

.flow > * + * { margin-top: var(--flow-gap, 1.1em); }
.stack > * + * { margin-top: var(--stack-gap, 1.5rem); }
.stack--loose { --stack-gap: 2.1rem; }
.stack--tight { --stack-gap: 1rem; }

.rule,
.hr,
.c-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-border);
}
.rule--dark, .c-rule--dark { background: rgba(255,255,255,.24); }

.c-panel,
.panel,
.c-card,
.card,
.c-index-card,
.c-detail-list,
.c-route,
.c-question-row,
.c-service-row,
.c-process-step,
.c-cta,
.c-faq__item,
.c-notice,
.c-preview-note,
.c-entity-grid,
.c-role-grid,
.c-route-grid {
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 0;
  box-shadow: none;
}
.c-panel,
.panel { padding: clamp(20px, 2.8vw, 32px); }
.c-surface,
.surface { background: var(--c-surface); }
.c-surface--navy,
.surface--navy { background: var(--c-heading); color: #fff; }
.c-surface--navy h1,
.c-surface--navy h2,
.c-surface--navy h3,
.c-surface--navy h4,
.c-surface--navy p,
.c-surface--navy li,
.c-surface--navy .lead,
.c-surface--navy .c-kicker,
.c-surface--navy .c-section-no,
.c-surface--navy .c-section-head,
.c-surface--navy .c-preview-note,
.c-surface--navy .c-notice { color: #fff; }

.c-index-card[data-z-rhythm] {
  position: relative;
  padding: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.c-index-card[data-z-rhythm] + .c-index-card[data-z-rhythm] { margin-top: -1px; }
.c-index-card[data-z-rhythm]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-cta), transparent);
  opacity: .75;
}

.c-button,
.button,
.btn,
.c-cta a,
.c-site-footer a,
.c-nav a,
.c-menu-toggle,
.c-choice-grid label {
  -webkit-tap-highlight-color: transparent;
}
.c-button,
.button,
.btn,
.c-menu-toggle,
.c-form button,
.c-form [type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: .55em;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--c-cta);
  background: var(--c-cta);
  color: var(--c-cta-ink);
  border-radius: var(--radius-2);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease, opacity .24s ease;
  text-decoration: none;
}
.c-button:hover,
.button:hover,
.btn:hover,
.c-menu-toggle:hover,
.c-form button:hover,
.c-form [type="submit"]:hover {
  transform: translateY(-1px);
}
.c-button--outline,
.button--outline,
.btn--outline,
.c-button--light,
.button--light,
.btn--light {
  background: transparent;
  color: var(--c-heading);
}
.c-button--outline,
.button--outline,
.btn--outline {
  border-color: var(--c-border);
}
.c-button--light,
.button--light,
.btn--light {
  border-color: rgba(21, 38, 61, .18);
}
.c-button--link,
.button--link,
.btn--link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-cta);
}
.c-button--link::after,
.button--link::after,
.btn--link::after {
  content: "";
  width: 1.1em;
  height: 1px;
  background: currentColor;
  transform: translateY(1px);
}

.c-button[aria-pressed="true"],
.button[aria-pressed="true"],
.btn[aria-pressed="true"] {
  background: var(--c-heading);
  border-color: var(--c-heading);
}

.c-button:disabled,
.button:disabled,
.btn:disabled,
.c-menu-toggle:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.c-site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
@supports not (backdrop-filter: blur(1px)) {
  .c-site-header, .site-header { background: var(--c-bg); }
}
.c-site-header__inner,
.site-header__inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: [left] minmax(0, 1fr) [center] auto [right] minmax(0, 1fr) [end];
  align-items: center;
  gap: 20px;
}
.c-brand,
.site-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}
.c-brand img,
.site-brand img {
  width: auto;
  max-height: 48px;
}
.c-brand__text,
.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.c-brand__name,
.site-brand__name {
  font-family: var(--font-serif);
  color: var(--c-heading);
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.c-brand__sub,
.site-brand__sub {
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.c-nav,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
}
.c-nav--left,
.site-nav--left { justify-content: flex-start; }
.c-nav--right,
.site-nav--right { justify-content: flex-end; }
.c-nav a,
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 2px;
  color: var(--c-muted);
  font-size: .96rem;
  letter-spacing: .02em;
  transition: color .2s ease, opacity .2s ease;
}
.c-nav a:hover,
.site-nav a:hover,
.c-nav a[aria-current="page"],
.site-nav a[aria-current="page"] {
  color: var(--c-heading);
}
.c-menu-toggle,
.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
}
.c-menu-toggle span,
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}
.c-menu-toggle span::before,
.c-menu-toggle span::after,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.c-menu-toggle span::before,
.menu-toggle span::before { top: -6px; }
.c-menu-toggle span::after,
.menu-toggle span::after { top: 6px; }

.c-drawer,
[data-menu-panel],
.c-site-drawer {
  position: static;
  inset: auto;
  z-index: 70;
}
.c-drawer__backdrop,
[data-menu-backdrop] {
  position: fixed;
  inset: 0;
  background: rgba(21, 38, 61, .36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility 0s linear .24s;
  z-index: 69;
}
body.is-menu-enhanced .c-menu-toggle,
body.is-menu-enhanced .menu-toggle { display: inline-flex; }
body.is-menu-enhanced .c-drawer,
body.is-menu-enhanced [data-menu-panel],
body.is-menu-enhanced .c-site-drawer {
  background: var(--c-bg);
}
body.is-menu-open .c-drawer__backdrop,
body.is-menu-open [data-menu-backdrop] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
@media (max-width: 959px) {
  .c-site-header__inner,
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
  }
  .c-brand,
  .site-brand {
    justify-self: start;
  }
  body.is-menu-enhanced .c-nav,
  body.is-menu-enhanced .site-nav,
  body.is-menu-enhanced .c-drawer,
  body.is-menu-enhanced [data-menu-panel],
  body.is-menu-enhanced .c-site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 388px);
    height: 100dvh;
    padding: max(22px, env(safe-area-inset-top)) 22px max(22px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    background: var(--c-bg);
    box-shadow: -24px 0 48px -36px rgba(21, 38, 61, .36);
    transform: translateX(102%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }
  body.is-menu-enhanced.is-menu-open .c-nav,
  body.is-menu-enhanced.is-menu-open .site-nav,
  body.is-menu-enhanced.is-menu-open .c-drawer,
  body.is-menu-enhanced.is-menu-open [data-menu-panel],
  body.is-menu-enhanced.is-menu-open .c-site-drawer {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  body:not(.is-menu-enhanced) .c-nav,
  body:not(.is-menu-enhanced) .site-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 14px;
    padding-bottom: 16px;
  }
  body:not(.is-menu-enhanced) .c-menu-toggle,
  body:not(.is-menu-enhanced) .menu-toggle { display: none; }
}

.c-hero,
.c-page-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(56px, 8vw, 112px);
}
.c-hero__inner,
.c-page-hero__inner {
  display: grid;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}
.c-hero__inner,
.c-page-hero__inner,
.c-split--hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
@media (max-width: 959px) {
  .c-hero__inner,
  .c-page-hero__inner,
  .c-split--hero { grid-template-columns: 1fr; }
}
.c-hero__visual,
.c-page-hero__visual,
.c-visual-frame {
  position: relative;
  border: 1px solid var(--c-border);
  background: linear-gradient(180deg, #fff, var(--c-surface));
  overflow: hidden;
  box-shadow: var(--c-shadow);
}
.c-visual-frame { min-height: 320px; }
.c-visual-frame img,
.c-hero__visual img,
.c-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-hero__copy,
.c-page-hero__copy { max-width: 42rem; }
.c-hero__title,
.c-page-hero__title { margin-top: 0; }
.c-hero__lead,
.c-page-hero__lead { margin-top: 1.2rem; }
.c-hero__actions,
.c-page-hero__actions,
.c-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.7rem; }
.c-hero__meta,
.c-page-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 1.1rem; color: var(--c-muted); }

.c-pullword {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.1;
}

.c-person,
.c-manifesto,
.c-advisory,
.c-service-index,
.c-process,
.c-faq,
.c-cta,
.c-site-footer,
.c-role-grid,
.c-route-grid,
.c-detail-list,
.c-entity-grid,
.c-form,
.c-question-index,
.c-question-row,
.c-service-row,
.c-process-step {
  position: relative;
}
.c-person,
.c-manifesto,
.c-advisory,
.c-service-index,
.c-route-grid,
.c-detail-list,
.c-entity-grid {
  padding: clamp(24px, 3.2vw, 40px);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.c-person__inner,
.c-manifesto__inner,
.c-advisory__inner,
.c-service-index__inner,
.c-process__inner,
.c-cta__inner,
.c-site-footer__inner,
.c-question-index__inner,
.c-role-grid__inner,
.c-route-grid__inner,
.c-detail-list__inner,
.c-entity-grid__inner {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}
.c-person__inner,
.c-manifesto__inner,
.c-advisory__inner,
.c-service-index__inner,
.c-cta__inner,
.c-site-footer__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: 959px) {
  .c-person__inner,
  .c-manifesto__inner,
  .c-advisory__inner,
  .c-service-index__inner,
  .c-cta__inner,
  .c-site-footer__inner { grid-template-columns: 1fr; }
}
.c-person__visual {
  aspect-ratio: 4 / 5;
}
.c-visual-frame,
.c-page-hero__visual,
.c-hero__visual {
  min-height: 320px;
}
.c-page-hero__visual,
.c-hero__visual {
  aspect-ratio: 16 / 10;
}
.c-person__name,
.c-person__role,
.c-person__lead,
.c-person__bio,
.c-manifesto__title,
.c-manifesto__lead,
.c-manifesto__body {
  max-width: 42rem;
}
.c-person__visual img,
.c-visual-frame img,
.c-page-hero__visual img,
.c-hero__visual img { object-fit: cover; }

.c-question-index,
.c-service-index,
.c-role-grid,
.c-route-grid,
.c-detail-list,
.c-entity-grid,
.c-question-row,
.c-service-row,
.c-process-step {
  border-left: 0;
  border-right: 0;
}
.c-question-row,
.c-service-row,
.c-process-step {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 3vw, 32px);
  padding: 22px 0;
  border-top: 1px solid var(--c-border);
}
.c-question-row:last-child,
.c-service-row:last-child,
.c-process-step:last-child { border-bottom: 1px solid var(--c-border); }
@media (max-width: 767px) {
  .c-question-row,
  .c-service-row,
  .c-process-step { grid-template-columns: 1fr; }
}
.c-question-index,
.c-role-grid,
.c-route-grid,
.c-detail-list,
.c-entity-grid {
  display: grid;
  gap: 0;
}
.c-question-index { counter-reset: question; }
.c-question-row::before {
  counter-increment: question;
  content: counter(question, decimal-leading-zero);
  font-family: var(--font-serif);
  color: var(--c-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}
.c-question-row > *:first-child,
.c-service-row > *:first-child,
.c-process-step > *:first-child { position: relative; }

.c-route-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-route-grid > .c-route {
  padding: clamp(18px, 2.6vw, 28px);
  min-height: 100%;
}
@media (max-width: 959px) {
  .c-route-grid { grid-template-columns: 1fr; }
}
.c-route {
  display: grid;
  gap: 12px;
  align-content: start;
}
.c-route__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.35;
}
.c-route__meta,
.c-route__lead,
.c-route__note,
.c-service-row__meta,
.c-service-row__note,
.c-process-step__meta,
.c-process-step__note {
  color: var(--c-muted);
  font-size: .96rem;
}

.c-role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-role-grid > * {
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
}
.c-role-grid > *:nth-child(-n+2) { border-top: 0; }
@media (max-width: 767px) {
  .c-role-grid { grid-template-columns: 1fr; }
  .c-role-grid > *:nth-child(2) { border-top: 1px solid var(--c-border); }
}

.c-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-detail-list > * {
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
}
.c-detail-list > *:nth-child(-n+2) { border-top: 0; }
@media (max-width: 767px) {
  .c-detail-list { grid-template-columns: 1fr; }
  .c-detail-list > *:nth-child(2) { border-top: 1px solid var(--c-border); }
}

.c-entity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-entity-grid > * {
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
}
.c-entity-grid > *:nth-child(-n+2) { border-top: 0; }
@media (max-width: 767px) {
  .c-entity-grid { grid-template-columns: 1fr; }
  .c-entity-grid > *:nth-child(2) { border-top: 1px solid var(--c-border); }
}

.c-service-index {
  display: grid;
  gap: 0;
}
.c-service-index__head,
.c-manifesto__head,
.c-advisory__head,
.c-process__head,
.c-faq__head,
.c-cta__head,
.c-site-footer__head,
.c-question-index__head {
  display: grid;
  gap: 8px;
  align-content: start;
}
.c-service-index__body,
.c-manifesto__body,
.c-advisory__body,
.c-process__body,
.c-cta__body,
.c-site-footer__body,
.c-question-index__body { display: grid; gap: 16px; }

.c-manifesto {
  display: grid;
  gap: 24px;
}
.c-manifesto__title {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
}
.c-manifesto__body {
  max-width: 34rem;
  color: var(--c-ink);
}
.c-manifesto__note {
  color: var(--c-muted);
  font-size: .95rem;
}

.c-process {
  counter-reset: process;
}
.c-process-step {
  position: relative;
  padding-left: 0;
}
.c-process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-serif);
  color: var(--c-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}
.c-process-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-border), transparent);
}
.c-process-step > * {
  position: relative;
  z-index: 1;
}

.c-faq {
  display: grid;
  gap: 0;
}
.c-faq__item,
.c-faq-item,
[data-faq-item] {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.c-faq__item + .c-faq__item,
.c-faq-item + .c-faq-item,
[data-faq-item] + [data-faq-item] {
  margin-top: -1px;
}
.c-faq__button,
.c-faq button,
[data-faq-button],
summary {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
.c-faq__button::after,
.c-faq button::after,
[data-faq-button]::after,
summary::after {
  content: "+";
  flex: none;
  color: var(--c-cta);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .24s ease;
}
.c-faq__item.is-open .c-faq__button::after,
.c-faq__item.is-open button::after,
[data-faq-item].is-open [data-faq-button]::after,
[open] summary::after { content: "–"; }
.c-faq__question,
.c-faq__answer,
[data-faq-question],
[data-faq-panel] {
  padding-inline: 0;
}
.c-faq__answer,
[data-faq-panel] {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  transition: grid-template-rows .34s ease;
}
.c-faq__answer-inner,
[data-faq-body] {
  overflow: hidden;
}
html.js .c-faq__item:not(.is-open) .c-faq__answer,
html.js [data-faq-item]:not(.is-open) [data-faq-panel] {
  grid-template-rows: 0fr;
}
html.js .c-faq__item:not(.is-open) .c-faq__answer-inner,
html.js [data-faq-item]:not(.is-open) [data-faq-body] {
  overflow: hidden;
}
html.js .c-faq__item.is-open .c-faq__answer,
html.js [data-faq-item].is-open [data-faq-panel] {
  grid-template-rows: 1fr;
}

.c-cta,
.c-site-footer {
  background: var(--c-heading);
  color: #fff;
}
.c-cta a,
.c-site-footer a {
  color: inherit;
}
.c-cta__inner,
.c-site-footer__inner {
  padding-block: clamp(28px, 4vw, 48px);
}
.c-cta__title,
.c-site-footer__title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}
.c-cta__lead,
.c-site-footer__lead,
.c-cta__meta,
.c-site-footer__meta {
  color: rgba(255,255,255,.8);
}
.c-cta__panel,
.c-site-footer__panel {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 20px;
}
.c-site-footer__grid {
  display: grid;
  grid-template-columns: [col-1] minmax(0, 1fr) [col-2] minmax(0, 1fr) [col-3] minmax(0, 1fr) [end];
  gap: 24px;
}
@media (max-width: 959px) {
  .c-site-footer__grid { grid-template-columns: 1fr; }
}
.c-site-footer__nav,
.c-site-footer__nav ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-site-footer__small {
  font-size: .86rem;
  color: rgba(255,255,255,.74);
}

.c-form {
  display: grid;
  gap: 20px;
}
.c-field {
  display: grid;
  gap: 8px;
}
.c-field label,
.c-choice-grid legend,
.c-form label {
  font-weight: 600;
  color: var(--c-heading);
}
.c-field input,
.c-field textarea,
.c-field select,
.c-form input,
.c-form textarea,
.c-form select {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-2);
  background: #fff;
  color: var(--c-ink);
}
.c-field textarea,
.c-form textarea { min-height: 160px; resize: vertical; }
.c-choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .c-choice-grid { grid-template-columns: 1fr; }
}
.c-choice-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-2);
  background: #fff;
  min-height: 44px;
}
.js-required-group.is-error {
  border-color: var(--c-cta);
  box-shadow: inset 0 0 0 1px var(--c-cta);
}
.js-required-group.is-error legend,
.js-required-group.is-error label {
  color: var(--c-heading);
}
.js-form-status,
[data-form-status] {
  min-height: 1.5em;
  color: var(--c-muted);
  font-size: .95rem;
}

.c-notice,
.c-preview-note {
  padding: 14px 16px;
  font-size: .92rem;
  color: var(--c-muted);
  background: rgba(242, 244, 246, .8);
}
.c-preview-note { border-left: 3px solid var(--c-cta); }
.c-notice--navy { background: rgba(21,38,61,.06); color: var(--c-heading); }

.c-pathway {
  display: grid;
  gap: 0;
  counter-reset: pathway;
}
.c-pathway__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--c-border);
}
.c-pathway__item:last-child { border-bottom: 1px solid var(--c-border); }
.c-pathway__item::before {
  counter-increment: pathway;
  content: counter(pathway, decimal-leading-zero);
  font-family: var(--font-serif);
  color: var(--c-heading);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}
@media (max-width: 767px) {
  .c-pathway__item { grid-template-columns: 1fr; }
}

.c-route-grid,
.c-question-index,
.c-role-grid,
.c-detail-list,
.c-entity-grid,
.c-service-index,
.c-process,
.c-faq,
.c-cta,
.c-site-footer,
.c-form,
.c-pathway {
  scroll-margin-top: 110px;
}

[data-reveal], .reveal {
  will-change: transform, opacity;
}
html.js [data-reveal],
html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .7s ease, transform .8s ease;
}
html.js [data-reveal].is-visible,
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
html.js [data-reveal][data-reveal="fade-only"],
html.js .reveal.reveal--fade-only {
  transform: none;
}
html.js [data-reveal][data-reveal-delay] {
  transition-delay: var(--reveal-delay, 0ms);
}

[data-line-draw], .c-hero__visual svg, .c-page-hero__visual svg {
  overflow: visible;
}
[data-line-draw] path,
.c-hero__visual path,
.c-page-hero__visual path {
  fill: none;
  stroke: var(--c-heading);
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 767px) {
  :where(section, .section, [data-section]) {
    padding-block: var(--space-10);
  }
  h1, .c-page-hero__title, .c-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
  }
  h2 { font-size: clamp(1.7rem, 7vw, 2.55rem); }
  .c-pullword { font-size: clamp(2rem, 10vw, 3rem); }
  .c-button,
  .button,
  .btn,
  .c-menu-toggle,
  .c-form button,
  .c-form [type="submit"] { width: auto; }
}

/* --------------------------------------------------------------------------
   PDM composition layer — adapted from the selected catalog mechanisms
   -------------------------------------------------------------------------- */

.c-preview-badge {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  padding: 7px 10px;
  border: 1px solid rgba(21, 38, 61, .24);
  background: rgba(255,255,255,.9);
  color: var(--c-heading);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  backdrop-filter: blur(10px);
}

.c-site-header__inner {
  grid-template-columns: [brand] auto [navigation] minmax(0, 1fr) [action] auto [end];
  max-width: 1360px;
}
.c-brand { justify-self: start; gap: 10px; }
.c-brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.c-brand__mark img { width: 100%; height: 100%; max-height: none; object-fit: contain; }
.c-brand__text {
  font-family: var(--font-serif);
  color: var(--c-heading);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.c-brand__text small {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--c-muted);
}
.c-nav { justify-content: center; gap: clamp(12px, 1.35vw, 22px); }
.c-nav a { position: relative; font-size: clamp(.78rem, .84vw, .9rem); white-space: nowrap; }
.c-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--c-heading);
  transition: right .24s ease;
}
.c-nav a:hover::after,
.c-nav a[aria-current="page"]::after { right: 0; }
.c-button--header { min-height: 48px; padding-inline: 18px; font-size: .82rem; white-space: nowrap; }
.c-menu-toggle { background: transparent; color: var(--c-heading); border-color: var(--c-border); border-radius: 0; }
.c-menu-toggle span,
.c-menu-toggle span::before,
.c-menu-toggle span::after { background: none; }
.c-menu-toggle__label {
  width: auto !important;
  height: auto !important;
  font-size: .62rem;
  letter-spacing: .14em;
}
.c-menu-toggle__lines {
  position: relative !important;
  width: 18px !important;
  height: 12px !important;
}
.c-menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.c-menu-toggle__lines i:first-child { top: 2px; }
.c-menu-toggle__lines i:last-child { bottom: 2px; }

.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  visibility: hidden;
  pointer-events: none;
}
.c-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(10, 22, 38, .48);
  z-index: 0;
}
.c-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(88vw, 440px);
  min-height: 100%;
  padding: max(28px, env(safe-area-inset-top)) 28px max(28px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
  background: var(--c-heading);
  z-index: 1;
  color: #fff;
  transform: translateX(102%);
  transition: transform .42s cubic-bezier(.2,.82,.2,1);
}
.c-drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.18); }
.c-drawer__top > span { font-family: var(--font-serif); font-size: 1.1rem; }
.c-drawer__close { min-width: 44px; min-height: 44px; padding: 0; border: 0; background: transparent; color: #fff; font-size: .68rem; letter-spacing: .16em; }
.c-drawer__nav { display: grid; }
.c-drawer__nav a { display: flex; align-items: center; justify-content: space-between; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--font-serif); font-size: 1.12rem; }
.c-drawer__nav a[aria-current="page"] { color: #dce4ed; }
.c-drawer__panel .c-button--light { border-color: rgba(255,255,255,.42); color: #fff; }
.c-drawer__panel > p { margin-top: auto; color: rgba(255,255,255,.62); font-size: .76rem; letter-spacing: .12em; }
body.is-menu-open .c-drawer { visibility: visible; pointer-events: auto; }
body.is-menu-open .c-drawer__panel { transform: translateX(0); }

@media (min-width: 1181px) {
  body.is-menu-enhanced .c-menu-toggle { display: none; }
  .c-drawer { display: none; }
}
@media (max-width: 1180px) {
  .c-site-header__inner { grid-template-columns: minmax(0, 1fr) auto; min-height: 76px; }
  body.is-menu-enhanced .c-nav,
  body.is-menu-enhanced .c-button--header { display: none; }
  body.is-menu-enhanced .c-menu-toggle { display: inline-flex; width: auto; padding: 0 13px; gap: 9px; }
  body.is-menu-enhanced .c-drawer {
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    padding: 0;
    display: block;
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
  body.is-menu-enhanced.is-menu-open .c-drawer { transform: none; }
  body:not(.is-menu-enhanced) .c-site-header__inner { grid-template-columns: 1fr; padding-block: 10px; }
  body:not(.is-menu-enhanced) .c-nav { justify-content: flex-start; flex-wrap: wrap; }
  body:not(.is-menu-enhanced) .c-button--header { justify-self: start; }
}

.c-section { padding-block: clamp(80px, 9vw, 132px); }
.c-section--gray { background: var(--c-surface); }
.c-section--navy { background: var(--c-heading); color: #fff; }
.c-section--navy h2,
.c-section--navy h3,
.c-section--navy .c-section-no,
.c-section--navy .c-section-head__lead { color: #fff; }
.c-section--navy .c-section-head__lead,
.c-section--navy p { color: rgba(255,255,255,.76); }
.c-section-head { margin: 0 0 clamp(42px, 5vw, 72px); max-width: 940px; }
.c-section-head .c-section-no { margin-bottom: 18px; }
.c-section-no { display: flex; align-items: center; gap: 14px; font-size: .67rem; font-weight: 700; letter-spacing: .2em; }
.c-section-no span { min-width: 2.6em; font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0; }
.c-section-head h2 { max-width: 22ch; }
.c-section-head__lead { max-width: 41rem; margin-top: 24px; color: var(--c-muted); font-family: var(--font-sans); font-size: clamp(1rem, 1.2vw, 1.14rem); line-height: 1.95; letter-spacing: 0; text-transform: none; }
.c-lead { font-size: clamp(1.08rem, 1.35vw, 1.28rem); line-height: 1.95; color: var(--c-heading); }
.c-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--c-border); color: var(--c-muted); font-size: .86rem; line-height: 1.8; }
.c-text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 12px; margin-top: 22px; padding-block: 7px 5px; border-bottom: 1px solid var(--c-heading); color: var(--c-heading); font-size: .92rem; font-weight: 700; }
.c-text-link::after { content: "↗"; font-size: .84em; }
.c-visual-frame { margin: 0; min-height: 0; aspect-ratio: 4 / 3; border: 0; box-shadow: none; }
.c-visual-frame img { position: absolute; inset: 0; }
.c-visual-frame figcaption { position: absolute; left: 0; bottom: -32px; color: var(--c-muted); font-size: .65rem; letter-spacing: .14em; }

.c-hero {
  min-height: min(860px, calc(100svh - 88px));
  padding: 0;
  border-top: 0;
  background: #fff;
}
.c-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}
.c-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 38%, rgba(255,255,255,.45) 64%, rgba(255,255,255,.06) 100%);
}
.c-hero__visual img { position: absolute; inset: 0; object-position: center; }
@keyframes pdm-hero-in {
  from { opacity: 0; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}
.c-hero__visual img,
.c-page-hero__visual img {
  animation: pdm-hero-in 1.15s cubic-bezier(.2,.75,.2,1) both;
}
.c-hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(860px, calc(100svh - 88px));
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  align-items: center;
  padding-block: clamp(64px, 9vw, 120px);
}
.c-hero__copy { max-width: 760px; }
.c-hero .c-kicker { margin-bottom: 24px; color: var(--c-heading); font-size: .68rem; font-weight: 700; letter-spacing: .18em; }
.c-hero h1 { max-width: 13.5ch; font-size: clamp(3.1rem, 5.55vw, 5.2rem); line-height: 1.13; }
.c-hero__lead { max-width: 37rem; margin-top: 28px; color: var(--c-ink); font-size: clamp(1rem, 1.2vw, 1.17rem); }
.c-hero__actions { margin-top: 34px; }
.c-hero__actions .c-text-link { padding-inline: 10px; background: rgba(255,255,255,.9); }
.c-hero__note { margin-top: 18px; color: var(--c-muted); font-size: .8rem; }
.c-hero__steps { align-self: end; justify-self: end; width: min(100%, 310px); margin: 0 0 42px; padding: 0; list-style: none; border-top: 1px solid rgba(21,38,61,.32); }
.c-hero__steps li { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 48px; border-bottom: 1px solid rgba(21,38,61,.2); color: var(--c-heading); font-family: var(--font-serif); font-size: .95rem; }
.c-hero__steps span { font-family: var(--font-sans); font-size: .63rem; letter-spacing: .12em; }
.c-concerns { overflow: hidden; background: #fff; }
.c-concerns .l-container { position: relative; }
.c-question-index { padding: 0; border: 0; }
.c-question-row { grid-template-columns: [number] 70px [question] minmax(0, 1.15fr) [context] minmax(0, .85fr) [end]; align-items: baseline; padding: 28px 0; }
.c-question-row::before { display: none; }
.c-question-row > span { color: var(--c-muted); font-size: .68rem; letter-spacing: .16em; }
.c-question-row h3 { font-size: clamp(1.2rem, 2.15vw, 1.9rem); }
.c-question-row p { color: var(--c-muted); font-size: .94rem; }
.c-concerns__closing { width: min(100%, 640px); margin: 54px 0 0 auto; padding-left: 32px; border-left: 1px solid var(--c-heading); display: grid; gap: 18px; }
.c-concerns__closing p:first-child { font-family: var(--font-serif); color: var(--c-heading); font-size: 1.28rem; }
.c-pullword { position: absolute; right: -1.5vw; top: -55px; z-index: -1; color: rgba(21,38,61,.045); font-size: clamp(7rem, 18vw, 18rem); line-height: 1; writing-mode: vertical-rl; }

@media (min-width: 960px) {
  .c-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .c-split--person { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: center; }
  .c-split--image-right { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
  .c-split--story { grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr); }
}
.c-person { padding-block: clamp(88px, 10vw, 148px); border-left: 0; border-right: 0; background: var(--c-surface); }
.c-person .c-section-head { margin-bottom: 32px; }
.c-person__copy { padding-block: 20px; }
.c-person__copy > p:not(.c-section-no) + p { margin-top: 20px; }
.c-person__name { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: baseline; margin-top: 34px !important; padding-top: 22px; border-top: 1px solid var(--c-border); font-family: var(--font-serif); color: var(--c-heading); font-size: 1.3rem; }
.c-person__name > span { grid-row: 1 / 3; color: var(--c-muted); font-family: var(--font-sans); font-size: .65rem; letter-spacing: .16em; }
.c-person__name small { font-family: var(--font-sans); color: var(--c-muted); font-size: .72rem; }
.c-visual-frame--portrait { aspect-ratio: 4 / 5; }

.c-succession .c-pathway { padding: 0; }
.c-pathway ol { margin: 0; padding: 0; list-style: none; }
.c-pathway li { display: grid; grid-template-columns: [number] 52px [title] minmax(0, .55fr) [body] minmax(0, 1fr) [end]; gap: 18px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--c-border); }
.c-pathway li:last-child { border-bottom: 1px solid var(--c-border); }
.c-pathway li > span { color: var(--c-muted); font-size: .66rem; letter-spacing: .12em; }
.c-pathway li > strong { font-family: var(--font-serif); color: var(--c-heading); font-size: 1.08rem; }
.c-pathway li > p { color: var(--c-muted); font-size: .9rem; }
.c-role-grid { margin-top: 72px; padding: 0; border: 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-role-grid > article { padding: 32px; border: 0; }
.c-role-grid > article + article { border-left: 1px solid var(--c-border); }
.c-role-grid article > p:first-child { color: var(--c-muted); font-size: .66rem; letter-spacing: .15em; }
.c-role-grid h3 { margin-top: 16px; }
.c-role-grid h3 + p { margin-top: 18px; color: var(--c-muted); }
.c-role-grid ul { margin: 18px 0 0; padding-left: 1.2em; }
.c-succession > .l-container > .c-button { margin-top: 40px; }

.c-ai { min-height: 820px; overflow: hidden; padding-block: clamp(92px, 10vw, 150px); background: var(--c-heading); color: #fff; }
.c-ai__visual { position: absolute; inset: 0; }
.c-ai__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(21,38,61,.98) 0%, rgba(21,38,61,.92) 52%, rgba(21,38,61,.52) 100%); }
.c-ai__visual img { width: 100%; height: 100%; object-fit: cover; opacity: .66; }
.c-ai__inner { position: relative; z-index: 1; }
.c-ai .c-section-head h2,
.c-ai .c-section-no { color: #fff; }
.c-ai .c-section-head__lead { color: rgba(255,255,255,.76); }
.c-ai .c-route-grid { width: min(100%, 980px); grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; border: 0; border-top: 1px solid rgba(255,255,255,.34); border-bottom: 1px solid rgba(255,255,255,.34); }
.c-ai .c-route { padding: 34px; border: 0; color: #fff; }
.c-ai .c-route + .c-route { border-left: 1px solid rgba(255,255,255,.25); }
.c-ai .c-route > p:first-child { color: rgba(255,255,255,.56); font-size: .64rem; letter-spacing: .14em; }
.c-ai .c-route h3 { color: #fff; margin-top: 7px; }
.c-ai .c-route strong { margin-top: 20px; font-family: var(--font-serif); font-size: clamp(1.18rem, 1.8vw, 1.55rem); line-height: 1.65; }
.c-ai .c-route strong + p { margin-top: 10px; color: rgba(255,255,255,.74); }
.c-ai__guard { width: min(100%, 760px); margin-top: 34px; color: rgba(255,255,255,.66); font-size: .86rem; }
.c-ai .c-button { margin-top: 30px; border-color: rgba(255,255,255,.5); color: #fff; }

.c-advisory { padding-block: clamp(88px, 9vw, 136px); border-left: 0; border-right: 0; }
.c-advisory .c-section-head { margin-bottom: 30px; }
.c-advisory .c-lead + p { margin-top: 24px; color: var(--c-muted); }

.c-services { background: var(--c-surface); }
.c-service-index { padding: 0; border: 0; border-top: 1px solid var(--c-heading); }
.c-service-row { grid-template-columns: 58px minmax(0, 1.3fr) minmax(180px, .7fr) 24px; align-items: center; padding: 22px 0; color: var(--c-heading); }
.c-service-row > span { color: var(--c-muted); font-size: .68rem; letter-spacing: .12em; }
.c-service-row strong { font-family: var(--font-serif); font-size: clamp(1.06rem, 1.8vw, 1.4rem); }
.c-service-row small { color: var(--c-muted); }
.c-service-row i { font-style: normal; }
.c-service-row.is-primary { min-height: 82px; }
.c-service-row.is-primary strong { font-size: clamp(1.22rem, 2.2vw, 1.8rem); }
.c-services .c-button { margin-top: 40px; }

.c-manifesto { min-height: 780px; padding: 0; border: 0; overflow: hidden; background: var(--c-heading); color: #fff; }
.c-manifesto__visual { position: absolute; inset: 0; }
.c-manifesto__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,38,61,.98) 0%, rgba(21,38,61,.78) 55%, rgba(21,38,61,.2) 100%); }
.c-manifesto__visual img { width: 100%; height: 100%; object-fit: cover; }
.c-manifesto__inner { position: relative; z-index: 1; min-height: 780px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 100px; }
.c-manifesto .c-section-no { color: rgba(255,255,255,.72); }
.c-manifesto blockquote { margin: 34px 0 0; font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.32; }
.c-manifesto blockquote + p { max-width: 42rem; margin-top: 36px; color: rgba(255,255,255,.78); }
.c-manifesto__aim { margin-top: 20px; color: #fff !important; font-family: var(--font-serif); font-size: 1.2rem; }
.c-manifesto .c-button { margin-top: 34px; border-color: rgba(255,255,255,.5); color: #fff; }

.c-start .c-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.c-process--four { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.c-process-step { display: grid; grid-template-columns: 1fr; align-content: start; gap: 14px; padding: 32px; border: 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-process-step + .c-process-step { border-left: 1px solid var(--c-border); }
.c-process-step::before,
.c-process-step::after { display: none; }
.c-process-step > span { font-family: var(--font-serif); color: var(--c-heading); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; }
.c-process-step h3 { font-size: 1.18rem; }
.c-process-step h3 + p { margin-top: 12px; color: var(--c-muted); font-size: .92rem; }
.c-start .c-preview-note { margin-top: 30px; }

.c-section.c-faq { display: block; padding-block: clamp(88px, 9vw, 136px); border-left: 0; border-right: 0; }
.c-faq__layout { display: grid; grid-template-columns: minmax(230px, .65fr) minmax(0, 1.35fr); gap: clamp(42px, 7vw, 100px); }
.c-faq__layout .c-section-head { position: sticky; top: 132px; align-self: start; margin-bottom: 0; }
.c-faq__list { border-top: 1px solid var(--c-heading); }
.c-faq__item { border: 0; border-bottom: 1px solid var(--c-border); }
.c-faq__item summary { align-items: center; padding: 26px 0; font-family: var(--font-serif); color: var(--c-heading); font-size: 1.06rem; cursor: pointer; }
.c-faq__item summary span { flex: none; color: var(--c-muted); font-family: var(--font-sans); font-size: .65rem; letter-spacing: .12em; }
.c-faq__item > div { padding: 0 42px 26px 58px; }
.c-faq__item > div p { color: var(--c-muted); font-size: .94rem; }

.c-cta { min-height: 430px; padding: 0; border: 0; overflow: hidden; background: var(--c-heading); }
.c-cta__visual { position: absolute; inset: 0; }
.c-cta__visual::after { content: ""; position: absolute; inset: 0; background: rgba(21,38,61,.74); }
.c-cta__visual img { width: 100%; height: 100%; object-fit: cover; }
.c-cta__inner { position: relative; z-index: 1; min-height: 430px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 48px; padding-block: 72px; }
.c-cta .c-section-no,
.c-cta h2 { color: #fff; }
.c-cta h2 { max-width: 18ch; margin-top: 20px; font-size: clamp(2rem, 3.7vw, 3.7rem); }
.c-cta h2 + p { max-width: 40rem; margin-top: 24px; color: rgba(255,255,255,.72); }
.c-cta .c-button { border-color: rgba(255,255,255,.58); color: #fff; white-space: nowrap; }

.c-site-footer { padding: 0; border: 0; background: #0e1d30; }
.c-site-footer__main { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); gap: 80px; padding-block: 76px; }
.c-site-footer .c-brand { color: #fff; }
.c-site-footer .c-brand__text { color: #fff; }
.c-site-footer .c-brand__text small { color: rgba(255,255,255,.58); }
.c-site-footer .c-brand__mark { filter: brightness(0) invert(1); }
.c-site-footer__brand > p { margin-top: 28px; color: rgba(255,255,255,.68); font-family: var(--font-serif); font-size: 1.25rem; }
.c-site-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.c-site-footer__nav > div { display: grid; align-content: start; }
.c-site-footer__nav strong { margin-bottom: 16px; color: rgba(255,255,255,.5); font-size: .67rem; letter-spacing: .16em; }
.c-site-footer__nav a { min-height: 38px; color: rgba(255,255,255,.78); font-size: .88rem; }
.c-site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); letter-spacing: .1em; }

.c-page-hero { min-height: 620px; padding: 0; border-top: 0; overflow: hidden; background: #fff; }
.c-page-hero__visual { position: absolute; inset: 0; min-height: 0; aspect-ratio: auto; border: 0; box-shadow: none; }
.c-page-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.91) 45%, rgba(255,255,255,.28) 76%, rgba(255,255,255,.06) 100%); }
.c-page-hero__visual img { position: absolute; inset: 0; object-position: center; }
.c-page-hero__inner { position: relative; z-index: 2; min-height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 82px; }
.c-page-hero .c-kicker { margin-bottom: 24px; color: var(--c-heading); font-weight: 700; }
.c-page-hero h1 { max-width: 16ch; font-size: clamp(2.9rem, 5.4vw, 5rem); }
.c-page-hero__lead { max-width: 38rem; margin-top: 28px; color: var(--c-ink); }

.c-quote-band { padding-block: clamp(80px, 10vw, 140px); border: 0; background: var(--c-heading); color: #fff; text-align: center; }
.c-quote-band p { font-family: var(--font-serif); font-size: clamp(2rem, 4.4vw, 4.2rem); line-height: 1.45; }
.c-quote-band small { display: block; margin-top: 26px; color: rgba(255,255,255,.58); letter-spacing: .18em; }
.c-quote-band--light { background: var(--c-surface); color: var(--c-heading); }
.c-quote-band--light small { color: var(--c-muted); }

.c-route-grid--light { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; border: 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-route-grid--light .c-route { padding: 36px; border: 0; }
.c-route-grid--light .c-route + .c-route { border-left: 1px solid var(--c-border); }
.c-route-grid--light .c-route > p:first-child { color: var(--c-muted); font-size: .66rem; letter-spacing: .14em; }
.c-route-grid--light h3 { margin-top: 8px; }
.c-route-grid--light strong { margin-top: 18px; font-family: var(--font-serif); color: var(--c-heading); font-size: clamp(1.15rem, 1.75vw, 1.5rem); line-height: 1.65; }
.c-route-grid--light strong + p { margin-top: 10px; color: var(--c-muted); }
.c-pathway--compact li { grid-template-columns: [number] 52px [title] minmax(0, .7fr) [body] minmax(0, 1fr) [end]; border-color: rgba(255,255,255,.2); }
.c-pathway--compact li > span,
.c-pathway--compact li > p { color: rgba(255,255,255,.64); }
.c-pathway--compact li > strong { color: #fff; }
.c-flow-line { display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr; align-items: center; gap: 8px; padding: 40px 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-flow-line span { font-family: var(--font-serif); color: var(--c-heading); text-align: center; }
.c-flow-line i { position: relative; height: 1px; background: var(--c-border); }
.c-flow-line i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--c-heading); border-right: 1px solid var(--c-heading); transform: rotate(45deg); }

.c-detail-list { padding: 0; border: 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-detail-list > article { padding: 30px; }
.c-detail-list > article:nth-child(even) { border-left: 1px solid var(--c-border); }
.c-detail-list article > span { color: var(--c-muted); font-size: .66rem; letter-spacing: .12em; }
.c-detail-list h3 { margin-top: 14px; font-size: 1.18rem; }
.c-detail-list h3 + p { margin-top: 12px; color: var(--c-muted); font-size: .92rem; }
.c-service-feature { border-top: 1px solid var(--c-heading); }
.c-service-feature > a { display: grid; grid-template-columns: [number] 70px [copy] minmax(0, 1fr) [visual] minmax(240px, .6fr) [end]; gap: 28px; align-items: center; min-height: 220px; padding: 28px 0; border-bottom: 1px solid var(--c-border); }
.c-service-feature > a > span { align-self: start; color: var(--c-muted); font-size: .68rem; letter-spacing: .12em; }
.c-service-feature > a > div > p:first-child { color: var(--c-muted); font-size: .65rem; letter-spacing: .14em; }
.c-service-feature h3 { margin-top: 8px; }
.c-service-feature h3 + p { margin-top: 14px; color: var(--c-muted); }
.c-service-feature img { width: 100%; height: 160px; object-fit: cover; }

.c-support-index {
  border-top: 1px solid var(--c-heading);
  border-bottom: 1px solid var(--c-heading);
}
.c-support-index > a {
  display: grid;
  grid-template-columns: 54px minmax(210px, .72fr) minmax(280px, 1fr) 24px;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--c-border);
  transition: color .2s ease, background-color .2s ease;
}
.c-support-index > a:last-child { border-bottom: 0; }
.c-support-index > a:hover { color: var(--c-cta); background: rgba(255,255,255,.62); }
.c-support-index span { color: var(--c-muted); font-size: .66rem; letter-spacing: .14em; }
.c-support-index strong { font-family: var(--font-serif); color: var(--c-heading); font-size: clamp(1.08rem, 1.6vw, 1.32rem); font-weight: 600; }
.c-support-index small { color: var(--c-muted); font-size: .84rem; line-height: 1.7; }
.c-support-index i { color: var(--c-heading); font-style: normal; }

.c-support-catalog {
  border-top: 1px solid var(--c-heading);
  border-bottom: 1px solid var(--c-heading);
}
.c-support-catalog__item {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(42px, 5.5vw, 72px) 0;
  border-bottom: 1px solid var(--c-border);
  scroll-margin-top: 110px;
}
.c-support-catalog__item:last-child { border-bottom: 0; }
.c-support-catalog__meta span {
  display: block;
  color: var(--c-heading);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}
.c-support-catalog__meta p {
  margin-top: 16px;
  color: var(--c-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.7;
}
.c-support-catalog__body { max-width: 780px; }
.c-support-catalog__body h3 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.c-support-catalog__body h3 + p { max-width: 720px; margin-top: 20px; color: var(--c-ink); line-height: 2; }
.c-support-catalog__scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  list-style: none;
}
.c-support-catalog__scope li {
  position: relative;
  padding: 17px 16px 17px 30px;
  color: var(--c-muted);
  font-size: .78rem;
  line-height: 1.7;
}
.c-support-catalog__scope li + li { border-left: 1px solid var(--c-border); }
.c-support-catalog__scope li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 15px;
  width: 5px;
  height: 5px;
  background: var(--c-heading);
}
.c-support-catalog__body .c-text-link { margin-top: 26px; }

.c-story-aside { position: sticky; top: 132px; align-self: start; padding-top: 4px; }
.c-story-aside > p:first-child { color: var(--c-muted); font-size: .65rem; letter-spacing: .16em; }
.c-story-aside h2 { margin-top: 10px; font-size: 1.7rem; }
.c-story-aside h2 + p { color: var(--c-muted); }
.c-story-aside img { width: 100%; margin-top: 28px; aspect-ratio: 4 / 5; object-fit: cover; }
.c-story-aside small { display: block; margin-top: 8px; color: var(--c-muted); }
.c-split--story .c-prose { max-width: 52rem; }
.c-split--story .c-prose .c-section-head { margin-bottom: 42px; }
.c-split--story .c-prose > p { font-size: 1.02rem; line-height: 2.1; }

.c-entity-grid { padding: 0; border: 0; border-top: 1px solid var(--c-heading); border-bottom: 1px solid var(--c-heading); }
.c-entity-grid > article { padding: 38px; }
.c-entity-grid > article + article { border-left: 1px solid var(--c-border); }
.c-entity-logo { display: block; width: clamp(82px, 8vw, 112px); height: auto; max-height: none; margin: 0 0 24px; object-fit: contain; }
.c-entity-grid article > p:first-of-type { color: var(--c-muted); font-size: .65rem; letter-spacing: .14em; }
.c-entity-grid article > p:last-child { margin-top: 18px; color: var(--c-muted); font-size: .95rem; line-height: 1.9; letter-spacing: 0; }
.c-entity-grid h3 { margin-top: 10px; }
.c-entity-grid dl { margin: 30px 0 0; }
.c-entity-grid dl > div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid var(--c-border); }
.c-entity-grid dt { color: var(--c-muted); font-size: .76rem; }
.c-entity-grid dd { margin: 0; }
.c-entity-grid dd small { display: block; color: var(--c-muted); }
.c-notice { padding: 28px; border: 1px solid var(--c-border); border-left: 3px solid var(--c-heading); font-size: .94rem; letter-spacing: 0; text-transform: none; }
.c-notice h3 { font-size: 1.2rem; }
.c-notice ul { margin: 18px 0; padding-left: 1.3em; }

.c-contact-layout { display: grid; grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr); gap: clamp(48px, 7vw, 100px); }
.c-contact-layout > div:first-child { position: sticky; top: 132px; align-self: start; }
.c-contact-layout .c-section-head { margin-bottom: 26px; }
.c-form { padding: clamp(24px, 4vw, 46px); background: #fff; border: 1px solid var(--c-border); }
.c-form fieldset { margin: 0; padding: 0; border: 0; }
.c-form legend,
.c-field > label {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0;
  color: var(--c-heading);
  font-weight: 700;
}
.c-form legend span,
.c-field label span { margin-left: 8px; color: var(--c-cta); font-size: .68rem; }
.c-field__help { margin: 4px 0 10px; color: var(--c-muted); font-size: .8rem; }
.c-choice-grid label {
  position: relative;
  align-items: center;
  padding-left: 58px;
  border-radius: 0;
  font-weight: 500;
  cursor: pointer;
}
.c-choice-grid input,
.c-consent input {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44px;
  height: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.c-choice-grid label::before,
.c-consent::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--c-muted);
  background: #fff;
  transform: translateY(-50%);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.c-choice-grid label:has(input:checked)::before,
.c-consent:has(input:checked)::before {
  border-color: var(--c-heading);
  background: var(--c-heading);
  box-shadow: inset 0 0 0 4px #fff;
}
.c-choice-grid label:has(input:focus-visible)::before,
.c-consent:has(input:focus-visible)::before {
  outline: 2px solid var(--c-heading);
  outline-offset: 3px;
}
.c-consent {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 54px;
  color: var(--c-ink) !important;
  font-weight: 400 !important;
  cursor: pointer;
}
.c-consent a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--c-heading);
}
.c-form__status:not(:empty) { padding: 14px 16px; border-left: 3px solid var(--c-heading); background: var(--c-surface); color: var(--c-heading); }
.c-policy { max-width: 800px; }
.c-policy > h2 { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--c-border); font-size: clamp(1.35rem, 2vw, 1.72rem); }
.c-policy__date { margin-top: 64px !important; color: var(--c-muted); font-size: .86rem; }

@media (max-width: 959px) {
  .c-hero,
  .c-hero__inner { min-height: 760px; }
  .c-hero__inner { grid-template-columns: 1fr; align-content: center; }
  .c-hero__steps { justify-self: start; align-self: auto; margin: 0; }
  .c-hero__visual::after { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 70%, rgba(255,255,255,.38) 100%); }
  .c-question-row { grid-template-columns: 62px 1fr; }
  .c-question-row p { grid-column: 2; }
  .c-ai .c-route-grid,
  .c-route-grid--light { grid-template-columns: 1fr; }
  .c-ai .c-route + .c-route,
  .c-route-grid--light .c-route + .c-route { border-left: 0; border-top: 1px solid currentColor; }
  .c-start .c-process,
  .c-process--four { grid-template-columns: 1fr; }
  .c-process-step + .c-process-step { border-left: 0; border-top: 0; }
  .c-faq__layout,
  .c-contact-layout { grid-template-columns: 1fr; }
  .c-faq__layout .c-section-head,
  .c-contact-layout > div:first-child,
  .c-story-aside { position: static; }
  .c-cta__inner { grid-template-columns: 1fr; }
  .c-site-footer__main { grid-template-columns: 1fr; gap: 48px; }
  .c-flow-line { grid-template-columns: 1fr; justify-items: start; }
  .c-flow-line span { text-align: left; }
  .c-flow-line i { width: 1px; height: 28px; margin-left: 10px; }
  .c-flow-line i::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .c-service-feature > a { grid-template-columns: 52px 1fr; }
  .c-service-feature img { grid-column: 1 / -1; height: 240px; }
  .c-support-index > a { grid-template-columns: 46px minmax(190px, .8fr) minmax(220px, 1fr) 20px; gap: 16px; }
  .c-support-catalog__scope { grid-template-columns: 1fr; }
  .c-support-catalog__scope li + li { border-top: 1px solid var(--c-border); border-left: 0; }
}

@media (max-width: 767px) {
  .c-section { padding-block: 72px; }
  .c-hero h1 .jp-phrase,
  .c-page-hero h1 .jp-phrase { display: inline; white-space: normal; }
  .c-site-header__inner { width: calc(100% - 28px); }
  .c-brand__mark { width: 38px; height: 38px; }
  .c-brand__text { font-size: .92rem; }
  .c-brand__text small { font-size: .5rem; }
  .c-hero,
  .c-hero__inner { min-height: 720px; }
  .c-hero__inner { width: calc(100% - 36px); padding-block: 70px 44px; }
  .c-hero h1 { font-size: clamp(2.55rem, 11.5vw, 4rem); }
  .c-hero__lead br.pc-br { display: none; }
  .c-hero__steps { width: 100%; }
  .c-hero__visual img { object-position: 62% center; }
  .c-hero__visual::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 60%, rgba(255,255,255,.68) 100%); }
  .c-question-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .c-question-row p { grid-column: auto; }
  .c-concerns__closing { margin-top: 36px; padding-left: 20px; }
  .c-pullword { display: none; }
  .c-visual-frame figcaption { position: static; margin-top: 8px; }
  .c-person__copy { padding-top: 24px; }
  .c-pathway li { grid-template-columns: 42px 1fr; }
  .c-pathway li > p { grid-column: 2; }
  .c-role-grid > article { padding: 26px 0; }
  .c-role-grid > article + article { border-left: 0; border-top: 1px solid var(--c-border); }
  .c-ai .c-route,
  .c-route-grid--light .c-route { padding: 28px 0; }
  .c-service-row { grid-template-columns: 42px 1fr 20px; gap: 12px; }
  .c-service-row small { grid-column: 2; }
  .c-service-row > i { grid-column: 3; grid-row: 1 / 3; }
  .c-manifesto,
  .c-manifesto__inner { min-height: 680px; }
  .c-manifesto__inner { padding-block: 74px; }
  .c-manifesto blockquote { font-size: clamp(2.3rem, 12vw, 3.7rem); }
  .c-process-step { padding: 26px 0; }
  .c-faq__item > div { padding: 0 0 24px 0; }
  .c-cta,
  .c-cta__inner { min-height: 460px; }
  .c-cta__inner { padding-block: 64px; }
  .c-cta .c-button { white-space: normal; }
  .c-site-footer__nav { grid-template-columns: 1fr; }
  .c-site-footer__bottom { flex-direction: column; }
  .c-page-hero,
  .c-page-hero__inner { min-height: 560px; }
  .c-page-hero__inner { width: calc(100% - 36px); padding-block: 72px; }
  .c-page-hero h1 { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .c-page-hero__visual img { object-position: 62% center; }
  .c-page-hero__visual::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 72%, rgba(255,255,255,.64) 100%); }
  .c-detail-list > article { padding: 26px 0; }
  .c-detail-list > article:nth-child(even) { border-left: 0; }
  .c-service-feature > a { grid-template-columns: 38px 1fr; gap: 16px; }
  .c-service-feature img { height: 210px; }
  .c-support-index > a { grid-template-columns: 36px 1fr 20px; gap: 10px 12px; min-height: 0; padding: 22px 0; }
  .c-support-index small { grid-column: 2; }
  .c-support-index i { grid-column: 3; grid-row: 1 / 3; }
  .c-support-catalog__item { grid-template-columns: 1fr; gap: 24px; padding: 42px 0; }
  .c-support-catalog__meta { display: flex; align-items: baseline; gap: 18px; }
  .c-support-catalog__meta span { font-size: 2rem; }
  .c-support-catalog__meta p { margin-top: 0; }
  .c-support-catalog__body h3 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .c-support-catalog__scope { margin-top: 24px; }
  .c-entity-grid > article { padding: 30px 0; }
  .c-entity-grid > article + article { border-left: 0; border-top: 1px solid var(--c-border); }
  .c-entity-grid dl > div { grid-template-columns: 1fr; gap: 5px; }
  .c-form { padding: 22px 18px; }
  .c-preview-badge { display: none; }
}

/* ZOROYA RESPONSIVE TYPOGRAPHY BASELINE */
/*
 * ぞろ屋共通：PC/SP別改行と日本語の自然な折り返し。
 * このCSSの組み込みや自動監査FAIL=0だけでは公開合格にならない。
 * 全WARNの処置と、PC/SP必須幅での意味単位・行バランス目視を記録すること。
 */
br.pc-br,
br.sp-br {
  display: none !important;
}

@media screen and (max-width: 767px) {
  br.sp-br {
    display: inline !important;
  }
}

@media screen and (min-width: 768px) {
  br.pc-br {
    display: inline !important;
  }
}

:where(body) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}

:where(h1, h2, h3, h4, .lead, .hero-lead, .page-hero__lead, .fv-lead, .subcopy, .btn, .button, .wp-block-button__link, nav a, nav button, a.cta, .cta a, [class*="cta"] a, [role="button"], button, input[type="button"], input[type="submit"], input[type="reset"], summary) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

@supports (word-break: auto-phrase) {
  :where(body, h1, h2, h3, h4, .lead, .hero-lead, .page-hero__lead, .fv-lead, .subcopy, .btn, .button, .wp-block-button__link, nav a, nav button, a.cta, .cta a, [class*="cta"] a, [role="button"], button, input[type="button"], input[type="submit"], input[type="reset"], summary) {
    word-break: auto-phrase;
  }
}

/*
 * `pc-br` / `sp-br` only decide where a planned line ends. They do not keep
 * the words between two breaks together. Wrap only a short, indivisible
 * Japanese phrase (roughly 3-10 full-width characters) with `.jp-phrase`.
 * Never wrap a whole heading or sentence with this class; fix font size,
 * column width, letter spacing, or the layout breakpoint when it cannot fit.
 */
.jp-phrase {
  display: inline-block;
  white-space: nowrap;
}

/* Long URLs/codes may opt in. Do not apply this to headings, leads or CTAs. */
.allow-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/*
 * Opt-in rhythm contract for a standard number -> title -> body card.
 * These are defaults, not a universal art-direction rule. If an editorial
 * layout intentionally departs from them, record the reason and inspect the
 * rendered result instead of reusing this contract silently.
 */
:where([data-z-rhythm="index-title-body"]) {
  --z-index-title-gap: clamp(16px, 1.5vw, 24px);
  --z-title-body-gap: clamp(10px, 1vw, 16px);
  display: grid;
  align-content: start;
}

:where([data-z-rhythm="index-title-body"]) > :where([data-z-role="index"]) {
  margin-block: 0 var(--z-index-title-gap);
}

:where([data-z-rhythm="index-title-body"]) > :where([data-z-role="title"]) {
  margin-block: 0 var(--z-title-body-gap);
}

:where([data-z-rhythm="index-title-body"]) > :where([data-z-role="body"]) {
  margin-block: 0;
}

:where(.post-body, .post_content, .entry-content, .wp-block-post-content) :where(p, li) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}

@supports (text-wrap: pretty) {
  :where(.post-body, .post_content, .entry-content, .wp-block-post-content) :where(p, li) {
    text-wrap: pretty;
  }
}

/* Long editorial phrases may wrap naturally before the desktop composition. */
@media screen and (max-width: 959px) {
  body .jp-phrase {
    display: inline;
    white-space: normal;
  }
}

/* Generated explainers: Japanese labels are baked into the source images. */
.c-visual-explainer {
  margin: 0;
  padding: clamp(8px, 1.4vw, 18px);
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--c-shadow);
}

.c-visual-explainer picture,
.c-visual-explainer img {
  display: block;
  width: 100%;
}

.c-visual-explainer img {
  height: auto;
}

.c-explainer-linkmap {
  position: relative;
}

.c-explainer-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.c-explainer-hotspots--sp {
  display: none;
}

.c-explainer-hotspots a {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--w);
  height: var(--h);
  border: 1px solid transparent;
  border-radius: 8px;
  pointer-events: auto;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.c-explainer-hotspots a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.c-explainer-hotspots a:hover,
.c-explainer-hotspots a:focus-visible {
  border-color: rgba(16, 126, 70, .6);
  background: rgba(255, 255, 255, .24);
  box-shadow: 0 0 0 3px rgba(16, 126, 70, .12);
  outline: 0;
}

.c-explainer-action {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: .8rem;
  letter-spacing: .04em;
}

.c-explainer-action span {
  color: #107e46;
}

.c-support-catalog__item[id] {
  scroll-margin-top: 112px;
}

.c-support-catalog__item:target {
  background: linear-gradient(90deg, rgba(16, 126, 70, .075), rgba(16, 126, 70, 0) 72%);
  box-shadow: -14px 0 0 rgba(16, 126, 70, .075);
}

.c-visual-explainer--after-copy,
.c-visual-explainer + .c-route-grid {
  margin-top: clamp(34px, 5vw, 68px);
}

.c-entity-signatures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.c-entity-signatures > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.c-entity-signatures > div + div {
  border-left: 1px solid var(--c-border);
}

.c-entity-signatures img {
  width: 74px;
  height: auto;
}

.c-entity-signatures span {
  color: var(--c-heading);
  font-family: var(--font-serif);
}

@media screen and (max-width: 767px) {
  .c-visual-explainer {
    padding: 5px;
  }

  .c-explainer-hotspots--pc {
    display: none;
  }

  .c-explainer-hotspots--sp {
    display: block;
  }

  .c-explainer-action {
    padding: 0 7px 7px;
    font-size: .76rem;
    line-height: 1.75;
  }

  .c-entity-signatures {
    grid-template-columns: 1fr;
  }

  .c-entity-signatures > div {
    padding: 18px 0;
  }

  .c-entity-signatures > div + div {
    border-top: 1px solid var(--c-border);
    border-left: 0;
  }
}

/* September 2026: two clear service entrances and a reading-first journal. */
.c-hero__promise { margin-top: 24px; font-family: var(--font-serif); color: var(--c-heading); font-size: clamp(1.3rem, 2.2vw, 2rem); letter-spacing: .05em; }
.c-hero__promise + .c-hero__lead { margin-top: 22px; }
.c-entry-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.c-entry { display: flex; flex-direction: column; background: #fff; color: var(--c-ink); border: 1px solid var(--c-border); text-decoration: none; }
.c-entry figure { margin: 0; overflow: hidden; }
.c-entry figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s ease; }
.c-entry:hover figure img { transform: scale(1.025); }
.c-entry__copy { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.c-entry__copy .c-kicker { font-size: .83rem; letter-spacing: .07em; color: var(--c-muted); }
.c-entry__copy h3 { margin: 14px 0 20px; font-size: clamp(1.5rem, 2.3vw, 2rem); }
.c-entry__copy > p:not(.c-kicker) { font-size: 1rem; line-height: 1.95; margin-bottom: 24px; }
.c-entry__link { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--c-heading); border-top: 1px solid var(--c-border); padding-top: 20px; margin-top: auto; font-size: .95rem; font-weight: 700; }
.c-entry__link i { font-style: normal; }
.c-entry-note { margin-top: 28px; color: var(--c-muted); font-size: .94rem; }
.c-entry-note .c-text-link { margin: 8px 0 0 20px; }
.c-banso-copy { max-width: 780px; margin: 40px auto 0; }
.c-banso-copy p + p { margin-top: 24px; }
.c-related-support { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; margin: 0 0 40px; }
.c-related-support a { display: flex; flex-direction: column; padding: 28px 0; border-top: 1px solid var(--c-border); text-decoration: none; }
.c-related-support strong { font-family: var(--font-serif); font-size: 1.5rem; color: var(--c-heading); }
.c-related-support span { display: flex; justify-content: space-between; gap: 16px; font-size: .95rem; color: var(--c-muted); margin-top: 12px; }
.c-related-support i { font-style: normal; }
.c-manifesto__preface { font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 22px; }
.c-manifesto blockquote { margin-top: 0; }
.c-support-index > a { grid-template-columns: minmax(200px, .8fr) minmax(220px, 1fr) 20px; }
.c-journal-list { display: grid; gap: 40px; }
.c-journal-card { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--c-border); text-decoration: none; color: var(--c-ink); align-items: center; }
.c-journal-card figure { margin: 0; }
.c-journal-card figure img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; }
.c-journal-card__copy h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.6; margin: 12px 0 16px; max-width: 30em; }
.c-journal-card__copy > p:not(.c-journal-meta) { font-size: .95rem; line-height: 1.95; color: var(--c-muted); }
.c-journal-card .c-entry__link { margin-top: 18px; border-top: 0; padding-top: 0; }
.c-journal-card:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.c-journal-meta { display: flex; gap: 12px 24px; flex-wrap: wrap; font-size: .8rem; font-family: var(--font-sans); color: var(--c-muted); }
.c-related-article .c-kicker { margin-bottom: 24px; }
.c-related-article .c-journal-card { border: 0; padding: 0; max-width: 1000px; }
.c-journal-hero { padding-block: clamp(64px, 8vw, 120px); background: var(--c-surface); }
.c-journal-hero h1 { margin: 28px 0; font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 1.4; }
.c-journal-hero h1 + p { color: var(--c-muted); line-height: 1.95; }
.l-article { width: min(100% - 48px, 800px); margin-inline: auto; }
.c-article { padding-block: 48px 96px; }
.c-breadcrumb { display: flex; gap: 12px; align-items: center; font-size: .8rem; color: var(--c-muted); margin-bottom: 44px; }
.c-breadcrumb a { min-height: 44px; display: inline-flex; align-items: center; }
.c-article__header h1 { margin: 20px 0; max-width: none; font-size: clamp(1.8rem, 3.5vw, 2.9rem); line-height: 1.55; letter-spacing: .02em; text-wrap: pretty; }
.c-article__author { color: var(--c-muted); font-size: .85rem; }
.c-article__cover { margin: 40px 0; }
.c-article__cover img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; }
.c-article__body { max-width: 740px; font-size: 1.05rem; line-height: 2.05; }
.c-article__body > p { margin: 0 0 1.5em; line-height: 2.05; }
.c-article__body > h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.65; letter-spacing: .01em; margin: 72px 0 28px; padding-top: 28px; border-top: 1px solid var(--c-border); max-width: none; scroll-margin-top: 120px; }
.c-article__toc { padding: 20px 24px; background: var(--c-surface); margin: 0 0 40px; font-size: .92rem; }
.c-article__toc summary { cursor: pointer; min-height: 44px; padding-block: 8px; color: var(--c-heading); font-weight: 700; }
.c-article__toc ol { padding-left: 24px; margin-top: 16px; }
.c-article__toc a { display: inline-block; padding-block: 10px; text-decoration: underline; text-underline-offset: 4px; }
.c-article__next { margin-top: 44px; padding: 32px; background: var(--c-surface); }
.c-article__next .c-kicker { margin-bottom: 20px; }
.c-article__back { margin-top: 44px; }
@media (max-width: 767px) {
  .c-hero__promise { margin-top: 22px; font-size: 1.28rem; }
  .c-entry-pair, .c-related-support { grid-template-columns: 1fr; }
  .c-entry-pair { gap: 28px; }
  .c-entry__copy { padding: 24px; }
  .c-entry-note .c-text-link { margin-left: 0; }
  .c-related-support span { line-height: 1.8; }
  .c-manifesto__preface { font-size: 1.1rem; }
  .c-support-index > a { grid-template-columns: minmax(0, 1fr) 20px; }
  .c-support-index small { grid-column: 1; }
  .c-support-index i { grid-column: 2; }
  .c-journal-card { grid-template-columns: 1fr; gap: 24px; }
  .c-journal-card__copy h3 { font-size: 1.32rem; }
  .c-journal-card .c-entry__link { min-height: 44px; }
  .c-journal-meta { gap: 8px 20px; }
  .l-article { width: calc(100% - 40px); }
  .c-article { padding-top: 20px; }
  .c-article__header h1 { font-size: 1.8rem; }
  .c-article__body { font-size: 1rem; }
  .c-article__body > h2 { font-size: 1.35rem; margin-top: 56px; }
  .c-article__next { padding: 24px 16px; }
  .c-article__next .c-button { width: 100%; padding-inline: 12px; font-size: .85rem; }
  .c-breadcrumb { margin-bottom: 24px; }
}
/* Essential headings stay readable without waiting for scroll animations. */
html.js .c-section-head[data-reveal] { opacity: 1; transform: none; transition: none; }
@media (max-width: 767px) {
  .page-about .c-page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); line-height: 1.55; }
  .c-article__header h1 .jp-phrase { display: inline-block; white-space: normal; }
}
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.c-related-article h2.c-kicker { font-family: var(--font-sans); font-size: .85rem; letter-spacing: .12em; }

/* Confirmed company information, shared across the profile and contact paths. */
.c-company-profile { scroll-margin-top: 100px; }
.c-company-profile__rows { margin: 0; border-top: 1px solid var(--c-heading); }
.c-company-profile__rows > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--c-border); }
.c-company-profile__rows dt { font-weight: 700; color: var(--c-heading); }
.c-company-profile__rows dd { margin: 0; line-height: 1.9; }
.c-company-phone { display: inline-flex; align-items: center; min-height: 44px; color: inherit; text-decoration: underline; text-underline-offset: 5px; white-space: nowrap; }
.c-company-address { margin-top: 28px; font-style: normal; font-size: .9rem; line-height: 1.9; color: #dce3eb; }
.c-company-address .c-company-phone { font-size: 1.2rem; }
.c-company-address span { font-size: .82rem; }
.c-company-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.c-company-contact h3 { font-family: var(--font-sans); font-size: 1rem; }
.c-company-contact .c-company-phone { margin-block: 12px; font-size: 1.65rem; font-weight: 700; }
.c-company-contact p { font-size: .9rem; }
@media (max-width: 767px) {
  .c-company-profile__rows > div { grid-template-columns: 1fr; gap: 8px; padding-block: 20px; }
  .c-company-profile__rows dt { font-size: .85rem; }
}

/* Headings use short semantic units; keep those units intact at every width. */
.c-hero h1 .jp-phrase, .c-page-hero h1 .jp-phrase, .c-article__header h1 .jp-phrase, body .jp-phrase { display: inline-block; white-space: nowrap; }
@media (max-width: 767px) {
  .c-page-hero h1 { font-size: clamp(2rem, 8.6vw, 3.5rem); }
  .page-about .c-page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
}

/* WordPress integration; preserve the approved PDM layout. */
.c-nav .current-menu-item a,.c-nav .current_page_parent a{color:var(--c-heading)}
body.admin-bar .c-site-header{top:32px}
.pdm-widgets{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px;margin-top:64px;padding-top:40px;border-top:1px solid var(--c-border)}
.pdm-widget{min-width:0;font-size:.9rem}.pdm-widget h2{font-size:1.05rem;margin-bottom:16px}.pdm-widget ul{padding-left:20px}.pdm-widget a{text-decoration:underline;text-underline-offset:3px}.pdm-widget input[type=search]{width:100%;padding:10px}.pdm-widget input[type=submit]{margin-top:8px}
.c-article__body .wp-block-heading{white-space:normal}.pdm-pagination{margin-top:40px}.pdm-pagination .page-numbers{padding:10px 16px;display:inline-block}.pdm-pagination .current{background:var(--c-heading);color:white}
@media(max-width:782px){body.admin-bar .c-site-header{top:46px}.pdm-widgets{grid-template-columns:1fr}}
@media(max-width:600px){body.admin-bar .c-site-header{top:0}}
