:root {
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  color: #34413c;
  background: #fcfbf7;
  font-synthesis: none;
  --ink: #34413c;
  --ink-soft: #68736e;
  --forest: #4e6d64;
  --forest-deep: #31534a;
  --sage: #a8beb1;
  --sage-soft: #e5eee8;
  --blue: #8eaab6;
  --blue-soft: #e4edf1;
  --clay: #aa6f58;
  --clay-soft: #f3e2da;
  --sand: #c7a56b;
  --sand-soft: #f4ecdc;
  --paper: #fcfbf7;
  --paper-deep: #f3f0e8;
  --white: #ffffff;
  --line: rgba(65, 84, 76, 0.16);
  --shadow: 0 20px 60px rgba(49, 70, 62, 0.11);
  --serif:
    "Noto Serif TC", "Songti TC", "PMingLiU", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

p {
  line-height: 1.85;
}

main {
  padding-top: 84px;
}

.section-pad {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
  padding-block: 110px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  background: rgba(252, 251, 247, 0.97);
  border-bottom: 1px solid rgba(49, 83, 74, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1400px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--forest-deep);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--forest-deep);
  border: 1px solid rgba(49, 83, 74, 0.3);
  border-radius: 50%;
  background: var(--sage-soft);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.brand small {
  margin-top: 2px;
  color: #7c8b85;
  font-size: 9px;
  letter-spacing: 0.19em;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-group {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-trigger,
.nav-link {
  height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #53635d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 999px;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--forest-deep);
  background: var(--sage-soft);
}

.nav-trigger svg,
.profile-main button svg,
.faq-list article > button > svg {
  transition: transform 160ms ease;
}

.nav-trigger[aria-expanded="true"] svg,
.profile-main button[aria-expanded="true"] svg,
.faq-list article.open > button > svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 180px;
  padding: 10px;
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown.wide {
  width: 380px;
  grid-template-columns: 1fr 1fr;
}

.nav-dropdown a {
  padding: 10px 12px;
  color: #596862;
  font-size: 13px;
  border-radius: 11px;
}

.nav-dropdown a:hover {
  color: var(--forest-deep);
  background: var(--paper-deep);
}

.nav-cta {
  margin-left: 8px;
  padding: 12px 20px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-cta:hover {
  background: var(--clay);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 84px));
  overflow: hidden;
  background: #e9eee9;
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(5vw, calc((100vw - 1320px) / 2));
  width: min(600px, 48vw);
  padding: 48px 52px;
  background: rgba(252, 251, 247, 0.89);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(49, 70, 62, 0.12);
  transform: translateY(-50%);
}

.home-hero-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-hero-copy h1 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.home-hero-copy p {
  margin: 24px 0 0;
  color: #53645d;
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions,
.center-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-actions {
  margin-top: 30px;
}

.center-actions {
  justify-content: center;
  margin-top: 44px;
}

.button-link {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button-link:hover {
  transform: translateY(-2px);
}

.button-link.primary {
  color: #fff;
  background: var(--forest-deep);
}

.button-link.primary:hover {
  background: var(--clay);
}

.button-link.ghost {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(49, 83, 74, 0.3);
}

.button-link.soft {
  color: var(--forest-deep);
  background: var(--paper-deep);
  border-color: var(--line);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.07em;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.home-intro-art {
  position: relative;
}

.home-intro-art::after {
  content: "";
  position: absolute;
  inset: 28px -22px -28px 24px;
  z-index: -1;
  background: var(--sand-soft);
  border-radius: 48% 26px 48% 26px;
}

.home-intro-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 46% 24px 46% 24px;
  box-shadow: var(--shadow);
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-title > span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-title h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.section-title.light > span,
.section-title.light h2 {
  color: #fff;
}

.home-intro-copy .section-title {
  margin-bottom: 28px;
}

.home-intro-copy h3 {
  margin: 0 0 22px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.home-intro-copy p {
  color: var(--ink-soft);
  font-size: 16px;
}

.home-intro-copy .button-link {
  margin-top: 18px;
}

.team-stat-section {
  padding: 110px 36px 130px;
  background: #fff;
}

.team-stat-section .section-title,
.stat-grid,
.team-stat-section .center-actions {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-item {
  min-height: 220px;
  padding: 38px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.stat-item > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--forest-deep);
  background: var(--sage-soft);
  border-radius: 50%;
}

.stat-item p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.stat-item strong {
  margin-right: 8px;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.clinic-section {
  padding-bottom: 140px;
}

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

.clinic-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(49, 70, 62, 0.08);
}

.clinic-card.sage {
  border-top: 4px solid var(--sage);
}

.clinic-card.blue {
  border-top: 4px solid var(--blue);
}

.clinic-image {
  padding: 12px;
}

.clinic-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 15px;
}

.clinic-card.sage .clinic-image img {
  object-position: 75% center;
}

.clinic-body {
  padding: 26px 30px 30px;
}

.clinic-body > span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.clinic-body h3 {
  margin: 8px 0 20px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.08em;
}

.clinic-body > a,
.clinic-body > p {
  margin: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.clinic-body svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--forest);
}

.clinic-links {
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.clinic-links a {
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 700;
}

.service-section {
  position: relative;
  overflow: hidden;
}

.service-backdrop,
.service-backdrop img,
.service-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-backdrop img {
  object-fit: cover;
}

.service-overlay {
  background: rgba(91, 70, 50, 0.72);
}

.service-content {
  position: relative;
  z-index: 1;
  padding-block: 120px 130px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 210px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #fff;
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.service-icon.sage {
  color: var(--forest-deep);
  background: var(--sage-soft);
}

.service-icon.blue {
  color: #54717d;
  background: var(--blue-soft);
}

.service-icon.sand {
  color: #8d6b34;
  background: var(--sand-soft);
}

.service-icon.clay {
  color: #8a513c;
  background: var(--clay-soft);
}

.service-card strong {
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.45;
}

.service-arrow {
  opacity: 0.45;
}

.schedule-section {
  width: min(1240px, calc(100% - 72px));
  padding-bottom: 140px;
}

.schedule-tabs {
  max-width: 760px;
  margin: 0 auto -1px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.schedule-tabs button {
  padding: 17px 24px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  cursor: pointer;
}

.schedule-tabs button.active {
  color: var(--forest-deep);
  background: var(--blue-soft);
  border-color: var(--blue);
  font-weight: 700;
}

.schedule-scroll {
  padding: 70px 44px 46px;
  background: var(--blue-soft);
  border: 1px solid rgba(142, 170, 182, 0.45);
  border-radius: 30px;
}

.schedule-scroll table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 22px;
}

.schedule-scroll th,
.schedule-scroll td {
  padding: 18px 12px;
  border-right: 1px solid #e5e8e5;
  border-bottom: 1px solid #e5e8e5;
  text-align: center;
}

.schedule-scroll thead th {
  color: #fff;
  background: #6f9188;
  font-size: 14px;
}

.schedule-scroll tr:last-child th,
.schedule-scroll tr:last-child td {
  border-bottom: 0;
}

.schedule-scroll tr th:last-child,
.schedule-scroll tr td:last-child {
  border-right: 0;
}

.schedule-scroll tbody th {
  width: 150px;
  color: var(--forest-deep);
  background: #e5eeea;
}

.schedule-scroll tbody th strong,
.schedule-scroll tbody th span {
  display: block;
}

.schedule-scroll tbody th span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 400;
}

.doctor-code {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--sand);
  border-radius: 10px;
  font-weight: 700;
}

.schedule-legend {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.schedule-note {
  margin: 20px auto 0;
  color: #7c8984;
  font-size: 12px;
  text-align: center;
}

.article-section {
  width: 100%;
  padding-inline: max(36px, calc((100vw - 1180px) / 2));
  background: var(--sand-soft);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 50px rgba(72, 66, 53, 0.08);
}

.article-image {
  display: block;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.025);
}

.article-card-body {
  padding: 26px 26px 28px;
}

.article-card-body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 11px;
}

.article-card-body > div span {
  color: var(--clay);
  font-weight: 700;
}

.article-card-body h3 {
  margin: 16px 0 12px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.article-card-body p {
  margin: 0 0 22px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--sage-soft);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(252, 251, 247, 0.76);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 60px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-content > span {
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.page-hero-content h1,
.page-hero-content h2 {
  margin: 10px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.11em;
}

.page-hero-content p {
  max-width: 660px;
  margin: 18px auto 0;
  color: #596862;
  font-size: 15px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 90px;
  align-items: center;
}

.story-copy .section-title {
  margin-bottom: 30px;
}

.lead {
  color: #495c55;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 2;
}

.story-copy > p:not(.lead) {
  color: var(--ink-soft);
}

.story-copy blockquote {
  margin: 34px 0 0;
  padding: 22px 26px;
  color: var(--clay);
  background: var(--clay-soft);
  border-left: 3px solid var(--clay);
  border-radius: 0 16px 16px 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 42% 28px 42% 28px;
  box-shadow: var(--shadow);
}

.values-section {
  width: 100%;
  padding-inline: max(36px, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  min-height: 290px;
  padding: 42px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.value-card svg {
  color: var(--forest);
}

.value-card h3 {
  margin: 28px 0 15px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
}

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

.about-numbers {
  padding: 86px max(36px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
}

.locations-section {
  padding-bottom: 140px;
}

.location-list {
  display: grid;
  gap: 72px;
}

.location-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.location-row:nth-child(even) img {
  order: 2;
}

.location-row > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
}

.location-row > div > span {
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 36px;
}

.location-row h3 {
  margin: 6px 0 14px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 30px;
}

.location-row p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
}

.location-row .button-link {
  margin-top: 10px;
}

.team-page {
  padding-bottom: 140px;
}

.team-page-intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.team-page-intro .section-title {
  margin-bottom: 24px;
}

.team-page-intro > p {
  color: var(--ink-soft);
}

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

.profile-card {
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 50px rgba(49, 70, 62, 0.08);
}

.profile-card > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.profile-main {
  padding: 42px 34px 34px;
}

.profile-main > span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
}

.profile-main h2 {
  margin: 10px 0 4px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.09em;
}

.profile-role {
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
}

.profile-main > p:not(.profile-role) {
  color: var(--ink-soft);
  font-size: 14px;
}

.profile-main button {
  margin-top: 15px;
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--forest);
  cursor: pointer;
  font-weight: 700;
}

.profile-detail {
  grid-column: 1 / -1;
  padding: 30px 34px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.profile-detail strong {
  color: var(--forest-deep);
}

.profile-detail p,
.profile-detail ul {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.profile-detail ul {
  padding-left: 18px;
}

.team-cta {
  margin-top: 70px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--sage-soft);
  border-radius: 28px;
}

.team-cta span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.team-cta h3 {
  margin: 7px 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 25px;
}

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

.service-detail-intro {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 80px;
  align-items: center;
}

.service-detail-copy .section-title {
  margin-bottom: 26px;
}

.service-detail-copy p:not(.lead) {
  color: var(--ink-soft);
}

.service-detail-copy .button-link {
  margin-top: 16px;
}

.service-detail-intro > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.feature-section {
  background: var(--paper-deep);
}

.feature-section.sage {
  background: var(--sage-soft);
}

.feature-section.blue {
  background: var(--blue-soft);
}

.feature-section.sand {
  background: var(--sand-soft);
}

.feature-section.clay {
  background: var(--clay-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 215px;
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
}

.feature-grid article > span {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(49, 83, 74, 0.24);
  font-family: Georgia, serif;
  font-size: 32px;
}

.feature-grid svg {
  margin-bottom: 16px;
  color: var(--forest);
}

.feature-grid h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.price-section {
  padding-bottom: 120px;
}

.price-card {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.price-card > div {
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 15px;
  align-items: center;
  background: var(--paper-deep);
  border-radius: 18px;
}

.price-card svg {
  grid-row: 1 / 3;
  color: var(--forest);
}

.price-card span {
  color: var(--ink-soft);
  font-size: 12px;
}

.price-card strong {
  color: var(--forest-deep);
  font-size: 15px;
}

.price-card > p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-faq-section {
  width: 100%;
  padding-inline: max(36px, calc((100vw - 1040px) / 2));
  background: var(--paper-deep);
}

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

.faq-list article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-list article.open {
  border-color: rgba(78, 109, 100, 0.35);
}

.faq-list article > button {
  width: 100%;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--forest-deep);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-list article > button > span,
.faq-answer > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.faq-list article > button > span {
  color: var(--forest-deep);
  background: var(--sage-soft);
}

.faq-list article > button > strong {
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer {
  padding: 0 22px 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.faq-answer > span {
  color: #fff;
  background: var(--sand);
}

.faq-answer p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-team-section {
  padding-bottom: 140px;
}

.mini-team-grid {
  width: min(800px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-team-grid a {
  padding: 12px 20px 12px 12px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
}

.mini-team-grid img {
  width: 78px;
  height: 94px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-team-grid strong,
.mini-team-grid span {
  display: block;
}

.mini-team-grid strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 19px;
}

.mini-team-grid span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
}

.mini-team-grid svg {
  color: var(--forest);
}

.faq-page {
  max-width: 1080px;
  padding-bottom: 140px;
}

.filter-tabs {
  margin-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-tabs button {
  min-height: 44px;
  padding: 0 20px;
  color: #66736e;
  background: var(--paper-deep);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.filter-tabs button.active {
  color: var(--forest-deep);
  background: var(--sand-soft);
  border-color: rgba(199, 165, 107, 0.4);
  font-weight: 700;
}

.faq-help {
  margin-top: 54px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--blue-soft);
  border-radius: 22px;
}

.faq-help > svg {
  color: #54717d;
}

.faq-help h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 22px;
}

.faq-help p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.blog-page {
  padding-bottom: 140px;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-page {
  padding-bottom: 140px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.news-card > div {
  padding: 28px;
}

.news-card span {
  display: inline-block;
  margin-right: 15px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

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

.news-card h2 {
  margin: 16px 0 12px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

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

.article-detail {
  max-width: 960px;
  padding-bottom: 140px;
}

.article-detail header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.article-detail header > span {
  margin-right: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.article-detail header time {
  color: var(--ink-soft);
  font-size: 11px;
}

.article-detail header h1 {
  margin: 24px 0 18px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.article-detail header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.article-detail-image {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.article-prose {
  max-width: 760px;
  margin: 64px auto 0;
}

.article-prose > p {
  margin: 0 0 26px;
  color: #53635d;
  font-size: 17px;
  line-height: 2.05;
}

.article-prose aside {
  margin-top: 44px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  color: var(--forest-deep);
  background: var(--sage-soft);
  border-radius: 18px;
}

.article-prose aside p {
  margin: 0;
  font-size: 13px;
}

.article-back {
  margin-top: 54px;
  text-align: center;
}

.contact-page {
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: start;
}

.contact-form-wrap .section-title {
  margin-bottom: 20px;
}

.contact-form-wrap > p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-success {
  margin-bottom: 28px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--forest-deep);
  background: var(--sage-soft);
  border-radius: 15px;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  margin-top: 3px;
  font-size: 12px;
}

.contact-form-wrap form {
  display: grid;
  gap: 25px;
}

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

.contact-form-wrap label,
.contact-form-wrap legend {
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 700;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
  width: 100%;
  margin-top: 9px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(78, 109, 100, 0.12);
}

.contact-form-wrap fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form-wrap legend {
  margin-bottom: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
}

.choice-grid input:checked + span {
  color: var(--forest-deep);
  background: var(--sage-soft);
  border-color: var(--forest);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft) !important;
  font-weight: 400 !important;
  line-height: 1.7;
}

.privacy-check input {
  margin-top: 4px;
}

.form-submit {
  min-height: 52px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: var(--forest-deep);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.form-submit:hover {
  background: var(--clay);
}

.contact-aside {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-aside > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-aside > div {
  padding: 28px 28px 18px;
}

.contact-aside > div > span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.contact-aside a {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  color: var(--forest-deep);
  font-size: 13px;
}

.contact-aside a strong {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 17px;
}

.contact-aside > p {
  margin: 0;
  padding: 19px 28px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-size: 12px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-contact {
  padding-block: 78px 58px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px 80px;
  align-items: end;
}

.footer-brand > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-clinic-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer-clinic-tabs button {
  min-width: 160px;
  min-height: 44px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  cursor: pointer;
}

.footer-clinic-tabs button.active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
  font-weight: 700;
}

.footer-clinic-detail {
  grid-column: 1 / -1;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--paper-deep);
  border-radius: 24px;
}

.footer-clinic-detail span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.footer-clinic-detail h3 {
  margin: 7px 0 15px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 26px;
}

.footer-clinic-detail a:not(.button-link),
.footer-clinic-detail p {
  margin: 7px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  min-height: 64px;
  padding: 18px max(36px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: #fff;
}

.not-found {
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found svg {
  color: var(--forest);
}

.not-found > span {
  margin-top: 14px;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 16px;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin: 10px 0 4px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 40px;
}

.not-found p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

  .nav-trigger,
  .nav-link {
    padding-inline: 9px;
    font-size: 13px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-card {
    grid-template-columns: 45% 55%;
  }

  .profile-main {
    padding: 32px 26px;
  }
}

@media (max-width: 980px) {
  main {
    padding-top: 74px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    width: min(100% - 28px, 1400px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--forest-deep);
    background: var(--sage-soft);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-nav {
    position: absolute;
    inset: 74px 0 auto;
    height: calc(100dvh - 74px);
    padding: 24px 24px 50px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--paper);
  }

  .mobile-nav > a,
  .mobile-nav-group > button {
    width: 100%;
    min-height: 54px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--forest-deep);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    text-align: left;
  }

  .mobile-nav-group > button svg {
    transition: transform 160ms ease;
  }

  .mobile-nav-group > button svg.rotate {
    transform: rotate(180deg);
  }

  .mobile-subnav {
    padding: 7px 0 12px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: var(--paper-deep);
    border-radius: 0 0 13px 13px;
  }

  .mobile-subnav a {
    padding: 10px 8px;
    color: var(--ink-soft);
    font-size: 13px;
  }

  .mobile-nav .mobile-nav-cta {
    min-height: 52px;
    margin-top: 24px;
    padding: 0 20px;
    color: #fff;
    background: var(--forest-deep);
    border: 0;
    border-radius: 999px;
    justify-content: center;
    gap: 16px;
  }

  .home-hero {
    min-height: 700px;
  }

  .home-hero-copy {
    left: 36px;
    width: min(600px, calc(100% - 72px));
  }

  .home-intro,
  .story-section,
  .service-detail-intro {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .story-section {
    gap: 60px;
  }

  .story-image {
    max-width: 650px;
    margin-inline: auto;
  }

  .value-grid,
  .article-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .contact-aside {
    position: static;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
  }

  .contact-aside > img {
    grid-row: 1 / 3;
    height: 100%;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-clinic-tabs {
    justify-content: flex-start;
  }

  .location-row {
    grid-template-columns: 1fr;
  }

  .location-row:nth-child(even) img {
    order: 0;
  }
}

@media (max-width: 720px) {
  .section-pad {
    width: min(100% - 36px, 1180px);
    padding-block: 78px;
  }

  .brand {
    gap: 9px;
  }

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

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

  .home-hero {
    min-height: 760px;
  }

  .home-hero > img {
    object-position: 67% center;
  }

  .home-hero-copy {
    top: auto;
    right: 18px;
    bottom: 38px;
    left: 18px;
    width: auto;
    padding: 30px 26px;
    border-radius: 26px;
    transform: none;
  }

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

  .home-hero-copy p {
    font-size: 14px;
  }

  .home-hero-copy p br {
    display: none;
  }

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

  .hero-actions .button-link {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section-title > span {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .home-intro {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .home-intro-art {
    order: 2;
  }

  .home-intro-art::after {
    inset: 18px -7px -18px 10px;
  }

  .home-intro-copy h3 {
    font-size: 19px;
    line-height: 1.7;
  }

  .team-stat-section {
    padding: 78px 18px 90px;
  }

  .stat-grid,
  .about-numbers {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .stat-item strong {
    font-size: 44px;
  }

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

  .clinic-grid,
  .value-grid,
  .article-grid,
  .news-grid,
  .feature-grid,
  .mini-team-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    width: min(100% - 36px, 1180px);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    min-height: 176px;
    padding: 22px 12px 18px;
    gap: 12px;
    border-radius: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-card strong {
    min-height: 38px;
    font-size: 13px;
  }

  .schedule-section {
    width: min(100% - 24px, 1240px);
  }

  .schedule-tabs button {
    padding: 14px 9px;
    font-size: 12px;
  }

  .schedule-scroll {
    padding: 22px 12px;
    overflow-x: auto;
    border-radius: 20px;
  }

  .schedule-scroll table {
    min-width: 720px;
  }

  .schedule-legend {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }

  .article-section,
  .values-section,
  .service-faq-section {
    padding-inline: 18px;
  }

  .page-hero {
    height: 300px;
  }

  .page-hero > img {
    object-position: 68% center;
  }

  .page-hero-content {
    width: calc(100% - 36px);
  }

  .page-hero-content h1,
  .page-hero-content h2 {
    font-size: 34px;
  }

  .page-hero-content p {
    font-size: 13px;
    line-height: 1.75;
  }

  .story-section {
    gap: 44px;
  }

  .story-copy blockquote {
    font-size: 16px;
  }

  .about-numbers {
    padding: 65px 18px;
  }

  .location-list {
    gap: 58px;
  }

  .location-row {
    gap: 26px;
  }

  .location-row h3 {
    font-size: 26px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card > img {
    min-height: 0;
    aspect-ratio: 4 / 4.8;
  }

  .profile-main {
    padding: 28px 24px 26px;
  }

  .profile-detail {
    grid-template-columns: 1fr;
  }

  .team-cta {
    padding: 30px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail-intro {
    gap: 44px;
  }

  .feature-grid article {
    min-height: 180px;
  }

  .price-card {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .price-card > p {
    grid-column: auto;
  }

  .faq-list article > button {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding: 15px 14px;
  }

  .faq-list article > button > span,
  .faq-answer > span {
    width: 34px;
    height: 34px;
  }

  .faq-list article > button > strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 14px 20px;
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .faq-help {
    padding: 26px 22px;
    grid-template-columns: auto 1fr;
  }

  .faq-help .button-link {
    grid-column: 1 / -1;
  }

  .filter-tabs {
    margin-bottom: 38px;
    justify-content: flex-start;
  }

  .filter-tabs button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .article-detail header h1 {
    font-size: 32px;
  }

  .article-detail header p,
  .article-prose > p {
    font-size: 15px;
  }

  .article-detail-image {
    border-radius: 18px;
  }

  .article-prose {
    margin-top: 42px;
  }

  .contact-page {
    gap: 48px;
  }

  .form-row,
  .choice-grid,
  .choice-grid.compact {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    display: block;
  }

  .footer-contact {
    gap: 36px;
  }

  .footer-clinic-tabs {
    width: 100%;
  }

  .footer-clinic-tabs button {
    min-width: 0;
    flex: 1;
  }

  .footer-clinic-detail {
    padding: 28px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

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

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