@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --pc-canvas: #f6f5f0;
  --pc-surface: #ffffff;
  --pc-ink: #172522;
  --pc-muted: #65716d;
  --pc-line: #d7e1dc;
  --pc-primary: #1f4d45;
  --pc-primary-deep: #153b35;
  --pc-accent: #b84a2f;
  --pc-accent-soft: #f2ded7;
  --pc-cool: #edf4f2;
  --pc-dark: #111a17;
  --pc-serif: "Noto Serif KR", serif;
  --pc-sans: Pretendard, "Noto Sans KR", sans-serif;
  --pc-label: Manrope, Pretendard, sans-serif;
  --pc-max: 1280px;
  --pc-reading: 720px;
  --pc-header: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pc-header) + 24px);
}

body {
  margin: 0;
  color: var(--pc-ink);
  background: var(--pc-canvas);
  font-family: var(--pc-sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--pc-primary);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 2px solid var(--pc-accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 72px, var(--pc-max));
  margin-inline: auto;
}

.reading {
  max-width: var(--pc-reading);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--pc-header);
  border-bottom: 1px solid rgba(23, 37, 34, 0.14);
  background: rgba(246, 245, 240, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-family: var(--pc-label);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.brand__mark {
  position: relative;
  width: 30px;
  height: 14px;
  flex: 0 0 auto;
}

.brand__mark::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 6px;
  border-top: 1px solid var(--pc-primary);
}

.brand__node {
  position: absolute;
  top: 2px;
  width: 8px;
  height: 8px;
  background: var(--pc-accent);
}

.brand__node:first-child {
  left: 0;
}

.brand__node:last-child {
  right: 0;
  background: var(--pc-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav > a:not(.btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #31413e;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--pc-accent);
  transition: right 180ms ease;
}

.desktop-nav > a:not(.btn):hover::after,
.desktop-nav > a[aria-current="page"]::after {
  right: 0;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.mobile-menu-button > svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: var(--pc-header) 0 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 30px 24px 24px;
  color: #fff;
  background: var(--pc-dark);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
}

.mobile-nav__links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-family: var(--pc-serif);
  font-size: 24px;
  font-weight: 600;
}

.mobile-nav__links > a > svg {
  width: 18px;
  height: 18px;
}

.mobile-nav__foot {
  display: grid;
  gap: 10px;
  padding-top: 28px;
  color: #bdc7c3;
  font-size: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--pc-primary);
  border-radius: 4px;
  color: #fff;
  background: var(--pc-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--pc-primary-deep);
  border-color: var(--pc-primary-deep);
  transform: translateY(-1px);
}

.btn > svg,
.text-link > svg,
.round-link > svg,
.icon-square > svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
}

.btn--outline {
  color: var(--pc-primary);
  background: transparent;
}

.btn--outline:hover {
  color: #fff;
}

.btn--light {
  color: var(--pc-dark);
  background: var(--pc-surface);
  border-color: var(--pc-surface);
}

.btn--light:hover {
  color: var(--pc-dark);
  background: var(--pc-canvas);
  border-color: var(--pc-canvas);
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--pc-primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--pc-accent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: var(--pc-primary);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--pc-accent);
}

.eyebrow--light {
  color: #dce6e2;
}

.eyebrow--light::before {
  background: #de765c;
}

.home-hero {
  min-height: 710px;
  padding: 48px 0 38px;
  overflow: hidden;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  grid-template-rows: auto 190px;
  column-gap: 54px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.home-hero h1 {
  margin-bottom: 0;
  max-width: 740px;
  font-family: var(--pc-serif);
  font-size: 68px;
  font-weight: 600;
  line-height: 1.18;
  word-break: keep-all;
}

.home-hero h1 strong {
  color: var(--pc-accent);
  font-weight: 600;
}

.home-hero__lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero__media {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 630px;
  overflow: hidden;
  border-radius: 6px;
  background: #e8e5dc;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero__thread {
  grid-column: 1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 236px;
  gap: 24px;
  align-items: end;
  padding-top: 36px;
}

.connection-line {
  position: relative;
  height: 1px;
  background: var(--pc-line);
}

.connection-line::before,
.connection-line::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  background: var(--pc-primary);
}

.connection-line::before {
  left: 0;
}

.connection-line::after {
  right: 0;
  background: var(--pc-accent);
}

.home-hero__thread p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.section {
  padding: 104px 0;
}

.section--white {
  background: var(--pc-surface);
}

.section--cool {
  background: var(--pc-cool);
}

.section--dark {
  color: #f4f3ec;
  background: var(--pc-dark);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head--stack {
  display: block;
  max-width: 850px;
}

.section-head h2,
.section-title {
  margin-bottom: 0;
  font-family: var(--pc-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.34;
  word-break: keep-all;
}

.section-head > p,
.section-intro {
  max-width: 560px;
  margin: 0;
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.section--dark .section-intro,
.section--dark .section-head > p {
  color: #b9c4bf;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.start-option {
  min-height: 272px;
  padding: 30px;
  border: 0;
  border-right: 1px solid var(--pc-line);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.start-option:last-child {
  border-right: 0;
}

.start-option[aria-pressed="true"] {
  color: #fff;
  background: var(--pc-primary);
}

.start-option__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.start-option__top > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.start-option__index {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.start-option[aria-pressed="true"] .start-option__index {
  color: #f3b6a6;
}

.start-option__title {
  display: block;
  margin: 66px 0 13px;
  font-family: var(--pc-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.start-option__copy {
  display: block;
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.7;
  word-break: keep-all;
}

.start-option[aria-pressed="true"] .start-option__copy {
  color: #dce7e3;
}

.selection-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pc-line);
}

.selection-status p {
  margin: 0;
  color: var(--pc-muted);
}

.selection-status strong {
  color: var(--pc-primary);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 114px;
}

.method-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 25px 0 0;
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.method-ledger {
  border-top: 1px solid var(--pc-line);
}

.method-ledger__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--pc-line);
}

.method-ledger__number {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.method-ledger__row h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.45;
}

.method-ledger__row p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.75;
}

.method-ledger--dark {
  border-color: #3a4742;
}

.method-ledger--dark .method-ledger__row {
  border-color: #3a4742;
}

.method-ledger--dark .method-ledger__row p {
  color: #b9c4bf;
}

.section-action {
  margin-top: 34px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: center;
}

.story-grid--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.story-grid--reverse .story-media {
  order: 2;
}

.story-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 6px;
  background: #e6e4dc;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 280px;
  padding: 15px 17px;
  border-radius: 4px;
  color: var(--pc-ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.6;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-family: var(--pc-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.35;
}

.story-copy > p:not(.eyebrow) {
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.85;
}

.story-points {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pc-line);
}

.story-points li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pc-line);
}

.story-points strong {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
}

.training-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.training-copy h2 {
  margin-bottom: 24px;
  font-family: var(--pc-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.34;
}

.training-copy > p:not(.eyebrow) {
  color: #b9c4bf;
  font-size: 17px;
  line-height: 1.85;
}

.training-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
  border-top: 1px solid #3a4742;
  border-bottom: 1px solid #3a4742;
}

.training-step {
  min-height: 150px;
  padding: 22px 16px 20px 0;
  border-right: 1px solid #3a4742;
}

.training-step:last-child {
  padding-left: 16px;
  border-right: 0;
}

.training-step:nth-child(2) {
  padding-left: 16px;
}

.training-step span {
  color: #dc7b63;
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.training-step strong {
  display: block;
  margin-top: 46px;
  font-size: 16px;
}

.training-media {
  height: 570px;
  overflow: hidden;
  border-radius: 6px;
}

.training-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apparatus-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  align-items: start;
}

.apparatus-media {
  height: 560px;
  overflow: hidden;
  border-radius: 6px;
  background: #e7e3da;
}

.apparatus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apparatus-copy h2 {
  margin-bottom: 22px;
  font-family: var(--pc-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.34;
}

.apparatus-copy > p:not(.eyebrow) {
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.apparatus-index {
  margin-top: 30px;
  border-top: 1px solid var(--pc-line);
}

.apparatus-index__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--pc-line);
}

.apparatus-index__item span:first-child {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.apparatus-index__item strong {
  font-size: 18px;
}

.apparatus-index__item svg {
  width: 18px;
  height: 18px;
  color: var(--pc-primary);
}

.schedule-list {
  border-top: 1px solid var(--pc-line);
}

.icon-square {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-primary);
  background: transparent;
  line-height: 0;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr 220px auto;
  gap: 26px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--pc-line);
}

.schedule-row__type {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-row h3 {
  margin: 0;
  font-size: 20px;
}

.schedule-row p {
  margin: 0;
  color: var(--pc-muted);
}

.schedule-row .icon-square {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-primary);
  background: transparent;
  line-height: 0;
}

.faq-list {
  border-top: 1px solid var(--pc-line);
}

.faq-list details {
  border-bottom: 1px solid var(--pc-line);
}

.faq-list summary {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 22px 56px 22px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-primary);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 56px 28px 0;
  color: var(--pc-muted);
  line-height: 1.8;
}

.cta-band {
  padding: 82px 0;
  color: #fff;
  background: var(--pc-primary);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.35;
}

.cta-band p {
  max-width: 640px;
  margin: 20px 0 0;
  color: #d8e5e0;
  font-size: 17px;
}

.site-footer {
  color: #e8ecea;
  background: var(--pc-dark);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 72px;
  padding: 74px 0 56px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand__mark::before {
  border-color: #d2ded9;
}

.site-footer__statement {
  max-width: 480px;
  margin: 26px 0 0;
  color: #aebbb6;
  font-family: var(--pc-serif);
  font-size: 20px;
  line-height: 1.65;
}

.footer-title {
  margin-bottom: 18px;
  color: #778a83;
  font-family: var(--pc-label);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d2dad6;
  font-size: 14px;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
  border-top: 1px solid #2c3732;
  color: #83918b;
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.ai-disclosure {
  padding: 12px 0;
  color: #66736d;
  background: #0c120f;
  font-size: 11px;
  text-align: center;
}

/* Subpage heroes */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--pc-muted);
  font-size: 13px;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.page-hero {
  min-height: 570px;
  padding: 66px 0 54px;
  border-bottom: 1px solid var(--pc-line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.page-hero__copy h1 {
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.25;
  word-break: keep-all;
}

.page-hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.82;
}

.page-hero__media {
  height: 440px;
  overflow: hidden;
  border-radius: 6px;
  background: #e7e4db;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--pc-line);
  color: var(--pc-muted);
  font-size: 13px;
}

.page-hero--dark {
  color: #fff;
  background: var(--pc-dark);
  border-bottom-color: #35413c;
}

.page-hero--dark .page-hero__lead,
.page-hero--dark .breadcrumb,
.page-hero--dark .page-hero__meta {
  color: #b5c0bb;
}

.page-hero--dark .page-hero__meta {
  border-color: #35413c;
}

.page-hero--editorial .page-hero__grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.history-statement {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 70px;
  align-items: start;
}

.history-statement h2 {
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.36;
}

.history-statement__copy {
  max-width: 690px;
}

.history-statement__copy p {
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.9;
}

.timeline {
  position: relative;
  margin-top: 70px;
  margin-left: 200px;
  border-left: 1px solid var(--pc-line);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 46px;
  min-height: 210px;
  padding: 0 0 64px 52px;
}

.timeline-entry:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--pc-accent);
}

.timeline-entry__time {
  color: var(--pc-primary);
  font-family: var(--pc-label);
  font-size: 13px;
  font-weight: 700;
}

.timeline-entry h3 {
  margin: 0 0 14px;
  font-family: var(--pc-serif);
  font-size: 28px;
  font-weight: 600;
}

.timeline-entry p {
  max-width: 650px;
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.85;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line);
  border-left: 1px solid var(--pc-line);
}

.principle {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.principle span {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.principle h3 {
  margin: 72px 0 12px;
  font-family: var(--pc-serif);
  font-size: 23px;
  font-weight: 600;
}

.principle p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.7;
}

.image-band {
  height: 620px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band {
  padding: 82px 0;
  color: #fff;
  background: var(--pc-primary);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.48;
}

.quote-band cite {
  display: block;
  margin-top: 26px;
  color: #c9dad4;
  font-style: normal;
  font-size: 14px;
}

.lineage-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.lineage-node {
  position: relative;
  min-height: 250px;
  padding: 30px 28px;
  border-right: 1px solid var(--pc-line);
}

.lineage-node:last-child {
  border-right: 0;
}

.lineage-node::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 28px;
  width: 9px;
  height: 9px;
  background: var(--pc-accent);
}

.lineage-node span {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.lineage-node h3 {
  margin: 78px 0 13px;
  font-family: var(--pc-serif);
  font-size: 22px;
  font-weight: 600;
}

.lineage-node p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.7;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 88px;
  align-items: start;
}

.profile-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy h2 {
  margin: 0 0 24px;
  font-family: var(--pc-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.36;
}

.profile-copy > p {
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.85;
}

.verification-note {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-muted);
  background: var(--pc-surface);
  font-size: 13px;
  line-height: 1.65;
}

.verification-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--pc-accent);
}

.tab-list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--pc-line);
  overflow-x: auto;
}

.tab-button {
  min-width: 150px;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--pc-line);
  border-radius: 0;
  color: var(--pc-muted);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  color: #fff;
  background: var(--pc-primary);
}

.tab-panel {
  display: none;
  padding-top: 46px;
}

.tab-panel.is-active {
  display: block;
}

.apparatus-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.apparatus-detail-grid h3 {
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 36px;
  font-weight: 600;
}

.apparatus-detail-grid p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.85;
}

.equipment-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--pc-line);
  border: 1px solid var(--pc-line);
}

.equipment-role {
  min-height: 190px;
  padding: 26px;
  background: var(--pc-surface);
}

.equipment-role span {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.equipment-role h4 {
  margin: 52px 0 10px;
  font-size: 18px;
}

.equipment-role p {
  font-size: 15px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--pc-line);
}

.comparison-table th,
.comparison-table td {
  padding: 22px 18px;
  border-bottom: 1px solid var(--pc-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--pc-primary);
  font-size: 13px;
  font-weight: 700;
}

.comparison-table td {
  color: var(--pc-muted);
  line-height: 1.7;
}

.comparison-table td:first-child {
  color: var(--pc-ink);
  font-weight: 700;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.journey-step {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--pc-line);
}

.journey-step:last-child {
  border-right: 0;
}

.journey-step span {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.journey-step h3 {
  margin: 75px 0 10px;
  font-size: 19px;
}

.journey-step p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 34px;
}

.filter-button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-muted);
  background: var(--pc-surface);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  color: #fff;
  background: var(--pc-primary);
  border-color: var(--pc-primary);
}

.schedule-board {
  border-top: 1px solid var(--pc-line);
}

.schedule-item {
  display: grid;
  grid-template-columns: 100px 150px 1fr 190px auto;
  gap: 24px;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid var(--pc-line);
}

.schedule-item[hidden] {
  display: none;
}

.schedule-item__date {
  font-family: var(--pc-label);
  font-size: 24px;
  font-weight: 600;
}

.schedule-item__type {
  color: var(--pc-accent);
  font-family: var(--pc-label);
  font-size: 12px;
  font-weight: 700;
}

.schedule-item h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.schedule-item p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
}

.schedule-item__status {
  color: var(--pc-primary);
  font-size: 14px;
  font-weight: 700;
}

.schedule-empty {
  display: none;
  padding: 70px 20px;
  border-bottom: 1px solid var(--pc-line);
  text-align: center;
}

.schedule-empty.is-visible {
  display: block;
}

.schedule-empty svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 18px;
  color: var(--pc-accent);
}

.schedule-empty h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.schedule-empty p {
  margin: 0;
  color: var(--pc-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 82px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 114px;
}

.contact-info h2 {
  margin: 0 0 22px;
  font-family: var(--pc-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-info > p {
  color: var(--pc-muted);
  line-height: 1.8;
}

.contact-ledger {
  margin-top: 32px;
  border-top: 1px solid var(--pc-line);
}

.contact-ledger__row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pc-line);
}

.contact-ledger__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-primary);
  line-height: 0;
}

.contact-ledger__icon > svg {
  width: 19px;
  height: 19px;
  margin: 0;
}

.contact-ledger__row strong {
  display: block;
  font-size: 13px;
}

.contact-ledger__row > div > span,
.contact-ledger__row > div > a {
  display: block;
  margin-top: 3px;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.6;
}

.inquiry-form {
  padding: 40px;
  border: 1px solid var(--pc-line);
  border-radius: 6px;
  background: var(--pc-surface);
}

.form-heading {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pc-line);
}

.form-heading h2 {
  margin: 0;
  font-family: var(--pc-serif);
  font-size: 30px;
  font-weight: 600;
}

.form-heading p {
  margin: 10px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.required {
  color: var(--pc-accent);
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #bdcbc6;
  border-radius: 4px;
  color: var(--pc-ink);
  background: #fff;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control::placeholder {
  color: #929d98;
}

.form-control[aria-invalid="true"] {
  border-color: var(--pc-accent);
}

.field-error {
  min-height: 20px;
  margin: 6px 0 0;
  color: var(--pc-accent);
  font-size: 12px;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-option {
  position: relative;
}

.interest-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-option label {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  color: var(--pc-muted);
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.interest-option input:checked + label {
  color: #fff;
  background: var(--pc-primary);
  border-color: var(--pc-primary);
}

.interest-option input:focus-visible + label {
  outline: 2px solid var(--pc-accent);
  outline-offset: 3px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--pc-primary);
}

.consent-row label {
  margin: 0;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--pc-line);
}

.form-demo-note {
  max-width: 360px;
  margin: 0;
  color: var(--pc-muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--pc-line);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.65;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  color: var(--pc-primary);
  background: var(--pc-cool);
  border-color: #b8d1c8;
}

.form-status--error {
  color: #8b3322;
  background: #fbefeb;
  border-color: #e9baad;
}

.map-block {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--pc-line);
  background: var(--pc-surface);
}

.map-visual {
  position: relative;
  overflow: hidden;
  background: var(--pc-cool);
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  background: #cadbd5;
}

.map-visual::before {
  left: 15%;
  right: 12%;
  top: 46%;
  height: 2px;
  transform: rotate(-13deg);
}

.map-visual::after {
  top: 10%;
  bottom: 12%;
  left: 53%;
  width: 2px;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 55%;
  top: 42%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pc-accent);
  line-height: 0;
  transform: translate(-50%, -50%);
}

.map-pin > svg {
  width: 20px;
  height: 20px;
  margin: 0;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.map-copy h2 {
  margin: 0 0 16px;
  font-family: var(--pc-serif);
  font-size: 32px;
  font-weight: 600;
}

.map-copy p {
  margin: 0 0 22px;
  color: var(--pc-muted);
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a:not(.btn) {
    font-size: 13px;
  }

  .home-hero h1 {
    font-size: 56px;
  }

  .home-hero__media {
    height: 580px;
  }

  .section-head h2,
  .section-title,
  .story-copy h2,
  .apparatus-copy h2 {
    font-size: 40px;
  }

  .schedule-row {
    grid-template-columns: 100px 1fr 180px auto;
  }

  .schedule-item {
    grid-template-columns: 78px 130px 1fr 160px auto;
    gap: 16px;
  }

  .page-hero__copy h1 {
    font-size: 52px;
  }
}

@media (max-width: 880px) {
  :root {
    --pc-header: 68px;
  }

  .container {
    width: min(100% - 40px, var(--pc-max));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .home-hero {
    min-height: auto;
    padding: 28px 0 32px;
  }

  .home-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    padding-top: 10px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .home-hero__lead {
    font-size: 17px;
  }

  .home-hero__media {
    order: 2;
    height: 330px;
    margin-top: 34px;
  }

  .home-hero__thread {
    order: 3;
    grid-template-columns: 1fr 210px;
    margin-top: 24px;
    padding-top: 0;
  }

  .section,
  .cta-band {
    padding: 78px 0;
  }

  .section-head,
  .method-grid,
  .story-grid,
  .story-grid--reverse,
  .training-grid,
  .apparatus-layout,
  .page-hero__grid,
  .page-hero--editorial .page-hero__grid,
  .history-statement,
  .profile-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .method-copy,
  .contact-info {
    position: static;
  }

  .story-grid--reverse .story-media {
    order: 0;
  }

  .story-media,
  .training-media,
  .apparatus-media {
    height: 500px;
    min-height: 0;
  }

  .schedule-row {
    grid-template-columns: 100px 1fr auto;
    padding: 20px 0;
  }

  .schedule-row p {
    grid-column: 2 / 3;
  }

  .schedule-row .icon-square {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 46px 0;
  }

  .page-hero__media {
    height: 390px;
  }

  .timeline {
    margin-left: 4px;
  }

  .lineage-map,
  .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineage-node:nth-child(2),
  .journey-step:nth-child(2) {
    border-right: 0;
  }

  .lineage-node:nth-child(-n + 2),
  .journey-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pc-line);
  }

  .principles-grid,
  .equipment-roles {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-item {
    grid-template-columns: 76px 130px 1fr auto;
    padding: 22px 0;
  }

  .schedule-item__status {
    grid-column: 3;
  }

  .schedule-item .icon-square {
    grid-column: 4;
    grid-row: 1 / 3;
  }

  .map-block {
    grid-template-columns: 1fr;
  }

  .map-visual {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, var(--pc-max));
  }

  .brand {
    gap: 9px;
    font-size: 12px;
  }

  .brand__mark {
    width: 24px;
  }

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

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .home-hero h1 {
    font-size: 40px;
    line-height: 1.25;
  }

  .home-hero__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .home-hero__actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .home-hero__actions .btn {
    width: 100%;
  }

  .home-hero__media {
    height: 205px;
    margin-top: 24px;
  }

  .home-hero__thread {
    display: none;
  }

  .section,
  .cta-band {
    padding: 62px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-head h2,
  .section-title,
  .story-copy h2,
  .apparatus-copy h2,
  .training-copy h2,
  .history-statement h2,
  .profile-copy h2,
  .contact-info h2 {
    font-size: 33px;
    line-height: 1.4;
  }

  .section-head > p,
  .section-intro {
    margin-top: 18px;
    font-size: 15px;
  }

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

  .start-option {
    min-height: 204px;
    border-right: 0;
    border-bottom: 1px solid var(--pc-line);
  }

  .start-option:last-child {
    border-bottom: 0;
  }

  .start-option__title {
    margin-top: 42px;
  }

  .selection-status {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .method-grid,
  .story-grid,
  .story-grid--reverse,
  .training-grid,
  .apparatus-layout,
  .profile-grid,
  .contact-layout {
    gap: 34px;
  }

  .method-ledger__row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .story-media,
  .training-media,
  .apparatus-media {
    height: 330px;
  }

  .story-media__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .story-copy > p:not(.eyebrow),
  .apparatus-copy > p:not(.eyebrow),
  .training-copy > p:not(.eyebrow),
  .method-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .story-points li {
    grid-template-columns: 72px 1fr;
  }

  .training-steps {
    grid-template-columns: 1fr;
  }

  .training-step,
  .training-step:nth-child(2),
  .training-step:last-child {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #3a4742;
  }

  .training-step:last-child {
    border-bottom: 0;
  }

  .training-step strong {
    margin-top: 20px;
  }

  .apparatus-index__item {
    grid-template-columns: 40px 1fr auto;
  }

  .schedule-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .schedule-row__type,
  .schedule-row h3,
  .schedule-row p {
    grid-column: 1;
  }

  .schedule-row .icon-square {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .cta-band h2 {
    font-size: 33px;
  }

  .cta-band p {
    font-size: 15px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 58px 0 44px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .page-hero {
    min-height: auto;
    padding: 32px 0 24px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .page-hero__grid {
    gap: 30px;
  }

  .page-hero__copy h1 {
    font-size: 40px;
    line-height: 1.34;
  }

  .page-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .page-hero__media {
    height: 220px;
  }

  .history-statement {
    gap: 24px;
  }

  .history-statement__copy p {
    font-size: 16px;
  }

  .timeline {
    margin-top: 46px;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 220px;
    padding-left: 30px;
  }

  .timeline-entry h3 {
    font-size: 24px;
  }

  .principles-grid,
  .equipment-roles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 190px;
  }

  .principle h3 {
    margin-top: 46px;
  }

  .image-band {
    height: 340px;
  }

  .quote-band {
    padding: 64px 0;
  }

  .quote-band blockquote {
    font-size: 30px;
  }

  .lineage-map,
  .journey {
    grid-template-columns: 1fr;
  }

  .lineage-node,
  .journey-step {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--pc-line);
  }

  .lineage-node:last-child,
  .journey-step:last-child {
    border-bottom: 0;
  }

  .lineage-node h3,
  .journey-step h3 {
    margin-top: 52px;
  }

  .profile-photo {
    max-height: 520px;
  }

  .apparatus-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .apparatus-detail-grid h3 {
    font-size: 30px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 150px;
    white-space: normal;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    overflow-x: visible;
  }

  .tab-button {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
    font-size: 13px;
  }

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

  .comparison-table {
    overflow: visible;
    white-space: normal;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--pc-line);
  }

  .comparison-table td {
    min-width: 0;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 8px 0;
    border: 0;
    white-space: normal;
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--pc-primary);
    font-size: 12px;
    font-weight: 700;
  }

  .schedule-item {
    grid-template-columns: 64px 1fr auto;
    gap: 8px 14px;
    padding: 22px 0;
  }

  .schedule-item__date {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 20px;
  }

  .schedule-item__type,
  .schedule-item > div,
  .schedule-item__status {
    grid-column: 2;
  }

  .schedule-item .icon-square {
    grid-column: 3;
    grid-row: 1 / 4;
  }

  .inquiry-form {
    padding: 26px 18px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .interest-options {
    grid-template-columns: 1fr 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .map-copy {
    padding: 34px 24px;
  }

  .map-copy h2 {
    font-size: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
