/* ============================================================
   ABLE Dermatology — style.css
   Complete Production-Ready Stylesheet
   All Components Included, No Separate Files
   ============================================================ */

/* ============================================================
   1. CSS RESET & BASE STYLES
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition-base);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

::selection {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

::-moz-selection {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

/* ============================================================
   2. DESIGN TOKENS (CSS CUSTOM PROPERTIES)
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-cream: #F5F0EB;
  --bg-dark: #3D2B1F;
  --bg-white: #FFFFFF;
  --bg-surface: #FAF7F4;

  /* Text Colors */
  --text-dark: #3D2B1F;
  --text-body: #5A4A3A;
  --text-light: #D4C5B5;
  --text-muted: #7A7A7A;

  /* Accent Colors */
  --accent-gold: #B8956A;
  --accent-bronze: #8B7355;
  --accent-light-gold: #C4A882;
  --accent-deep: #5C4033;

  /* Overlays & Dividers */
  --overlay-dark: rgba(61, 43, 31, 0.5);
  --overlay-light: rgba(61, 43, 31, 0.15);
  --divider: #E0DBD5;
  --kakao-yellow: #FEE500;

  /* Typography Families */
  --font-heading-en: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Pretendard', 'Apple SD Gothic Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui: 'Montserrat', 'Pretendard', sans-serif;

  /* Font Sizes - Responsive */
  --fs-hero: clamp(2.8rem, 6vw, 5.5rem);
  --fs-section-title: clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-subtitle: clamp(1.125rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-caption: 0.875rem;
  --fs-small: 0.8125rem;

  /* Layout & Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container-max: 1100px;
  --container-px: 1.5rem;
  --gap: 1.5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(92, 64, 51, 0.04), 0 4px 16px rgba(92, 64, 51, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(92, 64, 51, 0.06), 0 12px 40px rgba(92, 64, 51, 0.1);
  --shadow-float: 0 8px 32px rgba(92, 64, 51, 0.15);
  --shadow-subtle: 0 1px 3px rgba(92, 64, 51, 0.03);

  /* Card Background */
  --card-bg: var(--bg-white);

  /* Easing & Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: all 0.4s var(--ease-smooth);
  --transition-fast: all 0.25s var(--ease-smooth);

  /* Header & Z-Index */
  --header-h: 72px;
  --z-loading: 10000;
  --z-header: 1000;
  --z-mobile-nav: 9000;
  --z-floating: 999;
}

/* Dark Mode Tokens */
[data-theme="dark"] {
  --bg-cream: #1A1714;
  --bg-dark: #0F0D0B;
  --bg-white: #1E1B18;
  --bg-surface: #201D1A;
  --text-dark: #D4CFC8;
  --text-body: #B5ADA3;
  --text-muted: #8A8278;
  --divider: #2E2924;
  --accent-gold: #C4A882;
  --accent-deep: #A08070;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 2px 4px rgba(0, 0, 0, 0.15), 0 12px 40px rgba(0, 0, 0, 0.3);
  --shadow-float: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.08);
  --overlay-dark: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
}

h1 {
  font-size: var(--fs-hero);
  font-family: var(--font-heading-en);
  font-weight: 400;
  letter-spacing: -1px;
}

h2 {
  font-size: var(--fs-section-title);
  font-family: var(--font-heading-en);
  font-weight: 400;
  letter-spacing: -0.5px;
}

h3 {
  font-size: var(--fs-subtitle);
}

h4,
h5,
h6 {
  font-size: 1.125rem;
}

p {
  margin: 0;
  line-height: 1.7;
}

small {
  font-size: var(--fs-small);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

a {
  color: var(--accent-gold);
}

a:hover {
  color: var(--accent-light-gold);
}

/* ============================================================
   4. UTILITY & LAYOUT CLASSES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  background-color: var(--bg-cream);
}

.section-cream {
  background-color: var(--bg-cream);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--bg-white);
}

.section-white {
  background-color: var(--bg-white);
}

/* ============================================================
   5. BUTTON STYLES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.8125rem;
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #C9A87A 100%);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C9A87A 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.25);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: transparent;
  padding: 0.5rem 0;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.btn-ghost:hover::after {
  width: 100%;
}

.btn-ghost:hover {
  color: var(--accent-light-gold);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.3);
}

.btn-kakao {
  background-color: var(--kakao-yellow);
  color: #3C3C3C;
  border-color: var(--kakao-yellow);
  font-weight: 600;
}

.btn-kakao:hover {
  background-color: #f3d959;
  border-color: #f3d959;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   6. LOADING SCREEN
   ============================================================ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loading);
  opacity: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: auto;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.loading-logo-img {
  width: 160px;
  height: auto;
  animation: fadeInUp 0.8s ease-out forwards;
}

.loading-counter {
  font-family: var(--font-heading-en);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.loading-bar-track {
  width: 200px;
  height: 3px;
  background-color: var(--divider);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}

.loading-bar-fill {
  height: 100%;
  background-color: var(--accent-gold);
  width: 0%;
  transition: width 0.1s linear;
  /* width is controlled by JS — no CSS animation */
}

/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--bg-white);
  box-shadow: 0 1px 0 var(--divider);
  z-index: var(--z-header);
  transition: var(--transition-base);
  padding: 0 var(--container-px);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 2px 12px rgba(92, 64, 51, 0.06);
}

.site-header.header-sub {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
}

/* Dark mode — header */
[data-theme="dark"] .site-header {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--divider);
}

[data-theme="dark"] .site-header.scrolled,
[data-theme="dark"] .site-header.header-sub {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

[data-theme="dark"] .desktop-nav a,
[data-theme="dark"] .lang-switch a,
[data-theme="dark"] .hamburger span,
[data-theme="dark"] .theme-toggle {
  color: var(--text-dark);
}

/* Dark mode — section text contrast */
[data-theme="dark"] .section-cream,
[data-theme="dark"] .section-white {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

[data-theme="dark"] .section-cream h1,
[data-theme="dark"] .section-cream h2,
[data-theme="dark"] .section-cream h3,
[data-theme="dark"] .section-cream h4,
[data-theme="dark"] .section-cream p,
[data-theme="dark"] .section-white h1,
[data-theme="dark"] .section-white h2,
[data-theme="dark"] .section-white h3,
[data-theme="dark"] .section-white h4,
[data-theme="dark"] .section-white p {
  color: var(--text-dark);
}

/* Dark mode — card text contrast */
[data-theme="dark"] .identity-card h3,
[data-theme="dark"] .identity-card p,
[data-theme="dark"] .blog-card-title,
[data-theme="dark"] .blog-card-excerpt,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .faq-question h3,
[data-theme="dark"] .process-step h3,
[data-theme="dark"] .process-step p,
[data-theme="dark"] .booking-card h3,
[data-theme="dark"] .booking-card p {
  color: var(--text-dark);
}

/* Dark mode — comprehensive text contrast fixes */
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-desc,
[data-theme="dark"] .section-label {
  color: var(--text-dark);
}

[data-theme="dark"] .doctor-bio h1 {
  color: var(--text-dark);
}

[data-theme="dark"] .doctor-bio blockquote {
  color: var(--text-body);
}

[data-theme="dark"] .doctor-spec {
  color: var(--accent-light-gold);
}

[data-theme="dark"] .career-list h3 {
  color: var(--text-dark);
}

[data-theme="dark"] .career-list li {
  color: var(--text-body);
}

[data-theme="dark"] .timeline-desc {
  color: var(--text-body);
}

[data-theme="dark"] .timeline-year {
  color: var(--accent-light-gold);
}

[data-theme="dark"] .location-detail h3 {
  color: var(--text-dark);
}

[data-theme="dark"] .location-detail p,
[data-theme="dark"] .location-detail span,
[data-theme="dark"] .location-detail li {
  color: var(--text-body);
}

[data-theme="dark"] .btn-outline {
  color: var(--accent-light-gold);
  border-color: var(--accent-light-gold);
}

[data-theme="dark"] .btn-ghost {
  color: var(--accent-light-gold);
}

[data-theme="dark"] .equip-category-title {
  color: var(--accent-light-gold);
}

[data-theme="dark"] .footer-links a {
  color: var(--text-body);
}

[data-theme="dark"] .footer-copy {
  color: var(--text-muted);
}

[data-theme="dark"] .footer-info {
  color: var(--text-body);
}

[data-theme="dark"] .faq-answer p {
  color: var(--text-body);
}

[data-theme="dark"] .booking-card {
  background-color: var(--bg-surface);
}

[data-theme="dark"] .stat-number {
  color: var(--accent-light-gold);
}

[data-theme="dark"] .stat-prefix {
  color: var(--accent-light-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo-img {
  width: 140px;
  height: auto;
  transition: var(--transition-fast);
}

/* Logo visibility — dark logo by default */
.header-logo-img.logo-white {
  display: none;
}

.header-logo-img.logo-dark {
  display: block;
}

/* Dark mode - always white logo */
[data-theme="dark"] .header-logo-img.logo-dark {
  display: none;
}

[data-theme="dark"] .header-logo-img.logo-white {
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.desktop-nav a {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  position: relative;
}

/* Nav links inherit --text-dark by default, no white override needed */

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease-out;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--text-dark);
}

.lang-switch a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  color: var(--text-dark);
  text-decoration: none;
}

.lang-switch a.active {
  color: var(--accent-gold);
  font-weight: 600;
}

.lang-switch a:hover {
  color: var(--accent-gold);
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--divider);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
  position: relative;
}

/* Moon icon (light mode) */
.theme-toggle::before {
  content: '☽';
  font-size: 1rem;
}

/* Sun icon (dark mode) */
[data-theme="dark"] .theme-toggle::before {
  content: '☀';
}

.theme-toggle:hover {
  border-color: var(--accent-gold);
}

/* theme-toggle uses default --divider border, --text-dark color */

/* Header Buttons */
.header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.header-btn svg {
  width: 20px;
  height: 20px;
}

.booking-btn-desktop {
  display: none;
  padding: 0.5rem 1.25rem;
  background: var(--accent-gold);
  color: var(--bg-white);
  border-radius: 24px;
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.booking-btn-desktop:hover {
  background: var(--accent-deep);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 24px;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: var(--z-mobile-nav) + 1;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition-fast);
  transform-origin: center;
}

/* hamburger spans use --text-dark by default */

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================
   8. MOBILE NAVIGATION
   ============================================================ */

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-mobile-nav);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-align: center;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}

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

/* Staggered animation for menu items */
.mobile-nav.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.3s; }

.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--accent-gold);
}

/* Divider line in mobile nav */
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(184, 149, 106, 0.4);
  margin: 0.75rem auto;
}

/* Social links in mobile nav */
.mobile-nav-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  justify-content: center;
}

.mobile-nav-social a {
  font-size: 0;
  padding: 0.5rem;
  opacity: 0.6;
}

.mobile-nav-social a:hover {
  opacity: 1;
}

.mobile-nav-social svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 43, 31, 0.4) 0%, rgba(61, 43, 31, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  max-width: 700px;
  padding: 0 var(--container-px);
  animation: fadeInUp 1s ease-out;
}

.hero-headline {
  font-family: var(--font-heading-en);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--fs-subtitle);
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.hero-sub-en {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* Hero Swiper Carousel */
.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
}

.hero-swiper .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-swiper .swiper-slide-active .hero-bg img {
  animation: heroZoom 8s ease-out forwards;
}

/* Slide counter */
.hero-slide-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-slide-current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-slide-sep {
  margin: 0 0.15rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* 마우스 아이콘 */
.scroll-indicator-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator-wheel {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255,255,255,0.8);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.3; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-indicator-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Legacy fallback for line style */
.scroll-indicator-line {
  width: 1.5px;
  height: 28px;
  background-color: rgba(255,255,255,0.6);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ============================================================
   10. SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.section-title {
  font-family: var(--font-heading-en);
  font-size: var(--fs-section-title);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: var(--bg-white);
}

.section-desc {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.section-dark .section-desc {
  color: var(--text-light);
}

/* ============================================================
   11. IDENTITY SECTION
   ============================================================ */

.identity-quote {
  text-align: center;
  margin-bottom: 4rem;
}

.identity-quote blockquote {
  font-family: var(--font-heading-en);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.5px;
}

.identity-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-style: normal;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.identity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.identity-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.identity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 149, 106, 0.2);
}

.identity-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.identity-card h3 {
  margin-bottom: 0.75rem;
}

.identity-card p {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

/* ============================================================
   12. STATS BAR
   ============================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background-color: var(--bg-surface);
  padding: 3rem var(--container-px);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading-en);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-body);
}

.stat-prefix {
  font-size: 0.4em;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: baseline;
  opacity: 0.65;
}

/* ============================================================
   13. CONCERN CARDS
   ============================================================ */

.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.concern-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--divider);
  background: var(--bg-white);
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.concern-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.concern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184, 149, 106, 0.2);
}

.concern-card:hover img {
  transform: scale(1.08);
}

.concern-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.15) 0%, rgba(61, 43, 31, 0.85) 60%);
  transition: var(--transition-base);
}

.concern-card:hover .concern-card-overlay {
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.2) 0%, rgba(61, 43, 31, 0.9) 100%);
}

.concern-card-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 100%;
}

.concern-card-text {
  flex: 1;
}

.concern-card-content h3 {
  font-size: var(--fs-subtitle);
  margin-bottom: 0.5rem;
  font-weight: 500;
  word-break: keep-all;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.concern-card-content p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.concern-card-arrow {
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 1rem;
  flex-shrink: 0;
}

.concern-card:hover .concern-card-arrow {
  transform: translateX(4px);
}

/* ============================================================
   14. DOCTOR PREVIEW
   ============================================================ */

.doctor-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.doctor-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.doctor-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-preview:hover .doctor-image img {
  transform: scale(1.05);
}

.doctor-text h2 {
  margin-bottom: 1rem;
}

.doctor-text p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
  line-height: 1.8;
}

.doctor-title {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

/* ============================================================
   15. EQUIPMENT SWIPER
   ============================================================ */

.equipment-swiper {
  margin: 3rem 0;
  overflow: hidden;
}

.swiper {
  overflow: visible;
}

.equipment-slide {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.equipment-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipment-slide:hover .equipment-slide-img {
  transform: scale(1.05);
}

.equipment-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 43, 31, 0.9) 100%);
  color: var(--bg-white);
  z-index: 2;
}

.equipment-slide-content h3 {
  margin-bottom: 0.5rem;
  font-size: var(--fs-subtitle);
}

.equipment-slide-content p {
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* Swiper Pagination */
.swiper-pagination {
  text-align: center;
  padding-top: 1.5rem;
}

.swiper-pagination-bullet {
  background-color: var(--divider);
  opacity: 1;
  transition: var(--transition-fast);
  margin: 0 0.5rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-gold);
}

/* ============================================================
   16. PROCESS STEPS
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  margin: 3rem 0;
}

/* Light mode — ensure text on dark backgrounds is visible */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--bg-white);
}

.section-dark .section-label {
  color: var(--accent-light-gold);
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Booking cards on dark backgrounds */
.booking-card-icon svg {
  color: var(--accent-gold);
}

/* Connecting lines between steps (desktop only) */
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--divider);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  background-color: var(--bg-surface);
  font-family: var(--font-heading-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-gold);
  transition: var(--transition-base);
}

.process-step:hover .process-step-num {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  transform: scale(1.1);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.process-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   17. BLOG GRID
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--divider);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: var(--fs-body);
  color: var(--text-body);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.blog-card-more {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-card-more:hover {
  gap: 1rem;
}

/* ============================================================
   18. BLOG FILTERS
   ============================================================ */

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.blog-filter-btn {
  padding: 0.625rem 1.5rem;
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: var(--text-body);
  border: 2px solid var(--divider);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 2rem 0;
  transition: var(--transition-fast);
}

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

.faq-item.open {
  background-color: rgba(184, 149, 106, 0.05);
  padding: 2rem;
  margin: 0 -2rem;
  padding-left: 2rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-question h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
  transition: transform 0.3s ease-out;
  font-weight: bold;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  margin-top: 1.5rem;
}

/* ============================================================
   20. LOCATION MAP
   ============================================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin: 3rem 0;
}

.location-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#kakao-map {
  width: 100%;
  height: 100%;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-detail {
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.location-detail li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.location-detail li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent-gold);
}

.location-detail h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.location-detail p {
  margin-bottom: 0.5rem;
  color: var(--text-body);
  line-height: 1.7;
}

.location-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ============================================================
   21. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--divider);
  padding: 4rem var(--container-px) 2.5rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-heading-en);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-info {
  flex: 1;
}

.footer-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-ui);
}

.footer-info p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: var(--text-light);
  font-size: var(--fs-body);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-light-gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}
.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}
.footer-social .social-icon:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social .social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* ============================================================
   21-B. ABLE 4축 PHILOSOPHY + BRAND QUOTE
   ============================================================ */

.able-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.able-card {
  background: var(--bg-white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-base);
}

.able-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.able-letter {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.able-title-en {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.able-subtitle {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.able-desc {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* Dark mode */
[data-theme="dark"] .able-card {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .able-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

/* Brand Quote Banner */
.brand-quote-banner {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
}

.brand-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.brand-quote p {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--bg-white);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.brand-quote cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

[data-theme="dark"] .brand-quote-banner {
  background: #0A0908;
}

/* Responsive */
@media (max-width: 1024px) {
  .able-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .able-grid {
    grid-template-columns: 1fr;
  }
  .able-letter {
    font-size: 2.5rem;
  }
}

/* ============================================================
   21-C. EQUIPMENT SECTION
   ============================================================ */

.equip-category {
  margin-bottom: 3rem;
}

.equip-category-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--divider);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.equip-card {
  background: var(--bg-white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.equip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.equip-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-gold);
}

.equip-icon svg {
  width: 100%;
  height: 100%;
}

.equip-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.equip-info strong {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.equip-tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 999px;
  text-transform: uppercase;
}

.equip-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Dark mode equipment */
[data-theme="dark"] .equip-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--divider);
}

[data-theme="dark"] .equip-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .equip-info strong {
  color: var(--text-dark);
}

[data-theme="dark"] .equip-desc {
  color: var(--text-muted);
}

/* ============================================================
   22. FLOATING CTA — Slide-up Panel Design
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: -120px;
  z-index: var(--z-floating);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-cta.visible {
  right: 1.5rem;
  pointer-events: auto;
}

/* Toggle Button */
.floating-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-deep) 100%);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.4);
  flex-shrink: 0;
}

.floating-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(184, 149, 106, 0.5);
}

.floating-toggle svg {
  width: 24px;
  height: 24px;
  transition: opacity 0.25s, transform 0.3s;
}

.floating-toggle-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

.floating-cta.expanded .floating-toggle-icon-open {
  opacity: 0;
  transform: rotate(90deg);
}

.floating-cta.expanded .floating-toggle-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Panel */
.floating-panel {
  width: 280px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  max-height: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-cta.expanded .floating-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
}

.floating-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--divider);
}

.floating-panel-header span {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.floating-panel-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--bg-surface);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: var(--transition-fast);
}

.floating-panel-close:hover {
  background: var(--divider);
  color: var(--text-dark);
}

.floating-panel-body {
  padding: 0.5rem;
}

/* Individual Links */
.floating-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  transition: background-color 0.2s;
}

.floating-link:hover {
  background-color: var(--bg-surface);
}

.floating-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-surface);
  color: var(--text-dark);
}

.floating-link-icon svg {
  width: 20px;
  height: 20px;
}

.floating-link.kakao .floating-link-icon {
  background: #FEE500;
  color: #3C1E1E;
}

.floating-link.phone .floating-link-icon {
  background: var(--accent-gold);
  color: var(--bg-white);
}

.floating-link.naver .floating-link-icon {
  background: #03C75A;
  color: #FFFFFF;
}

.floating-link.blog .floating-link-icon {
  background: var(--bg-dark);
  color: var(--bg-white);
}

.floating-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.floating-link-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.floating-link-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Dark mode */
[data-theme="dark"] .floating-panel {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .floating-toggle {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   23. SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   23.5 SECTION DIVIDERS
   ============================================================ */

.section + .section::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto;
  opacity: 0.3;
}

/* ============================================================
   24. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ============================================================
   25. BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: var(--accent-gold);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-light-gold);
}

.breadcrumb span {
  color: var(--divider);
}

/* ============================================================
   26. CONCERN PAGE SPECIFICS
   ============================================================ */

.concern-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.concern-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concern-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 43, 31, 0.5);
}

.concern-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  max-width: 700px;
  padding: 0 var(--container-px);
}

.concern-hero h1 {
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.concern-hero .container {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
}

.concern-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.6);
}

.concern-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.concern-hero .breadcrumb a:hover {
  color: var(--bg-white);
}

.concern-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.concern-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Per-concern hero backgrounds — brand-consistent earth tones */
.concern-sagging .concern-hero {
  background: linear-gradient(135deg, rgba(92,64,51,0.85) 0%, rgba(61,43,31,0.9) 100%);
}

.concern-scar .concern-hero {
  background: linear-gradient(135deg, rgba(139,115,85,0.85) 0%, rgba(92,64,51,0.9) 100%);
}

.concern-redness .concern-hero {
  background: linear-gradient(135deg, rgba(140,80,70,0.85) 0%, rgba(92,64,51,0.9) 100%);
}

.concern-pigment .concern-hero {
  background: linear-gradient(135deg, rgba(184,149,106,0.85) 0%, rgba(92,64,51,0.9) 100%);
}

.concern-pore .concern-hero {
  background: linear-gradient(135deg, rgba(100,110,90,0.85) 0%, rgba(61,43,31,0.9) 100%);
}

/* Dark mode concern hero adjustments */
[data-theme="dark"] .concern-sagging .concern-hero,
[data-theme="dark"] .concern-scar .concern-hero,
[data-theme="dark"] .concern-redness .concern-hero,
[data-theme="dark"] .concern-pigment .concern-hero,
[data-theme="dark"] .concern-pore .concern-hero {
  background: linear-gradient(135deg, rgba(15,13,11,0.9) 0%, rgba(26,23,20,0.85) 100%);
}

.concern-intro {
  padding: 3rem var(--container-px);
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  margin: -3rem auto 3rem;
  max-width: var(--container-max);
  position: relative;
  z-index: 1;
}

.concern-intro p {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
}

.approach-table {
  width: 100%;
  margin: 3rem 0;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.approach-table th {
  background-color: var(--accent-deep);
  color: var(--bg-white);
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: var(--fs-body);
}

.approach-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--divider);
}

.approach-table tbody tr:nth-child(even) {
  background-color: var(--bg-surface);
}

.approach-table tbody tr:hover {
  background-color: rgba(184, 149, 106, 0.1);
}

.concern-blog-list {
  margin: 3rem 0;
}

/* Brand Keyline (concern pages) */
.brand-keyline {
  text-align: center;
  padding: 3rem var(--container-px);
  border-top: 1px solid var(--divider);
  margin: 0 auto;
  max-width: var(--container-max);
}

.keyline-en {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.keyline-kr {
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin: 0;
}

.concern-cta-banner {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--bg-dark) 100%);
  color: var(--bg-white);
  padding: 3rem var(--container-px);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}

.concern-cta-banner h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.concern-cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============================================================
   27. DOCTOR PAGE
   ============================================================ */

.doctor-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-h);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.doctor-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 43, 31, 0.5);
}

.doctor-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

.doctor-hero h1 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.doctor-hero .doctor-title {
  color: var(--accent-light-gold);
}

.doctor-career {
  margin: 3rem 0;
}

.doctor-career h2 {
  margin-bottom: 2rem;
}

.doctor-career-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--divider);
}

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

.doctor-career-year {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--accent-gold);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.doctor-career-desc {
  color: var(--text-body);
  line-height: 1.8;
}

.doctor-philosophy {
  background-color: var(--bg-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.doctor-philosophy h2 {
  margin-bottom: 1.5rem;
}

.doctor-philosophy p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1.125rem;
}

/* ============================================================
   27b. SUB-PAGE SHARED COMPONENTS
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* Subtitle (used in concern hero) */
.subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-top: 0.5rem;
}

/* Intro content */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
}

.intro-content p {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Concern causes section */
.concern-causes {
  padding: var(--section-py) 0;
  background-color: var(--bg-cream);
}

.concern-causes h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.cause-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--divider);
  transition: var(--transition-base);
}

.cause-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cause-card h3 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.cause-card p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.7;
}

/* Doctor full layout (doctor.html) */
.doctor-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.doctor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-bio {
  padding: 1rem 0;
}

.doctor-bio h1 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.doctor-bio .doctor-spec,
.doctor-spec {
  font-size: 1.125rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.doctor-bio blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
  padding: 1.5rem 0;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

/* Booking hero */
.booking-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background-color: var(--bg-cream);
}

/* Booking options */
.booking-options {
  padding: var(--section-py) 0;
}

.booking-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.booking-card-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .doctor-full {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* ============================================================
   28. INSTAGRAM FEED
   ============================================================ */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-color: var(--divider);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 43, 31, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  font-size: 1.5rem;
}

.insta-item:hover .insta-item-overlay {
  opacity: 1;
}

/* ============================================================
   29. LEGAL PAGES
   ============================================================ */

.legal-page {
  padding: var(--section-py) var(--container-px);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-body);
}

.legal-content h1 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h1:first-child {
  margin-top: 0;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: var(--fs-subtitle);
}

.legal-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.125rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1rem 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-date {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   30. FEE TABLE
   ============================================================ */

.fee-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fee-table th {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  border: none;
}

.fee-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--divider);
}

.fee-table tbody tr:nth-child(even) {
  background-color: rgba(184, 149, 106, 0.05);
}

.fee-table tbody tr:hover {
  background-color: rgba(184, 149, 106, 0.1);
}

.fee-disclaimer {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--bg-surface);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
}

/* ============================================================
   31. BOOKING PAGE
   ============================================================ */

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.booking-card {
  background-color: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.booking-card h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.booking-card p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
}

.booking-form {
  background-color: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-group {
  margin-bottom: 1.5rem;
}

.booking-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--fs-body);
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--text-body);
  transition: var(--transition-fast);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

.booking-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   32. LINKS PAGE
   ============================================================ */

.links-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem var(--container-px);
  text-align: center;
}

.links-logo {
  margin-bottom: 3rem;
}

.links-logo img {
  width: 200px;
  height: auto;
}

.links-list {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-item {
  display: block;
  padding: 1.25rem;
  background-color: var(--bg-surface);
  border: 2px solid transparent;
  border-radius: 30px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.links-item:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* ============================================================
   33. RESPONSIVE DESIGN - MOBILE FIRST
   ============================================================ */

/* Mobile - Base (320px+) */
@media (max-width: 479px) {
  :root {
    --fs-hero: 1.75rem;
    --fs-section-title: 1.25rem;
    --fs-subtitle: 0.9rem;
    --fs-body: 0.9rem;
    --fs-caption: 0.8rem;
    --fs-small: 0.75rem;
    --section-py: 3rem;
    --container-px: 1rem;
    --gap: 1rem;
  }

  .container {
    padding: 0 var(--container-px);
  }

  .desktop-nav,
  .booking-btn-desktop {
    display: none;
  }

  .hamburger,
  .header-btn {
    display: flex;
  }

  /* ── 모바일 헤더 겹침 방지 ── */
  .lang-switch,
  .theme-toggle {
    display: none;
  }

  .header-logo-img {
    width: 100px;
  }

  .header-right {
    gap: 0.5rem;
  }

  .header-btn {
    width: 32px;
    height: 32px;
  }

  .header-btn svg {
    width: 16px;
    height: 16px;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

  .hero {
    height: 80vh;
    margin-top: calc(var(--header-h) + 1rem);
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Velvetcode-style: more generous section spacing with visual breathing room */
  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  /* Hero mobile adjustments */
  .hero-headline {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-sub-en {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero-slide-counter {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.7rem;
  }

  /* Stats bar compact */
  .stat-label {
    font-size: 0.7rem;
  }

  /* Location section compact */
  .location-cta {
    flex-direction: column;
  }

  .location-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer compact */
  .footer-info {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  /* Equip category title smaller */
  .equip-category-title {
    font-size: 0.9rem;
  }

  .section-desc {
    font-size: 0.85rem;
  }

  .identity-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .identity-card {
    padding: 1rem 0.75rem;
  }

  .identity-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  .identity-card h3 {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
  }

  .identity-card p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .concern-card {
    aspect-ratio: 3/4;
  }

  .concern-card-content {
    padding: 0.75rem;
  }

  .concern-card-content h3 {
    font-size: 0.8rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  }

  .concern-card-content p {
    font-size: 0.65rem;
    display: none;
  }

  .concern-card-arrow {
    display: none;
  }

  .doctor-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .equipment-slide {
    height: 250px;
  }

  .process-steps::before {
    display: none;
  }

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

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

  .faq-item {
    padding: 1.5rem 0;
  }

  .faq-item.open {
    margin: 0;
    padding: 1.5rem 0;
    background: none;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-map {
    aspect-ratio: 4 / 3;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

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

  .doctor-hero {
    min-height: auto;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .floating-cta {
    bottom: 1rem;
    right: -120px;
  }

  .floating-cta.visible {
    right: 1rem;
  }

  .floating-toggle {
    width: 50px;
    height: 50px;
  }

  .floating-panel {
    width: 260px;
    right: 0;
  }

  .links-list {
    max-width: 100%;
  }
}

/* Mobile - 480px~767px */
@media (min-width: 480px) and (max-width: 767px) {
  .desktop-nav,
  .booking-btn-desktop {
    display: none;
  }

  .hamburger,
  .header-btn {
    display: flex;
  }

  /* 모바일 헤더 겹침 방지 */
  .lang-switch,
  .theme-toggle {
    display: none;
  }

  .header-logo-img {
    width: 110px;
  }

  .header-right {
    gap: 0.75rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .section {
    padding: 3rem 0;
  }

  .hero-slide-counter {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* Tablet - 640px+ */
@media (min-width: 640px) {
  :root {
    --section-py: 5rem;
    --container-px: 1.25rem;
  }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps::before {
    display: block;
  }

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

  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
  :root {
    --section-py: 6rem;
  }

  .desktop-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

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

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

  .insta-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

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

  .equipment-swiper {
    padding: 0 3rem;
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  :root {
    --section-py: 8rem;
    --container-px: 1.5rem;
  }

  .booking-btn-desktop {
    display: flex;
  }

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

  .doctor-preview {
    grid-template-columns: 1fr 1fr;
  }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  :root {
    --section-py: 9rem;
    --container-max: 1200px;
  }
}

/* ============================================================
   34. PRINT STYLES
   ============================================================ */

@media print {
  body {
    background-color: white;
    color: black;
  }

  .site-header,
  .mobile-nav,
  .floating-cta,
  .scroll-indicator,
  .loading-screen,
  .theme-toggle,
  .hamburger,
  .booking-btn-desktop {
    display: none !important;
  }

  .hero {
    height: auto;
    margin-top: 0;
  }

  .section {
    page-break-inside: avoid;
  }

  a {
    color: black;
  }

  .btn {
    border: 1px solid black;
  }

  img {
    max-width: 100%;
  }

  .site-footer {
    background-color: white;
    color: black;
    border-top: 1px solid #ccc;
  }
}

/* ============================================================
   35. MISSING SUB-PAGE COMPONENTS
   ============================================================ */

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.75rem;
  z-index: 10;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--accent-gold);
}

/* Footer logo */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 28px;
  width: auto;
}

/* Links page additions */
.links-card {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.links-sub {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-fast);
  text-decoration: none;
}

.link-item:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.link-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.links-footer {
  margin-top: 2rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* Concern page — treatment section */
.concern-treatments {
  padding: var(--section-py) 0;
  background-color: var(--bg-surface);
}

.concern-treatments h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
}

.treatment-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
}

.treatment-table th {
  background-color: var(--accent-deep);
  color: var(--bg-white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.treatment-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--divider);
  color: var(--text-body);
}

.treatment-table tbody tr:nth-child(even) {
  background-color: var(--bg-surface);
}

.treatment-table tbody tr:hover {
  background-color: rgba(184, 149, 106, 0.08);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

/* Related blogs section */
.related-blogs {
  padding: var(--section-py) 0;
}

.related-blogs h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
}

.blog-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.blog-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.blog-link-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.blog-link-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.blog-link-icon svg {
  width: 100%;
  height: 100%;
}

/* CTA banner (used in concern & doctor pages) */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--bg-dark) 100%);
  color: var(--bg-white);
  padding: 3rem var(--container-px);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem auto;
  max-width: var(--container-max);
}

.cta-banner h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* Medical disclaimer */
.medical-disclaimer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-surface);
}

/* Cause icon */
.cause-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--bg-white);
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-ui);
}

.cause-icon svg {
  width: 100%;
  height: 100%;
}

/* Bold utility */
.bold {
  font-weight: 700;
}

/* Career list (doctor page) */
.career-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.career-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid var(--divider);
  color: var(--text-body);
  line-height: 1.6;
}

.career-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ============================================================
   DOCTOR PAGE — VERTICAL TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto 3rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-light-gold), transparent);
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--accent-gold);
  z-index: 1;
  transition: var(--transition-fast);
}

.timeline-item:first-child .timeline-marker {
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 106, 0.2);
}

.timeline-content {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.06);
  border: 1px solid var(--divider);
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.1);
  border-color: var(--accent-light-gold);
}

.timeline-item:hover .timeline-marker {
  background: var(--accent-gold);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  background: rgba(184, 149, 106, 0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.timeline-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Timeline affiliations */
.timeline-affiliations {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.timeline-affil-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeline-affil-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.timeline-affil-badge {
  font-size: 0.825rem;
  color: var(--text-body);
  background: var(--bg-white);
  border: 1px solid var(--divider);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Dark mode timeline */
[data-theme="dark"] .timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .timeline-item:hover .timeline-content {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .timeline-marker {
  background: var(--bg-dark);
}

[data-theme="dark"] .timeline-heading {
  color: var(--text-light);
}

[data-theme="dark"] .timeline-affil-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* ============================================================
   DOCTOR PAGE — SPECIALTY BADGES
   ============================================================ */

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.specialty-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  transition: var(--transition-fast);
}

.specialty-card:hover {
  border-color: var(--accent-light-gold);
  box-shadow: 0 8px 30px rgba(184, 149, 106, 0.1);
  transform: translateY(-2px);
}

.specialty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 106, 0.08);
  border-radius: 12px;
  color: var(--accent-gold);
}

.specialty-icon svg {
  width: 24px;
  height: 24px;
}

.specialty-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.specialty-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}

.spec-tag {
  font-size: 0.75rem;
  color: var(--accent-bronze);
  background: rgba(184, 149, 106, 0.08);
  border: 1px solid rgba(184, 149, 106, 0.15);
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  white-space: nowrap;
}

/* Dark mode specialties */
[data-theme="dark"] .specialty-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .specialty-card:hover {
  border-color: var(--accent-gold);
}

[data-theme="dark"] .specialty-name {
  color: var(--text-light);
}

[data-theme="dark"] .specialty-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .spec-tag {
  color: var(--accent-light-gold);
  background: rgba(184, 149, 106, 0.1);
  border-color: rgba(184, 149, 106, 0.2);
}

/* Responsive specialties */
@media (max-width: 768px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .equip-card {
    padding: 1rem 0.75rem;
  }

  .equip-icon {
    width: 32px;
    height: 32px;
  }

  .equip-info strong {
    font-size: 0.85rem;
  }

  .equip-tag {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
  }

  .equip-desc {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .specialty-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================================
   DOCTOR PAGE — ASK THE DIRECTOR CTA
   ============================================================ */

.doctor-ask-cta {
  background: var(--bg-surface);
}

.ask-cta-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 40px rgba(61, 43, 31, 0.08);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.ask-cta-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-deep));
  border-radius: 50%;
  color: #fff;
}

.ask-cta-icon svg {
  width: 26px;
  height: 26px;
}

.ask-cta-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.ask-cta-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ask-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #FEE500;
  color: #3C1E1E;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.ask-cta-btn svg {
  width: 20px;
  height: 20px;
}

.ask-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 229, 0, 0.3);
}

.ask-cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
}

/* Dark mode ask CTA */
[data-theme="dark"] .ask-cta-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(184, 149, 106, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .ask-cta-title {
  color: var(--text-light);
}

[data-theme="dark"] .ask-cta-desc {
  color: #C4B8A8;
}

/* ============================================================
   ABLE 5 Principles (doctor.html)
   ============================================================ */

.brand-narrative {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.brand-narrative p {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.principles-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--divider);
}

.principle-item:first-child {
  border-top: 1px solid var(--divider);
}

.principle-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--bg-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-ui);
}

.principle-content {
  flex: 1;
}

.principle-en {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 0.375rem;
}

.principle-kr {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ABLE 5-Step Process (booking.html) — scoped to .able-design-process
   ============================================================ */

.able-design-process {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical line */
.able-design-process::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--divider);
}

.able-design-process .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
  text-align: left;
}

.able-design-process .process-step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--bg-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-ui);
  position: relative;
  z-index: 1;
  border: none;
  margin: 0;
}

.process-step-body {
  flex: 1;
  padding-top: 0.25rem;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.process-step-subtitle {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 480px) {
  .able-design-process::before {
    left: 16px;
  }
}

/* Responsive timeline */
@media (max-width: 480px) {
  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-content {
    padding: 1rem 1.25rem;
  }

  .ask-cta-card {
    padding: 2rem 1.5rem;
  }

  .ask-cta-title {
    font-size: 1.25rem;
  }
}

/* Booking form section */
.booking-form-section {
  padding: var(--section-py) 0;
  background-color: var(--bg-cream);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: var(--fs-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: var(--fs-body);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

/* Privacy consent checkbox */
.privacy-consent {
  margin-right: 0.5rem;
}

/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent-gold);
  z-index: 10001;
  transition: none;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-gold);
}

/* Before/After slider (optional) */
.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.ba-before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--bg-white);
  cursor: ew-resize;
  z-index: 2;
}

/* GSAP fade-in */
.gsap-fade-in {
  opacity: 0;
}

/* Dark mode overrides for new components */
[data-theme="dark"] .link-item {
  background-color: var(--bg-surface);
  border-color: var(--divider);
  color: var(--text-dark);
}

[data-theme="dark"] .link-item:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

[data-theme="dark"] .treatment-table th {
  background-color: var(--accent-deep);
}

[data-theme="dark"] .blog-link-card {
  background-color: var(--bg-surface);
  border-color: var(--divider);
}

[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, var(--accent-deep) 0%, #2a1d14 100%);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-surface);
  border-color: var(--divider);
  color: var(--text-dark);
}

[data-theme="dark"] .back-to-top {
  background: var(--accent-deep);
}

[data-theme="dark"] .mobile-nav-close {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .blog-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   35. REDUCED MOTION
   ============================================================ */

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

  .loading-bar-fill {
    animation: none;
    width: 100%;
  }

  .scroll-indicator-line {
    animation: none;
  }

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

  .site-header,
  .mobile-nav,
  .blog-card,
  .concern-card,
  .floating-cta,
  .theme-toggle {
    transition: none;
  }
}

/* ============================================================
   36. UTILITY CLASSES
   ============================================================ */

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

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

.text-right {
  text-align: right;
}

.text-gold {
  color: var(--accent-gold);
}

.text-dark {
  color: var(--text-dark);
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }

.hidden { display: none !important; }
.invisible { visibility: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================================================
   37. FOCUS & ACCESSIBILITY
   ============================================================ */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  padding: 0.75rem 1rem;
  text-decoration: none;
  z-index: 100;
  border-radius: var(--radius-md);
}

.skip-to-main:focus {
  top: 0;
}

/* ============================================================
   OPENING ANNOUNCEMENT POPUP
   ============================================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 43, 31, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
  visibility: visible;
}

/* Swiper wrapper for multi-popup */
.popup-swiper-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.popup-visible .popup-swiper-wrap {
  transform: translateY(0) scale(1);
}

.popup-swiper {
  overflow: hidden;
  border-radius: 20px;
}

.popup-swiper .swiper-slide {
  height: auto;
}

.popup-card {
  position: relative;
  background: linear-gradient(175deg, #FFFDF9 0%, #FAF5EE 100%);
  border-radius: 20px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(61, 43, 31, 0.2),
    0 0 0 1px rgba(184, 149, 106, 0.15);
}

/* Slide number indicator */
.popup-slide-num {
  display: none; /* hidden when only 1 slide */
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  font-family: var(--font-accent);
}

/* Show numbers when multiple slides exist */
.popup-swiper.multi-slide .popup-slide-num {
  display: block;
}

/* Pagination dots */
.popup-pagination {
  text-align: center;
  margin-top: 0.75rem;
}

.popup-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  opacity: 0.3;
  margin: 0 4px;
}

.popup-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 4px;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(61, 43, 31, 0.06);
  color: var(--text-body);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.popup-close:hover {
  background: rgba(61, 43, 31, 0.12);
  color: var(--text-dark);
}

.popup-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(184, 149, 106, 0.1);
  border: 1px solid rgba(184, 149, 106, 0.25);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.popup-logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.popup-logo-img {
  width: 120px;
  height: auto;
  opacity: 0.85;
}

.popup-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.popup-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 1.25rem;
}

.popup-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.popup-desc strong {
  color: var(--text-dark);
  font-weight: 600;
}

.popup-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.popup-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.popup-benefits li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.popup-cta-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-deep));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
  text-decoration: none;
}

.popup-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.35);
}

.popup-today-close {
  display: block;
  margin: 0.75rem auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.popup-today-close:hover {
  color: var(--text-body);
  background: rgba(61, 43, 31, 0.05);
}

/* Dark mode popup */
[data-theme="dark"] .popup-card {
  background: linear-gradient(175deg, #2A2016 0%, #1E1610 100%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(184, 149, 106, 0.12);
}

[data-theme="dark"] .popup-close {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

[data-theme="dark"] .popup-title {
  color: var(--text-light);
}

[data-theme="dark"] .popup-desc {
  color: #C4B8A8;
}

[data-theme="dark"] .popup-desc strong {
  color: var(--text-light);
}

[data-theme="dark"] .popup-benefits li {
  color: #C4B8A8;
}

[data-theme="dark"] .popup-today-close {
  color: #8A7D70;
}

/* Popup responsive */
@media (max-width: 480px) {
  .popup-card {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 16px;
  }

  .popup-title {
    font-size: 1.2rem;
  }

  .popup-logo-img {
    width: 100px;
  }
}

/* ============================================================
   END OF STYLESHEET - PRODUCTION READY
   ============================================================ */
