:root {
  --paper: #f3efe6;
  --paper-light: #fbf9f4;
  --paper-deep: #e9e1d3;
  --ink: #122126;
  --ink-soft: #4f5c5f;
  --ink-faint: #626c6e;
  --indigo: #102d3d;
  --indigo-deep: #091d29;
  --vermilion: #b3422e;
  --vermilion-dark: #813124;
  --bronze: #9a7950;
  --sage: #dfe9e3;
  --line: #d5cbb9;
  --line-dark: #8f8270;
  --white: #fff;
  --display: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --latin: "Cormorant Garamond", Georgia, serif;
  --shadow-file: 0 34px 80px rgba(9, 29, 41, .2);
}

html[lang="en"] {
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Avenir Next", sans-serif;
}

html[lang="zh-Hans"] {
  --display: "Noto Serif SC", "Songti SC", serif;
  --body: "Noto Sans SC", "PingFang SC", sans-serif;
}

html[lang="vi"] {
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Be Vietnam Pro", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.8;
  letter-spacing: .025em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 33, 38, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 33, 38, .018) 1px, transparent 1px),
    radial-gradient(circle at 92% 8%, rgba(179, 66, 46, .08), transparent 24rem),
    radial-gradient(circle, rgba(18, 33, 38, .04) .7px, transparent .8px);
  background-size: 48px 48px, 48px 48px, auto, 14px 14px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--indigo-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

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

:focus-visible {
  outline: 3px solid var(--vermilion);
  outline-offset: 4px;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(143, 130, 112, .55);
  background: rgba(243, 239, 230, .96);
}

.header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--ink-faint);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
}

.medical-desk {
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-switcher a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
  border-bottom: 2px solid transparent;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.language-switcher a:hover {
  color: var(--vermilion-dark);
}

.language-switcher a[aria-current="page"] {
  border-bottom-color: var(--vermilion-dark);
  color: var(--ink);
}

.section-nav-wrap {
  border-top: 1px solid rgba(143, 130, 112, .32);
}

.section-nav {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.section-nav a:hover {
  color: var(--vermilion-dark);
}

.section-nav .nav-inquiry {
  margin-left: auto;
  padding-inline: 18px;
  color: var(--paper-light);
  background: var(--indigo);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: clamp(78px, 9vw, 132px) clamp(64px, 8vw, 112px);
}

.hero::before {
  content: "MEDICAL INTERPRETING / PATIENT JOURNEY";
  position: absolute;
  left: -54px;
  top: 50%;
  color: rgba(18, 33, 38, .46);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 560ms cubic-bezier(.22, 1, .36, 1) both;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .01em;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

h1 .hero-prefix,
h1 em {
  display: block;
}

h1 .hero-prefix {
  white-space: nowrap;
}

html[lang="en"] h1 .hero-prefix,
html[lang="vi"] h1 .hero-prefix {
  white-space: normal;
}

h1 em {
  color: var(--vermilion-dark);
  font-style: normal;
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.24;
}

h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 2;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: var(--paper-light);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease-out, color 160ms ease-out, background 160ms ease-out, border-color 160ms ease-out;
}

.button::after {
  content: "→";
  font-family: var(--body);
}

.button:hover {
  border-color: var(--vermilion);
  color: var(--vermilion-dark);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--indigo);
  color: var(--paper-light);
  background: var(--indigo);
}

.button-primary:hover {
  border-color: var(--vermilion);
  color: var(--white);
  background: var(--vermilion-dark);
}

.urgent-note {
  margin: 24px 0 0;
  color: var(--ink-faint);
  font-size: 12px;
}

.urgent-note strong {
  color: var(--vermilion-dark);
}

.dossier-wrap {
  position: relative;
  min-width: 0;
  animation: rise-in 700ms 100ms cubic-bezier(.22, 1, .36, 1) both;
}

.dossier-backdrop {
  position: absolute;
  inset: 7% -10% -8% 14%;
  z-index: 0;
  display: block;
  background: var(--sage);
  transform: rotate(4deg);
}

.dossier {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 28px;
  color: var(--paper-light);
  background: var(--indigo-deep);
  box-shadow: var(--shadow-file);
}

.dossier-tab {
  position: absolute;
  top: -28px;
  right: 0;
  min-width: 190px;
  padding: 8px 18px;
  color: var(--paper-light);
  background: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.dossier-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(251, 249, 244, .24);
}

.dossier-head span,
.dossier-footer span {
  color: rgba(251, 249, 244, .62);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dossier-head strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: .04em;
}

.journey-map {
  margin-top: 28px;
}

.journey-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 249, 244, .14);
}

.journey-row:last-child {
  border-bottom: 0;
}

.journey-number {
  color: #e9b6a9;
  font-family: var(--latin);
  font-size: 32px;
  line-height: 1;
}

.journey-row small {
  display: block;
  margin-bottom: 5px;
  color: rgba(251, 249, 244, .54);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-row strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
}

.journey-row p {
  margin: 5px 0 0;
  color: rgba(251, 249, 244, .72);
  font-size: 13px;
  line-height: 1.7;
}

.dossier-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 28px;
}

.verification-mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid #d47a64;
  color: #e9b6a9;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-7deg);
}

.trust-ledger {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.ledger-item {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.ledger-item:last-child {
  border-right: 0;
}

.ledger-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ledger-item strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.4;
}

.ledger-item p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.section {
  padding-block: clamp(82px, 10vw, 144px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-copy {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2.05;
}

.section-copy p {
  margin: 0 0 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.support-phase {
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background: rgba(251, 249, 244, .46);
}

.support-phase:nth-child(2) {
  color: var(--paper-light);
  background: var(--indigo);
  transform: translateY(-24px);
}

.support-phase:last-child {
  border-right: 0;
}

.support-phase .phase-number {
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 42px;
  line-height: 1;
}

.support-phase:nth-child(2) .phase-number {
  color: #e9b6a9;
}

.support-phase h3 {
  margin: 44px 0 18px;
}

.support-phase p {
  color: var(--ink-soft);
  font-size: 14px;
}

.support-phase:nth-child(2) p {
  color: rgba(251, 249, 244, .72);
}

.support-phase ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.support-phase li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.support-phase:nth-child(2) li {
  border-color: rgba(251, 249, 244, .18);
}

.dark-section {
  color: var(--paper-light);
  background: var(--indigo-deep);
}

.dark-section .section-label {
  color: #e9b6a9;
}

.dark-section .section-copy {
  color: rgba(251, 249, 244, .68);
}

.scene-list {
  margin-top: 72px;
  border-top: 1px solid rgba(251, 249, 244, .26);
}

.scene-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, .75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(251, 249, 244, .16);
}

.scene-row > span {
  color: #e9b6a9;
  font-family: var(--latin);
  font-size: 18px;
  letter-spacing: .12em;
}

.scene-row h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.scene-row p {
  margin: 0;
  color: rgba(251, 249, 244, .68);
  font-size: 14px;
}

.process {
  counter-reset: process;
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 100px minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-step::before {
  content: "0" counter(process);
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 28px;
}

.process-step h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line);
}

.quality-item {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-item small {
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-weight: 700;
  letter-spacing: .14em;
}

.quality-item h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.quality-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.boundary-box {
  position: sticky;
  top: 160px;
  padding: 38px;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.boundary-box .boundary-mark {
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.boundary-box h3 {
  margin: 24px 0 18px;
}

.boundary-box p,
.boundary-box li {
  color: var(--ink-soft);
  font-size: 13px;
}

.boundary-box ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.boundary-box li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.responsibility-section {
  padding-block: clamp(76px, 9vw, 122px);
  border-block: 1px solid var(--line-dark);
  background: var(--paper-deep);
}

.responsibility-sheet {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-top: 7px solid var(--indigo);
  background: var(--paper-light);
  box-shadow: var(--shadow-file);
}

.responsibility-sheet::before {
  content: "03 / SHARED RESPONSIBILITY";
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--vermilion-dark);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.responsibility-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: end;
  padding: clamp(42px, 6vw, 76px);
  border-bottom: 1px solid var(--line-dark);
}

.responsibility-intro h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.1vw, 56px);
}

.responsibility-intro > p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.responsibility-table-wrap {
  width: 100%;
}

.responsibility-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.responsibility-table th,
.responsibility-table td {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.responsibility-table tr > :last-child {
  border-right: 0;
}

.responsibility-table thead th {
  color: var(--paper-light);
  background: var(--indigo);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.responsibility-table thead th:first-child {
  width: 15%;
  background: var(--indigo-deep);
}

.responsibility-table tbody th {
  color: var(--vermilion-dark);
  background: var(--paper-deep);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
}

.responsibility-table tbody td {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.responsibility-table tbody td:nth-child(3) {
  color: var(--ink);
  background: var(--sage);
}

.responsibility-table td::before {
  content: none;
}

.responsibility-note {
  margin: 0;
  padding: 22px clamp(24px, 4vw, 48px);
  color: var(--ink-faint);
  background: var(--paper);
  font-size: 12px;
  line-height: 1.8;
}

.evidence-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
}

.evidence-main,
.evidence-side {
  padding: clamp(32px, 5vw, 58px);
}

.evidence-main {
  border-right: 1px solid var(--line-dark);
}

.evidence-main h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.evidence-main p,
.evidence-side p {
  color: var(--ink-soft);
}

.evidence-side {
  color: var(--paper-light);
  background: var(--vermilion-dark);
}

.evidence-side p {
  color: rgba(251, 249, 244, .74);
}

.evidence-side a {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(251, 249, 244, .7);
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  padding-block: clamp(80px, 10vw, 130px);
  color: var(--paper-light);
  background: var(--indigo);
  box-shadow: inset 12px 0 var(--vermilion);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
}

.contact-grid h2 {
  margin-bottom: 20px;
}

.contact-grid p {
  max-width: 720px;
  color: rgba(251, 249, 244, .72);
}

.contact-section .button-primary {
  color: var(--indigo-deep);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.contact-section .button-primary:hover {
  color: var(--white);
  background: var(--vermilion);
  border-color: var(--vermilion);
}

.contact-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(251, 249, 244, .24);
}

.contact-checklist li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 249, 244, .16);
  color: rgba(251, 249, 244, .76);
  font-size: 13px;
}

.site-footer {
  padding-block: 38px;
  color: var(--paper-light);
  background: var(--indigo-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(251, 249, 244, .56);
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: rgba(251, 249, 244, .76);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

@keyframes rise-in {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero::before {
    display: none;
  }

  .dossier-wrap {
    width: min(680px, 94%);
    margin: 30px auto 0;
  }

  .dossier-backdrop {
    inset: 7% 4% -5% 10%;
  }

  .trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ledger-item:nth-child(2) {
    border-right: 0;
  }

  .ledger-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .support-phase,
  .support-phase:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-phase:nth-child(2) {
    transform: none;
  }

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

  .boundary-box {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1240px);
  }

  .header-main {
    min-height: 72px;
  }

  .header-tools {
    gap: 10px;
  }

  .medical-desk {
    display: none;
  }

  .language-switcher a {
    min-width: 40px;
    padding-inline: 6px;
  }

  .section-nav {
    gap: 22px;
  }

  .section-nav .nav-inquiry {
    margin-left: 0;
  }

  .hero {
    padding-top: 64px;
    gap: 46px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .dossier-wrap {
    width: 94%;
  }

  .dossier {
    min-height: 0;
    padding: 22px;
  }

  .dossier-head strong {
    font-size: 19px;
  }

  .journey-row {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .verification-mark {
    width: 72px;
    height: 72px;
    font-size: 13px;
  }

  .section-intro,
  .evidence-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 32px;
  }

  .section-copy {
    font-size: 15px;
  }

  .scene-row,
  .process-step {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .scene-row p,
  .process-step p {
    grid-column: 2;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

  .responsibility-sheet::before {
    position: static;
    display: block;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
  }

  .responsibility-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px 38px;
  }

  .responsibility-table-wrap {
    overflow: visible;
  }

  .responsibility-table,
  .responsibility-table tbody,
  .responsibility-table tr,
  .responsibility-table th,
  .responsibility-table td {
    display: block;
    width: 100%;
  }

  .responsibility-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .responsibility-table tbody tr {
    border-bottom: 1px solid var(--line-dark);
  }

  .responsibility-table tbody th,
  .responsibility-table tbody td {
    border-right: 0;
  }

  .responsibility-table tbody th {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .responsibility-table tbody td {
    padding: 18px 24px 20px;
  }

  .responsibility-table tbody td::before {
    content: attr(data-role);
    display: block;
    margin-bottom: 7px;
    color: var(--vermilion-dark);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .evidence-main {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    background-size: auto;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .header-main {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .header-tools {
    width: 100%;
    border-top: 1px solid var(--line);
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(34px, 10.4vw, 46px);
  }

  h2 {
    font-size: 34px;
  }

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

  .ledger-item,
  .ledger-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ledger-item:last-child {
    border-bottom: 0;
  }

  .support-phase {
    padding: 28px 22px;
  }

  .scene-row,
  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .boundary-box {
    padding: 28px 22px;
    box-shadow: 10px 10px 0 var(--paper-deep);
  }

  .responsibility-section {
    padding-block: 56px;
  }

  .responsibility-sheet {
    box-shadow: 10px 10px 0 rgba(9, 29, 41, .1);
  }

  .responsibility-intro h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
