/* ═══════════════════════════════════════════════════════════════
   CORE TAX — 프리미엄 랜딩페이지 스타일 v3.0
   Theme: Deep Navy × Champagne Gold × Pure White
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Pretendard:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #162d55;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --gold-pale: #f5e9c9;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: rgba(201, 168, 76, 0.2);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
  --shadow-deep: 0 20px 60px rgba(10, 22, 40, 0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   LOADER — 프리미엄 스플래시 화면
   ═══════════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

/* 배경 노이즈 효과 */
#loader::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201,168,76,0.015) 2px, rgba(201,168,76,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201,168,76,0.015) 2px, rgba(201,168,76,0.015) 4px);
  pointer-events: none;
}

.loader-brand {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  animation: loaderFadeIn 0.8s ease forwards;
}

.loader-symbol {
  position: relative;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.loader-symbol .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  animation: spinRing linear infinite;
}
.loader-symbol .ring-1 {
  width: 110px; height: 110px;
  border-top-color: var(--gold);
  border-right-color: rgba(201,168,76,0.3);
  animation-duration: 2s;
}
.loader-symbol .ring-2 {
  width: 88px; height: 88px;
  border-bottom-color: var(--gold-light);
  border-left-color: rgba(232,204,122,0.3);
  animation-duration: 1.4s;
  animation-direction: reverse;
}
.loader-symbol .ring-3 {
  width: 66px; height: 66px;
  border-top-color: rgba(201,168,76,0.6);
  border-right-color: transparent;
  animation-duration: 1s;
}
.loader-logo-inner {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
}

.loader-wordmark {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.loader-wordmark .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
}
.loader-wordmark .en span { color: var(--gold); }
.loader-wordmark .ko {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
}

.loader-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 4px 0;
}

.loader-slogan {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.loader-progress {
  width: 200px;
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.loader-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: progressFill 2.6s ease forwards;
  box-shadow: 0 0 8px var(--gold);
}
.loader-pct {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 500;
}

@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes progressFill { 0% { width: 0%; } 40% { width: 40%; } 70% { width: 70%; } 90% { width: 88%; } 100% { width: 100%; } }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  height: 68px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-logo-text .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-logo-text .en span { color: var(--gold); }
.nav-logo-text .ko {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4) !important;
}
.nav-cta img { width: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex; align-items: center;
}

/* 사선 그라데이션 레이어 */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(21,55,100,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(15,32,64,0.9) 0%, transparent 70%);
  z-index: 1;
}

/* 기하학 장식 */
.hero-geo {
  position: absolute; z-index: 1;
  pointer-events: none;
}
.hero-geo-1 {
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  animation: geoRotate 20s linear infinite;
}
.hero-geo-2 {
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
  animation: geoRotate 15s linear infinite reverse;
}
.hero-geo-3 {
  bottom: 80px; left: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  animation: geoRotate 25s linear infinite;
}
.hero-vertical-lines {
  position: absolute; top: 0; right: 15%;
  height: 100%; z-index: 1;
  display: flex; gap: 18px;
  pointer-events: none;
}
.hero-vertical-lines span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.08) 70%, transparent 100%);
}

#particles-canvas {
  position: absolute; inset: 0; z-index: 2;
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
.hero-badge span {
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-label {
  font-size: 13px; font-weight: 500;
  color: var(--gold); letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
  opacity: 0;
  animation: heroFadeUp 0.9s 0.5s ease forwards;
}
.hero-title .line-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  display: block;
}
.hero-title .line-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: -1px;
  display: block;
}
.hero-title .line-3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  display: block;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin: 28px 0 44px;
  max-width: 520px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.7s ease forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.9s ease forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700; font-size: 15px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.45);
}
.btn-primary .btn-icon { font-size: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 500; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

/* 히어로 우측 통계 카드 */
.hero-stats {
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0;
  animation: heroFadeRight 0.9s 1.1s ease forwards;
}
.hero-stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 22px 28px;
  min-width: 180px;
  text-align: center;
  transition: var(--transition);
}
.hero-stat-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.08);
  transform: translateX(-4px);
}
.hero-stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stat-card .num-unit {
  font-size: 20px; color: var(--gold-light);
}
.hero-stat-card .label {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* 히어로 하단 신뢰 배지 */
.hero-trust-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(201,168,76,0.1);
  backdrop-filter: blur(10px);
}
.hero-trust-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 5%;
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 400;
  white-space: nowrap;
}
.trust-item .trust-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.trust-item strong { color: var(--gold); font-weight: 600; }

@keyframes geoRotate { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ═══════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════ */
section { overflow: hidden; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 28px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute; top: 50%;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-eyebrow::before { right: 100%; margin-right: 0; transform: translateX(8px); }
.section-eyebrow::after { left: 100%; transform: translateX(-8px); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title .accent { color: var(--gold); }
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 16px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   WHY CORE TAX
   ═══════════════════════════════════════════════════════ */
#why {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
}
#why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 30%, rgba(21,55,100,0.5) 0%, transparent 60%);
  pointer-events: none;
}

#why .section-title { color: var(--white); }
#why .section-desc { color: rgba(255,255,255,0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  position: relative;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.18);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.why-card:hover .why-num { color: rgba(201,168,76,0.15); }
.why-icon {
  font-size: 32px; margin-bottom: 16px;
}
.why-title {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.why-text {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
#services {
  padding: 120px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10,22,40,0.12);
  border-color: transparent;
}

.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
}

.service-title {
  font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px;
}
.service-desc {
  font-size: 14px; font-weight: 400;
  color: var(--text-mid); line-height: 1.8;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
}
.service-tag {
  padding: 4px 10px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  font-size: 11px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════
   PROFILE
   ═══════════════════════════════════════════════════════ */
#profile {
  padding: 120px 0;
  background: var(--white);
}

.profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.profile-image-wrap {
  position: relative;
}
.profile-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.profile-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.6) 100%);
}
.profile-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.profile-name-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 2;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 18px 20px;
}
.profile-name-badge .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white);
}
.profile-name-badge .title {
  font-size: 12px; color: var(--gold); font-weight: 500;
  letter-spacing: 1.5px; margin-top: 4px;
}

.profile-deco-line {
  position: absolute; top: 20px; right: -20px;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}
.profile-deco-circle {
  position: absolute; top: -20px; right: -40px;
  width: 120px; height: 120px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
}

.profile-content {}
.profile-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.career-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 40px;
}
.career-item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.career-item:last-child { border-bottom: none; }
.career-year {
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
  min-width: 48px; padding-top: 2px;
}
.career-detail .title {
  font-size: 15px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 2px;
}
.career-detail .sub {
  font-size: 13px; color: var(--text-light);
}

.contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.contact-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.contact-card .cc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-card .cc-text .label {
  font-size: 10px; color: var(--text-light); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.contact-card .cc-text .value {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════
   REVIEWS (후기)
   ═══════════════════════════════════════════════════════ */
#reviews {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
#reviews .section-title { color: var(--white); }
#reviews .section-desc { color: rgba(255,255,255,0.5); }
#reviews .section-eyebrow { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px; font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.review-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.review-star { color: var(--gold); font-size: 14px; }

.review-text {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}

.review-footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}
.review-info .reviewer-name {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.review-info .reviewer-type {
  font-size: 11px; color: var(--gold); font-weight: 500;
  letter-spacing: 0.5px; margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
#cta {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #102040 50%, #0d1e38 100%);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  margin-bottom: 28px;
}
.cta-tag span { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-title .gold { color: var(--gold); }

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  position: relative; z-index: 1;
}

.cta-btns {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════ */
#location {
  padding: 120px 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.location-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.location-info .sub {
  font-size: 14px; color: var(--text-light); margin-bottom: 40px;
}

.info-list {
  display: flex; flex-direction: column; gap: 0;
}
.info-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  align-items: flex-start;
}
.info-item:last-child { border-bottom: none; }
.info-item-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
  flex-shrink: 0;
}
.info-item-text .label {
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 4px;
}
.info-item-text .value {
  font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.5;
}
.info-item-text .value a { color: var(--navy); transition: color 0.3s; }
.info-item-text .value a:hover { color: var(--gold); }

.kakao-cta {
  margin-top: 32px;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 24px;
  background: #FEE500;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  width: 100%;
}
.kakao-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(254,229,0,0.4); }
.kakao-cta-icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.kakao-cta-text .label { font-size: 11px; color: rgba(0,0,0,0.45); font-weight: 500; }
.kakao-cta-text .value { font-size: 16px; font-weight: 800; color: #191600; }

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  height: 480px;
}
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 5%;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-logo-area {}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--white); letter-spacing: 3px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 6px; letter-spacing: 1.5px;
}

.footer-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.footer-info {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-align: right; line-height: 1.8;
}
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding: 24px 5% 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════ */
.float-btns {
  position: fixed; bottom: 32px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px;
  height: 52px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.float-btn-kakao {
  background: #FEE500;
  color: #191600;
}
.float-btn-phone {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
}
.float-btn-top {
  width: 44px; height: 44px;
  padding: 0;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  border: 1px solid rgba(0,0,0,0.08);
  display: none;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}
.float-btn-kakao:hover { background: #ffd700; }
.float-btn-phone:hover { background: var(--navy-mid); border-color: var(--gold); }
.float-btn-icon { font-size: 18px; }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL (JS에서 사용)
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { min-width: 140px; flex: 1; }
  .hero-trust-inner { gap: 24px; }
  .profile-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 360px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    padding: 24px 5%;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    gap: 16px;
  }
  .hero-content { padding: 100px 5% 120px; gap: 40px; }
  .hero-stats { flex-direction: row; gap: 10px; }
  .hero-stat-card { padding: 16px 18px; }
  .hero-stat-card .num { font-size: 30px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image-wrap { max-width: 320px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .footer-info { text-align: left; }
  .float-btns { bottom: 20px; right: 16px; gap: 8px; }
}
