/* ═══════════════════════════════════════════
   문흥탑내과의원 — MUNHEUNGTOP INTERNAL MEDICINE
   ═══════════════════════════════════════════ */

/* ---------- Fonts (S-Core Dream) ---------- */
@font-face {
  font-family: 'SCoreDream';
  font-weight: 300;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'SCoreDream';
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'SCoreDream';
  font-weight: 600;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'SCoreDream';
  font-weight: 800;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --brick: #9E6B5D;
  --brick-dark: #7E5347;
  --brick-deep: #5E3D34;
  --sand: #C89B8A;
  --ink: #222222;
  --brown-ink: #3C3733;
  --gray: #777069;
  --warm-50: #FCFAF8;
  --warm-100: #F6F0EB;
  --warm-200: #EFE5DD;
  --line: #E9DFD7;
  --dark-1: #2B2320;
  --dark-2: #3C3733;
  --white: #ffffff;
  --font-kr: 'SCoreDream', 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
  --font-en: 'Poppins', 'SCoreDream', sans-serif;
  --header-h: 84px;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(94, 61, 52, .22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-kr);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
em, i { font-style: normal; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 110px 0; }

/* ---------- Common type ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--sand); }
.sec-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink);
}
.sec-title strong { font-weight: 800; }
.sec-title.light { color: var(--white); }
.sec-desc { margin-top: 20px; font-size: 16.5px; color: var(--gray); }
.sec-desc.light { color: rgba(255, 255, 255, .78); }
.sec-desc b { color: var(--brick-dark); font-weight: 600; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(94, 61, 52, .25);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 42px; height: 42px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text strong { font-size: 20px; font-weight: 800; color: var(--brown-ink); letter-spacing: -.02em; }
.logo-text em { font-family: var(--font-en); font-size: 9.5px; font-weight: 600; letter-spacing: .14em; color: var(--brick); }

.gnb { display: flex; gap: 6px; margin-left: auto; }
.gnb a {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-ink);
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.gnb a:hover { color: var(--brick); background: var(--warm-100); }
.gnb a.is-active { color: var(--brick); }

.header-right { display: flex; align-items: center; gap: 14px; }
.header-tel {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  background: var(--brick);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.header-tel:hover { background: var(--brick-dark); transform: translateY(-1px); }
.header-tel svg { width: 17px; height: 17px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2.4px; background: var(--brown-ink); border-radius: 2px; transition: .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
}
.mobile-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  padding: 14px 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--brown-ink);
  border-bottom: 1px solid var(--warm-100);
}
.mobile-nav-tel {
  display: block;
  margin-top: 18px;
  text-align: center;
  padding: 14px;
  background: var(--brick);
  color: var(--white);
  border-radius: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  height: max(640px, 88vh);
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--dark-1);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; z-index: 2; }

.hero-bg { position: absolute; inset: 0; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 108%, rgba(0,0,0,.42), transparent 60%);
}
.hero-bg-1 {
  background:
    radial-gradient(ellipse 60% 80% at 78% 20%, rgba(200, 155, 138, .34), transparent 60%),
    radial-gradient(ellipse 55% 70% at 12% 88%, rgba(158, 107, 93, .4), transparent 62%),
    linear-gradient(135deg, #2E2521 0%, #4A362E 55%, #63443A 100%);
}
.hero-bg-2 {
  background:
    radial-gradient(ellipse 70% 60% at 20% 15%, rgba(200, 155, 138, .28), transparent 60%),
    radial-gradient(ellipse 50% 65% at 88% 80%, rgba(126, 83, 71, .5), transparent 65%),
    linear-gradient(150deg, #262019 0%, #3C2F28 60%, #55403a 100%);
}
.hero-bg-3 {
  background:
    radial-gradient(ellipse 65% 75% at 85% 25%, rgba(228, 190, 160, .26), transparent 58%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(158, 107, 93, .42), transparent 60%),
    linear-gradient(120deg, #2A211C 0%, #503A31 62%, #6B4A3E 100%);
}
/* 은은한 도트 텍스처 */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--white);
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-block;
  padding: 9px 20px;
  background: var(--brick);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 30px;
}
.hero-badge.outline { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.45); }
.hero-title {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -.015em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,.85);
}

.hero-slide.is-active .hero-badge,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-sub {
  animation: heroUp .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-slide.is-active .hero-title { animation-delay: .12s; }
.hero-slide.is-active .hero-sub { animation-delay: .26s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

.hero-ecg {
  position: absolute;
  left: 0; right: 0; bottom: 74px;
  width: 100%; height: 90px;
  z-index: 2;
  opacity: .5;
}
.hero-ecg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: ecg 9s linear infinite;
}
@keyframes ecg {
  0% { stroke-dashoffset: 2000; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

.hero-controls {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero-count { font-family: var(--font-en); font-size: 13px; letter-spacing: .12em; margin-right: 8px; color: rgba(255,255,255,.75); }
.hero-count b { color: #fff; font-weight: 700; }
.hero-controls button {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 13px;
  transition: background .2s;
}
.hero-controls button:hover { background: rgba(255,255,255,.16); }

/* ═══════════════ ABOUT ═══════════════ */
.about { background: var(--warm-50); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
/* PC·모바일 공통: 카드(왼쪽/위) → 소개글(오른쪽/아래) */
.about-cards { order: 1; }
.about-copy { order: 2; }
.about-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat b { font-size: 19px; font-weight: 800; color: var(--brick-dark); }
.stat span { font-size: 13.5px; color: var(--gray); }

.about-cards { display: flex; flex-direction: column; gap: 18px; }
.about-cards li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: 0 10px 32px -22px rgba(94,61,52,.25);
  transition: transform .3s, box-shadow .3s;
}
.about-cards li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-ico {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--warm-100);
  color: var(--brick);
}
.card-ico svg { width: 28px; height: 28px; }
.about-cards h3 { font-size: 18.5px; font-weight: 800; color: var(--brown-ink); margin-bottom: 6px; }
.about-cards p { font-size: 14.5px; color: var(--gray); line-height: 1.65; }

/* ═══════════════ DOCTOR ═══════════════ */
.doctor { background: var(--white); }
.doctor-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  background: var(--warm-50);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 56px;
  box-shadow: var(--shadow);
}
.doctor-photo { display: flex; flex-direction: column; gap: 20px; }
.photo-ph {
  position: relative;
  border-radius: 200px 200px 22px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--warm-200);
}
.photo-ph svg { width: 100%; height: auto; }
.photo-ph span {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: rgba(60,55,51,.55);
  color: var(--white);
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  backdrop-filter: blur(4px);
}
.photo-name { text-align: center; }
.photo-name b { display: block; font-size: 21px; font-weight: 800; color: var(--brown-ink); }
.photo-name b small { font-size: 15px; font-weight: 600; color: var(--brick); margin-left: 4px; }
.photo-name span { font-size: 13.5px; color: var(--gray); }

.doctor-quote {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--brick-deep);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--brick);
  margin-bottom: 34px;
}
.doctor-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brick);
}
.doctor-name { font-size: clamp(28px, 3vw, 36px); font-weight: 800; color: var(--ink); margin-top: 8px; }
.doctor-name small { font-size: .55em; font-weight: 600; color: var(--brown-ink); margin-left: 6px; }
.doctor-role { margin-top: 10px; font-size: 15.5px; color: var(--gray); }

.tabs {
  display: flex;
  gap: 8px;
  margin: 34px 0 26px;
  border-bottom: 2px solid var(--warm-200);
}
.tab {
  padding: 12px 26px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--gray);
  position: relative;
  transition: color .2s;
}
.tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2.5px;
  background: var(--brick);
  transform: scaleX(0);
  transition: transform .25s;
}
.tab:hover { color: var(--brick-dark); }
.tab.is-on { color: var(--brick-dark); font-weight: 800; }
.tab.is-on::after { transform: scaleX(1); }

.tab-panel { display: none; animation: fadeIn .45s ease both; }
.tab-panel.is-on { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.career-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.career-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--brown-ink);
  border-bottom: 1px dashed var(--line);
}
.career-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 21px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sand);
}
.career-list li em {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 1px 7px;
  margin-right: 8px;
  vertical-align: 2px;
}
.career-list li.now { color: var(--brick-dark); }
.career-list li.now::before { background: var(--brick); }
.career-list li.now em { color: var(--white); background: var(--brick); border-color: var(--brick); }

.society-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 32px;
}
.society-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-ink);
  border-bottom: 1px dashed var(--line);
}
.mb {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.mb.life { background: var(--brick); color: var(--white); }
.mb.reg { background: var(--white); color: var(--brick-dark); border: 1px solid var(--sand); }

.field-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.field-chips li {
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-ink);
  transition: .25s;
}
.field-chips li:hover {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════ SERVICES ═══════════════ */
.services { padding: 0 0 110px; background: var(--warm-50); }
.services-head {
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(200,155,138,.22), transparent 60%),
    radial-gradient(ellipse 55% 70% at 8% 90%, rgba(158,107,93,.30), transparent 62%),
    linear-gradient(130deg, #2E2521, #4A362E 70%, #5E4237);
  padding: 110px 0 170px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: -90px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 32px 36px;
  box-shadow: 0 14px 40px -24px rgba(94,61,52,.3);
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-visual {
  height: 96px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--brick-dark);
}
.svc-visual svg { width: 52px; height: 52px; }
.svc-visual.v1 { background: linear-gradient(135deg, #F6EDE7, #EFDFD5); }
.svc-visual.v2 { background: linear-gradient(135deg, #F2EBE3, #E9DBCC); }
.svc-visual.v3 { background: linear-gradient(135deg, #F7ECE8, #EEDAD2); }
.svc-visual.v4 { background: linear-gradient(135deg, #F3EEE8, #E7DCD0); }
.svc-visual.v5 { background: linear-gradient(135deg, #F6EEE9, #ECDCD3); }
.svc-label {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brick);
}
.svc-card h3 { margin: 10px 0 16px; font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.45; }
.svc-card ul li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
}
.svc-card ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand);
}
.svc-card ul li b { color: var(--brick-dark); font-weight: 700; }

.svc-cta {
  background: linear-gradient(140deg, var(--brick), var(--brick-deep));
  border: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.svc-cta h3 { color: var(--white); margin: 0; font-size: 22px; }
.svc-cta p { font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.7; }
.btn-line {
  display: inline-block;
  margin-top: 6px;
  padding: 13px 30px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: .25s;
}
.btn-line:hover { background: var(--white); color: var(--brick-deep); }

/* ═══════════════ CHECK-UP ═══════════════ */
.checkup { background: var(--white); }
.checkup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ck-card {
  position: relative;
  background: var(--warm-50);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 34px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ck-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sand); }
.ck-card.is-hot { background: var(--white); border: 2px solid var(--brick); box-shadow: var(--shadow); }
.ck-badge {
  position: absolute;
  top: -14px; left: 32px;
  padding: 5px 16px;
  background: var(--brick);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.ck-step {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  color: var(--sand);
  letter-spacing: .1em;
}
.ck-card h3 { margin: 12px 0 14px; font-size: 21px; font-weight: 800; color: var(--ink); }
.ck-card p { font-size: 14.5px; color: var(--gray); line-height: 1.75; }

.checkup-note {
  margin-top: 44px;
  background: var(--warm-100);
  border-radius: 18px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.checkup-note p { font-size: 15.5px; color: var(--brown-ink); }
.checkup-note b { color: var(--brick-dark); }
.btn-fill {
  flex: none;
  padding: 14px 34px;
  background: var(--brick);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, transform .2s;
}
.btn-fill:hover { background: var(--brick-dark); transform: translateY(-2px); }

/* ═══════════════ HOURS ═══════════════ */
.hours { background: var(--warm-100); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.hours-points { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.hours-points li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: var(--brown-ink);
}
.hours-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--brick);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.hours-points b { color: var(--brick-dark); }

.hours-card {
  background: var(--white);
  border-radius: 22px;
  padding: 20px 44px;
  box-shadow: var(--shadow);
}
.hrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--warm-100);
}
.hrow:last-child { border-bottom: 0; }
.hrow dt { font-size: 16.5px; font-weight: 800; color: var(--brown-ink); }
.hrow dd { display: flex; align-items: center; gap: 12px; font-size: 16.5px; color: var(--gray); }
.hrow dd b { font-family: var(--font-en); font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.hrow .tag {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brick-dark);
  background: var(--warm-100);
  border-radius: 999px;
  padding: 4px 12px;
}
.hrow.off dt { color: #B3453C; }
.hrow.off dd { color: #B3453C; font-weight: 700; }

/* ═══════════════ LOCATION ═══════════════ */
.location {
  background:
    radial-gradient(ellipse 60% 70% at 90% 15%, rgba(200,155,138,.16), transparent 60%),
    radial-gradient(ellipse 55% 65% at 5% 95%, rgba(158,107,93,.24), transparent 62%),
    linear-gradient(140deg, #2B2320, #3C2F28 65%, #4A362E);
}
.location .sec-head { margin-bottom: 56px; }
.loc-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.loc-info { display: flex; flex-direction: column; gap: 8px; }
.loc-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.loc-ico {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--sand);
}
.loc-ico svg { width: 24px; height: 24px; }
.loc-row b { display: block; font-size: 14px; font-weight: 700; color: var(--sand); margin-bottom: 5px; letter-spacing: .04em; }
.loc-row p { font-size: 17px; color: rgba(255,255,255,.92); line-height: 1.75; }
.loc-row p small { font-size: 14px; color: rgba(255,255,255,.6); }
.loc-row a:hover { text-decoration: underline; }
.loc-maps { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.loc-maps a {
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  transition: .25s;
}
.loc-maps a:hover { background: var(--white); color: var(--brick-deep); border-color: var(--white); }

.loc-visual { display: flex; justify-content: center; }
.loc-pin-card {
  width: min(340px, 100%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(4px);
}
.loc-pin-card svg { width: 100%; height: auto; }
.loc-pin-card p { margin-top: 20px; text-align: center; color: var(--white); line-height: 1.5; }
.loc-pin-card p b { display: block; font-size: 19px; font-weight: 800; }
.loc-pin-card p span { font-size: 13.5px; color: rgba(255,255,255,.65); }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.75); padding: 60px 0; }
.footer-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .logo-mark { width: 44px; height: 44px; }
.footer-brand b { font-size: 19px; font-weight: 800; color: var(--white); }
.footer-brand em { font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: .16em; color: var(--sand); }
.footer-info { margin-left: auto; font-size: 14px; line-height: 2; }
.footer-info span { margin-right: 26px; }
.footer-info .copy { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ═══════════════ FLOATING ═══════════════ */
.floating {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 26px -8px rgba(60,55,51,.45);
  transition: transform .25s, opacity .3s;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn.tel { background: var(--brick); color: var(--white); }
.float-btn.top { background: var(--white); color: var(--brown-ink); border: 1px solid var(--line); opacity: 0; pointer-events: none; }
.float-btn.top.is-show { opacity: 1; pointer-events: auto; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .gnb { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-card { grid-template-columns: 300px 1fr; gap: 44px; padding: 44px; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .section { padding: 80px 0; }
  .hero { height: max(560px, 82vh); }
  .about-grid, .hours-grid, .loc-grid { grid-template-columns: 1fr; gap: 44px; }
  /* 모바일: 크림색 배경 전부 흰색으로 */
  .about, .services, .hours { background: var(--white); }
  .doctor-card, .ck-card, .checkup-note { background: var(--white); }
  .checkup-note { border: 1px solid var(--line); }
  .doctor-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .doctor-photo { max-width: 320px; margin: 0 auto; }
  .career-list, .society-list { grid-template-columns: 1fr; }
  .checkup-grid { grid-template-columns: 1fr; }
  .header-tel span { display: none; }
  .header-tel { padding: 11px 13px; }
  .footer-info { margin-left: 0; }
  .loc-visual { order: -1; }
  .loc-pin-card { width: min(300px, 100%); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title br { display: block; }
  .hero-content { padding-bottom: 70px; }
  .hero-controls { bottom: 22px; }
  .checkup-note { padding: 26px; }
  .hours-card { padding: 8px 26px; }
  .hrow { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 0; }
  .container { width: calc(100% - 40px); }
  .logo-text em { display: none; }
}
