/* Pretendard 단일 서체 (SIL Open Font License) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  --font-base: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  
  --bg-main: #FAF9F6;
  --bg-surface: #F2EFE9;
  --bg-subtle: #F9F8F6;
  --bg-dark: #121210;
  
  --text-main: #141412;
  --text-body: #2B2A27;
  --text-muted: #6B6860;
  --text-inverse: #FAF9F6;
  --text-inverse-sub: #D1CEC7;
  
  /* 흰색/기본 배경 위 작은 글자와 흰 글자 버튼 모두 WCAG AA를 넘는 브랜드 오렌지 */
  --accent-orange: #6FAE3A;
  --accent-orange-hover: #4F7F2B;
  --accent-orange-on-dark: #A9D66F;
  --accent-orange-bg: #F1F7E9;
  
  --border-light: #E5E2DC;
  --border-medium: #D1CDC5;
  --border-dark: #33322E;
  
  --header-height: 80px;
  --max-width: 1240px;
  
  --shadow-sm: 0 1px 3px rgba(20, 20, 18, 0.04);
  --shadow-md: 0 4px 16px rgba(20, 20, 18, 0.08);
  --shadow-lg: 0 12px 36px rgba(20, 20, 18, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  /* scroll-behavior: smooth 를 여기 두지 않는다.
     루트에 걸면 브라우저의 기본 앵커 이동까지 애니메이션돼서,
     nonpay.html 에서 index.html#access 로 들어올 때 맨 위에서 6,486px 를
     스르륵 흘러 내려가는 것이 그대로 보인다. 뒤로가기 스크롤 복원도 같이 흘러간다.
     같은 페이지 스무스 스크롤은 main.js 가 window.scrollTo 에
     behavior: 'smooth' 를 직접 넘기므로 이 선언 없이도 그대로 동작한다. */
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@supports not (overflow: clip) {
  html, body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* v14: 통증 조절 안내 */
.pain-hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 96px 0;
  box-sizing: border-box;
  background: #f7f3ed;
}
.pain-hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr); gap: 72px; align-items: end; }
.pain-hero h1 { margin: 16px 0 24px; max-width: 820px; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 1.08; letter-spacing: -.055em; }
.pain-hero-grid > div > p { max-width: 720px; font-size: 1.25rem; line-height: 1.75; color: var(--text-sub); }
.pain-hero-note { padding: 34px; border-top: 3px solid var(--accent-orange); background: #fff; }
.pain-hero-note span { display: block; margin-bottom: 14px; color: var(--accent-orange); font-size: .9rem; font-weight: 800; }
.pain-hero-note strong { display: block; font-size: 1.55rem; line-height: 1.45; }
.pain-hero-note p { margin-top: 18px; color: var(--text-sub); font-size: 1rem; line-height: 1.75; }
.pain-section-heading { max-width: 760px; margin-bottom: 54px; }
.pain-section-heading h2 { margin: 14px 0 20px; font-size: clamp(2.15rem, 3.5vw, 3.5rem); line-height: 1.16; letter-spacing: -.045em; }
.pain-section-heading > p { font-size: 1.16rem; line-height: 1.8; color: var(--text-sub); }
.pain-flow-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.pain-flow-list::before { content: ''; position: absolute; top: 24px; left: 24px; right: 24px; height: 2px; background: var(--accent-orange); }
.pain-flow-list li { position: relative; padding: 0 28px 0 0; }
.pain-flow-list li > span { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; margin-bottom: 26px; place-items: center; border: 2px solid var(--accent-orange); border-radius: 50%; background: #fff; font-weight: 800; }
.pain-flow-list strong { display: block; margin-bottom: 10px; font-size: 1.18rem; }
.pain-flow-list p { color: var(--text-sub); font-size: 1rem; line-height: 1.7; }
.pain-options { background: #f7f3ed; }
.pain-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.pain-card { padding: 42px; border: 1px solid var(--border-light); border-radius: 6px; background: #fff; }
.pain-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pain-card-num { color: var(--accent-orange); font-size: .9rem; font-weight: 800; }
.pain-card-type { padding: 6px 10px; border: 1px solid #d9d2c8; border-radius: 999px; color: var(--text-sub); font-size: .82rem; font-weight: 700; }
.pain-card h2 { margin: 12px 0 30px; font-size: 1.75rem; letter-spacing: -.035em; }
.pain-card-copy + .pain-card-copy { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.pain-card-copy strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.pain-card-copy p { color: var(--text-sub); font-size: 1.05rem; line-height: 1.78; }
.pain-card-rehab strong { color: #b6431c; }
.pain-decision-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.pain-decision h2 { margin-top: 14px; font-size: clamp(2.1rem, 3.4vw, 3.4rem); line-height: 1.2; letter-spacing: -.045em; }
.pain-decision-copy p { margin-bottom: 20px; font-size: 1.12rem; line-height: 1.85; color: var(--text-sub); }
.pain-faq { padding-top: 40px; }
.pain-faq-list { border-top: 1px solid var(--text-main); }
.pain-faq-list details { border-bottom: 1px solid var(--border-light); }
.pain-faq-list summary { position: relative; padding: 25px 52px 25px 0; cursor: pointer; list-style: none; font-size: 1.18rem; font-weight: 750; }
.pain-faq-list summary::after { content: '+'; position: absolute; right: 10px; font-size: 1.5rem; font-weight: 400; }
.pain-faq-list details[open] summary::after { content: '−'; }
.pain-faq-list details p { max-width: 850px; padding: 0 52px 26px 0; color: var(--text-sub); font-size: 1.05rem; line-height: 1.8; }
.pain-disclaimer { margin-top: 30px; padding: 20px 24px; border-left: 3px solid var(--text-main); background: #f7f3ed; color: var(--text-sub); line-height: 1.7; }

/* v15: 통증 조절 선택 화면과 개별 상세 페이지 */
.pain-selector-hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 56px 0 44px;
  box-sizing: border-box;
  background: #f7f3ed;
}
.pain-selector-hero.section { scroll-margin-top: var(--header-height); }
.pain-selector-hero .section-tag { display: block; margin-bottom: 10px; }
.pain-selector-heading h2 { margin-top: 12px; font-size: clamp(2.5rem, 3.25vw, 3.5rem); line-height: 1.08; letter-spacing: -.055em; }
.nonpay-overview { background: #f7f3ed; }
.nonpay-overview-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: end; margin-top: 18px; padding: clamp(30px, 5vw, 58px); border-top: 3px solid var(--accent-orange); background: #fff; }
.nonpay-overview-panel .text-lead { max-width: 760px; margin-top: 16px; }
.nonpay-overview-panel .btn { white-space: nowrap; }
.pain-selector-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; margin-bottom: 34px; }
.pain-selector-heading h1 { margin-top: 12px; font-size: clamp(2.5rem, 3.25vw, 3.5rem); line-height: 1.08; letter-spacing: -.055em; }
.pain-title-line { display: block; white-space: nowrap; }
.pain-guided-tile {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  min-height: 220px;
  margin-top: 14px;
  border: 1px solid var(--border-medium);
  background: #171714;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pain-guided-tile:hover { transform: translateY(-3px); border-color: var(--accent-orange); box-shadow: var(--shadow-md); }
.pain-guided-tile-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 48px); }
.pain-guided-tile .pain-selector-num { color: var(--accent-orange-on-dark); margin-bottom: 18px; }
.pain-guided-tile strong { font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.15; }
.pain-guided-tile p { margin-top: 12px; color: var(--text-inverse-sub); font-size: 1rem; line-height: 1.7; }
.pain-guided-tile .pain-selector-link { margin-top: 20px; color: #fff; }
.pain-guided-tile img { width: 100%; height: 100%; object-fit: cover; }
.guided-procedure-back { display: inline-flex; color: #fff; font-weight: 700; text-decoration: none; margin-bottom: 42px; min-height: 44px; align-items: center; }
.guided-procedure-back:hover { color: var(--accent-orange-on-dark); }
.pain-selector-heading > p { max-width: 600px; padding-bottom: 6px; color: var(--text-sub); font-size: 1.12rem; line-height: 1.78; }
.pain-selector-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pain-selector-card { position: relative; min-height: 178px; padding: 25px 26px; border: 1px solid #ddd6cc; background: #fff; color: var(--text-main); text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.pain-selector-card:hover { transform: translateY(-3px); border-color: var(--accent-orange); box-shadow: 0 12px 30px rgba(38, 31, 25, .08); }
.pain-selector-card:focus-visible { outline: 3px solid rgba(224, 90, 43, .28); outline-offset: 3px; }
.pain-selector-num { display: block; margin-bottom: 15px; color: var(--accent-orange); font-size: .8rem; font-weight: 800; }
.pain-selector-card > strong { display: block; font-size: 1.3rem; letter-spacing: -.025em; }
.pain-selector-card p { margin: 8px 0 18px; color: var(--text-sub); font-size: .94rem; line-height: 1.55; }
.pain-selector-link { position: absolute; left: 26px; bottom: 20px; font-size: .88rem; font-weight: 750; }
.pain-selector-note { margin-top: 18px; color: var(--text-sub); font-size: .88rem; }
.pain-detail-page { padding: 128px 0 72px; }
.pain-detail-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 45px; color: var(--text-main); font-weight: 750; text-decoration: none; }
.pain-detail-back:hover { color: var(--accent-orange); }
.pain-detail-header { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; padding-bottom: 48px; border-bottom: 1px solid var(--text-main); }
.pain-detail-num { margin: 18px 0 8px; color: var(--accent-orange); font-size: .9rem; font-weight: 800; }
.pain-detail-header h1 { font-size: clamp(3rem, 5vw, 5.4rem); line-height: 1.08; letter-spacing: -.055em; }
.pain-detail-header > p { padding-bottom: 8px; color: var(--text-sub); font-size: 1.2rem; line-height: 1.75; }
.pain-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--border-light); }
.pain-detail-grid section { padding: 42px 36px 46px 0; }
.pain-detail-grid section + section { padding-left: 36px; border-left: 1px solid var(--border-light); }
.pain-detail-grid section > span { color: var(--accent-orange); font-size: .78rem; font-weight: 800; }
.pain-detail-grid h2 { margin: 12px 0 18px; font-size: 1.35rem; line-height: 1.35; }
.pain-detail-grid p { color: var(--text-sub); font-size: 1.03rem; line-height: 1.8; }
.pain-detail-rehab { background: #fbf6f1; }
.pain-detail-practice { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; margin-top: 36px; padding: 38px 40px; border-top: 3px solid var(--accent-orange); background: #211f1c; color: #fff; }
.pain-detail-practice span { color: #f2a06e; font-size: .8rem; font-weight: 800; }
.pain-detail-practice h2 { margin-top: 10px; font-size: 1.6rem; line-height: 1.4; }
.pain-detail-practice > p { color: #e8e2da; font-size: 1.04rem; line-height: 1.82; }
.pain-detail-benefit { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; margin-top: 36px; padding: 40px; border-top: 3px solid var(--accent-orange); background: #fff; }
.pain-detail-benefit span { color: var(--accent-orange); font-size: .8rem; font-weight: 800; }
.pain-detail-benefit h2 { margin-top: 10px; font-size: 1.6rem; line-height: 1.4; }
.pain-detail-benefit > div > p { font-size: 1.04rem; line-height: 1.82; }
.pain-detail-benefit aside { margin-top: 24px; padding: 22px 24px; background: #f5f0e9; border-left: 3px solid #25221e; }
.pain-detail-benefit aside strong { display: block; margin-bottom: 8px; }
.pain-detail-benefit aside p { color: #514b44; line-height: 1.75; }
.pain-detail-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; margin-top: 38px; }
.pain-detail-nav a { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; border: 1px solid var(--border-light); color: var(--text-main); text-decoration: none; }
.pain-detail-nav a:last-child { text-align: right; }
.pain-detail-nav span { color: var(--text-sub); font-size: .78rem; }
.pain-detail-nav strong { font-size: .96rem; }
.pain-detail-nav a:hover { border-color: var(--accent-orange); }

@media (max-width: 1024px) {
  .pain-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .pain-hero-note { max-width: 600px; }
  .pain-flow-list { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
  .pain-flow-list::before { display: none; }
  .pain-decision-grid { gap: 52px; }
  .pain-selector-heading { gap: 40px; }
  .pain-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-selector-hero { min-height: auto; }
  .pain-detail-header { gap: 48px; }
  .pain-detail-grid { grid-template-columns: 1fr; }
  .pain-detail-grid section, .pain-detail-grid section + section { padding: 34px 0; border-left: 0; border-top: 1px solid var(--border-light); }
.pain-detail-practice, .pain-detail-benefit { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .pain-hero { min-height: auto; padding: 112px 0 64px; }
  .pain-hero h1 { font-size: 2.55rem; }
  .pain-hero-grid > div > p { font-size: 1.08rem; }
  .pain-hero-note { padding: 26px 24px; }
  .pain-section-heading { margin-bottom: 38px; }
  .pain-section-heading h2 { font-size: 2.05rem; }
  .pain-flow-list, .pain-card-grid, .pain-decision-grid { grid-template-columns: 1fr; }
  .pain-flow-list { gap: 0; }
  .pain-flow-list li { min-height: 122px; padding: 0 0 28px 62px; }
  .pain-flow-list li > span { position: absolute; left: 0; top: 0; width: 42px; height: 42px; margin: 0; }
  .pain-card { padding: 30px 24px; }
  .pain-card h2 { font-size: 1.5rem; }
  .pain-decision-grid { gap: 28px; }
  .pain-selector-hero { padding: 96px 0 50px; }
  .pain-selector-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .pain-selector-heading h1 { font-size: clamp(1.8rem, 8vw, 2.45rem); }
  .pain-selector-heading h2 { font-size: clamp(1.8rem, 8vw, 2.45rem); }
  .nonpay-overview-panel { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .pain-guided-tile { grid-template-columns: 1fr; }
  .pain-guided-tile img { height: 240px; order: -1; }
  .pain-selector-heading > p { font-size: 1.02rem; }
  .pain-selector-grid { grid-template-columns: 1fr; }
  .pain-selector-card { min-height: 164px; }
  .pain-detail-page { padding: 104px 0 52px; }
  .pain-detail-back { margin-bottom: 30px; }
  .pain-detail-header { grid-template-columns: 1fr; gap: 20px; padding-bottom: 32px; }
  .pain-detail-header h1 { font-size: 2.55rem; }
  .pain-detail-header > p { font-size: 1.04rem; }
  .pain-detail-grid h2 { font-size: 1.25rem; }
.pain-detail-practice { padding: 30px 24px; }
.pain-detail-practice h2 { font-size: 1.35rem; }
.pain-detail-benefit { padding: 30px 24px; }
.pain-detail-benefit h2 { font-size: 1.35rem; }
  .pain-detail-nav { grid-template-columns: 1fr 1fr; }
  .pain-detail-nav a:nth-child(2) { grid-column: 1 / -1; grid-row: 1; text-align: center; }
}

/* 키보드 사용자는 모든 인터랙션의 현재 위치를 같은 방식으로 확인한다. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ========================================================
   1. Typography & Hierarchy
   ======================================================== */
.text-display {
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-main);
}

.text-h1 {
  font-size: clamp(1.85rem, 3.0vw, 2.75rem); /* v10: 여백 조절 및 뷰포트 안착 */
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.text-h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

.text-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1, h2, h3, .display-quote, .recovery-col-title {
  text-wrap: balance;
}

p, .text-lead, .pathway-desc, .recovery-col-desc {
  text-wrap: pretty;
}

.text-lead {
  font-size: clamp(1.0rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 400;
}

.text-body {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-body);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

/* [ 01 / SYMPTOMS ] 같은 번호 라벨은 숨긴다(2026-08-21).
   바로 아래 .eyebrow 가 이미 섹션 이름을 말해 역할이 겹치고,
   번호를 매기면 순서대로 읽으라는 뜻이 되는데 환자는 자기 부위부터 찾아간다.
   마크업은 남겨 두어 되살릴 수 있게 한다. */
.section-tag {
  display: none;
}

.dot-accent {
  color: var(--accent-orange);
}

/* ========================================================
   2. Layout & Containers (v10: min-height 100vh 복원 & 여백 다이어트)
   ======================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.section {
  min-height: calc(100vh - var(--header-height)); /* v10: 100vh 복원으로 다음 섹션 노출 방지 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(36px, 3.5vw, 48px); /* v10: 808px 가용 높이 내 안착 */
  padding-bottom: clamp(36px, 3.5vw, 48px);
  position: relative;
  box-sizing: border-box;
}

/* scroll-margin-top 은 두지 않는다. html 의 scroll-padding-top 과 더해져
   앵커 이동 시 오프셋이 92px 이 아니라 184px 이 된다. 정본은 scroll-padding-top 한 곳이다. */

#access {
  min-height: auto; /* 풀블리드 사진 포함으로 예외 */
  display: block;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark .text-h1,
.section-dark .text-h2,
.section-dark .text-h3 {
  color: var(--text-inverse);
}

.section-dark .text-body,
.section-dark .text-lead {
  color: var(--text-inverse-sub);
}

.section-dark .eyebrow,
.section-dark .dot-accent {
  color: var(--accent-orange-on-dark);
}

.section-bg-surface {
  background-color: var(--bg-surface);
}

.section-header {
  margin-bottom: 28px; /* v10: 40px -> 28px로 컴팩트화 */
}

/* ========================================================
   3. Buttons & Badges (min 44px touch target)
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  box-sizing: border-box;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  border: 1px solid var(--accent-orange);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--text-main);
  color: #FFFFFF;
  border: 1px solid var(--text-main);
}

.btn-dark:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-dark);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--text-main);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.86rem;
  min-height: 44px;
}

/* ========================================================
   4. Header & Navigation (공식 브랜드 로고)
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  background-color: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background-color: rgba(250, 249, 246, 0.98);
  border-bottom-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.header-container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: 44px;
  flex-shrink: 0;
}

.brand-logo-img,
.brand-symbol-img {
  height: 36px;
  width: auto;
  display: block;
}

.brand-wrap {
  gap: 8px;
}

.brand-name {
  color: var(--text-heading);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.15s ease, border-color 0.15s ease;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent-orange);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-tel {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  min-height: 44px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 18px;
  }
}

/* 모바일 풀스크린 드로어 */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-logo {
  height: 32px;
  width: auto;
}

.mobile-drawer-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.doctor-collaboration {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--border-medium);
}

.mobile-drawer-brand {
  color: var(--text-heading);
  font-size: 1rem;
}

.mobile-drawer-brand img,
.footer-brand img {
  display: block;
  flex: 0 0 auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.mobile-nav-link {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========================================================
   5. Hero Section (v10: 서브 카피 .hl 2줄 구조)
   ======================================================== */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(36px, 4.5vw, 60px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(36px, 4vw, 64px);
  align-items: center;
}

.hero-title {
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(2.35rem, 3.1vw, 2.8rem);
  letter-spacing: -0.055em;
}

.hero-title .hl {
  display: block;
  white-space: nowrap;
}

.hero-desc {
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-desc .hl {
  display: block; /* v10: 서브 카피 지정 2줄 구조 */
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border-medium);
  align-items: start;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.45;
}

.mv-item {
  white-space: nowrap;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  margin-right: calc(-50vw + 50%);
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 32%;
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: #FFFFFF;
  padding: 14px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-orange);
  max-width: 280px;
  z-index: 2;
}

.floating-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.floating-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

/* ========================================================
   6. Symptom Index (v10: 패딩 14px 20px로 다이어트)
   ======================================================== */
.symptom-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symptom-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px; /* v10: 18px 24px -> 13px 20px (높이 72px 축소 효과) */
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 48px;
}

.symptom-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.symptom-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}

.symptom-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
}

.symptom-arrow-svg {
  color: var(--border-medium);
  transition: transform 0.2s ease, color 0.2s ease;
}

.symptom-item:hover {
  border-color: var(--border-dark);
  transform: translateX(4px);
}

.symptom-item.active {
  background-color: var(--text-main);
  border-color: var(--text-main);
  color: #FFFFFF;
}

.symptom-item.active .symptom-num {
  color: var(--accent-orange-on-dark);
}

.symptom-item.active .symptom-name {
  color: #FFFFFF;
}

.symptom-item.active .symptom-arrow-svg {
  color: #FFFFFF;
  transform: translateX(4px);
}

.symptom-display-card {
  position: sticky;
  top: 100px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}

.quote-decor-mark {
  width: 28px;
  height: 28px;
  color: var(--accent-orange);
  opacity: 0.25;
  margin-bottom: 12px;
}

.display-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.display-quote {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.display-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 18px;
}

.display-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 18px;
}

.display-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.display-point-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  margin-top: 7px;
  flex-shrink: 0;
}

.symptom-disclaimer {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================================
   7. Pathway 2 Acts (v10: 20px 패딩으로 안착)
   ======================================================== */
.pathway-acts-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
}

.pathway-act-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px; /* v10: 24px -> 20px */
  display: flex;
  flex-direction: column;
}

.pathway-act-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--text-main);
  margin-bottom: 16px;
}

.act-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--text-main);
  color: #FFFFFF;
  border-radius: 4px;
}

.act-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
}

.act-cols-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.act-cols-grid::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 45%;
  width: 10%;
  height: 1px;
  background: var(--border-medium);
  z-index: 1;
}

.pathway-col {
  border-top: 1.5px solid var(--text-main);
  padding-top: 14px;
  position: relative;
}

.step-marker-line {
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: var(--accent-orange);
}

.step-num-large {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-medium);
  margin-bottom: 4px;
}

.pathway-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.pathway-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pathway-role-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  background-color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--border-light);
}

.pathway-frame-note {
  padding: 12px 16px;
  background-color: var(--bg-surface);
  border-left: 3px solid var(--border-dark);
  font-size: 0.86rem;
  color: var(--text-muted);
  border-radius: 0 4px 4px 0;
  margin-top: 14px;
}

/* ========================================================
   8. Procedures Section (Dark Right-Bleed)
   ======================================================== */
.signature-section {
  overflow: hidden;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.signature-card {
  padding: 20px;
  border-top: 1.5px solid var(--border-dark);
  margin-bottom: 12px;
}

.signature-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.signature-card-desc {
  font-size: 0.92rem;
  color: var(--text-inverse-sub);
  line-height: 1.6;
}

.signature-bleed-wrap {
  width: 100%;
}

.carm-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.carm-photo-large {
  grid-column: 1 / -1;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.carm-photo-large img,
.carm-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carm-photo-thumb {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

/* ========================================================
   9. Recovery Section (v10: 여백 슬림화)
   ======================================================== */
.recovery-section {
  background: #F9F8F6;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px; /* v10: 36px -> 24px */
}

.recovery-col {
  border-top: 2px solid var(--text-main);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.recovery-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.recovery-col-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.35;
}

.recovery-col-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.recovery-bottom-band {
  margin-top: 24px; /* v10: 40px -> 24px */
  padding: 18px 22px;
  background: #FFFFFF;
  border-left: 4px solid var(--accent-orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.recovery-band-text {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.55;
}

.recovery-photo-placeholder {
  margin-top: 20px; /* v10: 32px -> 20px */
  padding: 20px;
  border: 1.5px dashed var(--border-medium);
  border-radius: 8px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.6);
}

/* ========================================================
   10. Team CareFlow Section
   ======================================================== */
.team-open-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.team-col {
  border-top: 2px solid var(--text-main);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
}

.team-col-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.team-col-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.team-col-verb {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.team-col-desc {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-muted);
}

/* ========================================================
   11. Channel Section (v10: 카드 내 유튜브 직접 링크 지원)
   ======================================================== */
.channel-section {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

/* v14: 네 단계를 한눈에 읽는 통합 치료 흐름 */
.pathway-flow {
  margin-top: 28px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.pathway-phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.pathway-phase {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 1.12rem;
}

.pathway-phase + .pathway-phase {
  border-left: 1px solid var(--border-light);
}

.pathway-step-grid {
  --flow-line-y: 48px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 20px 30px;
}

.pathway-mobile-phase {
  display: none;
}

.pathway-step-grid::before {
  content: "";
  position: absolute;
  top: var(--flow-line-y);
  left: 62px;
  right: calc(12.5% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), #9BCB63);
}

.pathway-step-grid::after {
  content: "›";
  position: absolute;
  right: calc(12.5% + 10px);
  top: calc(var(--flow-line-y) - 17px);
  color: var(--accent-orange);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.pathway-flow .pathway-col {
  min-width: 0;
  padding: 0 20px;
  border-top: 0;
}

.pathway-flow .step-num-large {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border: 3px solid var(--accent-orange);
  border-radius: 50%;
  background: #fff;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 0;
}

.pathway-flow .pathway-title {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.pathway-flow .pathway-desc {
  margin-bottom: 18px;
  color: #55504a;
  font-size: 1rem;
  line-height: 1.7;
}

.pathway-flow .pathway-role-tag {
  padding: 7px 10px;
  color: #625c55;
  font-size: 0.86rem;
}

.channel-section .eyebrow {
  color: var(--accent-orange-on-dark);
}

.channel-video-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 90, 43, .8) rgba(255,255,255,.08);
  gap: 20px;
  margin-top: 24px; /* v10: 36px -> 24px */
  margin-bottom: 24px;
}

.channel-video-grid::-webkit-scrollbar {
  height: 8px;
}

.channel-video-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.channel-video-grid::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 999px;
}

.yt-facade-card {
  background: #1F1E1B;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.yt-facade-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}

.yt-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #141311;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(224, 90, 43, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.yt-facade-card:hover .yt-play-btn {
  transform: scale(1.12);
  background: #FF0000;
}

.yt-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.yt-video-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.yt-video-date {
  font-size: 0.78rem;
  color: #8E8A82;
  font-weight: 500;
}

.yt-direct-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.78rem;
  color: var(--accent-orange-on-dark);
  text-decoration: underline;
  cursor: pointer;
}
.channel-carousel-head { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; color: #fff; }
.channel-carousel-head p { color: rgba(255,255,255,.76); }
.channel-carousel-guide { display: inline-block; margin-left: 12px; color: var(--accent-orange-on-dark); font-size: .82rem; font-weight: 700; }
.channel-carousel-controls { display: flex; gap: 8px; }
.channel-carousel-btn { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; color: #fff; font-size: 1.15rem; cursor: pointer; }
.channel-carousel-btn:hover { border-color: var(--accent-orange); background: var(--accent-orange); }
.channel-video-grid .yt-facade-card { flex: 0 0 calc((100% - 60px) / 4); min-width: 270px; scroll-snap-align: start; }
.clinic-live-status { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin: 10px 0 14px; padding: 14px 16px; border-radius: 8px; background: #f2eee8; }
.clinic-live-status strong { font-size: 1rem; }
.clinic-live-status.is-open strong { color: #16734a; }
.clinic-live-status.is-closed strong { color: #8a4a31; }
.clinic-live-status span { color: #625c55; font-size: .82rem; }
.clinic-live-status a { color: var(--accent-orange); font-weight: 700; font-size: .82rem; }

.yt-direct-link:hover {
  color: #FF8F6B;
}

.channel-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.channel-cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ========================================================
   12. Knowledge Section (Bento Layout)
   ======================================================== */
.knowledge-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.daily-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.06em;
}

.knowledge-bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}

.knowledge-lead-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.knowledge-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.knowledge-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 12px;
}

.knowledge-desc {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.knowledge-list-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.knowledge-row {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px;
}

.knowledge-row .knowledge-title {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.knowledge-row .knowledge-desc {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ========================================================
   13. Doctor Profile Section
   ======================================================== */
.doctor-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.doctor-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-title-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.doctor-name {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.doctor-spec {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}

.doctor-concept-box {
  background-color: #FFFFFF;
  padding: 12px 16px;
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 4px 4px 0;
  margin-bottom: 18px;
}

.concept-text {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text-main);
}

.doctor-bio-section {
  border-top: 1px solid var(--border-medium);
  padding-top: 18px;
}

.bio-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bio-item {
  font-size: 0.93rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bio-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  flex-shrink: 0;
}

/* ========================================================
   14. Access & Schedule Table
   ======================================================== */
#access {
  justify-content: space-between;
  padding-bottom: 0;
}

.access-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.access-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-block-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
}

.info-block-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.schedule-table-wrap {
  margin-top: 8px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  background: #FFFFFF;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table th, .schedule-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.schedule-table th {
  background: var(--bg-surface);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.cutoff-badge {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-orange);
  background: #FFF1EB;
  padding: 2px 8px;
  border-radius: 4px;
}

.clinic-indoor-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.clinic-strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.strip-caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.access-fullbleed-exterior {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.access-fullbleed-exterior img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
}

.exterior-overlay-card {
  position: absolute;
  bottom: 32px;
  left: max(24px, calc((100% - var(--max-width)) / 2 + 24px));
  background-color: rgba(20, 20, 18, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 18px 22px;
  border-radius: 6px;
  border-left: 4px solid var(--accent-orange);
  max-width: 440px;
}

.exterior-overlay-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.exterior-overlay-sub {
  font-size: 0.86rem;
  color: var(--text-inverse-sub);
}

/* ========================================================
   15. Footer
   ======================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  padding-top: 52px;
  padding-bottom: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-inverse-sub);
  max-width: 480px;
  line-height: 1.6;
}

.footer-tel-block {
  text-align: right;
}

.footer-tel-num {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-orange-on-dark);
  letter-spacing: -0.02em;
}

.footer-address-line {
  font-size: 0.86rem;
  color: var(--text-inverse-sub);
  margin-top: 4px;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.84rem;
  color: #9E9A90;
  margin-bottom: 20px;
}

.footer-notice {
  font-size: 0.8rem;
  color: #8E8A82;
  line-height: 1.6;
  padding: 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #8E8A82;
}

.footer-design-credit {
  display: block;
  margin-top: 6px;
  color: #AAA59C;
  letter-spacing: 0.01em;
}

/* ========================================================
   16. Detail Page Layout & Other Parts Links (v10)
   ======================================================== */
.detail-hero {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(36px, 5vw, 56px);
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.detail-quote-hero {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: start;
}

.condition-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.condition-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sticky-sidebar {
  position: sticky;
  top: 108px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.other-parts-wrap {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-medium);
}

.other-parts-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.other-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.other-part-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.other-part-link:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

/* ========================================================
   17. Toast Container
   ======================================================== */
.toast-container {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(20, 20, 18, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.toast-container.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .toast-container {
    transition: none !important;
  }
}

/* ========================================================
   18. Mobile Bottom Sticky CTA Bar
   ======================================================== */
.mobile-sticky-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body {
    padding-bottom: 72px;
  }

  /* 하단 고정 CTA 바가 전화·예약을 이미 제공하므로 헤더에서는 뺀다.
     남겨 두면 브랜드 로고와 합쳐 386px가 되어 375px 화면에서 햄버거가 잘린다. */
  .header-actions .btn {
    display: none;
  }
  .mobile-sticky-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    z-index: 995;
    box-shadow: 0 -4px 16px rgba(20, 20, 18, 0.08);
    box-sizing: border-box;
  }
  .mobile-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 6px;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    min-height: 44px;
  }
  .mobile-bottom-tel {
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-medium);
    gap: 6px;
  }
  .mobile-bottom-reserve {
    background: var(--accent-orange);
    color: #FFFFFF;
  }
}

/* ========================================================
   19. Responsive Media Queries
   ======================================================== */
@media (max-width: 1024px) {
  .section, .hero-section {
    min-height: auto;
    display: block;
    padding-top: 52px;
    padding-bottom: 52px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .header-tel {
    display: none;
  }
  
  .menu-toggle {
    display: inline-flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-desc .hl {
    display: inline;
  }

  .hero-visual-wrap {
    margin-right: 0;
  }

  .hero-image-frame {
    border-radius: 8px;
  }
  
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-floating-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .symptom-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .symptom-list {
    width: 100%;
  }
  
  .symptom-display-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 24px 20px;
  }

  .pathway-acts-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .act-cols-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .act-cols-grid::after {
    display: none;
  }
  
  .pathway-col {
    padding-left: 32px;
    border-top: none;
    padding-top: 0;
    position: relative;
  }
  
  .pathway-col::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 24px;
    bottom: -24px;
    width: 2px;
    background: var(--border-medium);
  }
  
  .pathway-act-block:last-child .pathway-col:last-child::before {
    display: none;
  }
  
  .step-marker-line {
    display: none;
  }
  
  .step-num-large {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.88rem;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    -webkit-text-stroke: 0;
    margin-bottom: 0;
  }

  .signature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .recovery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recovery-bottom-band {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .team-open-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .channel-video-grid .yt-facade-card { flex-basis: calc((100% - 16px) / 2); }
  
  .knowledge-bento {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sticky-sidebar {
    position: static;
  }
  
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .access-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .exterior-overlay-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-tel-block {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .channel-video-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .channel-video-grid::-webkit-scrollbar {
    display: none !important;
  }
  
  .yt-facade-card {
    width: 78vw !important;
    min-width: 78vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }
  
  .clinic-indoor-strip {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   20. Scroll Reveal Motion
   ======================================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* 제목 줄바꿈 제어 (히어로 외 섹션 제목에도 사용) */
h2 .hl { display: block; }
@media (max-width: 1024px) { h2 .hl { display: inline; } }

/* 회복 섹션 가독성 보강 (실측: 본문 14.9px·한 줄 25자·넘버 대비 3.49 → 개선) */
.recovery-section .text-lead { max-width: 46em; font-size: 1.1rem; line-height: 1.75; }
.recovery-grid { gap: 36px; }
.recovery-col { border-top-width: 2px; padding-top: 26px; }
.recovery-num { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; color: #B4520F; }
.recovery-col-title { font-size: 1.35rem; line-height: 1.4; margin-bottom: 12px; }
.recovery-col-desc { font-size: 1rem; line-height: 1.8; color: #4A463E; }
.recovery-bottom-band { margin-top: 40px; }
.recovery-band-text { font-size: 1rem; line-height: 1.7; color: #2B2A27; }
@media (max-width: 1024px) {
  .recovery-grid { gap: 28px; }
  .recovery-col-desc { font-size: 1.02rem; }
}

/* ========================================================
   부위 페이지 — 치료·운동 상세 + 안전 안내
   ======================================================== */

.care-step {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--border-light);
}

.care-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  word-break: keep-all;
}

.care-step-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.care-step .text-body {
  font-size: 1rem;
  line-height: 1.8;
}

.care-note {
  margin-top: 20px;
  padding: 16px 18px;
  background-color: var(--bg-surface);
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  word-break: keep-all;
}

.care-note strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.safety-box {
  margin-top: 24px;
  padding: 22px 24px;
  background-color: #FFF8F5;
  border: 1px solid #F0D6CB;
  border-radius: 8px;
}

.safety-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 20px;
  margin-bottom: 8px;
  word-break: keep-all;
}

.safety-title:first-child {
  margin-top: 0;
}

.safety-title-urgent {
  color: #B3261E;
}

.safety-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  word-break: keep-all;
}

/* ========================================================
   비급여 진료비용 고지 표 (의료법 제45조)
   ======================================================== */

.fee-table {
  font-size: 1rem;
}

.fee-table th {
  font-size: 0.95rem;
}

.fee-table th,
.fee-table td {
  padding: 12px 16px;
  word-break: keep-all;
}

.fee-table th.fee-amount,
.fee-table td.fee-amount {
  text-align: right;
  white-space: nowrap;
}

.fee-table td.fee-amount {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.fee-table .fee-name {
  word-break: keep-all;
}

.fee-table .fee-detail {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-inverse);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 법정 고지물이라 금액이 잘리면 안 된다. wrap 의 overflow:hidden 을 가로만 풀어 둔다. */
.schedule-table-wrap:has(.fee-table) {
  overflow-x: auto;
}

@media (max-width: 560px) {
  .fee-table th,
  .fee-table td {
    padding: 10px 12px;
  }
  .fee-table .fee-detail {
    font-size: 0.84rem;
  }
}

/* 메뉴가 7개가 되면서 1200px 미만에서 헤더 전화번호가 자리를 뺏는다.
   예약 버튼과 푸터·하단 고정바에 전화가 이미 있어 이 구간에서만 접는다. */
@media (max-width: 1199px) {
  .header-tel {
    display: none;
  }
}

/* ========================================================
   치료사 판단 기준 블록 (#team 확장)
   사진이 한 장도 필요 없는 구조다. 원장에게만 사진이 있는
   현재 비대칭이 이 자리에서 결핍으로 읽히지 않게 한다.
   ======================================================== */

.therapist-standard {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.therapist-lead {
  max-width: 46em;
  font-size: 1.1rem;
  line-height: 1.8;
  word-break: keep-all;
}

.therapist-lead + .therapist-lead {
  margin-top: 16px;
}

.therapist-list {
  counter-reset: therapist;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 32px;
}

.therapist-item {
  counter-increment: therapist;
  position: relative;
  padding: 24px 0 8px 64px;
  border-top: 1px solid var(--border-light);
  border-left: 3px solid var(--accent-orange);
}

.therapist-item::before {
  content: counter(therapist, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 2px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
}

.therapist-item-title {
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
  margin: 0 0 10px;
  word-break: keep-all;
  text-wrap: balance;
}

.therapist-item .team-col-desc {
  font-size: 1rem;
  line-height: 1.85;
  word-break: keep-all;
}

.therapist-item .team-col-desc + .team-col-desc {
  margin-top: 12px;
}

.therapist-closing {
  margin-top: 40px;
  padding: 16px 18px;
  background-color: var(--bg-main);
  border-left: 3px solid var(--border-dark);
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  word-break: keep-all;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.38rem, 6.2vw, 1.55rem);
    letter-spacing: -0.065em;
  }
  .channel-carousel-controls { display: none; }

  .therapist-standard {
    margin-top: 44px;
    padding-top: 36px;
  }
  .therapist-item {
    padding-left: 0;
    border-left: none;
    padding-top: 26px;
  }
  .therapist-item::before {
    left: 0;
    top: 0;
  }
  .therapist-lead {
    font-size: 1.05rem;
  }
}

/* ========================================================
   칼럼 상세 페이지
   ======================================================== */

.col-wrap {
  max-width: 820px;
}

.col-breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.col-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.col-breadcrumb a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.col-breadcrumb span {
  margin: 0 8px;
}

.col-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--text-main);
  word-break: keep-all;
  text-wrap: balance;
  margin: 0 0 12px;
}

.col-byline {
  font-size: 0.94rem;
  color: var(--text-muted);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

/* 직답 요약: 검색 AI 가 첫머리에서 답을 집어 가는 자리 */
.col-answer {
  margin: 32px 0 40px;
  padding: 24px 26px;
  background-color: var(--bg-surface);
  border-radius: 8px;
}

.col-answer-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.col-answer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  word-break: keep-all;
}

.col-answer p + p {
  margin-top: 10px;
}

.col-body p {
  font-size: 1.075rem;
  line-height: 1.88;
  color: var(--text-body);
  word-break: keep-all;
  margin-bottom: 18px;
}

.col-h2 {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  word-break: keep-all;
  margin: 52px 0 18px;
  padding-top: 4px;
}

.footer-brand {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.footer-tel-block a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

#menuClose {
  width: 44px !important;
  height: 44px !important;
}

/* 긴 칼럼에서 현재 읽은 위치를 헤더 바로 아래 한 줄로 보여 준다. */
body.has-reading-progress::before {
  content: "";
  position: fixed;
  z-index: 1100;
  top: var(--header-height);
  left: 0;
  width: calc(var(--reading-progress, 0) * 1%);
  height: 3px;
  background: var(--accent-orange);
  pointer-events: none;
}

.col-link {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 90, 43, 0.3);
}

.col-link:hover {
  border-bottom-color: var(--accent-orange);
}

/* 닥터 한마디 */
.doctor-note {
  margin: 44px 0 0;
  padding: 26px 28px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
}

.doctor-note-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 14px;
}

.doctor-note p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
  word-break: keep-all;
  margin-bottom: 12px;
}

.doctor-note p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.col-faq {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.col-faq-item + .col-faq-item {
  margin-top: 28px;
}

.col-faq-q {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
  word-break: keep-all;
  margin: 0 0 10px;
  padding-left: 22px;
  position: relative;
}

.col-faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.col-faq-a {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  word-break: keep-all;
  padding-left: 22px;
}

/* 태그 칩 */
.col-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.col-tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.86rem;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
}

.col-tag:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.col-notice {
  margin-top: 24px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
  word-break: keep-all;
}

.col-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 640px) {
  .col-answer {
    padding: 20px 18px;
  }
  .col-answer p,
  .col-body p {
    font-size: 1rem;
  }
  .doctor-note {
    padding: 20px 18px;
  }
  .col-cta .btn {
    width: 100%;
  }
}

/* 칼럼 하단 관련 부위·개념 링크 (vault 연결 섹션을 내부 링크로 옮긴 자리) */
.col-related {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.col-related-label {
  width: 100%;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.col-rel-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 13px;
  border-radius: 4px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-medium);
  font-size: 0.88rem;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
}

.col-rel-chip:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.col-rel-part {
  background-color: var(--accent-orange-bg);
  border-color: #F0D6CB;
  font-weight: 600;
}

.col-related + .col-tags {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

/* ========================================================
   칼럼 목록 페이지 + 치료진 요약 블록
   ======================================================== */

.team-more {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.team-more-text {
  flex: 1 1 420px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-body);
  word-break: keep-all;
}

.doctor-team-link {
  margin-top: 20px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  word-break: keep-all;
}

.doctor-team-link a {
  color: var(--accent-orange);
  font-weight: 600;
}

.col-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.col-filter-btn {
  appearance: none;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 19px;
  border: 1px solid var(--border-medium);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
}

.col-filter-btn span {
  margin-left: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.col-filter-btn:hover {
  border-color: var(--accent-orange);
}

.col-filter-btn.is-active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-inverse);
}

.col-filter-btn.is-active span {
  color: var(--text-inverse-sub);
}

.col-filter-note {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--accent-orange-bg);
  border-radius: 6px;
  font-size: 0.94rem;
  color: var(--text-body);
}

.col-filter-note a {
  color: var(--accent-orange);
  font-weight: 600;
}

.col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.col-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(20, 20, 18, 0.03);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.col-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.col-card-link {
  display: block;
  padding: 24px;
  text-decoration: none;
  height: 100%;
}

.col-card-part {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.col-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  word-break: keep-all;
  margin: 0 0 10px;
}

.col-card-sum {
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--text-muted);
  word-break: keep-all;
  margin: 0;
}

.col-empty {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .col-list {
    grid-template-columns: 1fr;
  }
  .col-card-link {
    padding: 18px 18px;
  }
}

/* 부위 페이지의 관련 칼럼 목록 */
.part-col-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.part-col-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.part-col-list li:last-child {
  border-bottom: none;
}

.part-col-list a {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-body);
  text-decoration: none;
  word-break: keep-all;
}

.part-col-list a:hover {
  color: var(--accent-orange);
}

.part-col-more {
  margin-top: 14px;
}

.part-col-more a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
}

.part-col-more a:hover {
  text-decoration: underline;
}

/* 지식 카드가 링크가 되면서 필요한 보정 */
.knowledge-lead-card,
.knowledge-row {
  text-decoration: none;
  color: inherit;
  display: block;
}

.knowledge-lead-card:hover .knowledge-title,
.knowledge-row:hover .knowledge-title {
  color: var(--accent-orange);
}

.knowledge-more {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-orange);
}

.knowledge-all {
  margin-top: 28px;
  text-align: right;
}

.knowledge-all a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
}

.knowledge-all a:hover {
  text-decoration: underline;
}

/* ========================================================
   용어집
   ======================================================== */

.glossary-index {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.glossary-index-group + .glossary-index-group {
  margin-top: 22px;
}

.glossary-index-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.glossary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 6px 6px 0;
  padding: 8px 13px;
  border-radius: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
}

.glossary-chip:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.glossary-group + .glossary-group {
  margin-top: 56px;
}

.glossary-group-lead {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  word-break: keep-all;
  margin-bottom: 32px;
}

.glossary-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
}

.glossary-item:last-child {
  border-bottom: none;
}

.glossary-alias {
  display: block;
  height: 0;
}

/* 사전은 본문보다 넓은 스캔 폭을 쓰되 설명의 개별 행폭은 유지한다. */
.col-wrap:has(.glossary-index) {
  max-width: 980px;
}

@media (min-width: 900px) {
  .glossary-item {
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 2fr);
    column-gap: 40px;
  }

  .glossary-term {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .glossary-def,
  .glossary-why {
    grid-column: 2;
  }
}

/* 텍스트만 이어지는 치료진 페이지에 편집 리듬을 만든다. */
.col-wrap:has(.therapist-list) {
  max-width: 920px;
}

.col-wrap:has(.therapist-list) .therapist-list {
  margin-top: 56px;
  gap: 44px;
}

.col-wrap:has(.therapist-list) .therapist-item {
  padding-bottom: 20px;
}

.col-tools {
  max-width: 680px;
  margin: 0 0 24px;
}

.col-search-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.col-search {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: #fff;
  color: var(--text-main);
  font: inherit;
}

.col-search:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

.col-result-count {
  min-height: 1.5em;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.col-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.col-more-btn[hidden] {
  display: none;
}

.glossary-group-back {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent-orange);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.glossary-term {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  word-break: keep-all;
  margin: 0 0 12px;
}

.glossary-def {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  word-break: keep-all;
  margin: 0;
}

.glossary-why {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--accent-orange);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  word-break: keep-all;
}

.glossary-back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.glossary-back a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
}

/* 어두운 푸터의 인라인 브랜드 링크와 시간표 보조 문구 대비 보정 */
.footer-tel-block a {
  color: var(--accent-orange-on-dark) !important;
}

/* v12: 주황색은 행동, 현재 상태, 링크와 핵심 구분선에만 사용한다. */
.eyebrow,
.floating-tag,
.display-badge,
.recovery-num,
.team-col-num,
.daily-label,
.knowledge-cat,
.doctor-title-tag {
  color: var(--text-muted);
}

.doctor-team-cta {
  margin-top: 28px;
  padding: 24px 26px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-left: 4px solid var(--accent-orange);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.doctor-team-kicker {
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.doctor-team-title {
  margin: 0 0 10px;
  color: var(--text-main);
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.4;
  word-break: keep-all;
}

.doctor-team-desc {
  margin: 0 0 15px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.75;
  word-break: keep-all;
}

.doctor-team-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--accent-orange);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.doctor-team-action:hover {
  color: var(--accent-orange-hover);
  text-decoration: underline;
}

.doctor-team-action:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .doctor-team-cta {
    margin-top: 22px;
    padding: 20px;
  }
}

.schedule-table td[style*="color"] {
  color: var(--text-muted) !important;
}

@media (max-width: 768px) {
  .pathway-flow { margin-top: 22px; overflow: visible; }
  .pathway-phase-grid { display: block; }
  .pathway-phase { padding: 16px 18px; }
  .pathway-phase + .pathway-phase { display: none; }
  .pathway-step-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .pathway-step-grid::before {
    top: 46px;
    bottom: 48px;
    left: 41px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .pathway-step-grid::after {
    content: "";
    right: auto;
    left: 34px;
    top: auto;
    bottom: 22px;
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--accent-orange);
    border-bottom: 3px solid var(--accent-orange);
    transform: rotate(45deg);
  }
  .pathway-flow .pathway-col {
    position: relative;
    padding: 0 0 32px 64px;
    border-top: 0;
  }
  .pathway-flow .pathway-col::before { display: none; }
  .pathway-mobile-phase {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 -20px 24px;
    padding: 14px 18px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: #f7f3ed;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
  }
  .pathway-flow .step-num-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 0.9rem;
  }
  .pathway-flow .pathway-title {
    padding-top: 7px;
    font-size: 1.2rem;
  }
  .pathway-flow .pathway-desc {
    font-size: 1rem;
    line-height: 1.72;
  }
}
.col-search-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; margin-bottom: 28px; padding: 32px 34px; border-top: 3px solid var(--accent-orange); background: #f4efe8; }
.col-search-panel > div > span { color: var(--accent-orange); font-size: .78rem; font-weight: 800; }
.col-search-panel h2 { margin-top: 8px; font-size: 1.6rem; line-height: 1.35; }
.col-search-panel > div > p { margin-top: 10px; color: #625c55; line-height: 1.7; }
.col-search-field label { display: block; margin-bottom: 8px; font-weight: 750; }
.col-search-field > div { display: flex; min-height: 54px; border: 1px solid #bbb2a7; border-radius: 6px; background: #fff; overflow: hidden; }
.col-search-field input { flex: 1; min-width: 0; padding: 0 16px; border: 0; background: transparent; font: inherit; font-size: 1rem; outline: none; }
.col-search-field > div:focus-within { border-color: var(--accent-orange); box-shadow: 0 0 0 3px rgba(224,90,43,.12); }
.col-search-field button { padding: 0 16px; border: 0; background: transparent; color: var(--accent-orange); font-weight: 750; cursor: pointer; }
.col-search-field > p { min-height: 1.5em; margin-top: 8px; color: #625c55; font-size: .88rem; }
@media (max-width: 760px) { .col-search-panel { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; } .col-search-panel h2 { font-size: 1.35rem; } }

/* patient-experience-v17 */
.hero-section { min-height: calc(100vh - var(--header-height)); min-height: calc(100svh - var(--header-height)); }
.channel-section { background: #2b2926; }

.symptom-search-bridge { padding: 0 0 clamp(72px, 7vw, 104px); background: var(--bg-surface); }
.symptom-search-bridge-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(36px, 6vw, 80px); align-items: center; padding-top: 34px; border-top: 3px solid var(--accent-orange); }
.symptom-search-bridge h2 { margin-top: 8px; font-size: clamp(1.55rem, 2.3vw, 2.25rem); line-height: 1.3; letter-spacing: -.04em; }
.symptom-search-bridge p { margin-top: 10px; color: var(--text-sub); line-height: 1.7; }
.symptom-quick-search label { display: block; margin-bottom: 9px; font-size: .88rem; font-weight: 800; }
.symptom-quick-search > div { display: flex; min-height: 58px; border: 1px solid var(--border-medium); border-radius: 6px; background: #fff; overflow: hidden; }
.symptom-quick-search > div:focus-within { border-color: var(--accent-orange); box-shadow: 0 0 0 3px rgba(196, 65, 21, .12); }
.symptom-quick-search input { flex: 1; min-width: 0; padding: 0 18px; border: 0; outline: 0; font: inherit; font-size: 1rem; }
.symptom-quick-search button { min-width: 110px; border: 0; background: var(--accent-orange); color: #fff; font: inherit; font-weight: 800; cursor: pointer; }
.symptom-quick-search > p { margin-top: 8px; font-size: .88rem; }

.patient-pathway-section { background: #fff; }
.pathway-intro { max-width: 820px; }
.patient-pathway { margin-top: 34px; }
.pathway-common { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start; max-width: 720px; margin: 0 auto; padding: 28px 32px; border: 1px solid var(--border-light); border-top: 3px solid var(--text-main); background: #fff; box-shadow: var(--shadow-sm); }
.pathway-common-num { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--text-main); color: #fff; font-size: .9rem; font-weight: 800; }
.pathway-kicker { color: var(--accent-orange); font-size: .78rem; font-weight: 800; }
.pathway-common h3 { margin-top: 5px; font-size: 1.55rem; letter-spacing: -.035em; }
.pathway-common p { margin-top: 9px; color: var(--text-sub); font-size: 1rem; line-height: 1.7; }
.pathway-branch-line { position: relative; width: 50%; height: 54px; margin: 0 auto; border-bottom: 2px solid #d7cfc4; }
.pathway-branch-line::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #d7cfc4; transform: translateX(-50%); }
.pathway-branch-line span::before, .pathway-branch-line span::after { content: ''; position: absolute; bottom: -7px; width: 12px; height: 12px; border-right: 2px solid var(--accent-orange); border-bottom: 2px solid var(--accent-orange); transform: rotate(45deg); }
.pathway-branch-line span::before { left: -6px; }
.pathway-branch-line span::after { right: -6px; }
.pathway-branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pathway-branch { display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--border-light); background: #fbfaf7; }
.pathway-branch-chronic { background: #f7f1e9; }
.pathway-branch-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--border-medium); }
.pathway-branch-label { color: var(--accent-orange); font-size: 1.15rem; font-weight: 850; }
.pathway-branch-head strong { color: var(--text-muted); font-size: .82rem; }
.pathway-branch ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.pathway-branch li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 0 14px; padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.pathway-branch li > span { grid-row: 1 / span 2; display: grid; place-items: center; width: 36px; height: 36px; border: 2px solid var(--accent-orange); border-radius: 50%; background: #fff; color: var(--text-main); font-size: .78rem; font-weight: 800; }
.pathway-branch li > strong { font-size: 1.08rem; }
.pathway-branch li > p { margin-top: 6px; color: var(--text-sub); font-size: .96rem; line-height: 1.65; }
.pathway-branch-link { align-self: flex-start; margin-top: 22px; color: var(--text-main); font-weight: 800; text-decoration: none; }
.pathway-branch-link span { color: var(--accent-orange); }

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-top: 20px; padding-bottom: 54px; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
  .hero-visual-wrap { grid-row: 1; margin: 0; }
  .hero-content { grid-row: 2; }
  .hero-image-frame { height: 222px; aspect-ratio: auto; border-radius: 6px; }
  .hero-image-frame img { object-position: 72% 31%; }
  .hero-floating-card { display: none; }
  .hero-title { margin-bottom: 14px; font-size: clamp(1.5rem, 6.7vw, 1.68rem); line-height: 1.22; letter-spacing: -.06em; }
  .hero-title .hl { white-space: nowrap; }
  .hero-desc { margin-bottom: 20px; font-size: 1rem; line-height: 1.62; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 0; }
  .hero-actions .btn { min-height: 48px; padding: 12px 10px; font-size: .88rem; text-align: center; justify-content: center; }
  .hero-meta { display: none; }

  .symptom-search-bridge { padding-bottom: 68px; }
  .symptom-search-bridge-inner { grid-template-columns: 1fr; gap: 24px; padding-top: 26px; }
  .symptom-search-bridge h2 { font-size: 1.48rem; }
  .symptom-quick-search > div { min-height: 54px; }
  .symptom-quick-search button { min-width: 96px; }

  .patient-pathway-section { padding-top: 72px; padding-bottom: 72px; }
  .patient-pathway { margin-top: 26px; }
  .pathway-common { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 20px; }
  .pathway-common-num { width: 42px; height: 42px; }
  .pathway-common h3 { font-size: 1.28rem; }
  .pathway-common p { font-size: .96rem; }
  .pathway-branch-line { width: 72%; height: 42px; }
  .pathway-branches { grid-template-columns: 1fr; gap: 16px; }
  .pathway-branch { padding: 24px 20px; }
  .pathway-branch-head { display: block; }
  .pathway-branch-head strong { display: block; margin-top: 6px; }
  .pathway-branch li { padding: 18px 0; }
  .pathway-branch li > p { font-size: .94rem; }
}


/* 부위 상세에서 메인 증상 선택으로 복귀 */
.symptom-detail-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
  padding: 20px 22px;
  background: #F4C8B0;
  color: #6B2B14;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border: 1px solid #E7A17C;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(139, 69, 38, 0.12);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.symptom-detail-back:hover,
.symptom-detail-back:focus-visible {
  background: #EDB18F;
  color: #58210F;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(139, 69, 38, 0.18);
}
.sticky-sidebar.symptom-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.symptom-sidebar-stack .symptom-detail-back { margin-bottom: 0; }
.reservation-guide-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .symptom-detail-back { margin-bottom: 24px; padding: 18px 20px; font-size: 1rem; }
}
