:root {
  --ink: #12191c;
  --ink-soft: #46575e;
  --navy: #103746;
  --navy-deep: #092934;
  --blue: #3d9fbd;
  --blue-strong: #0d7897;
  --blue-soft: #dbeef3;
  --blue-pale: #f1f8fa;
  --cream: #fff0de;
  --cream-soft: #fff9f1;
  --orange: #d34414;
  --white: #fff;
  --line: rgba(18, 25, 28, 0.2);
  --radius-card: clamp(8px, 0.68vw, 11px);
  --radius-panel: clamp(10px, 0.86vw, 14px);
  --header-height: 100px;
  --shell: min(1360px, calc(100vw - 88px));
  --font: "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #f0a000;
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-inline: max(28px, 3.2vw);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled {
  height: var(--header-height);
  border-color: rgba(18, 25, 28, 0.08);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 7px 24px rgba(8, 39, 51, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}

.brand-copy {
  display: grid;
  color: var(--navy-deep);
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.45vw, 28px);
  min-width: 0;
  padding-inline: 20px;
}

.desktop-nav a {
  position: relative;
  padding-block: 11px;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--blue-strong);
  transition: right 0.22s ease, left 0.22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 9px;
}

.header-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding-inline: 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: min-height 0.3s var(--ease), padding 0.3s var(--ease), filter 0.22s ease;
}

.header-reserve {
  color: var(--white);
  background: var(--orange);
}

.header-reserve img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-reserve img {
  filter: brightness(0) invert(1);
}

.menu-button {
  display: none;
  width: 56px;
  height: 60px;
  padding: 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
}

.menu-button img {
  width: 26px;
  height: 26px;
  margin-inline: auto;
}

.menu-button .menu-close,
.menu-button[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
  display: block;
}

.menu-button span {
  display: block;
  margin-top: 1px;
  font-size: 8px;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  display: none;
  padding: 30px 24px 40px;
  background: rgba(255, 255, 255, 0.99);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  padding: 15px 7px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.mobile-actions a {
  padding: 15px;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-actions a {
  color: var(--white);
  background: var(--orange);
}

/* Hero */
.hero {
  position: relative;
  height: min(800px, calc(100vh - var(--header-height)));
  min-height: 650px;
  margin-top: var(--header-height);
  background: var(--blue-pale);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 1.15s ease, transform 7s var(--ease);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 32px);
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.84) contrast(1.025);
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.012);
  will-change: transform;
}

.hero-slide:nth-child(2) .hero-image {
  object-position: center 48%;
}

.hero-slide:nth-child(3) .hero-image {
  object-position: center 54%;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 42%), linear-gradient(0deg, rgba(9, 41, 52, 0.04), transparent 38%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: max(4vw, calc((100vw - 1320px) / 2));
  display: grid;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.075em;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.92);
}

.hero-copy span {
  white-space: nowrap;
}

.hero-pagination {
  position: absolute;
  z-index: 5;
  left: max(4vw, calc((100vw - 1320px) / 2));
  bottom: 46px;
  display: flex;
  gap: 7px;
}

.hero-pagination button {
  position: relative;
  width: 38px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-pagination button::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: rgba(9, 41, 52, 0.34);
  transform: translateY(-50%);
  transition: height 0.25s ease, background 0.25s ease;
}

.hero-pagination button:hover::before,
.hero-pagination button:focus-visible::before,
.hero-pagination button.is-active::before {
  height: 4px;
  background: var(--orange);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 2.4vw;
  bottom: 80px;
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  display: block;
  width: 1px;
  height: 46px;
  margin: 10px auto 0;
  content: "";
  background: var(--navy-deep);
}

.hero-schedule {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 0;
  width: min(620px, 48vw);
  min-height: 210px;
  padding: 20px 26px 15px;
  border-radius: var(--radius-panel);
  color: var(--navy-deep);
  background: rgba(239, 247, 250, 0.96);
  overflow: hidden;
}

.schedule-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 10px;
}

.schedule-head > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.schedule-head small {
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 800;
}

.schedule-head strong {
  font-size: 17px;
}

.schedule-head > a {
  padding: 4px 0;
  border-bottom: 1px solid currentcolor;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.schedule-panel table,
.footer-schedule table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-panel th,
.schedule-panel td {
  padding: 5px 7px;
  border-block: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}

.schedule-panel th:first-child {
  min-width: 108px;
  text-align: left;
}

.schedule-panel tbody th span {
  display: inline-block;
  min-width: 38px;
  margin-right: 5px;
  padding: 1px 4px;
  color: var(--white);
  background: #9fc3d1;
  text-align: center;
}

.schedule-panel > p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: right;
}

/* Opening */
.opening-section {
  position: relative;
  z-index: 3;
  min-height: 820px;
  padding: 88px 0 270px;
  background: var(--white);
}

.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: start;
}

.visit-stack {
  display: grid;
  gap: 10px;
}

.first-visit {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 185px;
  padding: 28px 42px;
  border-radius: var(--radius-card);
  background: var(--cream);
  overflow: hidden;
}

.first-visit > span:first-child {
  position: relative;
  z-index: 2;
  display: grid;
}

.first-visit small,
.booking-line small {
  font-size: 11px;
  font-weight: 800;
}

.first-visit strong {
  margin: 7px 0 2px;
  font-size: 27px;
}

.first-visit em {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  right: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
}

.round-arrow img {
  width: 19px;
  filter: brightness(0) invert(1);
}

.booking-line {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 17px 42px;
  border-radius: var(--radius-card);
  color: var(--white);
  background: var(--navy);
}

.booking-line > span:first-child {
  display: grid;
}

.booking-line strong {
  font-size: 20px;
}

.round-arrow-light {
  background: var(--white);
}

.round-arrow-light img {
  filter: none;
}

.news-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--ink);
}

.news-heading h2 {
  font-size: 34px;
  line-height: 1.2;
}

.news-heading span {
  color: var(--ink-soft);
  font-size: 11px;
}

.news-list button {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  width: 100%;
  padding: 17px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.news-list button:hover,
.news-list button:focus-visible,
.news-list button.is-active {
  padding-left: 12px;
  color: var(--blue-strong);
}

.news-list time {
  color: var(--blue-strong);
  font-size: 12px;
}

.news-list span {
  font-size: 14px;
}

.news-more {
  display: block;
  margin: 15px 0 0 auto;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentcolor;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
}

.news-detail {
  min-height: 28px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
}

.first-guide {
  display: grid;
  grid-template-columns: 1.2fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  padding: 17px 24px;
  border-block: 1px solid var(--line);
}

.first-guide div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 10px;
  align-items: baseline;
}

.first-guide small {
  grid-column: 1 / -1;
  color: var(--blue-strong);
  font-size: 10px;
  font-weight: 800;
}

.first-guide strong {
  font-size: 15px;
}

.first-guide span {
  color: var(--ink-soft);
  font-size: 11px;
}

.first-guide i {
  height: 1px;
  background: var(--line);
}

/* Care */
.care-section {
  position: relative;
  z-index: 4;
  padding: 118px 0 0;
  background: var(--blue);
  scroll-margin-top: calc(var(--header-height) + 300px);
}

.care-boundary {
  position: absolute;
  z-index: 1;
  top: -310px;
  left: 0;
  width: 100%;
  height: 350px;
  max-width: none;
  object-fit: cover;
  object-position: center 55%;
  transform: translate3d(0, var(--boundary-shift, 0), 0);
  will-change: transform;
}

.care-inner {
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(36px, 3.5vw, 46px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.section-heading > img {
  width: 190px;
  height: 22px;
  margin: 7px auto 13px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.section-heading p {
  font-size: 14px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 54px;
}

.care-card {
  position: relative;
  display: grid;
  grid-template-rows: 166px auto;
  min-height: 236px;
  padding: 12px 21px 18px;
  border-radius: var(--radius-card);
  background: #fef9f1;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.care-card:hover {
  transform: translateY(-2px);
}

.care-card > img:first-child {
  width: 100%;
  height: 166px;
  object-fit: contain;
  filter: none;
}

.care-card > span {
  align-self: end;
  padding-right: 28px;
  font-size: 16px;
  font-weight: 800;
}

.care-card .link-arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 20px;
  height: auto;
}

.care-wide-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 13px;
}

.care-wide-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  padding: 22px 30px;
  border-radius: var(--radius-card);
  background: var(--white);
}

.care-wide-links span {
  display: grid;
  gap: 2px;
}

.care-wide-links strong {
  font-size: 18px;
}

.care-wide-links small {
  color: var(--ink-soft);
  font-size: 11px;
}

.care-wide-links img {
  width: 23px;
}

/* Symptom */
.symptom-check {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 52px;
  margin-top: 108px;
  padding: 54px 58px 58px;
  border-radius: var(--radius-panel);
  background: var(--white);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.symptom-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.symptom-intro > small,
.symptom-intro > h2,
.symptom-intro > p {
  grid-column: 1;
}

.symptom-intro > small,
.feature-lead > small,
.people-feature small,
.rehab-detail small,
.people-link small,
.facility-block small,
.access-block small {
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.symptom-intro h2 {
  margin: 8px 0 12px;
  font-size: 33px;
  line-height: 1.35;
}

.symptom-intro h2 span {
  display: block;
  white-space: nowrap;
}

.symptom-intro > p {
  color: var(--ink-soft);
  font-size: 13px;
}

.body-picker {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  width: 190px;
  height: 360px;
}

.body-picker > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.42) contrast(1.02);
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.body-hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 2px solid rgba(219, 74, 23, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.86);
  cursor: pointer;
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.body-hotspot[aria-pressed="true"] {
  z-index: 2;
  border-color: var(--white);
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(219, 74, 23, 0.32), 0 0 0 7px rgba(219, 74, 23, 0.12);
  opacity: 1;
  transform: scale(1.22);
}

.body-picker.has-selection .body-hotspot:not([aria-pressed="true"]) {
  opacity: 0;
  transform: scale(0.78);
}

.body-picker:not(.has-selection):hover .body-hotspot:not(.body-hotspot-whole) {
  opacity: 0.22;
}

.body-picker.is-whole-body > img {
  filter: saturate(0.75) contrast(1.06) drop-shadow(0 0 7px rgba(219, 74, 23, 0.42));
}

.body-hotspot:hover,
.body-hotspot:focus-visible {
  opacity: 1;
  transform: scale(1.12);
}

.body-hotspot[aria-pressed="true"]:hover,
.body-hotspot[aria-pressed="true"]:focus-visible {
  transform: scale(1.26);
}

.body-hotspot-neck { top: 12%; left: 45%; }
.body-hotspot-shoulder { top: 19%; left: 24%; }
.body-hotspot-elbow { top: 31%; right: 18%; }
.body-hotspot-hand { top: 44%; right: 10%; }
.body-hotspot-chest { top: 27%; left: 45%; }
.body-hotspot-waist { top: 42%; left: 46%; }
.body-hotspot-leg { top: 58%; left: 38%; }
.body-hotspot-hip { top: 48%; left: 34%; }
.body-hotspot-knee { top: 67%; right: 35%; }
.body-hotspot-ankle { right: 38%; bottom: 9%; }
.body-hotspot-foot { right: 27%; bottom: 2%; }
.body-hotspot-whole { top: 3%; right: 2%; }

.body-hotspot-whole:not([aria-pressed="true"]) {
  pointer-events: none;
  opacity: 0;
}

.location-choices input:checked + span {
  color: var(--orange);
  font-weight: 800;
}

.symptom-form {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px 44px;
}

.symptom-form fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.symptom-form legend {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  cursor: pointer;
}

.choice-grid input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--orange);
}

.choice-grid span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.symptom-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 9px;
}

.symptom-actions button {
  min-height: 56px;
  border: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.symptom-actions button:first-child {
  background: #92a6ad;
}

.symptom-actions button:last-child {
  background: var(--orange);
}

.symptom-output {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.symptom-output > strong {
  font-size: 16px;
}

.symptom-result {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.care-exit {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 430px);
  margin-top: 76px;
  background: var(--white);
  line-height: 0;
}

.care-exit img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 51%;
}

/* Features */
.feature-section {
  padding: 92px 0 100px;
  background: var(--white);
}

.feature-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.feature-lead {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 500px;
  padding: 215px 42px 48px;
  border-radius: var(--radius-panel);
  color: var(--white);
  background: var(--white);
  overflow: hidden;
}

.feature-lead > .feature-lead-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.feature-lead > small,
.feature-lead > h2,
.feature-lead > p {
  position: relative;
  z-index: 1;
}

.feature-lead > small {
  color: var(--blue-soft);
}

.feature-lead h2 {
  margin: 10px 0 16px;
  font-size: 36px;
  line-height: 1.35;
}

.feature-lead p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 220px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #f8f4ec;
  overflow: hidden;
  transition: transform 0.28s var(--ease), background 0.28s ease;
}

.feature-item > img:first-child {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 0.55s var(--ease);
}

.feature-item.feature-illustrated > img:first-child {
  padding: 10px;
  object-fit: contain;
  background: #f8f4ec;
  filter: none;
}

.feature-item > div {
  align-self: center;
  padding: 34px 68px 34px 38px;
}

.feature-list small {
  color: var(--blue-strong);
  font-size: 10px;
  font-weight: 800;
}

.feature-list h3 {
  margin: 7px 0 9px;
  font-size: 24px;
  line-height: 1.4;
}

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

.feature-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 24px;
  height: auto;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .feature-item:hover {
    background: #eef6f8;
    transform: translateX(4px);
  }

  .feature-item:hover > img:first-child {
    transform: scale(1.025);
  }
}

/* People */
.people-section {
  padding: 82px 0;
  background: var(--cream-soft);
}

.people-shell {
  display: grid;
  gap: 22px;
}

.people-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 470px;
  border-radius: var(--radius-panel);
  background: var(--white);
  overflow: hidden;
}

.people-feature > img {
  width: 100%;
  height: 470px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: var(--cream-soft);
  filter: none;
}

.people-feature-copy {
  align-self: center;
  padding: 54px 58px;
}

.people-feature h2,
.rehab-detail h2,
.people-link h2 {
  margin: 8px 0 13px;
  line-height: 1.4;
}

.people-feature h2 {
  font-size: 31px;
}

.people-feature p,
.rehab-detail p,
.people-link p {
  color: var(--ink-soft);
  font-size: 13px;
}

.people-link {
  position: relative;
  min-height: 205px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.people-link > div {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 34px 76px 34px 38px;
}

.people-link h2 {
  font-size: 25px;
}

.people-link > span {
  position: absolute;
  z-index: 3;
  right: 28px;
  top: 50%;
  font-size: 25px;
  transform: translateY(-50%);
}

.people-link-plain {
  display: grid;
  color: var(--white);
  background: var(--navy);
}

.people-link-plain small,
.people-link-plain p {
  color: rgba(255, 255, 255, 0.76);
}

.people-link-plain > div {
  width: min(100%, 520px);
}

.facility-link {
  min-height: 150px;
}

.rehab-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 1.1fr;
  grid-template-rows: 1fr auto;
  min-height: 430px;
  border-radius: var(--radius-panel);
  background: var(--white);
  overflow: hidden;
}

.rehab-detail > img {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  background: var(--cream-soft);
}

.rehab-detail > div {
  align-self: center;
  padding: 48px 56px 36px;
}

.rehab-detail h2 {
  margin: 7px 0 10px;
  font-size: 29px;
}

.rehab-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.rehab-detail li {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.rehab-detail aside {
  display: grid;
  gap: 3px;
  padding: 21px 56px 24px;
  color: var(--navy-deep);
  border-top: 1px solid var(--line);
  background: var(--blue-pale);
}

.rehab-detail aside strong {
  font-size: 14px;
}

@media (hover: hover) {
  .people-link {
    transition: transform 0.28s var(--ease), filter 0.28s ease;
  }

  .people-link:hover {
    transform: translateY(-3px);
    filter: brightness(0.985);
  }
}

.care-team-roles {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.care-team-roles > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.care-team-roles dt,
.care-team-roles dd {
  margin: 0;
  font-size: 12px;
}

.care-team-roles dt {
  color: var(--navy);
  font-weight: 800;
}

.access-block a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.access-block a img {
  width: 22px;
}

/* Facility and access */
.clinic-section {
  padding: 105px 0 0;
  background: var(--white);
}

.facility-photo {
  position: relative;
  width: 100%;
  height: clamp(460px, 52vw, 680px);
  margin-bottom: 88px;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--blue-pale);
}

.facility-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 120, 151, 0.15), rgba(255, 255, 255, 0.02) 60%);
}

.facility-photo > img {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: calc(100% + 70px);
  max-width: none;
  object-fit: cover;
  object-position: center 53%;
  filter: grayscale(0.7) saturate(0.42) contrast(1.07);
  transform: translate3d(0, var(--facility-shift, 0), 0) scale(1.035);
  will-change: transform;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

.facility-block,
.access-block {
  min-height: 430px;
  border-radius: var(--radius-panel);
  background: var(--navy);
  overflow: hidden;
}

.facility-block {
  display: flex;
  align-items: flex-start;
}

.facility-block > div {
  width: 100%;
  padding: 48px 42px;
  color: var(--white);
}

.facility-block small {
  color: var(--blue-soft);
}

.facility-block h2,
.access-block h2 {
  margin: 5px 0 8px;
  font-size: 27px;
  line-height: 1.4;
}

.facility-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.facility-block dl {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.facility-block dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.facility-block dt,
.facility-block dd {
  margin: 0;
  font-size: 11px;
}

.facility-block dt {
  color: var(--blue-soft);
  font-weight: 800;
}

.access-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  color: var(--ink);
  background: var(--blue-pale);
}

.access-block > div:first-child {
  align-self: center;
  padding: 34px;
}

.access-block address {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
}

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 100%;
}

.map-frame {
  min-height: 430px;
  background: var(--blue-soft);
}

.map-frame iframe {
  border: 0;
  filter: saturate(0.74) contrast(1.02);
}

/* Reserve */
.reserve-section {
  padding: 76px 0;
  color: var(--white);
  background: var(--orange);
}

.reserve-inner {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: center;
}

.reserve-inner small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.reserve-inner h2 {
  margin: 5px 0;
  font-size: 31px;
}

.reserve-inner p {
  font-size: 12px;
}

.reserve-booking {
  display: grid;
  gap: 12px;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 150px 210px;
  gap: 8px;
}

.booking-form label {
  display: grid;
  padding: 8px 12px;
  border-radius: var(--radius-card);
  color: var(--navy-deep);
  background: var(--white);
}

.booking-form label > span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  min-width: 0;
  min-height: 28px;
  padding: 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.booking-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-card);
  font-weight: 800;
}

.booking-form button {
  color: var(--orange);
  background: var(--white);
  cursor: pointer;
}

.reserve-contact {
  min-height: 21px;
}

.reserve-contact [data-booking-status] {
  min-height: 21px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.reserve-inner img {
  width: 18px;
  height: 18px;
}

/* Dialogs */
.site-dialog {
  width: min(680px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.site-dialog::backdrop {
  background: rgba(9, 41, 52, 0.62);
  backdrop-filter: blur(3px);
}

.dialog-panel {
  padding: 38px 42px 42px;
  border-radius: var(--radius-panel);
  background: var(--white);
  box-shadow: 0 22px 80px rgba(9, 41, 52, 0.26);
  overflow-y: auto;
}

.dialog-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-panel > header small {
  color: var(--blue-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dialog-panel > header h2 {
  margin-top: 4px;
  font-size: 28px;
}

.dialog-panel > header button,
.dialog-primary {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.dialog-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dialog-panel li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-panel li time {
  grid-row: 1 / 3;
  color: var(--blue-strong);
  font-size: 11px;
}

.dialog-panel li strong {
  font-size: 15px;
}

.dialog-panel li p,
.booking-note {
  color: var(--ink-soft);
  font-size: 12px;
}

.booking-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.booking-review p {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--blue-pale);
}

.booking-review span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.booking-review strong {
  font-size: 18px;
}

.booking-note {
  margin-top: 18px;
}

.dialog-primary {
  width: 100%;
  margin-top: 22px;
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 260px 0 22px;
  background: linear-gradient(to bottom, transparent 0 90px, var(--cream) 90px);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: -10%;
  width: 120%;
  height: 180px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  background: var(--cream);
}

.footer-visual {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 50%;
  width: min(620px, 58vw);
  height: 230px;
  transform: translateX(-50%);
}

.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.85fr;
  gap: 45px;
}

.footer-brand > p {
  margin-top: 18px;
  font-size: 11px;
}

.footer-text-brand .brand-copy strong {
  font-size: 20px;
}

.footer-text-brand > img {
  width: 48px;
  height: 48px;
}

.footer-schedule h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-schedule th,
.footer-schedule td {
  padding: 7px 6px;
  border-block: 1px solid rgba(18, 25, 28, 0.36);
  font-size: 11px;
  text-align: center;
}

.footer-schedule th:first-child {
  text-align: left;
}

.footer-schedule > p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
}

.footer-main > nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 11px 20px;
}

.footer-main > nav a {
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.footer-fiction-note {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.65;
}

/* Motion */
.motion-ready [data-reveal] {
  opacity: 0;
  transition: opacity 0.48s ease, transform 0.72s var(--ease);
}

.motion-ready [data-reveal="up"] {
  transform: translateY(34px);
}

.motion-ready [data-reveal="card"] {
  transform: translateY(26px) scale(0.985);
}

.motion-ready [data-reveal="left"] {
  transform: translateX(-38px);
}

.motion-ready [data-reveal="right"] {
  transform: translateX(38px);
}

.motion-ready [data-reveal="photo"] {
  transform: scale(0.975);
}

.motion-ready [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

.care-grid [data-reveal]:nth-child(2),
.feature-list [data-reveal]:nth-child(2) { transition-delay: 0.02s; }
.care-grid [data-reveal]:nth-child(3),
.feature-list [data-reveal]:nth-child(3) { transition-delay: 0.04s; }
.care-grid [data-reveal]:nth-child(4),
.feature-list [data-reveal]:nth-child(4) { transition-delay: 0.06s; }

.care-grid [data-reveal]:nth-child(5) { transition-delay: 0.08s; }
.care-grid [data-reveal]:nth-child(6) { transition-delay: 0.1s; }
.care-grid [data-reveal]:nth-child(7) { transition-delay: 0.12s; }
.care-grid [data-reveal]:nth-child(8) { transition-delay: 0.14s; }

@media (hover: hover) {
  .first-visit,
  .booking-line,
  .header-reserve,
  .booking-form button {
    transition: filter 0.22s ease;
  }

  .first-visit:hover,
  .booking-line:hover,
  .header-reserve:hover,
  .booking-form button:hover {
    filter: brightness(0.97);
  }
}

@media (max-width: 1280px) {
  :root {
    --header-height: 88px;
    --shell: min(1190px, calc(100vw - 48px));
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand > img {
    width: 44px;
    height: 44px;
  }

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

  .desktop-nav {
    gap: 11px;
    padding-inline: 14px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-reserve {
    min-height: 52px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-copy {
    left: 5vw;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
    --shell: calc(100vw - 44px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 12px 0 18px;
  }

  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero {
    height: 720px;
    min-height: 0;
  }

  .hero-schedule {
    width: min(660px, 70vw);
  }

  .opening-grid {
    gap: 38px;
  }

  .care-card {
    grid-template-rows: 138px auto;
  }

  .symptom-check {
    grid-template-columns: 370px 1fr;
    gap: 28px;
    padding-inline: 34px;
  }

  .symptom-intro {
    grid-template-columns: minmax(0, 1fr) 160px;
    padding-right: 20px;
  }

  .symptom-intro h2 {
    font-size: 27px;
  }

  .body-picker {
    width: 160px;
    height: 305px;
  }

  .symptom-form {
    gap: 24px;
  }

  .feature-layout {
    grid-template-columns: 280px 1fr;
    gap: 34px;
  }

  .feature-lead h2 {
    font-size: 33px;
  }

  .feature-item {
    grid-template-columns: 190px 1fr;
    min-height: 190px;
  }

  .feature-item > img:first-child {
    height: 190px;
  }

  .people-feature {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .people-feature-copy {
    padding: 44px;
  }

  .people-feature h2 {
    font-size: 28px;
  }

  .people-link > div {
    padding-left: 28px;
  }

  .people-link h2 {
    font-size: 22px;
  }

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

  .map-frame {
    min-height: 260px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    gap: 7px;
  }

  .brand > img {
    width: 38px;
    height: 38px;
  }

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

  .brand-copy small {
    margin-top: 2px;
    font-size: 7px;
  }

  .header-reserve {
    min-height: 42px;
    padding-inline: 13px;
  }

  .header-reserve img {
    display: none;
  }

  .hero {
    height: 700px;
  }

  .hero-image {
    bottom: 245px;
    height: 455px;
    object-position: 58% center;
    transform: none;
  }

  .hero-slide:nth-child(2) .hero-image {
    object-position: 60% center;
  }

  .hero-slide:nth-child(3) .hero-image {
    object-position: 56% center;
  }

  .hero-wash {
    bottom: 245px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 72%);
  }

  .hero-copy {
    top: 30px;
    left: 19px;
    font-size: clamp(27px, 7.7vw, 35px);
    line-height: 1.42;
  }

  .hero-pagination {
    left: 19px;
    bottom: 252px;
  }

  .hero-pagination button {
    width: 31px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-schedule {
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 245px;
    padding: 14px 18px 12px;
  }

  .schedule-head {
    margin-bottom: 5px;
  }

  .schedule-head strong {
    font-size: 15px;
  }

  .schedule-head > a {
    font-size: 11px;
  }

  .schedule-panel th,
  .schedule-panel td {
    padding: 4px 3px;
    font-size: 10px;
  }

  .schedule-panel th:first-child {
    min-width: 87px;
  }

  .schedule-panel tbody th span {
    min-width: 31px;
    margin-right: 3px;
    font-size: 9px;
  }

  .schedule-panel > p {
    max-width: 100%;
    font-size: 8px;
  }

  .opening-section {
    min-height: 0;
    padding: 52px 0 180px;
  }

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

  .first-visit {
    min-height: 158px;
    padding: 22px 27px;
  }

  .first-visit strong {
    font-size: 23px;
  }

  .booking-line {
    min-height: 72px;
    padding-inline: 27px;
  }

  .news-heading h2 {
    font-size: 28px;
  }

  .news-list button {
    grid-template-columns: 92px 1fr;
    gap: 10px;
    padding-block: 14px;
  }

  .first-guide {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
    padding: 14px 0;
  }

  .first-guide i {
    display: none;
  }

  .first-guide div {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 9px;
    border-right: 1px solid var(--line);
  }

  .first-guide div:last-child {
    border-right: 0;
  }

  .first-guide small {
    min-height: 16px;
  }

  .first-guide strong {
    font-size: 13px;
  }

  .first-guide span {
    font-size: 9px;
    line-height: 1.45;
  }

  .care-section {
    padding: 82px 0 0;
    scroll-margin-top: calc(var(--header-height) + 170px);
  }

  .care-boundary {
    top: -168px;
    height: 182px;
    object-position: center 55%;
    transform: none;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 12px;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 32px;
  }

  .care-card {
    grid-template-rows: 120px auto;
    min-height: 178px;
    padding: 8px 12px 14px;
  }

  .care-card > img:first-child {
    height: 120px;
  }

  .care-card > span {
    padding-right: 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  .care-card .link-arrow {
    right: 10px;
    bottom: 15px;
    width: 15px;
  }

  .care-wide-links {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .care-wide-links a {
    min-height: 76px;
    padding: 15px 18px;
  }

  .care-wide-links strong {
    font-size: 15px;
  }

  .care-wide-links small {
    font-size: 9px;
  }

  .symptom-check {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 70px;
    padding: 32px 22px 36px;
  }

  .symptom-intro {
    display: block;
    min-height: 244px;
    padding: 0 150px 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .symptom-intro h2 {
    font-size: 25px;
  }

  .body-picker {
    position: absolute;
    right: 10px;
    bottom: 14px;
    width: 144px;
    height: 264px;
  }

  .body-hotspot {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  .symptom-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .choice-grid {
    gap: 9px 12px;
  }

  .choice-grid span {
    font-size: 14px;
  }

  .choice-grid input {
    width: 18px;
    height: 18px;
  }

  .symptom-actions {
    grid-template-columns: 0.36fr 1fr;
  }

  .symptom-output {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 92px;
  }

  .care-exit {
    height: 220px;
    margin-top: 52px;
  }

  .feature-section {
    padding: 74px 0;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-lead {
    position: relative;
    top: auto;
    justify-self: center;
    width: min(100%, 380px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 43% 8% 8%;
  }

  .feature-lead > .feature-lead-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .feature-lead h2 {
    margin-block: 4px 8px;
    font-size: clamp(25px, 7vw, 32px);
  }

  .feature-lead p {
    font-size: 11px;
    line-height: 1.7;
  }

  .feature-list {
    gap: 8px;
  }

  .feature-item {
    grid-template-columns: 132px 1fr;
    min-height: 150px;
  }

  .feature-item > img:first-child {
    height: 150px;
  }

  .feature-item > div {
    padding: 20px 42px 20px 18px;
  }

  .feature-list h3 {
    font-size: 16px;
  }

  .feature-list h3 span,
  .people-feature h2 span,
  .people-link h2 span,
  .facility-block h2 span,
  .access-block h2 span {
    display: block;
  }

  .feature-list p {
    font-size: 11px;
    line-height: 1.6;
  }

  .feature-arrow {
    right: 14px;
    width: 18px;
  }

  .people-section {
    padding: 68px 0;
  }

  .people-shell {
    gap: 14px;
  }

  .people-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .people-feature > img {
    order: -1;
    height: 235px;
    padding: 0;
  }

  .people-feature-copy {
    padding: 24px 25px 27px;
  }

  .people-feature h2 {
    font-size: 23px;
  }

  .people-feature h2 br {
    display: none;
  }

  .people-link {
    min-height: 154px;
  }

  .people-link > div {
    padding: 23px 58px 23px 24px;
  }

  .people-link h2 {
    margin-block: 5px 7px;
    font-size: 20px;
  }

  .people-link p {
    font-size: 11px;
  }

  .people-link > span {
    right: 20px;
    font-size: 21px;
  }

  .rehab-detail {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .rehab-detail > img {
    grid-row: auto;
    height: 260px;
    min-height: 0;
    object-position: center 25%;
  }

  .rehab-detail > div {
    padding: 28px 25px 24px;
  }

  .rehab-detail h2 {
    font-size: 23px;
  }

  .rehab-detail aside {
    padding: 19px 25px 22px;
  }

  .clinic-section {
    padding: 82px 0 0;
  }

  .facility-photo {
    height: 350px;
    margin-bottom: 58px;
  }

  .facility-photo > img {
    top: -18px;
    height: calc(100% + 36px);
    transform: scale(1.025);
  }

  .clinic-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facility-block,
  .access-block {
    min-height: 0;
  }

  .facility-block {
    min-height: 0;
  }

  .facility-block > div {
    padding: 35px 28px;
  }

  .facility-block h2,
  .access-block h2 {
    font-size: 23px;
  }

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

  .map-frame {
    min-height: 300px;
  }

  .reserve-section {
    padding: 48px 0;
  }

  .reserve-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .booking-form button {
    grid-column: 1 / -1;
  }

  .reserve-inner h2 {
    font-size: 26px;
  }

  .booking-form button {
    min-width: 0;
    min-height: 49px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .site-dialog {
    width: calc(100vw - 28px);
  }

  .dialog-panel {
    padding: 27px 22px 28px;
  }

  .dialog-panel > header h2 {
    font-size: 23px;
  }

  .dialog-panel li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dialog-panel li time {
    grid-row: auto;
  }

  .booking-review {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 190px 0 20px;
    background: linear-gradient(to bottom, transparent 0 58px, var(--cream) 58px);
  }

  .site-footer::before {
    height: 115px;
  }

  .footer-visual {
    top: 12px;
    width: min(390px, 92vw);
    height: 170px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main > nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .symptom-intro h2 {
    font-size: 21px;
  }

  .site-header {
    padding-left: 13px;
  }

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

  .header-reserve {
    padding-inline: 10px;
    font-size: 11px;
  }

  .menu-button {
    width: 50px;
  }

  .mobile-actions a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-copy {
    font-size: 26px;
  }

  .first-guide div {
    padding-inline: 5px;
  }

  .first-guide span {
    font-size: 8px;
  }

  .symptom-intro {
    padding-right: 126px;
  }

  .body-picker {
    width: 106px;
  }

  .feature-item {
    grid-template-columns: 112px 1fr;
  }

  .feature-item > div {
    padding-inline: 13px;
    padding-right: 34px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .care-boundary,
  .facility-photo > img,
  .hero-slide {
    transform: none;
  }
}
