/* REOR clinic theme */
/* ===== 공통 헤더 & 드롭다운 네비게이션 ===== */
@font-face {
  font-family: 'MaruBuri';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/MaruBuri-Bold.woff') format('woff');
  font-weight: 600;
}

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
}
header.top    { background: transparent; }
header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 #E8E8E6;
}

.header-inner {
  max-width: 1400px; margin: 0 auto; width: 100%; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-right { display: flex; align-items: center; gap: 0; }

/* 로고 */
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; margin-right: 48px; }
.logo-en { font-family: 'MaruBuri', serif; font-size: 24px; font-weight: 600; letter-spacing: 0.22em; color: #fff; transition: color 0.3s; }
header.scrolled .logo-en { color: #1B3A2D; }
.logo-ko { font-size: 9px; font-weight: 300; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); margin-top: 3px; transition: color 0.3s; }
header.scrolled .logo-ko { color: #AEAEAA; }

/* 네비 */
.nav-center { display: flex; align-items: stretch; height: 68px; }

/* 각 메뉴 아이템 (드롭다운 포함) */
.nav-item {
  position: relative;
  display: flex; align-items: center;
}
.nav-link {
  display: flex; align-items: center;
  padding: 0 20px; height: 68px;
  font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88); text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
header.scrolled .nav-link { color: #3A3A38; }
.nav-link:hover { color: #fff; }
header.scrolled .nav-link:hover { color: #1B3A2D; }
.nav-link.active { font-weight: 600; }
header.scrolled .nav-link.active { color: #1B3A2D; }

/* 드롭다운 메뉴 */
.dropdown {
  position: absolute;
  top: 68px; left: 0;
  min-width: 180px;
  background: #fff;
  border-top: 2px solid #1B3A2D;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 999;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 13px 20px;
  font-size: 14px; font-weight: 400; color: #3A3A38;
  text-decoration: none;
  border-bottom: 1px solid #F4F4F2;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #F2F6F3; color: #1B3A2D; font-weight: 500; }
.dropdown a.active { color: #1B3A2D; font-weight: 600; background: #F2F6F3; }

/* 시술가격 버튼 */
.btn-price {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  padding: 9px 22px; text-decoration: none; transition: all 0.2s;
  margin-left: 16px;
}
header.top .btn-price {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
}
header.top .btn-price:hover { background: rgba(255,255,255,0.25); }
header.scrolled .btn-price { background: #1B3A2D; color: #fff; border: none; }
header.scrolled .btn-price:hover { background: #2C5F45; }

/* 햄버거 */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
header.scrolled .hamburger span { background: #1B3A2D; }

/* 모바일 */
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .nav-center { display: none; }
  .btn-price { display: none; }
  .hamburger { display: flex; }
  .logo { margin-right: 0; }
}


    @font-face {
      font-family: 'MaruBuri';
      src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/MaruBuri-Regular.woff') format('woff');
      font-weight: 400;
    }
    @font-face {
      font-family: 'MaruBuri';
      src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/MaruBuri-Bold.woff') format('woff');
      font-weight: 700;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
      background: #fff;
      color: #1f1f1f;
      line-height: 1.6;
      overflow-x: hidden;
    }

    :root {
      --green:      #1B3A2D;
      --green-mid:  #2C5F45;
      --green-light:#4A8C65;
      --green-pale: #E8F0EB;
      --green-mist: #F2F6F3;
      --off-white:  #F9F9F9;
      --warm-white: #F6F4F1;
      --gray-200:   #E8E8E6;
      --gray-400:   #AEAEAA;
      --gray-600:   #7A6C67;
      --gray-800:   #3A3A38;
      --black:      #1f1f1f;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: 68px;
      display: flex;
      align-items: center;
      transition: background 0.3s, box-shadow 0.3s;
    }
    header.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--gray-200);
    }
    header.top { background: transparent; }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* 로고 + 우측 전체 묶음 */
    .header-right {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
    .logo-en {
      font-family: 'MaruBuri', serif;
      font-size: 24px; font-weight: 700; letter-spacing: 0.22em;
      color: #fff; transition: color 0.3s;
    }
    header.scrolled .logo-en { color: var(--green); }
    .logo-ko {
      font-size: 9px; font-weight: 300; letter-spacing: 0.3em;
      color: rgba(255,255,255,0.6); margin-top: 3px; transition: color 0.3s;
    }
    header.scrolled .logo-ko { color: var(--gray-400); }
    .nav-center { display: flex; align-items: center; gap: 32px; }
    .nav-center a {
      font-size: 14px; font-weight: 400; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s;
    }
    header.scrolled .nav-center a { color: var(--gray-800); }
    .nav-center a:hover { color: #fff; }
    header.scrolled .nav-center a:hover { color: var(--green); }
    .nav-price { display: flex; align-items: center; margin-left: 8px; }
    .btn-price {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff;
      font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
      padding: 9px 22px; text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s; white-space: nowrap;
    }
    .btn-price:hover { background: var(--green-mid); }
    header.top .btn-price {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.4);
    }
    header.top .btn-price:hover { background: rgba(255,255,255,0.25); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
    header.scrolled .hamburger span { background: var(--green); }

    /* ===== HERO ===== */
    .hero {
      position: relative; height: 100vh; min-height: 700px;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-slider {
      position: absolute; inset: 0;
    }
    .hero-slide {
      position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
    }
    .hero-slide.is-active { opacity: 1; }
    .hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,58,45,0.72) 0%, rgba(27,58,45,0.45) 50%, rgba(0,0,0,0.3) 100%);
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1400px; margin: 0 auto; padding: 0 48px; width: 100%;
    }
    .hero-en {
      font-family: 'MaruBuri', serif;
      font-size: clamp(48px, 6.5vw, 88px); font-weight: 700;
      color: #fff; line-height: 1.15; letter-spacing: 0.01em; margin-bottom: 20px;
    }
    .hero-ko {
      font-size: clamp(16px, 1.8vw, 22px); font-weight: 400;
      color: rgba(255,255,255,0.82); letter-spacing: 0.04em; margin-bottom: 60px; line-height: 1.7;
    }
    .hero-quick {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; max-width: 720px;
    }
    .quick-btn {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 14px; padding: 32px 20px;
      background: rgba(255,255,255,0.13); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff; text-decoration: none; cursor: pointer;
      transition: background 0.2s, border-color 0.2s; min-height: 110px;
    }
    .quick-btn:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.5); }
    .quick-btn i { font-size: 28px; color: rgba(255,255,255,0.9); }
    .quick-btn span { font-size: 14px; font-weight: 500; letter-spacing: 0.06em; white-space: nowrap; }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll i { font-size: 13px; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(7px); }
    }

    /* ===== 병원소개 ===== */
    .intro-section { background: #fff; padding: 120px 0 100px; }
    .intro-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .section-label {
      font-size: 11px; font-weight: 400; letter-spacing: 0.35em;
      color: var(--green-light); text-transform: lowercase; margin-bottom: 20px;
    }
    .intro-title {
      font-family: 'MaruBuri', serif;
      font-size: clamp(30px, 3.2vw, 44px); font-weight: 700;
      color: var(--black); line-height: 1.45; margin-bottom: 24px; letter-spacing: -0.01em;
    }
    .intro-desc {
      font-size: 15px; font-weight: 300; color: var(--gray-600);
      line-height: 1.9; margin-bottom: 40px; max-width: 440px;
    }
    .btn-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green); color: #fff;
      font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
      padding: 14px 32px; text-decoration: none; transition: background 0.2s;
    }
    .btn-green:hover { background: var(--green-mid); }
    .intro-img { position: relative; height: 500px; overflow: hidden; }
    .intro-img img { width: 100%; height: 100%; object-fit: cover; }
    .intro-img-badge {
      position: absolute; bottom: 28px; left: 28px;
      background: var(--green); color: #fff; padding: 16px 24px;
    }
    .intro-img-badge .num { font-family: 'MaruBuri', serif; font-size: 36px; font-weight: 700; line-height: 1; }
    .intro-img-badge .txt { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; margin-top: 4px; color: rgba(255,255,255,0.75); }

    /* ===== 의사소개 ===== */
    .doctor-section { background: var(--warm-white); padding: 100px 0; }
    .doctor-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .doctor-img-wrap { position: relative; }
    .doctor-img { width: 100%; height: 560px; object-fit: cover; object-position: top center; }
    .doctor-img-deco { display: none; }
    .doctor-role { font-size: 11px; font-weight: 400; letter-spacing: 0.35em; color: var(--green-light); margin-bottom: 20px; }
    .doctor-name { font-family: 'MaruBuri', serif; font-size: clamp(28px, 2.8vw, 38px); font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
    .doctor-name-label { font-size: 12px; font-weight: 400; letter-spacing: 0.15em; color: var(--gray-400); display: block; margin-bottom: 6px; }
    .doctor-title { font-size: 14px; font-weight: 400; color: var(--green-mid); letter-spacing: 0.06em; margin-bottom: 28px; }
    .doctor-divider { width: 40px; height: 2px; background: var(--green); margin-bottom: 28px; }
    .doctor-quote { font-family: 'MaruBuri', serif; font-size: 18px; font-weight: 400; color: var(--gray-800); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
    .doctor-desc { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.9; margin-bottom: 36px; }
    .btn-outline-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--green);
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
      padding: 12px 28px; border: 1px solid var(--green); text-decoration: none; transition: all 0.2s;
    }
    .btn-outline-green:hover { background: var(--green); color: #fff; }

    /* ===== 리뷰 ===== */
    .review-section { background: var(--off-white); padding: 100px 0; }
    .review-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
    .section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
    .section-title-lg { font-family: 'MaruBuri', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--black); line-height: 1.3; }
    .section-sub { font-size: 14px; font-weight: 300; color: var(--gray-400); letter-spacing: 0.03em; margin-top: 8px; }
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .review-card { background: #fff; padding: 32px; border-left: 3px solid var(--green); transition: box-shadow 0.3s; }
    .review-card:hover { box-shadow: 0 8px 32px rgba(27,58,45,0.08); }
    .review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .review-stars i { color: #F5A623; font-size: 13px; }
    .review-treatment { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--green-light); text-transform: uppercase; margin-bottom: 10px; }
    .review-text { font-size: 14px; font-weight: 300; color: var(--gray-800); line-height: 1.8; margin-bottom: 20px; }
    .review-author { display: flex; align-items: center; gap: 10px; }
    .review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--green); flex-shrink: 0; }
    .review-name { font-size: 13px; font-weight: 500; color: var(--black); }
    .review-date { font-size: 11px; font-weight: 300; color: var(--gray-400); }
    .review-platform { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; color: #03C75A; background: rgba(3,199,90,0.08); padding: 3px 10px; margin-bottom: 12px; }
    .review-platform.crm { color: var(--green); background: var(--green-mist); }

    /* ===== 오시는 길 ===== */
    .location-section { background: #fff; padding: 100px 0; overflow: hidden; }
    .location-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: stretch;
    }
    /* 지도 컬럼: 왼쪽 화면 끝까지 */
    .map-col {
      margin-left: calc(-50vw + 50%);
      padding-left: 0;
      display: flex;
      flex-direction: column;
    }
    .map-frame {
      flex: 1;
      min-height: 400px;
      background: var(--gray-200);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 14px; color: var(--gray-400);
      overflow: hidden; position: relative;
    }
    .map-frame i { font-size: 48px; }
    .map-frame p { font-size: 15px; letter-spacing: 0.06em; }
    .map-frame small { font-size: 12px; color: var(--gray-400); }
    .map-frame iframe { width: 100%; height: 100%; border: none; }
    /* 지도 버튼은 우측 정보 영역으로 이동 — map-col에서는 숨김 */
    .map-btns-left { display: none; }
    .map-btn {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 500; color: var(--green);
      border: 1px solid var(--green); padding: 10px 20px;
      text-decoration: none; transition: all 0.2s;
    }
    .map-btn:hover { background: var(--green); color: #fff; }
    /* 우측 정보 영역 내 버튼 */
    .map-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }

    /* 우측 정보 */
    .location-info {}
    .location-title {
      font-family: 'MaruBuri', serif;
      font-size: clamp(40px, 4.5vw, 64px);
      font-weight: 700; color: var(--black);
      line-height: 1.1; letter-spacing: -0.01em;
      margin-bottom: 32px;
    }
    .location-address-block {
      margin-bottom: 32px;
    }
    .location-address-text {
      font-size: 15px; font-weight: 400; color: var(--black);
      line-height: 1.7; margin-bottom: 6px;
    }
    .location-copy-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 500; color: var(--green);
      background: none; border: none; cursor: pointer; padding: 0; letter-spacing: 0.06em;
    }
    .location-copy-btn i { font-size: 11px; }
    .location-parking {
      font-size: 13px; font-weight: 300; color: var(--gray-600);
      line-height: 1.8; margin-bottom: 36px;
      padding: 16px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
    }
    .location-parking strong { font-weight: 500; color: var(--black); display: block; margin-bottom: 4px; }

    /* 진료시간 테이블 — 시원시원하게 */
    .hours-list { list-style: none; margin-bottom: 28px; }
    .hours-list li {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-bottom: 1px solid var(--gray-200);
      font-size: 15px;
    }
    .hours-list li:first-child { border-top: 1px solid var(--gray-200); }
    .hours-day { font-weight: 500; color: var(--black); min-width: 140px; }
    .hours-time { font-weight: 300; color: var(--gray-600); }
    .hours-time.closed { color: var(--gray-400); }

    /* 지하철 */
    .subway-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: #3A7BD5; color: #fff;
      font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 3px; margin-right: 6px;
    }
    .subway-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
    .subway-name { font-size: 15px; font-weight: 500; color: var(--black); }
    .subway-desc { font-size: 13px; font-weight: 300; color: var(--gray-600); }

    /* ===== CTA 배너 ===== */
    .cta-banner { background: var(--green); padding: 80px 48px; text-align: center; }
    .cta-label { font-size: 11px; font-weight: 400; letter-spacing: 0.35em; color: rgba(255,255,255,0.45); text-transform: lowercase; margin-bottom: 20px; }
    .cta-title { font-family: 'MaruBuri', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 40px; }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; padding: 15px 36px; text-decoration: none; transition: background 0.2s; }
    .btn-white:hover { background: var(--green-pale); }
    .btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 400; letter-spacing: 0.1em; padding: 15px 36px; border: 1px solid rgba(255,255,255,0.35); text-decoration: none; transition: all 0.2s; }
    .btn-ghost:hover { border-color: #fff; color: #fff; }

    /* ===== FOOTER (에스리본 스타일) ===== */
    .footer-hours-bar {
      background: #3a3a38;
      padding: 48px 0;
    }
    .footer-hours-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
    }
    .footer-tel-block {}
    .footer-tel {
      font-family: 'MaruBuri', serif;
      font-size: clamp(22px, 2.2vw, 30px); font-weight: 700;
      color: #fff; letter-spacing: 0.02em; margin-bottom: 20px;
    }
    .footer-hours-row {
      display: flex; flex-wrap: wrap; gap: 0; align-items: center;
      font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1;
    }
    .fh-item {
      display: flex; align-items: center; gap: 6px;
      padding: 0 16px 0 0; margin-bottom: 10px;
      border-right: 1px solid rgba(255,255,255,0.2);
      margin-right: 16px;
    }
    .fh-item:last-child { border-right: none; margin-right: 0; }
    .fh-day { font-weight: 500; color: rgba(255,255,255,0.85); margin-right: 4px; }
    .fh-day.highlight { color: #7EC8A0; }
    .fh-time { font-weight: 300; }
    .footer-hours-note {
      font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4);
      margin-top: 12px; letter-spacing: 0.02em;
    }
    .footer-qr {
      flex-shrink: 0;
    }
    .qr-box {
      width: 90px; height: 90px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 6px; color: rgba(255,255,255,0.5);
      font-size: 10px; letter-spacing: 0.08em;
    }
    .qr-box i { font-size: 32px; }

    /* 푸터 링크 바 */
    .footer-links-bar {
      background: #3a3a38;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
    }
    .footer-links-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .footer-policy-links { display: flex; align-items: center; gap: 0; }
    .footer-policy-links a {
      font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5);
      text-decoration: none; padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.15);
      transition: color 0.2s;
    }
    .footer-policy-links a:first-child { padding-left: 0; }
    .footer-policy-links a:last-child { border-right: none; }
    .footer-policy-links a:hover { color: #fff; }
    .footer-sns { display: flex; align-items: center; gap: 12px; }
    .sns-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none;
      transition: all 0.2s;
    }
    .sns-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

    /* 하단 카피라이트 */
    footer {
      background: #2a2a28;
      padding: 28px 0;
    }
    .footer-bottom-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 48px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-info { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); line-height: 1.8; }
    .footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); }

    /* ===== FLOATING ===== */
    .floating { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
    .float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 17px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); border: none; cursor: pointer; }
    .float-btn:hover { transform: scale(1.08); }
    .float-kakao { background: #FEE500; color: #3B1E08; }
    .float-tel   { background: var(--green); color: #fff; }
    .float-top   { background: rgba(255,255,255,0.95); color: var(--green); border: 1px solid var(--gray-200); font-size: 13px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .review-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .intro-inner, .doctor-inner, .location-inner { grid-template-columns: 1fr; gap: 48px; }
      .intro-img { height: 320px; }
      /* 원장님 사진이 잘리지 않도록 모바일에서 높이를 늘립니다.
         더 보이게 하려면 height 값을, 보이는 위치를 바꾸려면 object-position 값을 조정하세요. */
      .doctor-img { height: 440px; object-position: center top; }
      .location-title { font-size: clamp(36px, 8vw, 52px); }
      .footer-hours-inner { flex-direction: column; gap: 24px; }
    }
    @media (max-width: 768px) {
      .header-inner { padding: 0 20px; }
      .nav-center { display: none; }
      .btn-price { display: none; }
      .hamburger { display: flex; }
      .hero-inner { padding: 0 20px; }
      .hero-en { font-size: clamp(38px, 9vw, 56px); }
      .hero-ko { font-size: 15px; margin-bottom: 40px; }
      .hero-quick { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
      .quick-btn { padding: 28px 16px; min-height: 100px; }
      .quick-btn i { font-size: 26px; }
      .quick-btn span { font-size: 13px; }
      .intro-inner, .doctor-inner { padding: 0 20px; }
      .review-inner { padding: 0 20px; }
      .review-grid { grid-template-columns: 1fr; }
      .location-inner { padding: 0 20px; }
      .section-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
      .footer-hours-inner { padding: 0 20px; }
      .footer-links-inner { padding: 0 20px; }
      .footer-bottom-inner { padding: 0 20px; }
      .footer-hours-row { gap: 0; }
      .fh-item { padding: 0 10px 0 0; margin-right: 10px; }
      .cta-banner { padding: 60px 20px; }
      .floating { bottom: 20px; right: 16px; }

      .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
      .btn-white, .btn-ghost { justify-content: center; width: 100%; }
        }
  

/* ===== 2026-07-20 hotfix: icon + type size + map ===== */
.btn-green,
.btn-outline-green,
.btn-white,
.btn-ghost,
.map-btn,
.location-copy-btn {
  font-size: 16px !important;
  letter-spacing: -0.01em !important;
}

.btn-green, .btn-white, .btn-ghost {
  padding: 18px 34px !important;
}

.btn-outline-green, .map-btn {
  padding: 16px 30px !important;
}

.btn-green i,
.btn-outline-green i,
.btn-white i,
.btn-ghost i,
.map-btn i,
.location-copy-btn i {
  font-size: 16px !important;
}

.section-sub {
  font-size: 18px !important;
}

.review-grid {
  gap: 24px;
}

.review-card {
  min-height: 100%;
}

.review-platform {
  gap: 8px !important;
  font-size: 14px !important;
  padding: 7px 14px !important;
  margin-bottom: 16px !important;
}

.review-platform .platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  background: #03C75A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  font-style: normal;
}

.review-platform.crm .platform-icon {
  background: var(--green);
}

.review-stars i {
  font-size: 16px !important;
}

.review-treatment {
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin-bottom: 14px !important;
}

.review-text {
  font-size: 18px !important;
  line-height: 1.9 !important;
  margin-bottom: 28px !important;
}

.review-avatar {
  width: 48px !important;
  height: 48px !important;
  font-size: 18px !important;
}

.review-name {
  font-size: 18px !important;
}

.review-date {
  font-size: 15px !important;
}

.map-frame {
  background: #f1f1ef !important;
}

.map-frame iframe {
  display: block;
}

.location-address-text {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.location-parking {
  font-size: 16px !important;
}

.hours-list li,
.subway-name {
  font-size: 17px !important;
}

.subway-desc {
  font-size: 15px !important;
}

.hero-scroll i {
  font-size: 18px;
}

@media (max-width: 1200px) {
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .btn-green, .btn-outline-green, .btn-white, .btn-ghost, .map-btn, .location-copy-btn {
    font-size: 15px !important;
  }

  .review-treatment { font-size: 20px !important; }
  .review-text { font-size: 16px !important; }
  .location-address-text { font-size: 18px !important; }
}


/* ===== icon rendering compatibility fix ===== */
#reor-site i.fa-solid,
#reor-site i.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal;
}
#reor-site i.fa-regular,
#reor-site i.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
  font-style: normal;
}
#reor-site i.fa-brands,
#reor-site i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal;
}
#reor-site i[class^="ri-"],
#reor-site i[class*=" ri-"] {
  font-family: remixicon !important;
  font-style: normal;
}
#reor-site .quick-btn i,
#reor-site .btn-green i,
#reor-site .btn-outline-green i,
#reor-site .btn-white i,
#reor-site .btn-ghost i,
#reor-site .map-btn i,
#reor-site .review-stars i,
#reor-site .review-avatar i {
  display: inline-block;
  line-height: 1;
}


/* ===== 2026-07-20 global typography system =====
   메인/서브페이지 공통 영문 라벨과 설명문 크기 통일 */
:root {
  --reor-en-label-size: 15px;
  --reor-body-size: 18px;
  --reor-body-line: 1.9;
  --reor-small-body-size: 16px;
}

/* 영문 섹션 라벨 */
#reor-site .section-label,
#reor-site .sec-label,
#reor-site .doctor-role,
#reor-site .doctor-role-sm,
#reor-site .sub-label,
#reor-site .hero-label,
#reor-site .info-label,
#reor-site .meta-label,
#reor-site .cta-label,
#reor-site .mid-cta-label,
#reor-site .price-cta-label,
#reor-site .schedule-cta-label,
#reor-site .subway-label,
.reor-sub-page .section-label,
.reor-sub-page .sec-label,
.reor-sub-page .doctor-role,
.reor-sub-page .doctor-role-sm,
.reor-sub-page .sub-label,
.reor-sub-page .hero-label,
.reor-sub-page .info-label,
.reor-sub-page .meta-label,
.reor-sub-page .cta-label,
.reor-sub-page .mid-cta-label,
.reor-sub-page .price-cta-label,
.reor-sub-page .schedule-cta-label,
.reor-sub-page .subway-label {
  font-family: 'Montserrat', 'Pretendard', sans-serif !important;
  font-size: var(--reor-en-label-size) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.22em !important;
}

/* 본문 및 설명문 */
#reor-site .intro-desc,
#reor-site .doctor-desc,
#reor-site .section-desc,
#reor-site .sec-desc,
#reor-site .sub-desc,
#reor-site .hero-desc,
#reor-site .cta-sub,
#reor-site .phil-desc,
#reor-site .effect-desc,
#reor-site .cal-desc,
#reor-site .tc-desc,
#reor-site .rec-text,
#reor-site .subway-desc,
#reor-site .location-parking,
.reor-sub-page .intro-desc,
.reor-sub-page .doctor-desc,
.reor-sub-page .section-desc,
.reor-sub-page .sec-desc,
.reor-sub-page .sub-desc,
.reor-sub-page .hero-desc,
.reor-sub-page .cta-sub,
.reor-sub-page .phil-desc,
.reor-sub-page .effect-desc,
.reor-sub-page .cal-desc,
.reor-sub-page .tc-desc,
.reor-sub-page .rec-text,
.reor-sub-page .subway-desc,
.reor-sub-page .loc-parking,
.reor-sub-page .about-point-text p {
  font-size: var(--reor-body-size) !important;
  font-weight: 400 !important;
  line-height: var(--reor-body-line) !important;
  letter-spacing: -0.015em !important;
}

/* 보조 설명 */
#reor-site .section-sub,
#reor-site .review-date,
#reor-site .pc-thumb-sub,
.reor-sub-page .section-sub,
.reor-sub-page .review-date,
.reor-sub-page .pc-thumb-sub {
  font-size: var(--reor-small-body-size) !important;
  line-height: 1.7 !important;
}

/* 원장 인사말 인용문 */
#reor-site .doctor-quote,
.reor-sub-page .doctor-quote,
.reor-sub-page .doctor-quote-wrap {
  font-size: 22px !important;
  line-height: 1.8 !important;
}

@media (max-width: 768px) {
  :root {
    --reor-en-label-size: 13px;
    --reor-body-size: 16px;
    --reor-small-body-size: 14px;
  }

  #reor-site .doctor-quote,
  .reor-sub-page .doctor-quote,
  .reor-sub-page .doctor-quote-wrap {
    font-size: 19px !important;
  }
}

/* ===== Mobile navigation fix 2026-07-22 ===== */
.hamburger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  margin: -8px;
  position: relative;
  z-index: 1202;
}
.mobile-menu-overlay,
.mobile-menu-panel { display: none; }
@media (max-width: 768px) {
  body.mobile-menu-open { overflow: hidden !important; }
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 18, .52);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1198;
  }
  .mobile-menu-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1199;
    box-shadow: -12px 0 40px rgba(0,0,0,.16);
    overflow-y: auto;
  }
  body.mobile-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
  body.mobile-menu-open .mobile-menu-panel { transform: translateX(0); }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 18px 22px;
    border-bottom: 1px solid #e6ebe8;
  }
  .mobile-menu-logo img { display: block; width: 168px; max-width: 58vw; height: auto; }
  .mobile-menu-close {
    border: 0;
    background: transparent;
    color: #1b3a2d;
    font-size: 34px;
    line-height: 1;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
  .mobile-menu-nav { padding: 10px 22px 36px; }
  .mobile-menu-group,
  .mobile-menu-single { border-bottom: 1px solid #e6ebe8; }
  .mobile-menu-parent,
  .mobile-menu-single {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #1d2c25;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile-menu-parent span { font-size: 22px; font-weight: 300; transition: transform .2s ease; }
  .mobile-menu-parent[aria-expanded="true"] span { transform: rotate(45deg); }
  .mobile-menu-sub { display: none; padding: 0 0 14px 10px; }
  .mobile-menu-group.is-open .mobile-menu-sub { display: block; }
  .mobile-menu-sub a {
    display: block;
    padding: 10px 0;
    color: #647169;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
  }
  .mobile-menu-price {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 24px;
    background: #1b3a2d;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
}

/* ===== 2026-07-22 mobile menu logo regression repair ===== */
#reor-site .reor-official-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 204px;
  height: 52px;
  margin-right: 48px;
  overflow: hidden;
  line-height: 1;
}
#reor-site .reor-official-logo img {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 204px !important;
  max-width: 100% !important;
  height: 52px !important;
  object-fit: contain;
  object-position: left center;
}
#reor-site .reor-official-logo .logo-white { opacity: 1; visibility: visible; }
#reor-site .reor-official-logo .logo-green { opacity: 0; visibility: hidden; }
#reor-site header.scrolled .reor-official-logo .logo-white { opacity: 0; visibility: hidden; }
#reor-site header.scrolled .reor-official-logo .logo-green { opacity: 1; visibility: visible; }
#reor-site .hamburger {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 768px) {
  #reor-site .reor-official-logo {
    width: 174px;
    height: 46px;
    margin-right: 0;
  }
  #reor-site .reor-official-logo img {
    width: 174px !important;
    height: 46px !important;
  }
  #reor-site header.top .reor-official-logo .logo-white {
    opacity: 1;
    visibility: visible;
  }
  #reor-site header.top .reor-official-logo .logo-green {
    opacity: 0;
    visibility: hidden;
  }
  #reor-site header.scrolled .reor-official-logo .logo-white {
    opacity: 0;
    visibility: hidden;
  }
  #reor-site header.scrolled .reor-official-logo .logo-green {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== 2026-07-22 mobile visual polish 7-point fix ===== */
@media (max-width: 768px) {
  /* 1. footer logo/image guard: prevent oversized R mark on mobile */
  #reor-site footer img,
  #reor-site .footer-logo img,
  #reor-site .footer-brand img,
  #reor-site .footer-bottom-inner img,
  .reor-sub-page footer img,
  .reor-sub-page .footer-logo img,
  .reor-sub-page .footer-brand img,
  footer .reor-official-logo img {
    width: auto !important;
    max-width: 190px !important;
    max-height: 58px !important;
    height: auto !important;
    object-fit: contain !important;
  }
  #reor-site footer .footer-logo,
  #reor-site footer .footer-brand,
  .reor-sub-page footer .footer-logo,
  .reor-sub-page footer .footer-brand {
    width: auto !important;
    max-width: 200px !important;
    height: auto !important;
    overflow: hidden !important;
  }
  #reor-site footer::before,
  #reor-site footer::after,
  .reor-sub-page footer::before,
  .reor-sub-page footer::after {
    background-size: 180px auto !important;
    background-position: left 20px center !important;
  }

  /* 2. index map buttons: clean two-column layout */
  #reor-site .map-btns {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }
  #reor-site .map-btns .map-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 12px 8px !important;
    justify-content: center !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }
  #reor-site .map-btns .map-btn:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
  }

  /* 3. smoother scroll cue */
  #reor-site .hero-scroll {
    bottom: 18px !important;
    gap: 7px !important;
    animation: none !important;
    transform: translateX(-50%) !important;
  }
  #reor-site .hero-scroll i {
    animation: reorScrollSoft 1.9s cubic-bezier(.45,0,.25,1) infinite !important;
    will-change: transform, opacity;
  }
  #reor-site .hero-scroll span {
    opacity: .76 !important;
  }

  /* 4. subvisual + local navigation spacing */
  .reor-sub-page .sub-visual,
  body:not(.index-page) .sub-visual {
    height: 250px !important;
    min-height: 250px !important;
  }
  .reor-sub-page .sub-visual-text,
  body:not(.index-page) .sub-visual-text {
    padding-top: 54px !important;
    gap: 7px !important;
  }
  .reor-sub-page .sub-label,
  body:not(.index-page) .sub-label {
    font-size: 12px !important;
    letter-spacing: .18em !important;
  }
  .reor-sub-page .sub-title,
  body:not(.index-page) .sub-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }
  .reor-sub-page .sub-desc,
  body:not(.index-page) .sub-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
    padding: 0 20px !important;
  }
  .reor-sub-page .sub-nav,
  body:not(.index-page) .sub-nav {
    top: 60px !important;
  }
  .reor-sub-page .sub-nav-inner,
  body:not(.index-page) .sub-nav-inner {
    padding: 0 10px !important;
    justify-content: flex-start !important;
  }
  .reor-sub-page .sub-tab,
  body:not(.index-page) .sub-tab {
    padding: 15px 16px !important;
    font-size: 13px !important;
  }

  /* 5. about-page promise numbers */
  .reor-sub-page .phil-num,
  .reor-sub-page .rec-num,
  .reor-sub-page .step-num,
  body:not(.index-page) .phil-num {
    color: #8FAF9D !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #8FAF9D !important;
  }

  /* 6. wider mobile map */
  #reor-site .location-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #reor-site .location-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 30px !important;
  }
  #reor-site .map-col,
  #reor-site .map-frame {
    width: 100% !important;
    max-width: none !important;
  }
  #reor-site .map-frame {
    height: 430px !important;
    min-height: 430px !important;
  }
  #reor-site .map-frame iframe {
    width: 100% !important;
    height: 100% !important;
  }

  /* 7. treatment mobile hero: lower height and safer focal point */
  .reor-treatment-page .hero,
  body[class*="treatment"] .hero,
  .treatment-page .hero {
    min-height: 430px !important;
    height: auto !important;
  }
  .reor-treatment-page .hero-bg,
  body[class*="treatment"] .hero-bg,
  .treatment-page .hero-bg {
    background-position: 62% center !important;
    background-size: cover !important;
  }
  .reor-treatment-page .hero-inner,
  body[class*="treatment"] .hero-inner,
  .treatment-page .hero-inner {
    padding: 105px 20px 58px !important;
  }
  .reor-treatment-page .hero-title,
  body[class*="treatment"] .hero-title,
  .treatment-page .hero-title {
    font-size: 40px !important;
    line-height: 1.12 !important;
  }
  .reor-treatment-page .hero-desc,
  body[class*="treatment"] .hero-desc,
  .treatment-page .hero-desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
}

@keyframes reorScrollSoft {
  0%, 100% { transform: translateY(0); opacity: .42; }
  45% { transform: translateY(7px); opacity: 1; }
  70% { transform: translateY(4px); opacity: .72; }
}

/* ===== 2026-07-22 footer logo + desktop submenu text only ===== */
#reor-site footer .footer-brand-logo {
  flex: 0 0 auto;
  width: 240px;
  max-width: 240px;
  line-height: 1;
  overflow: hidden;
}
#reor-site footer .footer-brand-logo img {
  display: block;
  width: 240px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left center;
}
#reor-site header.top .nav-item .dropdown a,
#reor-site header.scrolled .nav-item .dropdown a {
  color: #3a3a38 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}
#reor-site header.top .nav-item .dropdown a:hover,
#reor-site header.scrolled .nav-item .dropdown a:hover,
#reor-site header.top .nav-item .dropdown a.active,
#reor-site header.scrolled .nav-item .dropdown a.active {
  color: #1b3a2d !important;
}
@media (max-width: 768px) {
  #reor-site footer .footer-brand-logo {
    width: 170px !important;
    max-width: 170px !important;
  }
  #reor-site footer .footer-brand-logo img {
    width: 170px !important;
    max-width: 170px !important;
    max-height: none !important;
  }
}

/* ===== 2026-07-28 desktop submenu: open only while hovering the parent menu ===== */
@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  #reor-site #mainHeader .nav-item > .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
  }

  #reor-site #mainHeader .nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  #reor-site #mainHeader .nav-item > .dropdown {
    display: none;
  }
}

/* ===== 2026-08-03 clinic photo update ===== */
.footer-hours-inner { justify-content: flex-start; }
.footer-links-inner { justify-content: flex-start; }
.footer-qr, .footer-sns { display: none; }

/* 멀티 팝업레이어 스타일은 /bbs/newwin.inc.php 안으로 옮겼습니다. (충돌 방지)
   이 파일에서는 팝업 스타일을 정의하지 않습니다. */

@media (max-width: 767px) {




}

/* 메인 고객후기 더보기 버튼 간격 */
.review-more-wrap {
  margin-top: 32px;
}
