/* LINK PS · Quiet Luxe Global Stylesheet */
:root {
  --bg: #ffffff;
  --bg-2: #f5f3ef;
  --ink: #0a0a0a;
  --ink-2: #404040;
  --ink-3: #8a8a8a;
  --ink-4: #c4c4c4;
  --line: #e8e6e0;
  --accent: #6b4f2b;
  --gold: #c9a572;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', sans-serif;
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--bg); }

/* Visually hidden for SR/SEO */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== SPLASH SCREEN ===== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  opacity: 1;
  transition: opacity .5s ease;
  pointer-events: none;
}
#splash.is-out { opacity: 0; }
.splash-logo {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 300; letter-spacing: -0.02em; color: #111;
}
.splash-logo strong { font-weight: 600; color: var(--gold); }
.splash-sub {
  font-size: 11px; letter-spacing: 0.36em; color: rgba(0,0,0,0.45);
  text-transform: uppercase; font-weight: 500;
}
.splash-bar {
  width: 56px; height: 1px; background: rgba(0,0,0,0.15);
  margin-top: 8px; overflow: hidden; position: relative;
}
.splash-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: splashFill 1.5s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes splashFill {
  to { transform: translateX(0); }
}

/* REVEAL */
.r { opacity: 0; transform: translateY(28px); transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.r.in { opacity: 1; transform: translateY(0); }
.r.d2 { transition-delay: 0.1s; }
.r.d3 { transition-delay: 0.2s; }
.r.d4 { transition-delay: 0.3s; }
.r.d5 { transition-delay: 0.4s; }

/* ===== NAV (Riftshot floating-pill style, PC) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px clamp(16px, 4vw, 32px) 0;
  transition: padding .5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.nav.scrolled { padding-top: 12px; }
.nav-inner {
  max-width: 1640px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  height: 68px; padding: 0 56px 0 40px;
  border-radius: 999px;
  background: transparent;
  transition: max-width .5s cubic-bezier(0.16,1,0.3,1), height .5s cubic-bezier(0.16,1,0.3,1), padding .5s cubic-bezier(0.16,1,0.3,1), background .4s, backdrop-filter .4s, box-shadow .4s, border .4s;
  border: 1px solid transparent;
  pointer-events: auto;
}
.nav.scrolled .nav-inner, .nav:hover .nav-inner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.nav.scrolled .nav-inner {
  max-width: 1320px;
  height: 60px;
  padding: 0 48px 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 10; }
.nav-logo a { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); transition: filter .4s, height .4s; }
.nav.scrolled .nav-logo img { height: 30px; filter: brightness(0); }
.nav:hover .nav-logo img { filter: brightness(0); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
  margin: 0 0 0 auto; padding: 0;
  align-items: center;
  white-space: nowrap;
}
.nav-links > li { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.nav-links > li > a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.95);
  text-decoration: none; text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: color .3s, text-shadow .3s;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center;
  padding: 24px 0;
  white-space: nowrap;
}
.nav.scrolled .nav-links > li > a, .nav:hover .nav-links > li > a { color: var(--ink-2); text-shadow: none; }
.nav-links > li > a:hover { color: var(--gold) !important; }

.nav-cta-wrap { display: flex; align-items: center; gap: 8px; z-index: 10; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  background: #fff; color: var(--ink); text-decoration: none;
  transition: background .3s, color .3s, transform .3s;
  border: 1px solid rgba(255,255,255,0.6);
}
.nav-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.nav.scrolled .nav-cta, .nav:hover .nav-cta {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.nav.scrolled .nav-cta:hover, .nav:hover .nav-cta:hover { background: var(--gold); border-color: var(--gold); }

.nav-panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translate(-50%, -6px);
  min-width: 560px; max-width: calc(100vw - 80px);
  background: rgba(255,255,255,0.98); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
}
/* Right-edge items (가슴·바디, 쁘띠, 레이저·에너지): all three panels drop at SAME position
   = nav-inner right edge. Achieved by removing position:relative from these li so panels
   anchor to nav-inner (the nearest positioned ancestor) instead of their own li. */
.nav-links > li:nth-last-child(-n+3) { position: static; }
.nav-links > li:nth-last-child(-n+3) .nav-panel {
  left: auto; right: 0;
  transform: translate(0, -6px);
}
/* invisible bridge to keep hover alive across the gap from li to panel */
.nav-panel::before {
  content: ''; position: absolute;
  top: -24px; left: -80px; right: -80px; height: 24px;
}
/* Right-edge items: extend bridge LEFT far enough to cover the horizontal distance
   from li (which can be 200~300px to the LEFT of the panel) down to the panel. */
.nav-links > li:nth-last-child(-n+3) .nav-panel::before {
  left: -400px;
}
.nav-links > li.hovered .nav-panel,
.nav-links > li:hover .nav-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-links > li:nth-last-child(-n+3).hovered .nav-panel,
.nav-links > li:nth-last-child(-n+3):hover .nav-panel {
  transform: translate(0, 0);
}
.nav-panel-inner {
  padding: 28px 36px 32px;
  display: flex; gap: 36px;
}
.nav-panel-main { flex-shrink: 0; max-width: 200px; }
.nav-panel-main > a {
  font-size: 1.15rem !important; font-weight: 600 !important; color: var(--ink) !important;
  text-shadow: none !important; display: block; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.nav-panel-main p { font-size: 12px; color: var(--ink-3); line-height: 1.5; margin: 0; }
.nav-panel-links {
  display: flex; flex-direction: column; gap: 1px;
  border-left: 1px solid rgba(0,0,0,0.08); padding-left: 32px;
  flex: 1;
}
.nav-panel-links a {
  font-size: 13.5px !important; font-weight: 500 !important;
  color: var(--ink-2) !important; text-shadow: none !important;
  padding: 7px 0; transition: color .2s, padding-left .2s;
  white-space: nowrap; text-decoration: none;
}
.nav-panel-links a:hover { color: var(--gold) !important; padding-left: 4px; }

.has-dropdown::after {
  content: ''; display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px;
  transition: transform .3s;
}
.nav-links > li.hovered .has-dropdown::after,
.nav-links > li:hover .has-dropdown::after { transform: rotate(-135deg); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 310;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: #fff;
  position: absolute; left: 7px;
  transition: transform .4s cubic-bezier(0.16,1,0.3,1), opacity .3s, top .4s cubic-bezier(0.16,1,0.3,1), background .4s;
}
.nav-hamburger span:nth-child(1) { top: 11px; }
.nav-hamburger span:nth-child(2) { top: 17px; }
.nav-hamburger span:nth-child(3) { top: 23px; }
.nav-hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }
.nav.scrolled .nav-hamburger span, .nav:hover .nav-hamburger span { background: var(--ink); }

/* Mobile drawer */
.nav-drawer-overlay {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(0,0,0,0.3); opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nav-drawer-overlay.active { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 300;
  width: 320px; max-width: 88vw; background: #fff;
  border-right: 1px solid var(--line);
  transform: translateX(-100%); transition: transform .4s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.nav-drawer.active { transform: translateX(0); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink);
}
.nav-drawer-close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.nav-drawer-close svg { width: 20px; height: 20px; stroke: var(--ink-2); fill: none; stroke-width: 1.5; }
.nav-drawer-links { list-style: none; padding: 12px 0; flex: 1; }
.nav-drawer-links li { border-bottom: 1px solid #f2f1ec; }
.nav-drawer-links > li > a {
  display: block; padding: 14px 24px;
  font-size: 15px; color: var(--ink-2); text-decoration: none;
  transition: background .2s, color .2s, padding-left .3s;
}
.nav-drawer-links > li > a:hover { background: var(--bg-2); color: var(--gold); padding-left: 28px; }
.nav-drawer-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 14px 24px;
  font-size: 15px; color: var(--ink-2); text-align: left;
  transition: background .2s;
  font-family: inherit;
}
.nav-drawer-toggle:hover { background: var(--bg-2); }
.nav-drawer-toggle svg { width: 16px; height: 16px; stroke: var(--ink-3); fill: none; stroke-width: 1.5; transition: transform .3s; }
.nav-drawer-toggle.open svg { transform: rotate(180deg); }
.nav-drawer-sub { list-style: none; padding: 0; display: none; background: var(--bg-2); }
.nav-drawer-sub.open { display: block; }
.nav-drawer-sub a {
  display: block; padding: 10px 24px 10px 40px;
  font-size: 13px; color: var(--ink-3); text-decoration: none;
  transition: color .2s;
}
.nav-drawer-sub a:hover { color: var(--gold); }
.nav-drawer-cta {
  margin: 16px 24px 24px; display: block; text-align: center;
  font-size: 14px; font-weight: 500;
  color: #fff; background: var(--ink); padding: 14px;
  border-radius: 6px; text-decoration: none;
}
.nav-drawer-cta:hover { background: var(--gold); }

/* Drawer logo (replaces LINK text) */
.nav-drawer-logo { display: inline-flex; align-items: center; }
.nav-drawer-logo img {
  height: 24px; width: auto; display: block;
  filter: brightness(0); /* force black */
}

/* Drawer info block (hours + location) */
.nav-drawer-info {
  margin-top: auto; padding: 20px 24px 28px;
  background: var(--bg-2); border-top: 1px solid var(--line);
}
.nav-drawer-info-block { margin-bottom: 16px; }
.nav-drawer-info-block:last-child { margin-bottom: 0; }
.nav-drawer-info-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px; font-weight: 500;
}
.nav-drawer-info-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-2); padding: 3px 0;
}
.nav-drawer-info-row span:first-child { color: var(--ink-3); }
.nav-drawer-info-addr {
  font-size: 12.5px; line-height: 1.7; color: var(--ink-2); margin: 0;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-inner { height: 56px; padding: 0 18px; max-width: none; }
  .nav.scrolled .nav-inner { height: 50px; max-width: none; }
  .nav { padding: 12px clamp(12px, 3vw, 20px) 0; }
  .nav.scrolled { padding-top: 8px; }
}

/* CONTAINER */
.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* SECTION HEADERS */
.sec-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; color: var(--accent);
  margin-bottom: 24px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 14px;
}
.sec-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.sec-title {
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 250;
  letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink);
}
.sec-title strong { font-weight: 600; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  background: #0a0a0a; color: #fff;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(180,150,110,0.14), transparent 70%),
    radial-gradient(ellipse 50% 80% at 85% 30%, rgba(140,110,80,0.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #121110 50%, #0a0a0a 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1440px; margin: 0 auto; padding: 0 48px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; color: rgba(255,255,255,0.55);
  margin-bottom: 48px; font-weight: 500;
}
.hero-eyebrow .dot { color: var(--gold); margin: 0 14px; }

/* ===== HERO SLIDESHOW ===== */
.hero-slider .hero-bg-stack {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: translateX(100%);
  transition: transform 1.0s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.hero-slide.is-active   { transform: translateX(0); }
.hero-slide.is-leaving  { transform: translateX(-100%); }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.45) 28%, rgba(0,0,0,0.10) 55%, rgba(0,0,0,0) 78%);
}
.hero-slider .hero-grain { z-index: 2; }
.hero-slider .hero-inner { position: relative; z-index: 3; transform: translateY(20%); }
.hero-slider .hero-scroll { z-index: 3; }

.hero-text-stack {
  position: relative;
  min-height: clamp(300px, 34vw, 440px);
  margin-bottom: 0;
}
.hero-text .hero-eyebrow { margin-bottom: 32px; }
.hero-text {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(60px);
  transition: opacity .6s ease, transform .8s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.hero-text .hero-title { margin-bottom: 28px; }
.hero-text.is-active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
}
.hero-text.is-leaving {
  opacity: 0; transform: translateX(-60px);
}
/* HERO 모바일·태블릿 (PC 1024px+ 제외) — 텍스트를 FAB 바로 위에 고정, 모델 얼굴 보호 */
@media (max-width: 1024px) {
  .hero { align-items: flex-end; }
  .hero-slider .hero-inner { transform: none; padding: 0 24px calc(env(safe-area-inset-bottom, 0px) + 22vh); }
  .hero-text-stack {
    min-height: clamp(180px, 40vw, 260px);
    margin-bottom: 0;
  }
  .hero-text .hero-title { margin-bottom: 14px; }
  .hero-text .hero-eyebrow { margin-bottom: 16px; font-size: 10px; letter-spacing: 0.24em; }
  .hero-slider .hero-vignette {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.72) 100%);
  }
  .hero-title { font-size: clamp(32px, 5vw, 46px); line-height: 1.12; margin-bottom: 22px; max-width: 100%; }
  .hero-sub { font-size: 13px; line-height: 1.6; max-width: 320px; }
  .hero-scroll { display: none; }
}
@media (max-width: 430px) {
  .hero-slider .hero-inner { padding: 0 24px calc(env(safe-area-inset-bottom, 0px) + 22vh); }
  .hero-text-stack { min-height: 180px; }
  .hero-title { font-size: 30px; line-height: 1.14; margin-bottom: 16px; }
  .hero-sub { font-size: 12.5px; line-height: 1.55; max-width: 280px; }
  .hero-text .hero-eyebrow { margin-bottom: 12px; }
}
.hero-title {
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 56px;
  max-width: 640px;
}
.hero-title strong {
  font-weight: 600;
  color: #f0d7a3;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: 17px; max-width: 480px; line-height: 1.85;
  color: rgba(255,255,255,0.7); font-weight: 300;
  margin-bottom: 0;
}

/* ===== STATS BAND (ported from EN site .trust) ===== */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,165,114,0.04), transparent);
  pointer-events: none;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--gold);
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.stat-item strong span { color: var(--gold); font-size: 0.7em; font-weight: 700; margin-left: 2px; }
.stat-item em {
  display: block;
  font-size: 0.8rem; color: var(--ink-3);
  font-weight: 400; font-style: normal;
  letter-spacing: 0;
  margin-top: 6px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.36em; color: rgba(255,255,255,0.4);
  text-transform: uppercase; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: sl 2.4s ease-in-out infinite;
}
@keyframes sl {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* MANIFESTO */
.manifesto {
  padding: 200px 32px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.manifesto-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; color: var(--accent);
  margin-bottom: 48px; font-weight: 600;
}
.manifesto p {
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 250;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.manifesto p strong { font-weight: 600; color: var(--ink); }
.manifesto-text .m-line {
  display: block;
  white-space: nowrap;
  font-size: clamp(20px, 5.5vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.55;
  /* JS will downscale via CSS variable if overflow */
  font-size: var(--m-line-fs, clamp(20px, 5.5vw, 46px));
}
@media (max-width: 768px) {
  .manifesto { padding: 100px 12px; }
}
.manifesto-sign {
  margin-top: 72px;
  font-size: 12px; letter-spacing: 0.28em; color: var(--ink-3);
  font-weight: 500;
}

/* B&A GALLERY (NEW from Wonjin reference) */
.ba-gallery { padding: 180px 0 200px; background: var(--bg-2); }
.ba-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.ba-head .right p {
  font-size: 17px; color: var(--ink-2); line-height: 1.85;
  max-width: 460px; font-weight: 350;
}
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.ba-card {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: #14110d; cursor: pointer;
}
.ba-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 45%, rgba(201,165,114,0.16), transparent 65%),
    linear-gradient(135deg, #18140f 0%, #221c14 100%);
}
.ba-card-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.ba-card-tag {
  font-size: 10px; letter-spacing: 0.32em; color: var(--gold);
  font-weight: 600; margin-bottom: 8px;
}
.ba-card-title {
  font-size: 17px; font-weight: 400; color: #fff;
  letter-spacing: -0.01em;
}
.ba-card-num {
  position: absolute; top: 24px; left: 24px;
  font-size: 11px; letter-spacing: 0.32em; color: rgba(212,184,138,0.7);
  font-weight: 500; z-index: 2;
}
.ba-foot {
  margin-top: 60px; text-align: center;
}
.ba-foot a {
  display: inline-block;
  padding: 18px 48px;
  border: 1px solid var(--ink);
  font-size: 12px; letter-spacing: 0.28em; font-weight: 600;
  transition: all 0.3s;
}
.ba-foot a:hover { background: var(--ink); color: #fff; }

/* PRACTICES */
.practices { padding: 180px 0 200px; }
.practices-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 100px; align-items: end;
}
.practices-head .right p {
  font-size: 17px; color: var(--ink-2); line-height: 1.85;
  max-width: 460px; font-weight: 350;
}
.practice-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.practice-row:last-child { border-bottom: 1px solid var(--line); }
.practice-row.reverse > .practice-img { order: 2; }
.practice-img {
  aspect-ratio: 4/5;
  background: #14110d;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.practice-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.45) 100%);
}
.practice-img.eye { background-image: url('images/practices/eye1.jpg'); }
.practice-img.nose { background-image: url('images/practices/nose1.jpg'); }
.practice-img.body { background-image: url('images/practices/body1.jpg'); }
.practice-img.petit { background-image: url('images/practices/petit.jpg'); }
.practice-img-num {
  position: absolute; top: 32px; left: 32px;
  font-size: 12px; letter-spacing: 0.36em;
  color: rgba(212,184,138,0.6); z-index: 2; font-weight: 500;
}
.practice-img-label {
  position: absolute; bottom: 28px; left: 32px;
  font-size: clamp(56px, 7vw, 116px);
  color: rgba(212,184,138,0.16);
  line-height: 0.9; font-weight: 200; letter-spacing: -0.04em;
}
.practice-text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.practice-text .ko-name {
  font-size: 11px; letter-spacing: 0.28em; color: var(--accent);
  margin-bottom: 22px; font-weight: 600;
}
.practice-text h3 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1; letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.practice-text h3 strong { font-weight: 600; }
.practice-text p {
  font-size: 16px; color: var(--ink-2); line-height: 1.85;
  max-width: 440px; font-weight: 350;
  margin-bottom: 36px;
}
.practice-link {
  font-size: 12px; letter-spacing: 0.24em; color: var(--ink);
  font-weight: 600;
  padding-bottom: 8px; border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: padding 0.4s;
}
.practice-link:hover { padding-right: 20px; }

/* DOCTOR */
.doctor {
  background: #0a0a0a; color: #fff;
  padding: 200px 0;
  position: relative; overflow: hidden;
}
.doctor::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(138,111,74,0.10), transparent 60%);
}
.doctor-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px;
  align-items: center; position: relative;
}
.doctor-img {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1a1612 0%, #0f0d0a 100%);
}
.doctor-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(180,150,110,0.16), transparent 60%);
}
.doctor-img-tag {
  position: absolute; top: 32px; left: 32px;
  font-size: 11px; letter-spacing: 0.36em; color: rgba(201,165,114,0.65);
  font-weight: 600;
}
.doctor-img-name {
  position: absolute; bottom: 28px; left: 32px;
  font-size: clamp(64px, 8vw, 124px);
  color: rgba(201,165,114,0.20); line-height: 0.9; font-weight: 200; letter-spacing: -0.04em;
}
.doctor-text .sec-eyebrow { color: var(--gold); }
.doctor-text .sec-eyebrow::before { background: var(--gold); }
.doctor-text h2 {
  font-size: clamp(44px, 5.4vw, 80px);
  font-weight: 250; letter-spacing: -0.035em;
  color: #fff; margin-bottom: 16px; line-height: 1.05;
}
.doctor-text h2 strong { font-weight: 600; color: var(--gold); }
.doctor-role {
  font-size: 12px; letter-spacing: 0.32em; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-bottom: 56px;
}
.doctor-quote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 250;
  line-height: 1.55; letter-spacing: -0.025em;
  color: rgba(255,255,255,0.95);
  padding-left: 32px; border-left: 1px solid rgba(201,165,114,0.4);
  margin-bottom: 56px;
}
.doctor-quote strong { font-weight: 500; color: var(--gold); }
.doctor-cred {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.doctor-cred li {
  padding: 20px 0;
  font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 350;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 18px; align-items: baseline;
}
.doctor-cred li:nth-child(odd) { padding-right: 24px; }
.doctor-cred li:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.doctor-cred li span {
  color: var(--gold); font-size: 12px; letter-spacing: 0.18em; font-weight: 500;
  min-width: 24px;
}

/* DOCTOR DUAL (2 chiefs) */
.doctors-dual {
  background: #0a0a0a; color: #fff;
  padding: 180px 0;
  position: relative; overflow: hidden;
}
.doctors-dual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(138,111,74,0.10), transparent 60%);
}
.doctors-dual-head {
  max-width: 1440px; margin: 0 auto 100px; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: end;
  position: relative;
}
.doctors-dual-head .sec-eyebrow { color: var(--gold); }
.doctors-dual-head .sec-eyebrow::before { background: var(--gold); }
.doctors-dual-head h2 {
  font-size: clamp(40px, 5.4vw, 80px); font-weight: 250;
  letter-spacing: -0.035em; color: #fff; line-height: 1.05;
}
.doctors-dual-head h2 strong { font-weight: 600; color: var(--gold); }
.doctors-dual-head .right p {
  font-size: 17px; color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.85; max-width: 460px;
}
.doctor-pair {
  max-width: 1440px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  position: relative;
}
.doctor-card {
  display: flex; flex-direction: column;
}
.doctor-card .doctor-img {
  aspect-ratio: 4/5; margin-bottom: 36px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1a1612 0%, #0f0d0a 100%);
}
.doctor-card .doctor-img > img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.doctor-card .doctor-img-tag {
  position: absolute; top: 28px; left: 28px; z-index: 2;
  font-size: 11px; letter-spacing: 0.36em; color: rgba(201,165,114,0.65);
  font-weight: 600;
}
.doctor-card .doctor-img-name {
  position: absolute; bottom: 24px; left: 28px; z-index: 2;
  font-size: clamp(56px, 7vw, 104px);
  color: rgba(201,165,114,0.20); line-height: 0.9; font-weight: 200; letter-spacing: -0.04em;
}
.doctor-card h3 {
  font-size: clamp(34px, 3.6vw, 52px); font-weight: 300;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 12px; line-height: 1.05;
}
.doctor-card h3 strong { font-weight: 600; color: var(--gold); }
.doctor-card .role {
  font-size: 11px; letter-spacing: 0.32em; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-bottom: 28px; text-transform: uppercase;
}
.doctor-card .career {
  font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 350;
  margin-bottom: 28px; line-height: 1.85;
}
.doctor-card .doctor-bio {
  font-size: 15px; color: rgba(255,255,255,0.78); font-weight: 350;
  line-height: 1.75; margin-bottom: 24px;
  max-width: 38ch;
}
.doctor-card .doctor-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--gold); text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid rgba(201,165,114,0.35);
  transition: color .25s, border-color .25s, gap .25s;
}
.doctor-card .doctor-link:hover { color: #f0d7a3; border-color: #f0d7a3; gap: 12px; }
.doctor-card .doctor-link svg { transition: transform .25s; }
.doctor-card .doctor-link:hover svg { transform: translateX(3px); }
.doctor-card ul {
  list-style: none; border-top: 1px solid rgba(255,255,255,0.1);
}
.doctor-card ul li {
  padding: 14px 0;
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 350;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 14px; align-items: baseline;
}
.doctor-card ul li span {
  color: var(--gold); font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
  min-width: 20px;
}

@media (max-width: 980px) {
  .doctors-dual-head { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; margin-bottom: 64px; }
  .doctor-pair { grid-template-columns: 1fr; gap: 80px; padding: 0 24px; }
}

/* CREDENTIALS BAND (replaces Press) */
.credentials {
  padding: 80px 32px; text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.credentials-label {
  font-size: 11px; letter-spacing: 0.32em; color: var(--ink-3);
  margin-bottom: 32px; font-weight: 600;
}
.credentials-list {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.credentials-list span {
  font-size: 13px; letter-spacing: -0.005em; color: var(--ink-2);
  font-weight: 400; padding: 12px 26px;
  border-right: 1px solid var(--line);
}
.credentials-list span:last-child { border-right: 0; }

@media (max-width: 980px) {
  .credentials-list span { padding: 10px 16px; font-size: 12px; }
}

/* PRESS (legacy, kept for cases that need it) */
.press {
  padding: 100px 32px; text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.press-label {
  font-size: 11px; letter-spacing: 0.32em; color: var(--ink-3);
  margin-bottom: 36px; font-weight: 600;
}
.press-logos {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.press-logos span {
  font-size: 16px; letter-spacing: 0.24em; color: var(--ink);
  font-weight: 500; opacity: 0.45;
  transition: opacity 0.3s;
}
.press-logos span:hover { opacity: 1; }

/* FAQ (AEO/GEO) */
.faq {
  padding: 110px 48px;
  max-width: 960px; margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; color: var(--accent);
  margin-bottom: 24px; font-weight: 600; text-transform: uppercase;
}
.faq-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300; line-height: 1.35;
  letter-spacing: -0.025em; color: var(--ink);
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 8px;
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 500;
  color: var(--ink); letter-spacing: -0.015em;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 4px 0;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; font-weight: 200; color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 20px 0 4px; max-width: 720px;
}
.faq-answer p {
  font-size: 15px; font-weight: 350; line-height: 1.85;
  color: var(--ink-2); letter-spacing: -0.01em;
}
.faq-answer p strong { color: var(--ink); font-weight: 500; }
.faq-answer a { color: var(--gold); border-bottom: 1px solid rgba(201,165,114,0.4); }
.faq-answer a:hover { border-color: var(--gold); }
@media (max-width: 768px) {
  .faq { padding: 56px 56px; max-width: 100%; box-sizing: border-box; }
  .faq-header { margin-bottom: 32px; }
  .faq-list { width: 100%; box-sizing: border-box; }
  .faq-item { padding: 14px 0; box-sizing: border-box; }
  .faq-item summary { font-size: 15px; gap: 12px; padding: 2px 0; }
  .faq-answer { padding: 12px 0 2px; }
  .faq-answer p { font-size: 13.5px; line-height: 1.75; }
  .faq-title { font-size: clamp(22px, 5.5vw, 30px); }
  .faq-eyebrow { margin-bottom: 16px; }
}

/* CONTACT */
.contact {
  padding: 200px 32px;
  text-align: center; max-width: 1100px; margin: 0 auto;
}
.contact-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; color: var(--accent);
  margin-bottom: 48px; font-weight: 600;
}
.contact h2 {
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 250;
  line-height: 1.05; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.contact h2 strong { font-weight: 600; }
.contact > p {
  font-size: 17px; color: var(--ink-2); line-height: 1.85; font-weight: 350;
  max-width: 540px; margin: 0 auto 64px;
}
.contact-actions {
  display: inline-flex; gap: 0; align-items: stretch;
  border: 1px solid var(--ink);
}
.contact-actions a {
  padding: 22px 40px;
  font-size: 12px; letter-spacing: 0.28em; font-weight: 600;
  transition: all 0.3s;
}
.contact-actions a + a { border-left: 1px solid var(--ink); }
.contact-actions a:hover { background: var(--ink); color: var(--bg); }
.contact-actions .primary { background: var(--ink); color: var(--bg); }
.contact-actions .primary:hover { background: transparent; color: var(--ink); }
.contact-meta {
  margin-top: 80px; display: flex; justify-content: center; gap: 80px;
  font-size: 12px; letter-spacing: 0.18em; color: var(--ink-3);
  font-weight: 400;
}
.contact-meta strong {
  display: block; color: var(--ink); font-size: 13px; letter-spacing: 0.32em;
  margin-bottom: 8px; font-weight: 600;
}

/* FOOTER */
footer.site-footer {
  padding: 80px 48px 40px;
  background: #0a0a0a; color: rgba(255,255,255,0.5);
}
.foot-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-logo { margin-bottom: 24px; line-height: 0; }
.foot-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.foot-tag {
  font-size: 13px; line-height: 1.85; max-width: 320px; font-weight: 350;
}
.foot-col h5 {
  color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.32em;
  margin-bottom: 24px;
}
.foot-col a {
  display: block; padding: 8px 0; font-size: 13px; font-weight: 350;
  color: rgba(255,255,255,0.55); transition: color 0.3s;
}
.foot-col a:hover { color: #fff; }
.foot-social {
  max-width: 1440px; margin: 0 auto;
  padding: 28px 0 0;
  display: flex; gap: 18px; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
}
.foot-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(255,255,255,0.45); transition: color 0.3s, background 0.3s, transform 0.3s;
}
.foot-social a:hover { color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.foot-social a.naver-mark { width: auto; min-width: 36px; padding: 0 4px; border-radius: 6px; }
.foot-social a.naver-mark:hover { background: transparent; transform: translateY(-2px); }
.naver-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 18px; padding: 0 7px; border-radius: 4px;
  background: rgba(255,255,255,0.45); color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0;
  text-transform: lowercase; line-height: 1;
  transition: opacity 0.3s;
}
.foot-social a.naver-mark:hover .naver-badge { background: #fff; }
.foot-bottom {
  max-width: 1440px; margin: 0 auto;
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.28em; color: rgba(255,255,255,0.3); font-weight: 400;
}
@media (max-width: 768px) {
  .foot-social { gap: 14px; padding-top: 24px; margin-top: 24px; justify-content: center; }
  .foot-social a { width: 40px; height: 40px; }
}

/* ===== FAB: CONTACT (right) ===== */
.fab-container { position: fixed; bottom: 28px; right: 28px; z-index: 150; transform: translateZ(0); pointer-events: none; display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 12px; }
.fab-main {
  width: 56px; height: 56px; border-radius: 16px; background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,165,114,0.35); position: relative; pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-radius 0.3s;
  animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-main:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(201,165,114,0.45); }
.fab-main:active { transform: scale(0.95); }
.fab-main.open { border-radius: 50%; animation: none; }
.fab-main svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; position: absolute; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s; }
.fab-main .icon-chat { opacity: 1; transform: rotate(0deg); }
.fab-main .icon-close { opacity: 0; transform: rotate(-90deg); }
.fab-main.open .icon-chat { opacity: 0; transform: rotate(90deg); }
.fab-main.open .icon-close { opacity: 1; transform: rotate(0deg); }
@keyframes fabPulse {
  0%   { box-shadow: 0 8px 32px rgba(201,165,114,0.35), 0 0 0 0   rgba(201,165,114,0.7); }
  70%  { box-shadow: 0 8px 32px rgba(201,165,114,0.35), 0 0 0 20px rgba(201,165,114,0); }
  100% { box-shadow: 0 8px 32px rgba(201,165,114,0.35), 0 0 0 0   rgba(201,165,114,0); }
}
.fab-menu { display: flex; flex-direction: column-reverse; gap: 8px; align-items: flex-end; pointer-events: none; }
.fab-item {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.fab-container.open .fab-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-container.open .fab-item:nth-child(1) { transition-delay: 0.04s; }
.fab-container.open .fab-item:nth-child(2) { transition-delay: 0.08s; }
.fab-container.open .fab-item:nth-child(3) { transition-delay: 0.12s; }
.fab-container.open .fab-item:nth-child(5) { transition-delay: 0.20s; }
.fab-container.open .fab-item:nth-child(6) { transition-delay: 0.24s; }
.fab-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 6px 0; opacity: 0; transition: opacity 0.3s 0.16s; width: 100%; }
.fab-container.open .fab-divider { opacity: 1; }
.fab-label {
  background: none; border: none; border-radius: 0; padding: 0 8px;
  color: rgba(255,255,255,0.92); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em; white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  box-shadow: none;
}
.fab-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.fab-item:hover .fab-icon { transform: scale(1.08); }
.fab-icon.phone     { background: #2563eb; color: #fff; }
.fab-icon.kakaotalk { background: #fee500; color: #3c1e1e; }
.fab-icon.line      { background: #06c755; color: #fff; }
.fab-icon.googlemaps{ background: #4285F4; color: #fff; }
.fab-icon.navermaps { background: #03C75A; color: #fff; }
.fab-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 140; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.fab-backdrop.visible { opacity: 1; pointer-events: auto; }
.fab-hint {
  position: absolute; bottom: 18px; padding: 0;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  opacity: 1; pointer-events: none;
  animation: fabHintFade 7s forwards;
}
.fab-hint-right { right: 64px; }
.fab-hint-left  { left: 56px; }
@keyframes fabHintFade { 0%, 71% { opacity: 1; } 100% { opacity: 0; } }

/* ===== FAB: LANGUAGE (left) ===== */
.lang-fab-container { position: fixed; bottom: 28px; left: 28px; z-index: 150; transform: translateZ(0); pointer-events: none; display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
.lang-fab-main {
  width: 48px; height: 48px; border-radius: 14px; background: #ffffff; border: 1px solid #e4e4e7;
  cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, color 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  color: #71717a;
}
.lang-fab-main:hover { transform: scale(1.05); border-color: var(--gold); color: var(--gold); }
.lang-fab-main svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.lang-fab-menu { display: flex; flex-direction: column-reverse; gap: 6px; align-items: flex-start; pointer-events: none; }
.lang-fab-item {
  display: flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none;
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.lang-fab-container.open .lang-fab-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-fab-container.open .lang-fab-item:nth-child(1) { transition-delay: 0.03s; }
.lang-fab-container.open .lang-fab-item:nth-child(2) { transition-delay: 0.06s; }
.lang-fab-container.open .lang-fab-item:nth-child(3) { transition-delay: 0.09s; }
.lang-fab-container.open .lang-fab-item:nth-child(4) { transition-delay: 0.12s; }
.lang-fab-container.open .lang-fab-item:nth-child(5) { transition-delay: 0.15s; }
.lang-fab-container.open .lang-fab-item:nth-child(6) { transition-delay: 0.18s; }
.lang-fab-container.open .lang-fab-item:nth-child(7) { transition-delay: 0.21s; }
.lang-fab-container.open .lang-fab-item:nth-child(8) { transition-delay: 0.24s; }
.lang-fab-flag {
  width: 40px; height: 40px; border-radius: 10px;
  background: #ffffff; border: 1px solid #e4e4e7;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: #71717a;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, color 0.3s, background 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.lang-fab-item:hover .lang-fab-flag { transform: scale(1.1); border-color: var(--gold); color: var(--gold); }
.lang-fab-item.active .lang-fab-flag { border-color: var(--gold); background: #f8f8f6; color: var(--gold); }
.lang-fab-name {
  background: none; border: none; border-radius: 0; padding: 0 8px;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap;
  box-shadow: none; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.lang-fab-item.active .lang-fab-name { color: #fff; }

@media (max-width: 768px) {
  .fab-container      { bottom: 20px; right: 20px; }
  .lang-fab-container { bottom: 20px; left: 20px; }
  .fab-main           { width: 52px; height: 52px; }
  .lang-fab-main      { width: 44px; height: 44px; }
  .fab-label, .lang-fab-name { font-size: 0.74rem; padding: 5px 10px; }
  .fab-hint           { font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fab-main { animation: none !important; }
  .fab-hint { animation: fabHintFade 5s forwards !important; }
}

/* SUBPAGE HERO (compact, dark) */
.sub-hero {
  position: relative; min-height: 60vh;
  background: #0a0a0a; color: #fff;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 100px;
}
.sub-hero .hero-bg, .sub-hero .hero-grain { position: absolute; inset: 0; }
.sub-hero-inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto; padding: 60px 48px;
  width: 100%;
}
.sub-hero .breadcrumb {
  font-size: 11px; letter-spacing: 0.28em; color: rgba(255,255,255,0.45);
  margin-bottom: 32px; font-weight: 500;
}
.sub-hero .breadcrumb a:hover { color: var(--gold); }
.sub-hero .breadcrumb span { margin: 0 12px; color: rgba(255,255,255,0.25); }
.sub-hero h1 {
  font-size: clamp(40px, 6vw, 88px); font-weight: 250;
  letter-spacing: -0.035em; line-height: 1.05; color: #fff;
  margin-bottom: 28px;
}
.sub-hero h1 strong { font-weight: 600; color: var(--gold); }
.sub-hero .lead {
  font-size: 17px; color: rgba(255,255,255,0.7); font-weight: 300;
  max-width: 560px; line-height: 1.85;
}

/* SUBPAGE CONTENT BLOCKS */
.content-block { padding: 140px 0; }
.content-block.tinted { background: var(--bg-2); }
.content-block .lede {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
  align-items: start; max-width: 1440px; margin: 0 auto; padding: 0 48px;
}
.content-block .lede h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 250;
  letter-spacing: -0.035em; line-height: 1.1;
}
.content-block .lede h2 strong { font-weight: 600; }
.content-block .lede .body { font-size: 16px; color: var(--ink-2); line-height: 1.95; }
.content-block .lede .body p + p { margin-top: 22px; }

/* FEATURE GRID (4 columns or 3) */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); margin-top: 80px;
  border: 1px solid var(--line);
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-grid > div { background: #fff; padding: 48px 32px; }
.feature-grid .num {
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
}
.feature-grid h4 {
  font-size: 20px; font-weight: 500; line-height: 1.3;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.feature-grid p { font-size: 14px; color: var(--ink-2); line-height: 1.8; font-weight: 350; }

/* PROCESS STEPS */
.process { padding: 160px 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 80px;
}
.process-step { background: #fff; padding: 56px 32px 64px; position: relative; }
.process-step .step-num {
  font-size: 13px; letter-spacing: 0.36em; color: var(--gold);
  font-weight: 600; margin-bottom: 36px;
}
.process-step h4 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.process-step p { font-size: 14px; color: var(--ink-2); line-height: 1.8; font-weight: 350; }

/* PROCEDURES GRID (sub-treatments inside category) */
.procedures { padding: 160px 0; background: var(--bg-2); }
.procedures-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
  max-width: 1440px; margin-left: auto; margin-right: auto; padding: 0 48px;
}
.procedures-head .right p {
  font-size: 17px; color: var(--ink-2); line-height: 1.85;
  max-width: 460px; font-weight: 350;
}
.procedures-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.proc-card {
  background: #fff;
  padding: 56px 40px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.proc-card:hover { background: #fafaf7; }
.proc-card .num {
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
  font-weight: 600; margin-bottom: 24px;
}
.proc-card h3 {
  font-size: 26px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.025em; margin-bottom: 14px; color: var(--ink);
}
.proc-card .en {
  font-size: 11px; letter-spacing: 0.24em; color: var(--ink-3);
  font-weight: 500; margin-bottom: 20px;
}
.proc-card p {
  font-size: 14px; color: var(--ink-2); line-height: 1.85;
  font-weight: 350; margin-bottom: 32px; flex: 1;
}
.proc-card .more {
  font-size: 11px; letter-spacing: 0.24em; color: var(--ink);
  font-weight: 600;
  padding-bottom: 6px; border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: padding 0.3s;
}
.proc-card:hover .more { padding-right: 14px; }

@media (max-width: 980px) {
  .procedures-head { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; margin-bottom: 56px; }
  .procedures-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
}
@media (max-width: 600px) {
  .procedures-grid { grid-template-columns: 1fr; }
}

/* RECOVERY TABLE */
.recovery { padding: 160px 0; }
.recovery-head { text-align: center; margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 32px; }
.recovery-head .sec-eyebrow { justify-content: center; }
.recovery-head .sec-eyebrow::before { display: none; }
.recovery-head h2 { font-size: clamp(36px, 4.4vw, 64px); font-weight: 250; letter-spacing: -0.035em; line-height: 1.1; }
.recovery-head h2 strong { font-weight: 600; }
.recovery-head p { margin-top: 28px; font-size: 16px; color: var(--ink-2); line-height: 1.85; font-weight: 350; }
.recovery-table {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.recovery-table table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.recovery-table th {
  text-align: left; padding: 22px 18px;
  font-size: 11px; letter-spacing: 0.24em; color: var(--ink-3);
  font-weight: 600; text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}
.recovery-table td {
  padding: 24px 18px;
  font-size: 14px; color: var(--ink-2); font-weight: 350;
  border-bottom: 1px solid var(--line);
}
.recovery-table td:first-child {
  color: var(--ink); font-weight: 500; font-size: 15px;
}
.recovery-table tr:hover td { background: var(--bg-2); }

@media (max-width: 980px) {
  .recovery-table { padding: 0 16px; overflow-x: auto; }
  .recovery-table table { min-width: 640px; }
}

/* DUAL CARDS (2-column compare grid for Candidates / Open vs Closed) */
.dual-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-top: 80px;
}
.dual-cards .dc-card { background: #fff; padding: 56px 48px; }
.dual-cards .dc-card .dc-label {
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px; text-transform: uppercase;
}
.dual-cards .dc-card h3 {
  font-size: 24px; font-weight: 500; line-height: 1.25;
  letter-spacing: -0.02em; margin-bottom: 28px; color: var(--ink);
}
.dual-cards .dc-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.dual-cards .dc-card li {
  font-size: 14.5px; color: var(--ink-2); line-height: 1.75;
  font-weight: 350; padding-left: 18px; position: relative;
}
.dual-cards .dc-card li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 1px; background: var(--gold);
}
@media (max-width: 768px) {
  .dual-cards { grid-template-columns: 1fr; }
  .dual-cards .dc-card { padding: 44px 28px; }
}

/* FAQ (legacy markup .faq-q/.faq-a — container padding handled by main .faq rule above) */
.faq-list { margin-top: 64px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  padding: 32px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 500; color: var(--ink); text-align: left;
  letter-spacing: -0.015em;
  font-family: inherit;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--gold); font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 32px; font-size: 15px; color: var(--ink-2); line-height: 1.95; max-width: 820px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  nav.site-nav { padding: 18px 24px; grid-template-columns: 1fr auto; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .lang { display: none; }
  .hero-inner, .sub-hero-inner { padding: 0 24px; }
  .sub-hero-inner { padding: 60px 24px; }
  .practice-row, .practice-row.reverse { grid-template-columns: 1fr; }
  .practice-row.reverse > .practice-img { order: 0; }
  .practice-text { padding: 56px 32px; }
  .practices-head, .ba-head { grid-template-columns: 1fr; gap: 32px; }
  .doctor-grid { grid-template-columns: 1fr; gap: 60px; padding: 0 24px; }
  .doctor-cred { grid-template-columns: 1fr; }
  .doctor-cred li { padding: 18px 0 !important; border-left: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .foot-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "brand brand brand" "p h v";
    gap: 32px 16px;
    padding-bottom: 32px;
  }
  .foot-grid > div:first-child { grid-area: brand; }
  .foot-grid > .foot-col:nth-of-type(1) { grid-area: p; }
  .foot-grid > .foot-col:nth-of-type(2) { grid-area: h; }
  .foot-grid > .foot-col:nth-of-type(3) { grid-area: v; }
  .foot-logo img { height: 32px; }
  .foot-tag { font-size: 12px; line-height: 1.7; max-width: none; }
  .foot-col h5 {
    font-size: 10px; letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  .foot-col a {
    padding: 6px 0; font-size: 12px;
  }
  .foot-bottom {
    flex-direction: column; gap: 10px; text-align: center;
    font-size: 10px; letter-spacing: 0.18em;
    padding-top: 20px;
  }
  .contact-meta { flex-direction: column; gap: 32px; }
  .manifesto, .practices, .doctor, .contact, .ba-gallery, .content-block, .process, .faq { padding-top: 100px; padding-bottom: 100px; }
  .stats-band { padding: 40px 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .stat-item strong { font-size: 30px; margin-bottom: 8px; }
  .stat-item em { font-size: 10px; letter-spacing: 0.20em; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .feature-grid, .feature-grid.three { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .content-block .lede { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .container { padding: 0 24px; }
  footer.site-footer { padding: 44px 20px calc(24px + env(safe-area-inset-bottom) + 88px); }
}
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
  .feature-grid, .feature-grid.three, .process-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions a + a { border-left: 0; border-top: 1px solid var(--ink); }
}

/* ===== B&A GALLERY (EN site spec — homepages.finscheum.com API) ===== */
.gallery-section {
  padding: clamp(56px,7vw,100px) 0;
  max-width: 1320px;
  margin: 0 auto;
}
.gallery-wrap { position: relative; }
.gallery-header {
  margin: 0 auto 40px;
  padding: 0 clamp(20px,4vw,48px);
  text-align: center;
}
.gallery-header .sec-label {
  font-size: 0.73rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}
.gallery-header .sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 16px;
}
.ba-swiper, .gallery-swiper {
  padding: 8px 0 20px;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 82%, transparent 100%);
          mask-image: linear-gradient(to right, black 0%, black 82%, transparent 100%);
}
.gallery-nav {
  display: flex; gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}
.gallery-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-btn:disabled { opacity: 0.3; cursor: default; }
.gallery-card,
.swiper-slide.gallery-card,
.ba-swiper .swiper-slide,
.gallery-swiper .swiper-slide {
  width: 300px !important;
  flex-shrink: 0 !important;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(0.16,1,0.3,1), box-shadow .4s;
  box-sizing: border-box;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.gallery-img {
  width: 100%; aspect-ratio: 1/1;
  position: relative; overflow: hidden;
  display: flex;
}
.ba-img {
  object-fit: cover; object-position: center center;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  background: #e8e8e8;
}
.gallery-card[data-split="h"] .gallery-img { flex-direction: row; }
.gallery-card[data-split="h"] .ba-img { width: 50%; height: 100%; }
.gallery-card[data-split="h"] .gallery-img::after {
  content: ''; pointer-events: none;
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: #fff; opacity: .75; transform: translateX(-50%);
}
.gallery-card[data-split="h"] .ba-label-l { left: 8px; top: 10px; }
.gallery-card[data-split="h"] .ba-label-r { right: 8px; top: 10px; left: auto; bottom: auto; }
.gallery-card[data-split="v"] .gallery-img { flex-direction: column; }
.gallery-card[data-split="v"] .ba-img { width: 100%; height: 50%; }
.gallery-card[data-split="v"] .gallery-img::after {
  content: ''; pointer-events: none;
  position: absolute; top: 50%; left: 0; right: 0; height: 2px;
  background: #fff; opacity: .75; transform: translateY(-50%);
}
.gallery-card[data-split="v"] .ba-label-l { left: 8px; top: 8px; right: auto; bottom: auto; }
.gallery-card[data-split="v"] .ba-label-r { left: 8px; bottom: 8px; top: auto; right: auto; }
.ba-label-l, .ba-label-r {
  position: absolute;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.55); color: #fff;
  pointer-events: none;
}
.gallery-body { padding: 14px 16px; }
.gallery-body-title {
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
}
.gallery-body-sub { font-size: 0.7rem; color: var(--ink-3); margin-top: 3px; }
@media (max-width: 768px) {
  .ba-swiper, .gallery-swiper { padding-bottom: 4px; }
  .gallery-nav { margin-top: 16px; }
}
@media (max-width: 600px) {
  .gallery-card,
  .swiper-slide.gallery-card,
  .ba-swiper .swiper-slide,
  .gallery-swiper .swiper-slide { width: 75vw !important; }
}

/* ===== LEGAL PAGES (이용약관, 개인정보처리방침) ===== */
.content-block.legal { padding: clamp(60px,8vw,100px) 0; }
.content-block.legal .lede { display: block; max-width: 880px; }
.content-block.legal .body { grid-column: unset; max-width: 100%; }
.content-block.legal h3 {
  font-size: 1.05rem; font-weight: 600;
  margin: 40px 0 14px; color: var(--ink);
  letter-spacing: -0.01em;
}
.content-block.legal h3:first-of-type { margin-top: 0; }
.content-block.legal p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--ink-2); margin: 0 0 16px;
}
.content-block.legal p strong {
  display: inline-block; color: var(--ink); font-weight: 600;
  margin-bottom: 4px;
}
