:root {
  --cream: #f0f9ff;
  --cream2: #e0f2fe;
  --cream3: #bae6fd;
  --ivory: #ffffff;
  --forest: #075985;
  --forest2: #0c6ea8;
  --forest3: #1085c5;
  --gold: #0ea5e9;
  --gold2: #38bdf8;
  --gold-light: rgba(14,165,233,.12);
  --dark: #082f49;
  --dark2: rgba(8,47,73,.8);
  --dark3: rgba(8,47,73,.55);
  --line: rgba(8,47,73,.1);
  --line-g: rgba(14,165,233,.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--forest); }
body {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── SHARED LOGO CLASSES ── */
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; }
.footer-logo-img { width: 44px; height: 44px; object-fit: contain; display: block; margin-bottom: 16px; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity .9s, visibility .9s;
}
#loader.done { opacity: 0; visibility: hidden; }
html.loaded { background: var(--ivory); }
.ldr-logo { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.ldr-logo img { filter: brightness(0) invert(1); opacity: .9; }
.ldr-brand { font-size: 12px; font-weight: 400; letter-spacing: .28em; color: rgba(255,255,255,.65); text-transform: uppercase; }
.ldr-bar-w { width: 160px; height: 1px; background: rgba(255,255,255,.15); }
.ldr-bar { height: 100%; background: var(--gold2); width: 0; animation: ldrF 2s ease forwards; }
@keyframes ldrF { to { width: 100%; } }
.ldr-txt { font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.35); }
.ldr-dots { display: none; }
.ldr-dot { display: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 76px;
  transition: background .4s, box-shadow .4s, height .3s;
}
nav.s {
  background: rgba(244,248,253,.97);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); transition: filter .4s; }
nav.s .nav-logo img { filter: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.nav-logo-kr { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: .02em; transition: color .4s; }
.nav-logo-en { font-size: 10px; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .18em; text-transform: uppercase; transition: color .4s; }
nav.s .nav-logo-kr { color: var(--dark); }
nav.s .nav-logo-en { color: var(--dark3); }
.nav-links { display: flex; align-items: center; gap: 40px; margin-right: auto; margin-left: 48px; }
.nav-links a {
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,.82);
  letter-spacing: .04em; text-decoration: none; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 100%;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .4s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
nav.s .nav-links a { color: var(--dark2); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 24px; border: 1px solid rgba(255,255,255,.45); border-radius: 50px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  color: #fff; text-decoration: none; transition: all .3s;
}
.nav-cta:hover { background: rgba(255,255,255,.1); }
nav.s .nav-cta { border-color: var(--gold); color: var(--gold); }
nav.s .nav-cta:hover { background: var(--gold); color: #fff; }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); transition: background .3s; }
nav.s .nav-hamburger span { background: var(--dark); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000; background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 30px); color: rgba(255,255,255,.85);
  text-decoration: none; letter-spacing: .04em; transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold2); }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,.5); font-size: 30px; cursor: pointer; }

/* ── NAV ACTIVE ── */
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
nav.s .nav-links a.active { color: var(--gold); }

/* ── HERO ── */
.marquee-strip { display: none !important; }
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-slides-container { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s; border: none; padding: 0; }
.hero-dot.active { background: var(--gold); }
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--forest);
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,16,30,.38) 0%, rgba(8,16,30,.25) 45%, rgba(8,16,30,.7) 100%);
}
.hero-overlay2 { display: none; }
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 80px 80px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hero-left {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400; letter-spacing: .22em;
  color: rgba(255,255,255,.8); text-transform: uppercase; margin-bottom: 22px;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400; line-height: 1;
  color: #fff; letter-spacing: -.02em;
  margin-bottom: 28px;
  font-style: normal;
}
.hero-h1 em { font-style: normal; color: var(--gold2); }
.hero-sub {
  font-size: 15px; font-weight: 300; letter-spacing: .03em;
  color: rgba(255,255,255,.88); line-height: 2;
  max-width: 380px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 14px 36px; border-radius: 50px;
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
  text-decoration: none; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.88);
  padding: 14px 36px; border-radius: 50px;
  font-size: 13px; font-weight: 300; letter-spacing: .08em;
  text-decoration: none; transition: all .3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); }
.hero-right { text-align: right; }
.hero-stat { margin-bottom: 20px; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.42); text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.22); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--gold); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { to { top: 200%; } }

/* ── MARQUEE (unused) ── */
.marquee-strip { display: none; }
.marquee-track { display: inline-flex; animation: mq 28s linear infinite; }
.marquee-item { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400; letter-spacing: .12em; color: rgba(255,255,255,.7); padding: 0 40px; }
.marquee-dot { color: var(--gold); opacity: .7; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ── REVEAL ANIMATIONS ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }
.rv-left { opacity: 0; transform: translateX(-20px); transition: opacity .7s ease, transform .7s ease; }
.rv-left.on { opacity: 1; transform: none; }
.rv-right { opacity: 0; transform: translateX(20px); transition: opacity .7s ease, transform .7s ease; }
.rv-right.on { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ── SECTION COMMONS ── */
.sec-tag {
  display: none; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.sec-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300; line-height: 1.25; letter-spacing: -.02em;
}
.sec-title em { font-style: normal; color: var(--gold); }
.sec-body {
  font-size: 16px; font-weight: 300;
  line-height: 1.9; color: var(--dark2); max-width: 540px;
}

/* ── EMPATHY ── */
.empathy { background: var(--cream); overflow: hidden; }
.empathy::before { display: none; }
.empathy-hero {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 100px 40px 60px;
}
.empathy-deco { width: 40px; height: 1px; background: var(--dark3); margin: 0 auto 36px; opacity: 0; transform: scaleX(0); transition: opacity .8s, transform .8s; }
.empathy-deco.visible { opacity: 1; transform: scaleX(1); }
.empathy-main-quote {
  font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 400;
  color: var(--dark); line-height: 1.5; letter-spacing: -.02em; margin-bottom: 24px;
  opacity: 0; transform: translateY(22px); transition: opacity 1s, transform 1s;
}
.empathy-main-quote.visible { opacity: 1; transform: translateY(0); }
.empathy-main-quote em { font-style: normal; color: var(--forest); font-weight: 500; }
.empathy-sub {
  font-size: 16px; font-weight: 300; color: var(--dark3); line-height: 2; max-width: 500px;
  opacity: 0; transform: translateY(16px); transition: opacity .8s .3s, transform .8s .3s;
}
.empathy-sub.visible { opacity: 1; transform: translateY(0); }
.empathy-cards {
  padding: 48px 40px 60px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.empathy-bubble {
  background: #fff; border-radius: 14px;
  padding: 32px 36px 32px 48px;
  font-size: 16px; font-weight: 300; color: var(--dark2); line-height: 1.9;
  border: 1px solid var(--line); position: relative;
  opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s, box-shadow .3s;
}
.empathy-bubble.visible { opacity: 1; transform: translateY(0); }
.empathy-bubble:hover { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.empathy-bubble::before {
  content: '\201C'; position: absolute; top: 10px; left: 14px;
  font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--dark3); opacity: .22; line-height: 1;
}
.empathy-bubble::after { display: none; }
.empathy-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 48px 40px 16px; opacity: 0; transition: opacity .8s;
}
.empathy-divider.visible { opacity: 1; }
.empathy-divider::before, .empathy-divider::after { content: ''; flex: 1; max-width: 160px; height: 1px; background: var(--line); }
.empathy-divider-icon { width: 6px; height: 6px; border-radius: 50%; background: var(--dark3); opacity: .28; }
.empathy-conclusion { padding: 32px 40px 120px; text-align: center; opacity: 0; transition: opacity .8s; }
.empathy-conclusion.visible { opacity: 1; }
.empathy-conclusion-text {
  font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 400;
  color: var(--dark); line-height: 1.85; max-width: 640px; margin: 0 auto;
  opacity: 0; transform: translateY(18px); transition: opacity .8s .2s, transform .8s .2s;
}
.empathy-conclusion.visible .empathy-conclusion-text { opacity: 1; transform: translateY(0); }
.empathy-conclusion-text em { font-style: normal; color: var(--forest); font-weight: 500; }
.empathy-conclusion-tag {
  display: inline-block; margin-top: 24px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark3); font-weight: 400;
  opacity: 0; transform: translateY(14px); transition: opacity .8s .5s, transform .8s .5s;
}
.empathy-conclusion.visible .empathy-conclusion-tag { opacity: 1; transform: translateY(0); }

/* ── REGEN ── */
.regen { background: var(--cream); padding: 60px 80px 120px; overflow: hidden; }
.regen::before { display: none; }
.regen-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.regen-label, .regen-headline, .regen-sub, .regen-divider { display: none !important; }
.regen-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; text-align: left; }
.regen-card {
  background: var(--forest); border-radius: 20px; padding: 48px 44px; position: relative;
  border: none;
  opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s, box-shadow .3s;
  overflow: hidden;
}
.regen-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.regen-card::after { content: ''; position: absolute; bottom: -60px; right: -20px; width: 220px; height: 220px; border-radius: 50%; background: rgba(26,111,184,.12); pointer-events: none; }
.regen-card:hover { box-shadow: 0 16px 48px rgba(12,35,64,.35); transform: translateY(-4px); }
.regen-card.visible { opacity: 1; transform: translateY(0); }
.regen-card-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: #fff; opacity: .12; line-height: 1; margin-bottom: 20px; }
.regen-card p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 2.1; }
.regen-card em { font-style: normal; color: var(--gold2); font-weight: 400; }
.regen-cta {
  background: linear-gradient(135deg, var(--forest2) 0%, var(--forest) 60%, #0a1e38 100%);
  border-radius: 16px; padding: 56px 44px; text-align: center; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(18px); transition: opacity .8s .2s, transform .8s .2s;
  border: 1px solid rgba(255,255,255,.06);
}
.regen-cta::before { content: ''; position: absolute; top: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(52,152,219,.15) 0%, transparent 70%); pointer-events: none; }
.regen-cta::after { content: ''; position: absolute; bottom: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(26,111,184,.1) 0%, transparent 70%); pointer-events: none; }
.regen-cta.visible { opacity: 1; transform: translateY(0); }
.regen-cta-text { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; color: #fff; line-height: 1.75; }
.regen-cta-text em { font-style: normal; color: var(--gold2); font-weight: 400; }
.regen-cta-line { width: 36px; height: 1px; background: var(--gold2); margin: 20px auto 0; opacity: .4; }

/* ── ORIGIN ── */
.origin { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 120px 80px; }
.origin-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.origin-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,16,30,.5) 0%, rgba(8,16,30,.68) 50%, rgba(8,16,30,.9) 100%); z-index: 1; }
.origin-content { position: relative; z-index: 2; text-align: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.origin-big { font-family: 'Cormorant Garamond', serif; font-size: clamp(60px, 11vw, 152px); font-weight: 300; color: rgba(255,255,255,.06); line-height: .95; margin-bottom: -20px; letter-spacing: -.02em; pointer-events: none; user-select: none; }
.origin-label { font-size: 12px; letter-spacing: .3em; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 16px; }
.origin-quote { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(20px, 2.8vw, 32px); font-weight: 400; color: rgba(255,255,255,.86); line-height: 1.65; margin-bottom: 64px; }
.origin-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.origin-card { border-radius: 12px; overflow: hidden; background: rgba(8,16,30,.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.08); transition: transform .3s, border-color .3s; }
.origin-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.15); }
.origin-card-img { height: 200px; background-size: cover; background-position: center; background-color: rgba(255,255,255,.04); }
.origin-card-body { padding: 28px 24px; text-align: center; }
.origin-card-label { font-size: 10px; letter-spacing: .28em; color: var(--gold2); text-transform: uppercase; display: block; margin-bottom: 8px; }
.origin-card-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 2.8vw, 36px); font-weight: 500; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.origin-card-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }

/* ── ORIGIN HERO ── */
.origin-hero { min-height: 100vh; padding-top: 120px; padding-bottom: 120px; align-items: center; }
.origin-hero .origin-big { font-size: clamp(64px, 12vw, 160px); margin-bottom: 20px; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .04em; font-weight: 400; }
.origin-hero .origin-label { margin-bottom: 20px; font-size: 13px; letter-spacing: .35em; }
.origin-hero .origin-quote { margin-bottom: 72px; }
.origin-hero .origin-overlay { background: linear-gradient(180deg, rgba(8,16,30,.44) 0%, rgba(8,16,30,.6) 40%, rgba(8,16,30,.88) 100%); }
.origin-hero .hero-scroll { position: absolute; bottom: 28px; right: 44px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; }
.origin-hero .hero-scroll span { font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.3); text-transform: uppercase; }
.origin-hero .hero-scroll .hero-scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ── DIFF ── */
.diff { background: var(--forest); padding: 80px 80px 120px; overflow: hidden; }
.diff-inner { max-width: 1100px; margin: 0 auto; }
.diff-header { margin-bottom: 64px; opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.diff-header.visible { opacity: 1; transform: translateY(0); }
.diff-label { font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 14px; }
.diff-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; color: #fff; line-height: 1.4; margin-bottom: 16px; }
.diff-title em { font-style: normal; color: var(--gold2); }
.diff-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.9; max-width: 600px; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.diff-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  padding: 64px 36px 44px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s, background .3s;
}
.diff-card.visible { opacity: 1; transform: translateY(0); }
.diff-card:hover { background: rgba(255,255,255,.07); }
.diff-card-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: rgba(255,255,255,.2); position: absolute; top: 18px; left: 24px; line-height: 1; }
.diff-card-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(18px, 1.8vw, 24px); font-weight: 500; color: #fff; margin-bottom: 12px; line-height: 1.4; }
.diff-card-title em { font-style: normal; color: var(--gold2); }
.diff-card-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.9; margin-bottom: 20px; }
.diff-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.diff-card-tag { font-size: 13px; letter-spacing: .06em; color: #fff; padding: 6px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; }
.diff-card-tag:hover { }

/* ── INTRO ── */
.intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.intro-left { background: var(--forest); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.intro-left .sec-tag { color: var(--gold2); display: flex; }
.intro-left .sec-tag::before { background: var(--gold2); }
.intro-left .sec-title { color: #fff; }
.intro-left .sec-title em { font-style: normal; color: var(--gold2); }
.intro-quote {
  font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 300;
  color: rgba(255,255,255,.7); line-height: 1.85;
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.intro-right { position: relative; overflow: hidden; }
.intro-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.intro-right:hover img { transform: scale(1.03); }
.intro-right-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,35,64,.22) 0%, transparent 50%); }

/* ── DOCTORS ── */
.doctors { background: #eef4fb; padding: 100px 0; overflow: hidden; }
.doctors-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.doctors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.doctor-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: transform .4s, box-shadow .4s; }
.doctor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.doctor-img-wrap { width: 100%; height: 500px; overflow: hidden; background: linear-gradient(160deg, #dde8f5, #c8d8ea); }
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(.8); transition: filter .6s; }
.doctor-card:hover .doctor-img-wrap img { filter: grayscale(.1); }
.doctor-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.doctor-img-placeholder svg { width: 72px; height: 72px; stroke: rgba(0,0,0,.1); fill: none; stroke-width: 1; }
.doctor-img-placeholder span { font-size: 11px; letter-spacing: .18em; color: rgba(0,0,0,.2); text-transform: uppercase; }
.doctor-card-body { padding: 32px; text-align: center; }
.doctor-card-name { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 24px; font-weight: 400; color: var(--dark); letter-spacing: .08em; margin-bottom: 8px; }
.doctor-card-role { font-size: 13px; color: var(--dark3); letter-spacing: .04em; }
.doctors-center { text-align: center; }
.doctors-label { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; letter-spacing: .3em; color: var(--dark3); margin-bottom: 24px; }
.doctors-names { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(24px, 3vw, 40px); font-weight: 400; color: var(--dark); letter-spacing: .14em; margin-bottom: 28px; line-height: 1.3; }
.doctors-names span { font-weight: 300; margin: 0 6px; font-size: .6em; vertical-align: middle; letter-spacing: 0; }
.doctors-desc { font-size: 14px; font-weight: 300; color: var(--dark2); line-height: 2.1; max-width: 560px; margin: 0 auto 40px; }
.doctors-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; border: 1px solid var(--dark); border-radius: 50px; font-size: 13px; letter-spacing: .06em; color: var(--dark); text-decoration: none; transition: all .3s; }
.doctors-btn:hover { background: var(--dark); color: #fff; }
.doctors-btn-text {}
.doctors-btn-arrow { font-size: 16px; transition: transform .25s; }
.doctors-btn:hover .doctors-btn-arrow { transform: translateX(4px); }

/* ── CELLORIGIN ── */
.cellorigin { background: var(--cream); padding: 120px 80px; position: relative; overflow: hidden; }
.cellorigin::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent); }
.cellorigin-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.cellorigin-header { text-align: center; margin-bottom: 72px; }
.cellorigin-label { font-size: 11px; letter-spacing: .28em; color: var(--dark3); text-transform: uppercase; margin-bottom: 16px; }
.cellorigin-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 300; color: var(--dark); line-height: 1.5; }
.cellorigin-title em { font-style: normal; color: var(--forest); }
.cellorigin-row { display: flex; flex-direction: column; }
.cellorigin-card { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.cellorigin-card:last-child { border-bottom: none; }
.cellorigin-visual { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cellorigin-img { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.07); border: 2px solid rgba(26,111,184,.2); }
.cellorigin-img img { width: 100%; height: 100%; object-fit: cover; }
.cellorigin-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #dde8f5, #c8d8ea); }
.cellorigin-img-placeholder span { font-size: 11px; color: rgba(0,0,0,.2); }
.cellorigin-card-label { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; letter-spacing: .18em; color: var(--gold); text-align: center; }
.cellorigin-info { display: flex; flex-direction: column; gap: 20px; }
.cellorigin-card-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(20px, 2.2vw, 28px); font-weight: 400; color: var(--dark); line-height: 1.35; }
.cellorigin-card-title em { font-style: normal; color: var(--forest); }
.cellorigin-group { display: flex; flex-direction: column; gap: 8px; }
.cellorigin-group-label { font-size: 10px; font-weight: 500; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.cellorigin-group-items { display: flex; flex-wrap: wrap; gap: 8px; }
.cellorigin-pill { font-size: 12px; color: var(--dark2); padding: 6px 16px; background: rgba(12,35,64,.04); border: 1px solid var(--line); border-radius: 50px; transition: all .25s; }
.cellorigin-pill:hover { background: rgba(12,35,64,.08); }

/* ── PROGRAMS ── */
.programs { background: var(--forest); padding: 120px 80px 80px; overflow: hidden; }
.programs-header { max-width: 1100px; margin: 0 auto 72px; }
.programs-link { display: none; }
.programs-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: #fff; line-height: 1.4; text-align: center; letter-spacing: -.02em; }
.programs-title em { font-style: normal; color: var(--gold2); }
.programs-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; }
.prog-card { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 36px; border-bottom: 1px solid rgba(255,255,255,.07); padding: 56px 0; align-items: center; }
.prog-card:first-child { padding-top: 0; }
.prog-card:last-child { border-bottom: none; }
.prog-card::before { display: none; }
.prog-img { width: 180px; height: 220px; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; background-color: rgba(255,255,255,.05); transition: transform .4s; }
.prog-card:hover .prog-img { transform: scale(1.02); }
.prog-content { display: flex; flex-direction: column; padding-top: 4px; }
.prog-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 12px; }
.prog-icon { display: none; }
.prog-tag { font-size: 10px; letter-spacing: .22em; color: var(--gold2); text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.prog-name { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; color: #fff; line-height: 1.3; position: relative; display: inline-block; }
.prog-name::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 1px; background: var(--gold2); transform: scaleX(0); transform-origin: right; transition: transform .4s; }
.prog-card:hover .prog-name::after { transform: scaleX(1); transform-origin: left; }
.prog-desc { font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,.5); padding-left: 28px; border-left: 1px solid rgba(255,255,255,.1); }
.prog-arrow { display: none; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--cream2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 64px 80px; display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { padding: 0 44px; border-right: 1px solid var(--line); text-align: center; }
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 4.5vw, 64px); font-weight: 300; color: var(--dark); line-height: 1; letter-spacing: -.02em; }
.stat-num span { font-size: .5em; color: var(--gold); }
.stat-label { font-size: 12px; letter-spacing: .1em; color: var(--dark3); text-transform: uppercase; margin-top: 8px; }

/* ── TRUST ── */
.trust { background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; overflow: hidden; }
.trust-slider { position: relative; overflow: hidden; min-height: 680px; }
.trust-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.trust-slide.active { opacity: 1; }
.trust-slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.trust-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s; }
.trust-slider-dot.active { background: var(--gold); }
.trust-right { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.trust-header { margin-bottom: 40px; }
.trust-header .sec-tag { color: var(--gold2); display: flex; }
.trust-header .sec-tag::before { background: var(--gold2); }
.trust-header .sec-title { color: #fff; font-size: clamp(28px, 3.2vw, 44px); }
.trust-header .sec-title em { font-style: normal; color: var(--gold2); }
.trust-desc { font-size: 14px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.45); margin-top: 14px; }
.trust-list { display: flex; flex-direction: column; }
.trust-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; gap: 18px; align-items: flex-start; transition: padding-left .25s; }
.trust-item:last-child { border-bottom: none; }
.trust-item:hover { padding-left: 6px; }
.trust-item-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--gold2); line-height: 1; min-width: 28px; opacity: .5; }
.trust-item-text {}
.trust-item-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); margin-bottom: 5px; }
.trust-item-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.4); }

/* ── PRP ── */
.prp { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.prp-img-col { position: relative; overflow: hidden; }
.prp-img-col img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s; }
.prp-img-col:hover img { transform: scale(1.03); }
.prp-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,35,64,.2) 0%, transparent 50%); }
.prp-right { background: var(--forest); padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.prp-right .sec-tag { color: var(--gold2); display: flex; }
.prp-right .sec-tag::before { background: var(--gold2); }
.prp-right .sec-title { color: #fff; }
.prp-right .sec-title em { font-style: normal; color: var(--gold2); }
.prp-body { font-size: 15px; font-weight: 300; line-height: 2; color: rgba(255,255,255,.7); margin-top: 24px; margin-bottom: 36px; max-width: 460px; }
.prp-features { display: flex; flex-direction: column; gap: 12px; }
.prp-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.85); }
.prp-feat::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold2); flex-shrink: 0; }

/* ── CELL BANKING ── */
.cell-banking { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.cell-bg { position: absolute; inset: 0; background-color: var(--forest); background-size: cover; background-position: center; }
.cell-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,35,64,.92) 55%, rgba(12,35,64,.55) 100%); }
.cell-content { position: relative; z-index: 2; padding: 100px 80px; max-width: 660px; margin: 0 auto; text-align: center; }
.cell-content .sec-tag { color: var(--gold2); display: flex; justify-content: center; }
.cell-content .sec-tag::before { background: var(--gold2); }
.cell-content .sec-title { color: #fff; }
.cell-content .sec-title em { font-style: normal; color: var(--gold2); }
.cell-body { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.65); margin-top: 24px; margin-bottom: 40px; }
.cell-features { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-bottom: 40px; }
.cell-feat { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 300; color: rgba(255,255,255,.78); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; max-width: 400px; transition: padding-left .25s; }
.cell-feat:hover { padding-left: 6px; }
.cell-feat::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold2); }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid var(--gold2); color: var(--gold2); padding: 16px 40px; border-radius: 50px; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-decoration: none; cursor: pointer; transition: all .3s; }
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── FACILITY ── */
.facility { background: var(--cream); padding: 100px 80px; }
.facility-inner { max-width: 1180px; margin: 0 auto; }
.facility-header { text-align: center; margin-bottom: 56px; }
.facility-label { font-family: 'Cormorant Garamond', serif; font-size: 12px; font-style: italic; letter-spacing: .28em; color: var(--dark3); text-transform: uppercase; margin-bottom: 16px; }
.facility-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 300; color: var(--dark); line-height: 1.4; }
.facility-title em { font-style: normal; color: var(--forest); }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.facility-item { position: relative; overflow: hidden; border-radius: 12px; }
.facility-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; background: var(--cream2); }
.facility-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.facility-item:hover .facility-img img { transform: scale(1.04); }
.facility-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #dde8f5 0%, #c8d8ea 100%); border-radius: 12px; }
.facility-placeholder span { font-size: 13px; color: rgba(0,0,0,.2); }
.facility-caption { font-size: 13px; color: var(--dark3); letter-spacing: .04em; margin-top: 12px; text-align: center; }

/* ── PROCESS ── */
.process { background: #fff; padding: 120px 80px; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .sec-body { margin: 0 auto; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(6,1fr); position: relative; max-width: 1180px; margin: 0 auto; }
.process-steps::before { content: ''; display: block; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: linear-gradient(to right, transparent, var(--line), transparent); z-index: 0; }
.step { background: transparent; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step:hover .step-num { }
.step-circle { display: none; }
.step-head { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.step-num { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--forest); background: rgba(12,35,64,.04); border: 1px solid rgba(12,35,64,.12); transition: all .3s; line-height: 1; }
.step-icon { display: none; }
.step-arrow { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--dark3); opacity: .25; }
.step:last-child .step-arrow { display: none; }
.step-title { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.step-desc { font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--dark3); }

/* ── DOCTOR (single) ── */
.doctor { background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.doctor-left { position: relative; overflow: hidden; background: var(--forest2); display: flex; align-items: center; justify-content: center; }
.doctor-img-placeholder { width: 100%; height: 100%; min-height: 600px; background: linear-gradient(160deg, var(--forest2) 0%, var(--forest) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.doctor-img-placeholder svg { width: 72px; height: 72px; stroke: rgba(255,255,255,.12); fill: none; stroke-width: 1; }
.doctor-img-note { font-size: 12px; letter-spacing: .18em; color: rgba(255,255,255,.18); text-transform: uppercase; }
.doctor-right { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.doctor-right .sec-tag { color: var(--gold2); display: flex; }
.doctor-right .sec-tag::before { background: var(--gold2); }
.doctor-right .sec-title { color: #fff; }
.doctor-name { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; color: #fff; letter-spacing: -.01em; margin-top: 20px; }
.doctor-name em { display: block; font-size: .65em; font-style: normal; color: var(--gold2); font-weight: 400; margin-bottom: 6px; }
.doctor-credentials { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.doctor-cred { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.7; }
.doctor-cred::before { content: '—'; flex-shrink: 0; color: var(--gold2); font-family: 'Cormorant Garamond', serif; }
.doctor-philosophy { margin-top: 40px; padding: 28px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.doctor-philosophy p { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 17px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.9; }

/* ── CONTACT ── */
.contact { background: var(--cream2); padding: 120px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left {}
.contact-left .sec-tag { font-size: 12px; }
.contact-left .sec-title { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 24px; }
.contact-left .sec-body { margin-bottom: 48px; }
.contact-infos { display: flex; flex-direction: column; gap: 24px; }
.c-info { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--line); transition: all .3s; }
.c-info:last-child { border-bottom: none; padding-bottom: 0; }
.c-info-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(26,111,184,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.c-info:hover .c-info-icon { border-color: var(--gold); background: rgba(26,111,184,.06); }
.c-info-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.c-info-label { font-size: 11px; letter-spacing: .18em; color: var(--dark3); text-transform: uppercase; margin-bottom: 4px; }
.c-info-val { font-size: 17px; font-weight: 500; color: var(--dark); }
.c-info-sub { font-size: 14px; font-weight: 300; color: var(--dark2); margin-top: 4px; line-height: 1.75; }
.contact-right {}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 0;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  font-family: 'Noto Sans KR', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--dark); outline: none; transition: border-color .3s; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,.22); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-size: 11px; letter-spacing: .18em; color: var(--dark3); text-transform: uppercase; display: block; margin-bottom: 6px; }
.form-submit { width: 100%; padding: 18px; background: var(--forest); color: #fff; font-family: 'Noto Sans KR', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--forest); cursor: pointer; border-radius: 50px; transition: background .3s, border-color .3s; }
.form-submit:hover { background: var(--gold); border-color: var(--gold); }
.form-privacy { font-size: 12px; font-weight: 300; color: var(--dark3); line-height: 1.75; }

/* ── FOOTER ── */
footer { background: #000; padding: 72px 80px 36px; }
.ft-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ft-brand img { width: 32px; height: 32px; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .7; }
.ft-brand-kr { font-size: 17px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.ft-brand-en { font-size: 10px; letter-spacing: .22em; color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 20px; }
.ft-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.9; text-align: center; max-width: 460px; }
.ft-bot { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 20px; }
.ft-bot p, .ft-bot a { font-size: 11px; color: rgba(255,255,255,.2); text-decoration: none; }
.ft-bot a:hover { color: rgba(255,255,255,.45); }

/* ── FLOATING BUTTONS ── */
.sf { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; z-index: 500; }
.sf-group { display: flex; flex-direction: column; background: #fff; border-radius: 18px; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 4px 20px rgba(0,0,0,.12); overflow: hidden; }
.sf-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 80px; padding: 14px 8px 12px; background: transparent; color: var(--dark); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.06); transition: background .2s; gap: 6px; }
.sf-btn:last-child { border-bottom: none; }
.sf-btn:hover { background: var(--cream); }
.sf-btn-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.sf-btn-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.sf-btn-label { font-size: 10px; font-weight: 600; color: var(--dark); letter-spacing: -.01em; text-align: center; }
.sf-up { width: 80px; padding: 12px 8px 10px; background: var(--gold); border: none; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; border-radius: 18px; box-shadow: 0 3px 14px rgba(26,111,184,.3); transition: background .25s; gap: 4px; margin-top: 8px; }
.sf-up svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.sf-up-label { font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .06em; }
.sf-up:hover { background: var(--forest); }

/* ── HOURS TABLE ── */
.hours-grid { display: flex; flex-direction: column; background: #fff; border-radius: 8px; overflow: hidden; margin-top: 14px; border: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { opacity: .4; }
.hours-day { font-weight: 600; color: var(--dark); min-width: 90px; }
.hours-time { color: var(--dark); font-weight: 400; font-size: 14px; }
.hours-badge { font-size: 10px; letter-spacing: .06em; color: var(--gold); background: var(--gold-light); padding: 3px 10px; border-radius: 20px; font-weight: 500; }

/* ── NAV DROPDOWN ── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-wrap > a::after { content: '▾'; font-size: 9px; opacity: .45; transition: transform .3s; }
.nav-dropdown-wrap:hover > a::after { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: 50%; min-width: 220px; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px); transition: opacity .25s, transform .25s, visibility .25s; z-index: 100; box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.nav-dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 9px 22px; font-size: 13px; color: #222 !important; text-decoration: none; transition: all .2s; white-space: nowrap; }
.nav-dropdown a:hover { color: var(--forest) !important; background: rgba(12,35,64,.04); padding-left: 26px; }

/* ── MEDIA ── */
@media(max-width:1100px) {
  nav { padding: 0 40px; }
  .hero-content { padding: 0 40px 60px; }
  .intro-left { padding: 80px 48px; }
  .programs { padding: 80px 48px; }
  .stats-band { padding: 48px; }
  .cell-content { padding: 80px 48px; }
  .process { padding: 80px 48px; }
  .doctor-right { padding: 80px 48px; }
  .contact { padding: 80px 48px; gap: 56px; }
  footer { padding: 48px 48px 28px; }
  .regen { padding: 60px 48px 100px; }
  .diff { padding: 60px 48px 100px; }
  .origin { padding: 80px 48px; }
  .prp-right { padding: 80px 48px; }
  .trust-right { padding: 72px 48px; }
}
@media(max-width:900px) {
  .origin-cards { grid-template-columns: 1fr 1fr; }
  .origin-cards .origin-card:last-child { grid-column: 1/-1; max-width: 50%; margin: 0 auto; }
  .intro { grid-template-columns: 1fr; }
  .intro-right { min-height: 380px; }
  .prog-card { grid-template-columns: 160px 1fr; gap: 20px; }
  .prog-desc { grid-column: 1 / -1; }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item { border-right: none; text-align: center !important; padding: 0 !important; }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .doctor { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .trust { grid-template-columns: 1fr; min-height: auto; }
  .trust-slider { min-height: 420px; }
  .trust-right { padding: 56px 40px; }
  .prp { grid-template-columns: 1fr; }
  .prp-right { padding: 56px 40px; }
  .prp-img-col { min-height: 320px; }
  .doctors { padding: 60px 0; }
  .doctors-inner { padding: 0 32px; }
  .doctors-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .doctor-img-wrap { height: 400px; }
}
@media(max-width:600px) {
  nav { padding: 0 20px; }
  .regen { padding: 48px 24px 80px; }
  .diff { padding: 48px 24px 80px; }
  .origin { padding: 60px 24px; min-height: auto; }
  .origin-cards { grid-template-columns: 1fr; }
  .origin-cards .origin-card:last-child { max-width: 100%; grid-column: auto; }
  .origin-big { font-size: clamp(44px, 14vw, 72px); }
  .origin-quote { margin-bottom: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 48px; flex-direction: column; gap: 24px; }
  .hero-right { text-align: left; }
  .programs { padding: 60px 24px 80px; }
  .prog-card { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .prog-img { width: 100%; height: 160px; }
  .prog-desc { padding-left: 0; border-left: none; grid-column: auto; }
  .regen-body { grid-template-columns: 1fr; }
  .regen-card { padding: 36px 28px; }
  .contact { padding: 56px 24px; }
  footer { padding: 40px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .cell-content { padding: 56px 24px; }
  .process { padding: 56px 24px; }
  .process-steps { grid-template-columns: repeat(2,1fr); row-gap: 28px; }
  .process-steps::before { display: none; }
  .step-arrow { display: none !important; }
  .doctor-right { padding: 56px 24px; }
  .stats-band { padding: 40px 24px; }
  .trust-slider { min-height: 300px; }
  .trust-right { padding: 40px 24px; }
  .prp-right { padding: 40px 24px; }
  .sf { right: 0; left: 0; top: auto; bottom: 0; transform: none; flex-direction: row; padding: 0; }
  .sf-group { flex-direction: row; border-radius: 0; border: none; border-top: 1px solid rgba(0,0,0,.08); box-shadow: 0 -2px 16px rgba(0,0,0,.08); width: 100%; }
  .sf-btn { flex: 1; width: auto; padding: 10px 4px 8px; border-bottom: none; border-right: 1px solid rgba(0,0,0,.05); gap: 4px; }
  .sf-btn:last-child { border-right: none; }
  .sf-btn-icon svg { width: 20px; height: 20px; }
  .sf-btn-label { font-size: 9px; }
  .sf-up { display: none; }
  .facility { padding: 60px 24px; }
  .facility-grid { grid-template-columns: 1fr; gap: 16px; }
  .doctors { padding: 48px 0; }
  .doctors-inner { padding: 0 20px; }
  .doctors-grid { grid-template-columns: 1fr; gap: 20px; }
  .doctor-img-wrap { height: 360px; }
  .cellorigin { padding: 60px 24px; }
  .cellorigin::before { display: none; }
  .cellorigin-card { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .cellorigin-info { align-items: center; }
  .cellorigin-group-items { justify-content: center; }
  .cellorigin-img { width: 140px; height: 140px; }
  .nav-dropdown-wrap:hover .nav-dropdown { display: none; }
}

/* ── CASE STUDY: PAGE HERO IMAGE ── */
.cs-page-hero-img { display:none; width:100%; overflow:hidden; }
.cs-page-hero-img img { width:100%; height:480px; object-fit:cover; display:block; }
@media(max-width:900px){ .cs-page-hero-img img { height:260px; } }

/* ── CASE STUDY: Q&A SECTION ── */
.cs-qa { padding:60px 80px; background:#fff; }
.cs-qa-inner { max-width:860px; margin:0 auto; }
.cs-qa-header { text-align:center; margin-bottom:48px; }
.cs-qa-item { border-bottom:1px solid var(--line); padding:36px 0; }
.cs-qa-item:first-child { padding-top:0; }
.cs-qa-item:last-child { border-bottom:none; padding-bottom:0; }
.cs-qa-q { display:flex; gap:20px; align-items:flex-start; margin-bottom:16px; }
.cs-qa-badge { width:36px; height:36px; background:var(--dark); color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700; font-family:'Lato',sans-serif; flex-shrink:0; border-radius:4px; }
.cs-qa-q-text { font-size:17px; font-weight:600; color:var(--dark); line-height:1.55; font-family:'Noto Sans KR',sans-serif; padding-top:5px; }
.cs-qa-a { padding-left:56px; font-size:15px; color:var(--dark2); line-height:2; }
.cs-qa-a a { color:var(--gold); text-decoration:none; border-bottom:1px solid rgba(14,165,233,.3); }
.cs-qa-a a:hover { border-color:var(--gold); }
@media(max-width:900px){
  .cs-qa { padding:48px 24px; }
  .cs-qa-a { padding-left:0; margin-top:12px; }
}

/* ── COMMON CTA SECTION ── */
.common-cta{padding:80px 40px;background:var(--forest);text-align:center;}
.common-cta-inner{max-width:700px;margin:0 auto;}
.common-cta-title{font-family:'Cormorant Garamond','Noto Serif KR',serif;font-size:clamp(24px,3.5vw,36px);font-weight:300;color:#fff;line-height:1.5;margin-bottom:12px;}
.common-cta-title em{font-style:normal;color:var(--gold2);}
.common-cta-sub{font-size:14px;color:rgba(255,255,255,.55);margin-bottom:32px;}
.common-cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.common-cta-btn-phone{padding:14px 32px;background:#fff;color:var(--forest);border-radius:8px;text-decoration:none;font-size:14px;font-weight:600;}
.common-cta-btn-kakao{padding:14px 32px;background:#FEE500;color:#3C1E1E;border-radius:8px;text-decoration:none;font-size:14px;font-weight:600;}
.common-cta-btn-form{padding:14px 32px;background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.6);border-radius:8px;text-decoration:none;font-size:14px;font-weight:500;}
.common-cta-btn-phone:hover{background:var(--cream);}
.common-cta-btn-kakao:hover{background:#f5da00;}
.common-cta-btn-form:hover{border-color:#fff;}
/* origin CTA buttons (light bg) */
.origin-cta-btns{display:flex;gap:12px;margin-top:28px;justify-content:center;flex-wrap:wrap;}
.origin-cta-btn-phone{padding:12px 28px;background:var(--forest);color:#fff;border-radius:8px;text-decoration:none;font-size:14px;font-weight:500;}
.origin-cta-btn-kakao{padding:12px 28px;background:#FEE500;color:#3C1E1E;border-radius:8px;text-decoration:none;font-size:14px;font-weight:500;}
.origin-cta-btn-form{padding:12px 28px;background:transparent;color:var(--forest);border:1px solid var(--forest);border-radius:8px;text-decoration:none;font-size:14px;font-weight:500;}

/* ── INLINE STYLE → CLASS 변환 ── */
.nav-logo-img{width:38px;height:38px;object-fit:contain;}
.footer-logo-img{width:44px;height:44px;object-fit:contain;display:block;margin-bottom:16px;}
.ldr-logo-img{width:88px;height:88px;object-fit:contain;}
.blog-figure[data-cms-img]{display:none;max-width:100%;margin:0;}
.blog-figure[data-cms-img] img{width:100%;max-height:480px;object-fit:cover;}
.cms-cover-img{width:100%;height:100%;object-fit:cover;display:block;}
.cms-doctor-img{width:100%;height:100%;object-fit:cover;object-position:top center;filter:grayscale(1);transition:filter .6s ease;}
.cms-cell-img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.tab-btn{text-decoration:none;}
.cases-section-title{text-align:center;font-family:'Noto Sans KR',sans-serif;font-size:15px;font-weight:500;color:var(--forest);letter-spacing:.05em;margin-bottom:16px;}
.doctor-cms-img{display:none;}
.regen-cert-cms{display:none;}
.origin-form-label{font-family:'Cormorant Garamond','Noto Sans KR',sans-serif;font-size:13px;letter-spacing:.1em;color:var(--dark3);text-transform:uppercase;margin-bottom:32px;}
.origin-sec-title-center{text-align:center;}
