/* =========================================
   FORESIGHT COMPANY MSO — Design System
   Theme: Forest Green + Warm Cream (명함과 통일)
   ========================================= */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Base — Warm Cream (명함과 통일) */
  --bg-primary: #FAF9F5;       /* main warm cream (살짝 밝음) */
  --bg-secondary: #F5EFE3;     /* 명함 본 배경 */
  --bg-tertiary: #E8DCC2;      /* card highlight, 명함 보조 배경 */
  --bg-elevated: #FFFFFF;      /* elevated white card */

  /* Accent — Forest Green (var 이름은 호환을 위해 gold-* 유지) */
  --gold-100: #D9E5DC;         /* very light forest */
  --gold-200: #A8C2B0;         /* mid sage */
  --gold-400: #1B3B2E;         /* Primary Forest Green */
  --gold-600: #0F2820;         /* darker forest */
  --gold-glow: rgba(27, 59, 46, 0.12);

  /* True gold accents (hero·CTA) */
  --true-gold: #D4B872;        /* matte champagne gold */
  --true-gold-hover: #E6CB85;  /* lighter on hover */
  --cream-cta: #F5EFE3;        /* cream button bg */

  /* Text — Warm Charcoal + Sage tint */
  --text-primary: #1F1E1D;     /* near-black, warm */
  --text-secondary: #4A4742;
  --text-tertiary: #5C6B5F;    /* sage tinted charcoal (명함과 통일) */
  --text-muted: #9C988E;

  /* Border */
  --border-subtle: rgba(31, 30, 29, 0.08);
  --border-default: rgba(31, 30, 29, 0.16);
  --border-gold: rgba(27, 59, 46, 0.35);

  /* Type */
  --font-sans: 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  --font-serif: 'Source Serif 4', 'Pretendard', Georgia, serif;
  --font-en: 'Inter', 'Pretendard', sans-serif;

  /* Spacing & Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-default: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-400); }
button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }

::selection { background: var(--gold-400); color: #FAF9F5; }

/* ============ Typography ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-400);
}

h1, .h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
}
h2, .h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
}
h3, h4, h5, p, li {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h3, .h3 {
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
}

.lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 62ch;            /* 한글 본문 가독성 적정 너비 */
  word-break: keep-all;       /* 한글 단어 단위 줄바꿈 */
  overflow-wrap: break-word;
}

/* 본문 paragraph 가독성 (인라인 max-width 없는 곳 일괄 적용) */
section p:not(.lead):not([style*="max-width"]) {
  max-width: 64ch;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 연속 단락은 적정 간격 */
section p + p { margin-top: 1.15em; }

/* prose 클래스 (긴 본문 블록 — 인사말·케이스스터디용) */
.prose {
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  word-break: keep-all;
}
.prose p + p { margin-top: 1.2em; }
.prose strong { color: var(--text-primary); font-weight: 600; }

.gold { color: var(--gold-400); }
.serif { font-family: var(--font-serif); }

/* ============ Layout ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: clamp(80px, 9vw, 130px) 0; }

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(250, 249, 245, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--t-default);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(250, 249, 245, 0.92);
  border-bottom-color: var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-mark-img {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
  margin-right: 4px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--gold-400);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0;
}
.brand-name { color: var(--text-primary); }
.brand-sub {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 1.5px;
  background: var(--gold-400);
  transition: width var(--t-default);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--text-primary);
  color: #FAF9F5;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--t-default);
}
.nav-cta:hover {
  background: var(--gold-400);
  color: #FFFFFF;
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--t-default), opacity var(--t-default);
  border-radius: 2px;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all var(--t-default);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-400);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--gold-600);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(27, 59, 46, 0.25);
}
.btn-outline {
  border-color: var(--border-default);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: #FAF9F5;
}
.btn-arrow { font-family: var(--font-en); font-weight: 400; }

/* ============ Hero — CINEMATIC ============ */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background: #050a08; /* fallback while video loads */
  color: #FFFFFF;
}
.hero-cinema .hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Ken Burns 효과 — 영상 자체에 slow zoom */
  animation: heroZoom 30s ease-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.10); }
}
.hero-cinema .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* 좌측 텍스트 영역만 forest tint — 지구 영상은 그대로 보임 */
    linear-gradient(90deg, rgba(13,30,22,0.55) 0%, rgba(13,30,22,0.28) 45%, rgba(13,30,22,0.05) 75%, transparent 100%),
    /* 하단 forest green으로 자연 그라데이션 (about 섹션과 연결) */
    linear-gradient(180deg, rgba(13,30,22,0.20) 0%, transparent 25%, transparent 65%, rgba(27,59,46,0.55) 100%);
}
.hero-cinema .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero-cinema .hero-eyebrow {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  opacity: 1;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.75),
    0 1px 4px rgba(0,0,0,0.55);
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-cinema .hero-eyebrow::before {
  background: var(--true-gold);
  width: 36px;
  height: 2px;
}
.hero-headline-en {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-top: 24px;
  word-break: keep-all;
  text-shadow:
    0 4px 32px rgba(0,0,0,0.75),
    0 2px 12px rgba(0,0,0,0.55),
    0 1px 3px rgba(0,0,0,0.45);
  animation: fadeInUp 1.2s ease-out 0.5s both;
}
.hero-headline-en .accent-italic {
  font-style: italic;
  color: var(--true-gold);
  white-space: nowrap;
}
.hero-sub-ko {
  margin-top: 36px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.95);
  word-break: keep-all;
  text-shadow:
    0 2px 16px rgba(0,0,0,0.70),
    0 1px 4px rgba(0,0,0,0.50);
  animation: fadeInUp 1.2s ease-out 0.8s both;
}
.hero-cinema .hero-actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 1.2s ease-out 1.1s both;
}
.btn-primary-light {
  background: var(--true-gold);
  color: #1F1E1D;
  border: 1px solid var(--true-gold);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-primary-light:hover {
  background: var(--true-gold-hover);
  border-color: var(--true-gold-hover);
  color: #1F1E1D;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.30);
}
.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.10);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1.5s ease-out 1.6s both;
}
.scroll-cue .scroll-arrow {
  font-size: 18px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero meta strip — 시네마틱 hero 다음 4-stat 카드 그리드 (브랜드 가이드 v1.0 60-25-10-5) */
.hero-meta-strip {
  background: linear-gradient(180deg, #F5EFE3 0%, #EFE7D6 100%);
  padding: 96px 0 96px;
  border-bottom: 1px solid rgba(212, 184, 114, 0.28);
  position: relative;
  overflow: hidden;
}
.hero-meta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 184, 114, 0.10), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(27, 59, 46, 0.06), transparent 55%);
  pointer-events: none;
}
.hero-meta-strip .container { position: relative; z-index: 1; }
.hero-meta-strip .hero-meta {
  /* override default hero-meta — full width, 4 columns, centered */
  margin-top: 0 !important;
  max-width: none !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.hero-meta-strip .meta-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.28);
  border-radius: 12px;
  padding: 36px 28px 32px;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
}
.hero-meta-strip .meta-item::before {
  /* Gold accent line (top-left) — 명함 박의 디지털 변환 */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: #D4B872;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-meta-strip .meta-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(27, 59, 46, 0.14);
  border-color: rgba(212, 184, 114, 0.55);
}
.hero-meta-strip .meta-item:hover::before {
  width: 72px;
}
.hero-meta-strip .meta-item .meta-num {
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.4vw, 52px);
  color: #1B3B2E;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-meta-strip .meta-item .meta-label {
  margin-top: 0;
  font-size: 14px;
  color: rgba(31, 30, 29, 0.72);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .hero-meta-strip { padding: 64px 0; }
  .hero-meta-strip .hero-meta {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}
@media (max-width: 520px) {
  .hero-meta-strip .hero-meta {
    grid-template-columns: 1fr !important;
  }
  .hero-meta-strip .meta-item { padding: 28px 24px; }
}

/* ============ Cinematic Intro (About — Rich Forest Green) ============ */
.cinematic-intro {
  /* 브랜드 톤 Forest Green base — 검정 X */
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cinematic-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(212, 184, 114, 0.10), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(13, 30, 22, 0.45), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cinematic-intro .container { position: relative; z-index: 1; }

.split-cinema {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .split-cinema { grid-template-columns: 1fr; gap: 60px; }
  .visual-side { order: -1; }
}

.eyebrow-light {
  color: rgba(245, 239, 227, 0.65) !important;
}
.eyebrow-light::before {
  background: var(--true-gold) !important;
}

.accent-location {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: rgba(245, 239, 227, 0.78);
  margin: 12px 0 16px;
  word-break: keep-all;
}
.loc-highlight {
  color: var(--true-gold);
  font-weight: 700;
  border-bottom: 2px solid var(--true-gold);
  padding-bottom: 2px;
}
.loc-tail {
  margin-left: 6px;
  color: rgba(245, 239, 227, 0.6);
  font-weight: 400;
}

.intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 8px 0 36px;
  word-break: keep-all;
  max-width: 640px;
}
.intro-headline .intro-line {
  display: block;
}
.intro-headline .serif-gold {
  color: var(--true-gold);
  font-weight: 500;
}

.text-side {
  max-width: 620px;
}

.intro-sub {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(245, 239, 227, 0.85);
  max-width: 560px;
  word-break: keep-all;
}
.legal-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 227, 0.10);
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(245, 239, 227, 0.50);
  word-break: keep-all;
}

/* Vision Sweep — E3 로고 확장형 */
.visual-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.vision-sweep {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(212, 184, 114, 0.18));
}
.vision-sweep .sweep-group {
  transform-origin: 200px 200px;
  animation: visionRotate 18s linear infinite;
}
@keyframes visionRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.vision-caption {
  margin-top: 36px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: rgba(245, 239, 227, 0.55);
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .vision-sweep .sweep-group { animation: none; transform: rotate(-30deg); }
  .vision-sweep circle animate, .vision-sweep circle animateTransform { display: none; }
}

/* 3D Cube (legacy — 사용 안함, 보존) */
.cube-stage-legacy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}
.cube-stage {
  width: 280px;
  height: 280px;
  position: relative;
}
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 22s infinite linear;
}
.cube .face {
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(27, 59, 46, 0.92) 0%, rgba(15, 40, 32, 0.92) 100%);
  border: 1px solid rgba(212, 184, 114, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 180px;
  font-weight: 400;
  color: var(--true-gold);
  letter-spacing: -0.05em;
  box-shadow:
    inset 0 0 100px rgba(212, 184, 114, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.cube .front  { transform: translateZ(140px); }
.cube .back   { transform: rotateY(180deg) translateZ(140px); }
.cube .right  { transform: rotateY(90deg) translateZ(140px); }
.cube .left   { transform: rotateY(-90deg) translateZ(140px); }
.cube .top    { transform: rotateX(90deg) translateZ(140px); }
.cube .bottom { transform: rotateX(-90deg) translateZ(140px); }

@keyframes cubeRotate {
  0%   { transform: rotateX(-18deg) rotateY(0deg); }
  100% { transform: rotateX(-18deg) rotateY(360deg); }
}

.cube-caption {
  margin-top: 40px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(245, 239, 227, 0.55);
  text-transform: uppercase;
}
.cube-caption .caret {
  color: var(--true-gold);
  animation: caretBlink 1.2s ease-in-out infinite;
}
@keyframes caretBlink {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* Reduced motion (접근성) */
@media (prefers-reduced-motion: reduce) {
  .cube { animation: none; transform: rotateX(-18deg) rotateY(-25deg); }
  .hero-video { animation: none; }
}

/* ============ Services — Rich Forest Green ============ */
.services-cinema {
  /* About 섹션과 톤 연결 — 살짝 더 어둡게 깊이감 */
  background: linear-gradient(180deg, #163225 0%, #102819 100%);
  color: #F5EFE3;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}
.services-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(212, 184, 114, 0.08), transparent 50%),
    radial-gradient(ellipse at 10% 95%, rgba(212, 184, 114, 0.04), transparent 55%);
  pointer-events: none;
}
.services-cinema .container { position: relative; z-index: 1; }

.services-head {
  max-width: 760px;
  margin-bottom: 80px;
}
.services-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.20;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 16px 0 28px;
  word-break: keep-all;
}
.services-sub {
  color: rgba(245, 239, 227, 0.72);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
  max-width: 620px;
}

/* Service Cards Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 820px) {
  .service-cards { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 4px;
  /* 카드는 cream/베이지 — 어두운 페이지와 강한 대비 (DOCY 패턴) */
  background: #F5EFE3;
  border: 1px solid rgba(212, 184, 114, 0.30);
  transition:
    background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 184, 114, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--true-gold);
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  /* 카드 살짝 떠올리기 + Gold 보더 강조 */
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: var(--true-gold);
  box-shadow: 0 24px 56px rgba(13, 30, 22, 0.40), 0 0 0 1px rgba(212, 184, 114, 0.45);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { width: 100%; }

.service-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--true-gold);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.service-card:hover .service-num { color: #B8A05E; }

.service-card:hover .service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  color: #1B3B2E;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 15px;
  color: rgba(31, 30, 29, 0.78);
  line-height: 1.7;
  margin-bottom: 20px;
  word-break: keep-all;
  transition: color 0.3s ease;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 2;
  color: rgba(31, 30, 29, 0.66);
  transition: color 0.3s ease;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--true-gold);
  opacity: 0.7;
}

/* hover 시 글씨 강조 */
.service-card:hover h3 { color: #0F2820; }
.service-card:hover p  { color: rgba(31, 30, 29, 0.95); }
.service-card:hover .service-list li { color: rgba(31, 30, 29, 0.88); }
.service-card:hover .service-list li::before { opacity: 1; }

.service-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--true-gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-arrow {
  gap: 14px;
  color: #B8A05E;
}

/* === Services 아이콘 — 절제된 Premium 호버 (회전 X, Forest 반전 X) === */
.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: rgba(212, 184, 114, 0.12);
  border: 1px solid rgba(212, 184, 114, 0.38);
  color: #1B3B2E;
  opacity: 1;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  stroke-width: 1.5;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s ease;
}
.service-card:hover .service-icon {
  /* 박스: 미세하게 더 밝아지고, Gold 보더 + Gold 광채 ring (회전·반전 없음) */
  background: #FFFFFF;
  border-color: #D4B872;
  box-shadow:
    0 8px 24px rgba(212, 184, 114, 0.28),
    0 0 0 4px rgba(212, 184, 114, 0.10);
}
.service-card:hover .service-icon svg {
  /* SVG만 살짝 확대 — 박스는 정중하게 정지 */
  transform: scale(1.08);
}

/* ============================================================
   📱 MOBILE OVERFLOW SAFETY NET — 2026-05-20 v=i
   모든 디자인 변경 시 자동으로 적용되는 안전 기본값.
   ============================================================ */

/* 1) 글로벌 박싱 + 가로 스크롤 차단 */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* 2) 미디어 요소는 절대 viewport 초과 금지 */
img, svg, video, iframe, canvas, picture {
  max-width: 100%;
  height: auto;
}

/* 3) 한글 word-break — 단어가 박스 밖으로 튀어나가지 않게 */
body, p, h1, h2, h3, h4, li, span, div, a, label, button {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 4) flex / grid 자식이 부모를 밀어내지 않도록 */
.split-cinema > *,
.services-head > *,
.hero-content > *,
.service-card > *,
.card > *,
.intro-line { min-width: 0; }

/* 5) container 모바일 padding (좌우 여백 확보) */
@media (max-width: 720px) {
  .container { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 420px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

/* 6) Vision Sweep — 모바일에서 컨테이너 안쪽으로 확실히 가둠 */
.visual-side {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.vision-sweep {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .vision-sweep { max-width: 360px; }
}

/* 7) Hero headline — 모바일에서 폰트 다운스케일 + 줄높이 정리 */
@media (max-width: 720px) {
  .hero-headline, .intro-headline, .services-headline {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.25 !important;
    word-break: keep-all;
  }
  .hero-lead, .intro-sub, .services-sub {
    font-size: 15px !important;
    line-height: 1.65;
  }
  .scroll-cue { display: none; }
}
@media (max-width: 420px) {
  .hero-headline, .intro-headline, .services-headline {
    font-size: clamp(24px, 7.5vw, 32px) !important;
  }
}

/* 8) Hero CTA 버튼 — 모바일에서 줄바꿈 + 풀폭 */
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* 9) Stats stripe — 4열에서 모바일은 2x2 / 1열로 */
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .meta-num { font-size: clamp(26px, 7vw, 34px) !important; }
  .meta-label { font-size: 12px !important; }
}
@media (max-width: 420px) {
  .hero-meta { grid-template-columns: 1fr !important; gap: 18px !important; }
}

/* 10) Services 카드 그리드 — 모바일 1열 + 패딩 축소 */
@media (max-width: 720px) {
  .service-cards { grid-template-columns: 1fr !important; gap: 16px !important; }
  .service-card { padding: 28px 22px !important; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 22px; }
  .service-icon svg { width: 24px !important; height: 24px !important; }
}

/* 11) Footer / nav — 모바일 줄바꿈 */
@media (max-width: 720px) {
  .nav-inner { flex-wrap: wrap; gap: 12px; padding-left: 16px; padding-right: 16px; }
  .nav-links { gap: 14px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
}

/* 12) About cinematic split — 모바일 1열 + visual 위로 */
@media (max-width: 720px) {
  .split-cinema { gap: 36px !important; }
  .cinematic-intro { padding: 80px 0 !important; }
  .services-cinema { padding: 80px 0 !important; }
}

/* 13) tables / pre / code 안전망 (혹시 들어올 경우) */
table { width: 100%; max-width: 100%; }
pre, code { white-space: pre-wrap; word-break: break-all; max-width: 100%; }

/* 14) 추가 안전: position fixed/absolute 요소가 viewport 밖으로 가지 않게 */
[class*="overlay"], [class*="modal"] { max-width: 100vw; }

/* ============================================================
   📱 NAV 햄버거 (모바일 720px↓) — v=j
   ============================================================ */

/* 브랜드 워드마크가 절대 줄바꿈 안 되도록 */
.brand-name, .brand-sub { white-space: nowrap; }

/* 햄버거 버튼 — 데스크탑은 숨김, 모바일만 표시 */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary, #1F1E1D);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease;
  transform-origin: center;
}
.nav.open .menu-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav.open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav.open .menu-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav { position: sticky; top: 0; z-index: 1000; background: rgba(245, 239, 227, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
  .nav-inner { padding: 12px 16px; min-height: 60px; align-items: center; }
  .brand { gap: 8px; flex-shrink: 0; }
  .brand-mark-img { width: 30px !important; height: 30px !important; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 10px; opacity: 0.6; }

  .menu-toggle { display: flex; }

  /* 평소: 메뉴 숨김 */
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(245, 239, 227, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 28px 28px;
    gap: 4px;
    margin: 0;
    list-style: none;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    box-shadow: 0 24px 60px rgba(13, 30, 22, 0.18);
    z-index: 999;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 22px;
    padding: 14px 0;
    color: var(--text-primary, #1F1E1D);
    border-bottom: 1px solid rgba(212, 184, 114, 0.18);
    letter-spacing: -0.01em;
  }
  .nav-links a::after { display: none; }

  /* CTA 모바일에서는 메뉴 안에 풀폭으로 */
  .nav-cta {
    display: none;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
  }

  /* OPEN 상태 */
  .nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav.open .nav-cta {
    display: inline-flex;
    position: fixed;
    top: auto;
    bottom: 24px;
    left: 28px; right: 28px;
    z-index: 1001;
  }

  /* OPEN 시 body 스크롤 잠금 효과 — overlay backdrop */
  .nav.open::before {
    content: '';
    position: fixed;
    inset: 60px 0 0 0;
    background: rgba(27, 59, 46, 0.25);
    z-index: 998;
    pointer-events: none;
  }

  /* Hero 첫 줄이 nav에 가리지 않게 — hero는 자기 영역 확보 */
  .hero, .hero-cinema {
    padding-top: 24px;
  }
}

/* ============================================================
   📱 NAV 햄버거 OVERRIDE  — 2026-05-21 v=b
   이전 모든 .nav-links / .nav-cta / .menu-toggle 정의를 덮어씀.
   ============================================================ */
@media (max-width: 720px) {
  /* nav-inner: 양쪽 끝 정렬, 줄바꿈 없음 */
  .nav .nav-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 12px 16px !important;
    min-height: 60px !important;
    gap: 12px !important;
  }

  /* brand: 좌측 고정 + 줄바꿈 절대 금지 */
  .nav .brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    max-width: calc(100% - 52px) !important;
  }
  .nav .brand-mark-img {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
  }
  .nav .brand-name {
    font-size: 16px !important;
    white-space: nowrap !important;
    color: #1F1E1D !important;
  }
  .nav .brand-sub {
    font-size: 10px !important;
    white-space: nowrap !important;
    opacity: 0.55;
  }

  /* 햄버거 버튼: 항상 보이게 + 진한 색 */
  .nav .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    width: 28px !important;
    height: 22px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    z-index: 1100 !important;
    flex-shrink: 0 !important;
  }
  .nav .menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 2.5px !important;
    background: #1F1E1D !important;
    border-radius: 2px !important;
    transition: transform 0.3s ease, opacity 0.2s ease !important;
    transform-origin: center !important;
  }

  /* 평소: 메뉴/CTA 완전히 숨김 (강제) */
  .nav .nav-links {
    display: none !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: #F5EFE3 !important;
    padding: 28px 24px 28px !important;
    margin: 0 !important;
    list-style: none !important;
    box-shadow: 0 24px 60px rgba(13,30,22,0.18) !important;
    z-index: 1099 !important;
    gap: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav .nav-cta {
    display: none !important;
  }

  /* 열림: 메뉴 보임 */
  .nav.open .nav-links {
    display: flex !important;
  }
  .nav.open .nav-cta {
    display: inline-flex !important;
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    right: 24px !important;
    justify-content: center !important;
    z-index: 1100 !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
  }

  /* 햄버거 → X */
  .nav.open .menu-toggle span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg) !important;
  }
  .nav.open .menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }
  .nav.open .menu-toggle span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg) !important;
  }

  /* 메뉴 항목 스타일 */
  .nav .nav-links li {
    list-style: none !important;
    width: 100% !important;
  }
  .nav .nav-links a {
    display: block !important;
    padding: 18px 0 !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    font-size: 22px !important;
    color: #1F1E1D !important;
    border-bottom: 1px solid rgba(212, 184, 114, 0.22) !important;
    text-decoration: none !important;
    letter-spacing: -0.01em !important;
  }
  .nav .nav-links a::after { display: none !important; }
}


/* ============================================================
   🔭 About 레이더 — 섹션 전체 확장 (텍스트 뒤로 페이드)
   2026-05-21 v=d
   ============================================================ */
@media (min-width: 961px) {
  /* 섹션은 overflow hidden 으로 외곽 잘림 + position relative */
  .cinematic-intro {
    position: relative !important;
    overflow: hidden !important;
  }

  /* split 그리드 컨테이너는 그대로 — 다만 z-index 정리 */
  .cinematic-intro .container.split-cinema {
    position: relative !important;
    z-index: 2 !important;
  }

  /* 텍스트 영역은 레이더 위로 */
  .cinematic-intro .text-side {
    position: relative !important;
    z-index: 3 !important;
  }

  /* visual-side는 자리 차지하되 내용은 absolute로 풀려 나감 */
  .cinematic-intro .visual-side {
    position: relative !important;
    overflow: visible !important;
    min-height: 460px;
  }

  /* 레이더 SVG 자체 — 섹션 전체로 확장 */
  .cinematic-intro .vision-sweep {
    position: absolute !important;
    /* 화면 우측에 원점이 오도록, 좌측으로 크게 펼쳐짐 */
    top: 50% !important;
    right: -6% !important;
    transform: translateY(-50%) !important;
    width: 68vw !important;
    max-width: 900px !important;
    height: auto !important;
    z-index: 1 !important;
    pointer-events: none;

    /* 좌측은 텍스트 영역 쪽으로 자연스럽게 페이드 */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.10) 12%,
      rgba(0,0,0,0.35) 22%,
      rgba(0,0,0,0.65) 32%,
      #000 45%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.10) 12%,
      rgba(0,0,0,0.35) 22%,
      rgba(0,0,0,0.65) 32%,
      #000 45%
    );
  }

  /* vision-caption (FORESEE · OBSERVE · SUPPORT) 도 자리 잡아 보이게 */
  .cinematic-intro .vision-caption {
    position: absolute !important;
    bottom: 24px !important;
    right: 6% !important;
    z-index: 2 !important;
    margin: 0 !important;
  }
}

/* 모바일에서는 잘림 없이 인라인 흐름 유지 */
@media (max-width: 960px) {
  .cinematic-intro .vision-sweep {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .cinematic-intro .vision-caption {
    position: static !important;
    text-align: center !important;
    margin-top: 16px !important;
  }
}

/* ============================================================
   🎯 Services CTA 버튼 가독성 — 다크 배경 대비 강화 v=g
   ============================================================ */
.services-cinema .services-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.services-cinema .services-cta .btn-outline-light {
  border: 1.5px solid #F5EFE3 !important;
  color: #F5EFE3 !important;
  background: transparent !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 50px !important;
  letter-spacing: 0.01em !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-cinema .services-cta .btn-outline-light:hover {
  background: rgba(245, 239, 227, 0.10) !important;
  border-color: #D4B872 !important;
  color: #D4B872 !important;
  transform: translateY(-2px);
}
.services-cinema .services-cta .btn-primary {
  background: #D4B872 !important;
  color: #1B3B2E !important;
  border: 1px solid #D4B872 !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  letter-spacing: 0.01em !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-cinema .services-cta .btn-primary:hover {
  background: #E6CB85 !important;
  color: #1B3B2E !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 184, 114, 0.32) !important;
}
@media (max-width: 520px) {
  .services-cinema .services-cta { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .services-cinema .services-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   🎯 Services Living 아이콘 박스 (v=i)
   박스 80px, svg 56px, 호버 시 살아있는 느낌 강조.
   ============================================================ */
.service-icon {
  width: 80px !important;
  height: 80px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 30px !important;
  border-radius: 18px !important;
  background: rgba(212, 184, 114, 0.14) !important;
  border: 1.5px solid rgba(212, 184, 114, 0.45) !important;
  color: #1B3B2E !important;
  opacity: 1 !important;
  position: relative;
  overflow: hidden;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-icon svg {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-card:hover .service-icon {
  background: #FFFFFF !important;
  border-color: #D4B872 !important;
  box-shadow:
    0 12px 32px rgba(212, 184, 114, 0.36),
    0 0 0 5px rgba(212, 184, 114, 0.14) !important;
}
.service-card:hover .service-icon svg {
  transform: scale(1.06) !important;
}

@media (max-width: 720px) {
  .service-icon {
    width: 68px !important;
    height: 68px !important;
    margin-bottom: 24px !important;
  }
  .service-icon svg {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }
}

/* ============================================================
   📖 Services 카드 내부 텍스트 가독성 (v=j)
   글자 크기 ↑ · 색 대비 ↑ · weight ↑ · 줄 간격 적정화
   ============================================================ */

/* 01·02·03·04 번호 — 더 크게 + 진한 Gold + 박스 처리 느낌 */
.service-card .service-num {
  display: inline-block !important;
  font-family: var(--font-serif, 'Noto Serif KR', Georgia, serif) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #B8A05E !important;            /* Gold 한 톤 진하게 (Cream 배경 대비 ↑) */
  letter-spacing: 0.04em !important;
  margin-bottom: 36px !important;
  position: relative;
  padding-left: 16px;
}
.service-card .service-num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px;
  height: 2px;
  background: #D4B872;
  transform: translateY(-50%);
}
.service-card:hover .service-num { color: #8B7841 !important; }

/* 제목 — 더 크고 굵게, 명확한 위계 */
.service-card h3 {
  font-family: var(--font-serif, 'Noto Serif KR', Georgia, serif) !important;
  font-size: clamp(24px, 2.1vw, 30px) !important;
  font-weight: 700 !important;
  color: #1B3B2E !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 18px !important;
  word-break: keep-all !important;
}

/* 본문 — 진한 Charcoal + 살짝 크게 */
.service-card p {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(31, 30, 29, 0.92) !important;  /* 0.78 → 0.92 (더 진하게) */
  line-height: 1.72 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.005em !important;
  word-break: keep-all !important;
}

/* 리스트 — 가독성 ↑ + 댓시 위치 정돈 */
.service-card .service-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
  border-top: 1px solid rgba(212, 184, 114, 0.32);
  padding-top: 18px !important;
}
.service-card .service-list li {
  position: relative !important;
  padding-left: 22px !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.95 !important;
  color: rgba(31, 30, 29, 0.82) !important;  /* 0.66 → 0.82 */
  letter-spacing: -0.005em !important;
  word-break: keep-all !important;
}
.service-card .service-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 14px !important;
  width: 12px !important;
  height: 2px !important;
  background: #D4B872 !important;
  opacity: 1 !important;
  border-radius: 1px !important;
}

/* 호버 시 텍스트 살짝 진하게 + dash 좀 더 강조 */
.service-card:hover h3 { color: #0F2820 !important; }
.service-card:hover p { color: rgba(31, 30, 29, 1) !important; }
.service-card:hover .service-list li { color: rgba(31, 30, 29, 0.95) !important; }
.service-card:hover .service-list li::before {
  background: #B8A05E !important;
  width: 16px !important;
}

/* 화살표 — 가독성 살짝 강화 */
.service-card .service-arrow {
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #B8A05E !important;
  letter-spacing: 0.04em !important;
  transition: gap 0.3s ease, color 0.3s ease !important;
}
.service-card:hover .service-arrow {
  gap: 14px !important;
  color: #8B7841 !important;
}

/* 카드 내부 padding 살짝 키워서 호흡 */
.service-card {
  padding: 36px 32px 34px !important;
}
@media (max-width: 720px) {
  .service-card {
    padding: 28px 24px 26px !important;
  }
  .service-card h3 { font-size: 22px !important; }
  .service-card p { font-size: 15.5px !important; }
  .service-card .service-list li { font-size: 14px !important; }
}

/* ============================================================
   🦶 Footer 풀 리빌드 (v=l)
   Forest 배경 + Cream 텍스트 + 4단 grid + Gold 액센트
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%) !important;
  color: #F5EFE3 !important;
  padding: 88px 0 36px !important;
  margin-top: 0 !important;
  position: relative;
  border-top: 1px solid rgba(212, 184, 114, 0.20);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4B872, transparent);
}
.footer .container { position: relative; z-index: 1; }

/* 4단 그리드 */
.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
  gap: 56px !important;
  align-items: start !important;
  margin-bottom: 64px !important;
}

/* Brand 영역 (좌측 첫번째 컬럼) */
.footer .footer-brand .brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  text-decoration: none !important;
}
.footer .footer-brand .brand-mark-img {
  width: 36px !important;
  height: 36px !important;
  /* nav-mark.svg는 Forest 컬러 — Footer Forest 배경에서 안 보임. invert로 Cream 톤. */
  filter: invert(94%) sepia(8%) saturate(330%) hue-rotate(8deg) brightness(102%) !important;
}
.footer .footer-brand .brand-name {
  font-family: var(--font-serif, 'Noto Serif KR', Georgia, serif) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #F5EFE3 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
}
.footer .footer-brand p {
  color: rgba(245, 239, 227, 0.62) !important;
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  max-width: 320px !important;
  margin: 0 !important;
  word-break: keep-all !important;
}

/* 컬럼 헤딩 (Company / Services / Contact) */
.footer h5 {
  font-family: var(--font-serif, 'Noto Serif KR', Georgia, serif) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #D4B872 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin: 0 0 22px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(212, 184, 114, 0.22) !important;
}

/* 리스트 — bullet 제거 */
.footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer ul li {
  padding: 6px 0 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: rgba(245, 239, 227, 0.78) !important;
  word-break: keep-all !important;
}
.footer ul li a {
  color: rgba(245, 239, 227, 0.78) !important;
  text-decoration: none !important;
  transition: color 0.25s ease, padding-left 0.25s ease !important;
  display: inline-block;
  position: relative;
}
.footer ul li a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #D4B872;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer ul li a:hover {
  color: #D4B872 !important;
  padding-left: 14px !important;
}
.footer ul li a:hover::before { width: 10px; }

/* Footer Bottom — 좌우 분리 */
.footer .footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(212, 184, 114, 0.18) !important;
  font-size: 13px !important;
  color: rgba(245, 239, 227, 0.55) !important;
  letter-spacing: 0.02em !important;
}
.footer .footer-bottom > div {
  margin: 0 !important;
}

/* 모바일 720px↓ */
@media (max-width: 720px) {
  .footer { padding: 64px 0 28px !important; }
  .footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    margin-bottom: 44px !important;
  }
  .footer .footer-brand p { max-width: 100% !important; }
  .footer h5 { margin-bottom: 16px !important; }
  .footer .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 12.5px !important;
  }
}

/* ============================================================
   📘 About Page — 일괄 리빌드 (v=m)
   Hero / MVV / CEO / Timeline / CTA 5섹션 전용 디자인
   ============================================================ */

/* ---------- About Hero ---------- */
.about-hero {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.16), transparent 60%);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero .breadcrumb {
  font-size: 13px;
  color: rgba(245, 239, 227, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.about-hero .breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.about-hero .breadcrumb a:hover { color: #D4B872; }
.about-hero .breadcrumb .sep { margin: 0 10px; color: rgba(212, 184, 114, 0.5); }
.about-hero .eyebrow-light {
  color: rgba(245, 239, 227, 0.65) !important;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about-hero .eyebrow-light::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #D4B872;
}
.about-hero .about-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: #F5EFE3;
}
.about-hero .about-h1 span { display: block; }
.about-hero .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero .about-lead {
  margin-top: 36px;
  max-width: 660px;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(245, 239, 227, 0.82);
  word-break: keep-all;
}

/* ---------- MVV (Mission · Vision · Core Values) ---------- */
.about-mvv {
  background: #FAF6EC;
  padding: 120px 0;
}
.about-mvv .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.about-mvv .section-head .eyebrow {
  font-size: 12px;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
.about-mvv .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
  word-break: keep-all;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.32);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease,
              border-color 0.3s ease;
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(27, 59, 46, 0.14);
  border-color: #D4B872;
}
.mvv-card .mvv-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212, 184, 114, 0.16);
  border: 1.5px solid rgba(212, 184, 114, 0.45);
  color: #1B3B2E;
  margin-bottom: 24px;
}
.mvv-card:hover .mvv-icon {
  background: #1B3B2E;
  border-color: #1B3B2E;
  color: #D4B872;
}
.mvv-card .mvv-label {
  font-size: 12px;
  font-weight: 600;
  color: #B8A05E;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mvv-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #1B3B2E;
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.mvv-card p {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(31, 30, 29, 0.86);
  word-break: keep-all;
}
@media (max-width: 960px) {
  .mvv-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- CEO Message ---------- */
.about-ceo {
  background: linear-gradient(180deg, #163225 0%, #102819 100%);
  color: #F5EFE3;
  padding: 120px 0;
}
.about-ceo .section-head { margin-bottom: 64px; }
.about-ceo .section-head .eyebrow-light {
  color: rgba(245, 239, 227, 0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.about-ceo .section-head .eyebrow-light::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #D4B872;
}
.about-ceo .section-head h2.white {
  color: #F5EFE3 !important;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.ceo-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1F4434 0%, #163225 60%, #102819 100%);
  border: 1px solid rgba(212, 184, 114, 0.40);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ceo-portrait-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}
.ceo-initial {
  font-family: var(--font-serif);
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 500;
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 50%, #B8A05E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.ceo-meta {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 184, 114, 0.45);
  z-index: 2;
}
.ceo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #F5EFE3;
  letter-spacing: -0.005em;
}
.ceo-title {
  font-size: 12.5px;
  color: rgba(212, 184, 114, 0.88);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.ceo-quote {
  position: relative;
  padding: 36px 36px 32px;
  background: rgba(212, 184, 114, 0.07);
  border-left: 3px solid #D4B872;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
}
.ceo-quote .quote-mark {
  position: absolute;
  top: -22px; left: 22px;
  font-family: var(--font-serif);
  font-size: 92px;
  color: #D4B872;
  opacity: 0.5;
  line-height: 1;
}
.ceo-quote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  color: #F5EFE3;
  margin: 0;
  word-break: keep-all;
}
.ceo-quote-cite {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(212, 184, 114, 0.85);
  letter-spacing: 0.04em;
}
.ceo-body p {
  color: rgba(245, 239, 227, 0.85);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 18px;
  word-break: keep-all;
}
.ceo-body p strong { color: #D4B872; font-weight: 600; }
.ceo-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #F5EFE3;
  color: #F5EFE3 !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ceo-cta:hover {
  border-color: #D4B872;
  color: #D4B872 !important;
  transform: translateY(-2px);
}
@media (max-width: 960px) {
  .ceo-grid { grid-template-columns: 1fr; gap: 48px; }
  .ceo-portrait { max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ---------- Timeline (History) ---------- */
.about-timeline {
  background: #FAF6EC;
  padding: 120px 0 130px;
}
.about-timeline .section-head { text-align: center; margin-bottom: 80px; }
.about-timeline .section-head .eyebrow {
  font-size: 12px;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}
.about-timeline .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.015em;
  margin: 0;
  word-break: keep-all;
}
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 90px;
}
.timeline-line {
  position: absolute;
  left: 33px;
  top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, #D4B872 0%, #D4B872 75%, rgba(212,184,114,0.30) 100%);
}
.tl-item {
  position: relative;
  padding: 0 0 56px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 140px;
}
.tl-year small {
  font-size: 0.45em;
  font-weight: 600;
  color: #D4B872;
  margin-left: 4px;
  vertical-align: top;
}
.tl-node {
  position: absolute;
  left: -68px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D4B872;
  border: 4px solid #FAF6EC;
  box-shadow: 0 0 0 2px #D4B872;
}
.tl-item.future .tl-node {
  background: #FAF6EC;
  box-shadow: 0 0 0 2px #D4B872;
}
.tl-content { padding-top: 4px; }
.tl-meta {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8A05E;
  font-weight: 600;
  margin-bottom: 10px;
}
.tl-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: #1B3B2E;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.tl-content p {
  font-size: 15.5px;
  line-height: 1.82;
  color: rgba(31, 30, 29, 0.84);
  word-break: keep-all;
}
@media (max-width: 720px) {
  .timeline { padding-left: 56px; }
  .timeline-line { left: 12px; }
  .tl-node { left: -46px; width: 14px; height: 14px; border-width: 3px; top: 8px; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; padding-bottom: 44px; }
  .tl-year { min-width: auto; font-size: 36px; margin-bottom: 4px; }
}

/* ---------- Final CTA ---------- */
.about-cta {
  background: linear-gradient(135deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 184, 114, 0.12), transparent 60%);
  pointer-events: none;
}
.about-cta .cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-cta .eyebrow-light {
  color: rgba(245, 239, 227, 0.62);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about-cta .eyebrow-light::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #D4B872;
}
.about-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #F5EFE3;
  margin: 20px 0 22px;
  word-break: keep-all;
}
.about-cta h2 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-cta p {
  color: rgba(245, 239, 227, 0.78);
  font-size: 16.5px;
  line-height: 1.78;
  margin-bottom: 44px;
  word-break: keep-all;
}
.about-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.about-cta .btn-primary {
  background: #D4B872 !important;
  color: #1B3B2E !important;
  border: 1px solid #D4B872 !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  letter-spacing: 0.01em !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.about-cta .btn-primary:hover {
  background: #E6CB85 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 184, 114, 0.32) !important;
}
.about-cta .btn-outline-light {
  border: 1.5px solid #F5EFE3 !important;
  color: #F5EFE3 !important;
  background: transparent !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 50px !important;
  transition: all 0.4s ease !important;
}
.about-cta .btn-outline-light:hover {
  background: rgba(245, 239, 227, 0.10) !important;
  border-color: #D4B872 !important;
  color: #D4B872 !important;
  transform: translateY(-2px);
}
@media (max-width: 520px) {
  .about-cta .cta-actions { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .about-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   📘 About CEO Grid — 포트레이트 제거 후 단일 컬럼 정돈 (v=n)
   ============================================================ */
.about-ceo .ceo-grid {
  grid-template-columns: 1fr !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  gap: 0 !important;
}
.about-ceo .ceo-quote {
  margin-top: 0 !important;
}

/* ============================================================
   📘 About CEO Grid — 정렬 최종 강제 (v=o)
   container max-width + ceo-grid centered + 본문 정중앙
   ============================================================ */
.about-ceo > .container,
section.about-ceo > .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}
.about-ceo .ceo-grid {
  display: block !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}
.about-ceo .ceo-grid > .reveal {
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}
.about-ceo .ceo-quote,
.about-ceo .ceo-body,
.about-ceo .ceo-cta {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 820px !important;
  box-sizing: border-box !important;
}
.about-ceo .ceo-body p {
  max-width: 820px !important;
}

/* ============================================================
   🛠 Services Page — 일괄 리빌드 (v=q)
   Hero / TOC / 4 Services / Engagement / CTA 8섹션 전용
   ============================================================ */

/* --- Hero --- */
.services-hero {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.services-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.16), transparent 60%);
  pointer-events: none;
}
.services-hero .container { position: relative; z-index: 2; }
.services-hero .breadcrumb {
  font-size: 13px;
  color: rgba(245, 239, 227, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.services-hero .breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.services-hero .breadcrumb a:hover { color: #D4B872; }
.services-hero .breadcrumb .sep { margin: 0 10px; color: rgba(212, 184, 114, 0.5); }
.services-hero .eyebrow-light {
  color: rgba(245, 239, 227, 0.65) !important;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.services-hero .eyebrow-light::before { content: ''; width: 24px; height: 1px; background: #D4B872; }
.services-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.02em;
  margin: 18px 0 0; color: #F5EFE3;
}
.services-h1 span { display: block; }
.services-h1 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.services-lead {
  margin-top: 36px; max-width: 720px;
  font-size: 17px; line-height: 1.78;
  color: rgba(245, 239, 227, 0.82); word-break: keep-all;
}

/* --- Table of Contents --- */
.services-toc {
  background: #FAF6EC;
  padding: 0;
  position: sticky;
  top: 60px;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 184, 114, 0.32);
  box-shadow: 0 4px 14px rgba(13, 30, 22, 0.06);
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.toc-item {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  text-decoration: none;
  border-right: 1px solid rgba(212, 184, 114, 0.18);
  color: #1B3B2E;
  transition: all 0.3s ease;
  position: relative;
}
.toc-item:last-child { border-right: none; }
.toc-item .toc-num {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  color: #D4B872;
  letter-spacing: 0.06em;
}
.toc-item .toc-name {
  font-size: 14.5px; font-weight: 600;
  color: #1B3B2E;
  word-break: keep-all;
}
.toc-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: #D4B872;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.toc-item:hover { background: rgba(212, 184, 114, 0.08); }
.toc-item:hover::after { width: 60%; }
.toc-item:hover .toc-num { color: #B8A05E; }
@media (max-width: 720px) {
  .toc-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .toc-item { padding: 14px 8px; flex-direction: column; gap: 4px; }
  .toc-item .toc-name { font-size: 12px; text-align: center; }
}

/* --- Service Section base --- */
.srv-section { padding: 120px 0; position: relative; }
.srv-cream { background: #FAF6EC; color: #1F1E1D; }
.srv-forest { background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%); color: #F5EFE3; }
.srv-forest .eyebrow-light::before { background: #D4B872; }

.srv-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 64px;
  max-width: 880px;
}
.srv-icon-box {
  width: 80px; height: 80px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: rgba(212, 184, 114, 0.14);
  border: 1.5px solid rgba(212, 184, 114, 0.45);
}
.srv-icon-dark { color: #1B3B2E; }
.srv-icon-light { color: #F5EFE3; }

.srv-num {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  color: #D4B872;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.srv-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 22px;
  word-break: keep-all;
}
.srv-section h2.white { color: #F5EFE3 !important; }
.srv-section .eyebrow {
  font-size: 11.5px;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.srv-section .eyebrow-light {
  color: rgba(245, 239, 227, 0.65);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.srv-section .eyebrow-light::before {
  content: ''; width: 18px; height: 1px; background: #D4B872;
}
.srv-lead {
  font-size: 16.5px; line-height: 1.78;
  color: rgba(31, 30, 29, 0.86);
  word-break: keep-all;
  max-width: 720px;
  margin: 0;
}
.srv-lead.light { color: rgba(245, 239, 227, 0.85); }

/* --- 3 Feature Grid --- */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.srv-feature {
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.30);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.srv-feature:hover {
  transform: translateY(-4px);
  border-color: #D4B872;
  box-shadow: 0 18px 42px rgba(27, 59, 46, 0.12);
}
.srv-feature.dark {
  background: rgba(245, 239, 227, 0.05);
  border-color: rgba(212, 184, 114, 0.28);
}
.srv-feature.dark:hover {
  background: rgba(245, 239, 227, 0.08);
  border-color: #D4B872;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.srv-feature-num {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 184, 114, 0.30);
}
.srv-feature.dark .srv-feature-num {
  color: #D4B872;
  border-bottom-color: rgba(212, 184, 114, 0.32);
}
.srv-feature h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #1B3B2E;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  word-break: keep-all;
  line-height: 1.35;
}
.srv-feature.dark h3 { color: #F5EFE3; }
.srv-feature p {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(31, 30, 29, 0.82);
  word-break: keep-all;
  margin: 0;
}
.srv-feature.dark p { color: rgba(245, 239, 227, 0.78); }

/* --- Outcome Box --- */
.srv-outcome {
  background: #FFFFFF;
  border: 1.5px solid #D4B872;
  border-left-width: 4px;
  border-radius: 10px;
  padding: 28px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.srv-outcome.dark {
  background: rgba(212, 184, 114, 0.08);
  border-color: #D4B872;
  border-left-width: 4px;
}
.srv-outcome-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.srv-outcome.dark .srv-outcome-label { color: #D4B872; }
.srv-outcome ul {
  list-style: none;
  padding: 0; margin: 0;
}
.srv-outcome ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 2;
  color: rgba(31, 30, 29, 0.85);
  word-break: keep-all;
}
.srv-outcome.dark ul li { color: rgba(245, 239, 227, 0.85); }
.srv-outcome ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 2px;
  background: #D4B872;
}
.srv-outcome ul li strong { color: #1B3B2E; font-weight: 700; }
.srv-outcome.dark ul li strong { color: #D4B872; }
.srv-outcome.legal p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(245, 239, 227, 0.85);
  margin: 0;
  word-break: keep-all;
}
.srv-outcome.legal strong { color: #D4B872; }

@media (max-width: 960px) {
  .srv-head { grid-template-columns: 1fr; gap: 20px; }
  .srv-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .srv-section { padding: 80px 0; }
  .srv-feature { padding: 28px 24px; }
  .srv-outcome { padding: 24px 24px; }
}

/* --- Engagement Model --- */
.srv-engage {
  background: #FAF6EC;
  padding: 120px 0;
}
.srv-engage .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.srv-engage .section-head .eyebrow {
  font-size: 12px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  display: inline-block; margin-bottom: 16px;
}
.srv-engage .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.015em; margin: 0 0 16px;
}
.srv-engage .section-head p {
  font-size: 16px; color: rgba(31, 30, 29, 0.78);
  line-height: 1.7;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.engage-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.32);
  border-radius: 16px;
  padding: 40px 32px 36px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease, border-color 0.3s ease;
}
.engage-card:hover {
  transform: translateY(-6px);
  border-color: #D4B872;
  box-shadow: 0 22px 52px rgba(27, 59, 46, 0.14);
}
.engage-card.featured {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  border-color: #D4B872;
  color: #F5EFE3;
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(27, 59, 46, 0.30);
}
.engage-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(27, 59, 46, 0.40);
}
.engage-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #D4B872;
  color: #1B3B2E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.engage-tier {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: -0.04em;
  line-height: 1;
}
.engage-card.featured .engage-tier { color: #E6CB85; }
.engage-name {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 10px 0 18px;
}
.engage-card.featured .engage-name { color: #D4B872; }
.engage-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #1B3B2E;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.engage-card.featured h3 { color: #F5EFE3; }
.engage-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(31, 30, 29, 0.84);
  word-break: keep-all;
  margin: 0;
}
.engage-card.featured p { color: rgba(245, 239, 227, 0.82); }
.engage-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 184, 114, 0.32);
  font-size: 12.5px;
  color: #B8A05E;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.engage-card.featured .engage-meta {
  border-top-color: rgba(212, 184, 114, 0.45);
  color: #D4B872;
}
.engage-note {
  text-align: center;
  font-size: 12.5px;
  color: rgba(31, 30, 29, 0.55);
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.75;
}
@media (max-width: 960px) {
  .engage-grid { grid-template-columns: 1fr; gap: 32px; }
  .engage-card.featured { transform: none; }
}

/* --- Final CTA (services) --- */
.srv-cta {
  background: linear-gradient(135deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.srv-cta::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 184, 114, 0.12), transparent 60%);
  pointer-events: none;
}
.srv-cta .cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.srv-cta .eyebrow-light {
  color: rgba(245, 239, 227, 0.62);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
}
.srv-cta .eyebrow-light::before { content: ''; width: 24px; height: 1px; background: #D4B872; }
.srv-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700; line-height: 1.3;
  letter-spacing: -0.015em;
  color: #F5EFE3;
  margin: 20px 0 22px;
  word-break: keep-all;
}
.srv-cta h2 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.srv-cta p {
  color: rgba(245, 239, 227, 0.78);
  font-size: 16.5px; line-height: 1.78;
  margin-bottom: 44px;
  word-break: keep-all;
}
.srv-cta .cta-actions {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.srv-cta .btn-primary {
  background: #D4B872 !important;
  color: #1B3B2E !important;
  border: 1px solid #D4B872 !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.srv-cta .btn-primary:hover {
  background: #E6CB85 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 184, 114, 0.32) !important;
}
.srv-cta .btn-outline-light {
  border: 1.5px solid #F5EFE3 !important;
  color: #F5EFE3 !important;
  background: transparent !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 50px !important;
  transition: all 0.4s ease !important;
}
.srv-cta .btn-outline-light:hover {
  background: rgba(245, 239, 227, 0.10) !important;
  border-color: #D4B872 !important;
  color: #D4B872 !important;
  transform: translateY(-2px);
}
@media (max-width: 520px) {
  .srv-cta .cta-actions { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .srv-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   🏥 Portfolio Page — 일괄 리빌드 (v=r)
   ============================================================ */

/* --- Hero --- */
.pf-hero {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.pf-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.16), transparent 60%);
  pointer-events: none;
}
.pf-hero .container { position: relative; z-index: 2; }
.pf-hero .breadcrumb {
  font-size: 13px; color: rgba(245, 239, 227, 0.6);
  letter-spacing: 0.04em; margin-bottom: 24px;
}
.pf-hero .breadcrumb a { color: inherit; text-decoration: none; }
.pf-hero .breadcrumb a:hover { color: #D4B872; }
.pf-hero .breadcrumb .sep { margin: 0 10px; color: rgba(212,184,114,0.5); }
.pf-hero .eyebrow-light {
  color: rgba(245,239,227,0.65) !important;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.pf-hero .eyebrow-light::before { content:''; width:24px; height:1px; background:#D4B872; }
.pf-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.02em;
  margin: 18px 0 0; color: #F5EFE3;
}
.pf-h1 span { display: block; }
.pf-h1 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pf-lead {
  margin-top: 36px; max-width: 720px;
  font-size: 17px; line-height: 1.78;
  color: rgba(245,239,227,0.82); word-break: keep-all;
}

/* --- Flagship Case --- */
.pf-case { background: #FAF6EC; padding: 120px 0; }
.pf-case .section-head { max-width: 720px; margin-bottom: 56px; }
.pf-case .section-head .eyebrow {
  font-size: 12px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  display: inline-block; margin-bottom: 14px;
}
.pf-case .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.015em; line-height: 1.3;
  margin: 0 0 14px;
}
.pf-case .section-head p {
  font-size: 16px; color: rgba(31,30,29,0.78); line-height: 1.7;
}

.flagship-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.40);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 14px 40px rgba(27,59,46,0.08);
}
.flagship-visual {
  position: relative;
  background: linear-gradient(135deg, #1B3B2E 0%, #163225 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
  overflow: hidden;
}
.flagship-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.22;
}
.flagship-mark {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}
.flagship-en {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 600;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, #D4B872, #E6CB85);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.flagship-kr {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 600;
  color: #F5EFE3;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.flagship-sub {
  font-size: 13px; color: rgba(212,184,114,0.85);
  letter-spacing: 0.18em;
  margin-top: 8px;
  text-transform: uppercase;
}
.flagship-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(212,184,114,0.15);
  border: 1px solid #D4B872;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: 0.20em;
}
.flagship-info {
  padding: 56px 48px;
}
.flagship-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.01em; line-height: 1.35;
  margin: 0 0 18px;
  word-break: keep-all;
}
.flagship-info > p {
  font-size: 15.5px; line-height: 1.8;
  color: rgba(31,30,29,0.84);
  word-break: keep-all;
  margin: 0;
}
.flagship-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,184,114,0.30);
}
.meta-cell .meta-label {
  font-size: 11px;
  color: #B8A05E;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.meta-cell .meta-value {
  font-size: 15px;
  color: #1B3B2E;
  font-weight: 500;
  word-break: keep-all;
}
.flagship-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 13px 26px;
  background: #1B3B2E;
  color: #F5EFE3 !important;
  border: 1px solid #1B3B2E;
  border-radius: 50px;
  font-size: 14.5px; font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.flagship-cta:hover {
  background: #D4B872;
  border-color: #D4B872;
  color: #1B3B2E !important;
  transform: translateY(-2px);
}
@media (max-width: 960px) {
  .flagship-card { grid-template-columns: 1fr; }
  .flagship-info { padding: 40px 32px; }
  .flagship-visual { min-height: 320px; }
  .flagship-meta { grid-template-columns: 1fr; gap: 16px; }
}

/* --- KPI Grid --- */
.pf-kpi { margin-bottom: 80px; }
.pf-kpi-head { margin-bottom: 32px; }
.pf-kpi-head .eyebrow {
  font-size: 11.5px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-block; margin-bottom: 10px;
}
.pf-kpi-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.01em; margin: 0;
}
.pf-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pf-kpi-item {
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.32);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.pf-kpi-item::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: #D4B872;
  transition: width 0.35s ease;
}
.pf-kpi-item:hover {
  transform: translateY(-4px);
  border-color: #D4B872;
  box-shadow: 0 16px 36px rgba(27,59,46,0.10);
}
.pf-kpi-item:hover::before { width: 72px; }
.pf-kpi-item .kpi-label {
  font-size: 11px; color: #B8A05E;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.pf-kpi-item .kpi-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.pf-kpi-item .kpi-num small {
  font-size: 0.55em;
  color: #D4B872;
  font-weight: 500;
  margin-left: 2px;
}
.pf-kpi-item .kpi-num.pf-kpi-text {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.04em;
}
.pf-kpi-item .kpi-sub {
  font-size: 13px;
  color: rgba(31,30,29,0.72);
  line-height: 1.6;
  word-break: keep-all;
}
@media (max-width: 960px) {
  .pf-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pf-kpi-grid { grid-template-columns: 1fr; }
}

/* --- Operating Wins --- */
.pf-wins-head { margin-bottom: 32px; }
.pf-wins-head .eyebrow {
  font-size: 11.5px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px; display: inline-block;
}
.pf-wins-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700; color: #1B3B2E;
  margin: 0;
}
.pf-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pf-win {
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.30);
  border-radius: 12px;
  padding: 28px 28px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.pf-win:hover {
  transform: translateY(-3px);
  border-color: #D4B872;
  box-shadow: 0 14px 32px rgba(27,59,46,0.10);
}
.pf-win-num {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,184,114,0.30);
}
.pf-win h4 {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  word-break: keep-all;
  line-height: 1.4;
}
.pf-win p {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(31,30,29,0.82);
  word-break: keep-all;
  margin: 0;
}
@media (max-width: 720px) {
  .pf-wins-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Pipeline (Forest) --- */
.pf-pipeline {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pf-pipeline::before {
  content: ''; position: absolute;
  top: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.10), transparent 60%);
  pointer-events: none;
}
.pf-pipeline .container { position: relative; z-index: 1; }
.pf-pipeline .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pf-pipeline .section-head .eyebrow-light {
  color: rgba(245,239,227,0.62);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.pf-pipeline .section-head .eyebrow-light::before {
  content:''; width:24px; height:1px; background:#D4B872;
}
.pf-pipeline .section-head h2.white {
  color: #F5EFE3 !important;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.pf-pipeline .section-head p.light {
  color: rgba(245,239,227,0.78);
  font-size: 16px; line-height: 1.7;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pipeline-card {
  position: relative;
  background: rgba(245,239,227,0.05);
  border: 1px solid rgba(212,184,114,0.28);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pipeline-card:hover {
  transform: translateY(-5px);
  background: rgba(245,239,227,0.08);
  border-color: #D4B872;
  box-shadow: 0 20px 44px rgba(0,0,0,0.30);
}
.pipeline-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212,184,114,0.16);
  border: 1px solid rgba(212,184,114,0.50);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pipeline-card.future .pipeline-tag {
  background: rgba(245,239,227,0.08);
  border-color: rgba(245,239,227,0.30);
  color: rgba(245,239,227,0.78);
}
.pipeline-num {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pipeline-card h3 {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 700;
  color: #F5EFE3;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  word-break: keep-all;
}
.pipeline-card .pipeline-loc {
  font-size: 12.5px;
  color: rgba(212,184,114,0.78);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.pipeline-card p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(245,239,227,0.78);
  word-break: keep-all;
  margin: 0;
}
@media (max-width: 960px) {
  .pipeline-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Disclaimer --- */
.pf-disclaimer {
  background: #FAF6EC;
  padding: 80px 0;
}
.disclaimer-box {
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.40);
  border-left: 4px solid #D4B872;
  border-radius: 8px;
  padding: 32px 36px;
}
.disclaimer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.disclaimer-label svg { color: #D4B872; }
.disclaimer-box p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(31,30,29,0.74);
  margin: 0;
  word-break: keep-all;
}

/* --- Final CTA --- */
.pf-cta {
  background: linear-gradient(135deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.pf-cta::before {
  content:''; position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,184,114,0.12), transparent 60%);
}
.pf-cta .cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.pf-cta .eyebrow-light {
  color: rgba(245,239,227,0.62);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
}
.pf-cta .eyebrow-light::before { content:''; width:24px; height:1px; background:#D4B872; }
.pf-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700; line-height: 1.3;
  letter-spacing: -0.015em;
  color: #F5EFE3;
  margin: 20px 0 22px;
  word-break: keep-all;
}
.pf-cta h2 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pf-cta p {
  color: rgba(245,239,227,0.78);
  font-size: 16.5px; line-height: 1.78;
  margin-bottom: 44px;
  word-break: keep-all;
}
.pf-cta .cta-actions {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.pf-cta .btn-primary {
  background: #D4B872 !important;
  color: #1B3B2E !important;
  border: 1px solid #D4B872 !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}
.pf-cta .btn-primary:hover {
  background: #E6CB85 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212,184,114,0.32) !important;
}
.pf-cta .btn-outline-light {
  border: 1.5px solid #F5EFE3 !important;
  color: #F5EFE3 !important;
  background: transparent !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 50px !important;
  transition: all 0.4s ease !important;
}
.pf-cta .btn-outline-light:hover {
  background: rgba(245,239,227,0.10) !important;
  border-color: #D4B872 !important;
  color: #D4B872 !important;
  transform: translateY(-2px);
}
@media (max-width: 520px) {
  .pf-cta .cta-actions { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .pf-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   ✉ Contact Page — 일괄 리빌드 (v=s)
   ============================================================ */

/* --- Hero --- */
.ct-hero {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.ct-hero::after {
  content:''; position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.16), transparent 60%);
  pointer-events: none;
}
.ct-hero .container { position: relative; z-index: 2; }
.ct-hero .breadcrumb {
  font-size: 13px; color: rgba(245,239,227,0.6);
  letter-spacing: 0.04em; margin-bottom: 24px;
}
.ct-hero .breadcrumb a { color: inherit; text-decoration: none; }
.ct-hero .breadcrumb a:hover { color: #D4B872; }
.ct-hero .breadcrumb .sep { margin: 0 10px; color: rgba(212,184,114,0.5); }
.ct-hero .eyebrow-light {
  color: rgba(245,239,227,0.65) !important;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.ct-hero .eyebrow-light::before { content:''; width:24px; height:1px; background:#D4B872; }
.ct-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.02em;
  margin: 18px 0 0; color: #F5EFE3;
}
.ct-h1 span { display: block; }
.ct-h1 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ct-lead {
  margin-top: 36px; max-width: 720px;
  font-size: 17px; line-height: 1.78;
  color: rgba(245,239,227,0.82); word-break: keep-all;
}

/* --- Contact Grid Section --- */
.ct-grid-sec { background: #FAF6EC; padding: 120px 0; }
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) {
  .ct-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* --- Left: Info --- */
.ct-info .eyebrow {
  font-size: 11.5px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-block; margin-bottom: 12px;
}
.ct-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.015em; margin: 0 0 36px;
}
.ct-info-list {
  display: flex; flex-direction: column;
  gap: 26px;
  margin-bottom: 44px;
}
.ct-info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212,184,114,0.28);
}
.ct-info-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(212,184,114,0.16);
  border: 1.5px solid rgba(212,184,114,0.40);
  color: #1B3B2E;
  flex-shrink: 0;
}
.ct-info-label {
  font-size: 11px;
  color: #B8A05E;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.ct-info-val {
  font-size: 15.5px;
  color: #1B3B2E;
  line-height: 1.65;
  word-break: keep-all;
}
.ct-info-val.gold {
  color: #B8A05E;
  font-family: var(--font-en, 'Inter', system-ui, sans-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ct-info-val .muted {
  color: rgba(31,30,29,0.55);
  font-size: 13.5px;
}

/* Engagement Tiers */
.ct-tiers .ct-info-label { margin-bottom: 16px; }
.ct-tier-list {
  display: flex; flex-direction: column; gap: 10px;
}
.ct-tier {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.32);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.ct-tier:hover {
  border-color: #D4B872;
  transform: translateX(3px);
}
.ct-tier.featured {
  background: linear-gradient(135deg, #1B3B2E 0%, #163225 100%);
  border-color: #D4B872;
  color: #F5EFE3;
}
.ct-tier-letter {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.ct-tier-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.005em;
}
.ct-tier.featured .ct-tier-name { color: #F5EFE3; }
.ct-tier-sub {
  font-size: 12.5px;
  color: rgba(31,30,29,0.65);
  margin-top: 2px;
}
.ct-tier.featured .ct-tier-sub { color: rgba(245,239,227,0.72); }

/* --- Right: Form Card --- */
.ct-form-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.40);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 14px 40px rgba(27,59,46,0.08);
  position: relative;
  overflow: hidden;
}
.ct-form-wrap::before {
  content:''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #D4B872 0%, #E6CB85 50%, #D4B872 100%);
}
.ct-form-head { margin-bottom: 32px; }
.ct-form-head .eyebrow {
  font-size: 11.5px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px; display: inline-block;
}
.ct-form-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.015em; margin: 0 0 10px;
}
.ct-form-head p {
  font-size: 14.5px;
  color: rgba(31,30,29,0.7);
  margin: 0;
}
.ct-form-head p strong { color: #B8A05E; font-weight: 700; }

.ct-form-success {
  padding: 20px 24px;
  background: rgba(212,184,114,0.12);
  border: 1.5px solid #D4B872;
  border-radius: 10px;
  margin-bottom: 28px;
}
.ct-form-success-label {
  font-size: 11.5px;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.ct-form-success p {
  font-size: 14.5px;
  color: #1B3B2E;
  margin: 0;
}

.ct-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .ct-form .form-row { grid-template-columns: 1fr; }
}
.ct-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.ct-form .form-group label {
  font-size: 12px;
  color: #1B3B2E;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: none;
}
.ct-form .req { color: #D4B872; margin-left: 2px; }
.ct-form input[type="text"],
.ct-form input[type="email"],
.ct-form input[type="tel"],
.ct-form select,
.ct-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: #FAF6EC;
  border: 1.5px solid rgba(212,184,114,0.32);
  border-radius: 10px;
  font-size: 15px;
  color: #1B3B2E;
  font-family: inherit;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.ct-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.ct-form input::placeholder,
.ct-form textarea::placeholder {
  color: rgba(31,30,29,0.40);
}
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  outline: none;
  border-color: #D4B872;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(212,184,114,0.14);
}
.ct-form .form-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.ct-form .form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 3px 0 0 0;
  accent-color: #D4B872;
  cursor: pointer;
}
.ct-form .form-check label {
  font-size: 13px;
  color: rgba(31,30,29,0.75);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  cursor: pointer;
  word-break: keep-all;
}
.ct-form .form-check label strong {
  color: #1B3B2E;
  font-weight: 700;
}
.ct-submit {
  margin-top: 28px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #1B3B2E;
  color: #F5EFE3;
  border: 1px solid #1B3B2E;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.ct-submit::before {
  content:''; position: absolute;
  top: 0; left: 0; height: 100%;
  width: 0;
  background: linear-gradient(90deg, #D4B872, #E6CB85);
  transition: width 0.45s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.ct-submit:hover::before { width: 100%; }
.ct-submit:hover { color: #1B3B2E; border-color: #D4B872; transform: translateY(-2px); }
.ct-submit > * { position: relative; z-index: 1; }
.ct-submit-arrow { transition: transform 0.3s ease; }
.ct-submit:hover .ct-submit-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .ct-form-wrap { padding: 36px 28px; }
}

/* --- FAQ (Forest) --- */
.ct-faq {
  background: linear-gradient(180deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ct-faq::before {
  content:''; position: absolute;
  bottom: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,184,114,0.10), transparent 60%);
  pointer-events: none;
}
.ct-faq .container { position: relative; z-index: 1; }
.ct-faq .section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.ct-faq .section-head .eyebrow-light {
  color: rgba(245,239,227,0.62);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.ct-faq .section-head .eyebrow-light::before {
  content:''; width:24px; height:1px; background:#D4B872;
}
.ct-faq .section-head h2.white {
  color: #F5EFE3 !important;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(245,239,227,0.04);
  border: 1px solid rgba(212,184,114,0.24);
  border-radius: 12px;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  background: rgba(245,239,227,0.07);
  border-color: rgba(212,184,114,0.50);
}
.faq-item[open] {
  background: rgba(212,184,114,0.10);
  border-color: #D4B872;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 600;
  color: #F5EFE3;
  letter-spacing: -0.005em;
  word-break: keep-all;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212,184,114,0.12);
  border: 1px solid rgba(212,184,114,0.50);
  color: #D4B872;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #D4B872;
  color: #1B3B2E;
}
.faq-item p {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(212,184,114,0.22);
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(245,239,227,0.82);
  word-break: keep-all;
}
@media (max-width: 520px) {
  .faq-item { padding: 20px 22px; }
  .faq-item summary { font-size: 15px; gap: 14px; }
}

/* ============================================================
   📱 햄버거 메뉴 CTA — 클린 재작성 (v=t)
   모바일 720px↓ 햄버거 OPEN 상태일 때 CTA가 화면 하단 풀폭 알약.
   ============================================================ */
@media (max-width: 720px) {
  /* 평소(닫힘) — CTA 완전 hide */
  body header.nav .nav-cta {
    display: none !important;
  }

  /* OPEN 상태 — CTA가 화면 하단 풀폭 알약, 클릭 가능 */
  body header.nav.open .nav-cta {
    display: inline-flex !important;
    position: fixed !important;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    left: 20px !important;
    right: 20px !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 16px 28px 16px 28px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: #1B3B2E !important;
    color: #F5EFE3 !important;
    border: 1px solid rgba(212, 184, 114, 0.45) !important;
    border-radius: 14px !important;
    font-family: var(--font-serif, 'Noto Serif KR', Georgia, serif) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    z-index: 1101 !important;
    box-shadow:
      0 14px 32px rgba(13, 30, 22, 0.42),
      0 0 0 1px rgba(212, 184, 114, 0.18),
      inset 0 1px 0 rgba(212, 184, 114, 0.10) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    overflow: visible !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  }

  /* OPEN CTA — 좌측 Gold 액센트 라인 (명함 박 변환) */
  body header.nav.open .nav-cta::before {
    content: '' !important;
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 3px !important;
    height: 22px !important;
    background: #D4B872 !important;
    border-radius: 2px !important;
    z-index: 1 !important;
  }

  /* padding-left은 액센트 바 공간 확보 */
  body header.nav.open .nav-cta {
    padding-left: 36px !important;
  }

  /* active(탭) 시 살짝 눌리는 피드백 */
  body header.nav.open .nav-cta:active {
    transform: translateY(1px) !important;
    box-shadow:
      0 8px 20px rgba(13, 30, 22, 0.40),
      0 0 0 1px rgba(212, 184, 114, 0.25) !important;
  }
}

/* ============================================================
   ⚙ Engagement Tier 카드 클릭 가능 (v=u)
   ============================================================ */
a.ct-tier,
.ct-tier-list a.ct-tier {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
}
.ct-tier { cursor: pointer; }
.ct-tier:hover .ct-tier-letter { transform: scale(1.08); }
.ct-tier-letter { transition: transform 0.3s ease; display: inline-block; }

/* ============================================================
   🧭 방향성 보강 — Persona + Four Promises (v=v)
   ============================================================ */

/* --- Persona Section (Cream) --- */
.persona-section {
  background: #FAF6EC;
  padding: 120px 0;
}
.persona-section .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.persona-section .section-head .eyebrow {
  font-size: 12px; color: #B8A05E;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-block; margin-bottom: 14px;
}
.persona-section .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: #1B3B2E;
  letter-spacing: -0.015em; margin: 0 0 16px;
  line-height: 1.3;
  word-break: keep-all;
}
.persona-section .section-head h2 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.persona-section .section-head p {
  font-size: 16px; color: rgba(31,30,29,0.78);
  line-height: 1.7;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.persona-card {
  background: #FFFFFF;
  border: 1px solid rgba(212,184,114,0.32);
  border-radius: 14px;
  padding: 32px 26px 30px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.persona-card:hover {
  transform: translateY(-5px);
  border-color: #D4B872;
  box-shadow: 0 18px 42px rgba(27,59,46,0.12);
}
.persona-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(212,184,114,0.14);
  border: 1.5px solid rgba(212,184,114,0.45);
  color: #1B3B2E;
  margin-bottom: 20px;
}
.persona-num {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.persona-card h3 {
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-bottom: 14px;
  word-break: keep-all;
}
.persona-card h3 .line-break { display: block; height: 0; }
.persona-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(31,30,29,0.82);
  word-break: keep-all;
  margin: 0;
}
.persona-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(31,30,29,0.65);
}
.persona-note strong { color: #B8A05E; font-weight: 700; }

@media (max-width: 960px) {
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .persona-grid { grid-template-columns: 1fr; }
}

/* --- Four Promises (Forest) --- */
.promises-section {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.promises-section::before {
  content:''; position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,184,114,0.12), transparent 60%);
}
.promises-section .container { position: relative; z-index: 1; }
.promises-section .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.promises-section .section-head .eyebrow-light {
  color: rgba(245,239,227,0.62);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.promises-section .section-head .eyebrow-light::before {
  content:''; width: 24px; height: 1px; background: #D4B872;
}
.promises-section .section-head h2.white {
  color: #F5EFE3 !important;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  line-height: 1.28;
  word-break: keep-all;
}
.promises-section .section-head h2 .serif-gold {
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.promises-section .section-head p.light {
  color: rgba(245,239,227,0.78);
  font-size: 16px; line-height: 1.7;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promise-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 32px 30px;
  background: rgba(245,239,227,0.04);
  border: 1px solid rgba(212,184,114,0.24);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.promise-item:hover {
  background: rgba(245,239,227,0.07);
  border-color: #D4B872;
  transform: translateY(-3px);
}
.promise-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 6px;
}
.promise-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #F5EFE3;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  word-break: keep-all;
}
.promise-body p {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(245,239,227,0.82);
  word-break: keep-all;
  margin: 0;
}
.promise-body p strong {
  color: #D4B872;
  font-weight: 700;
}

@media (max-width: 720px) {
  .promises-grid { grid-template-columns: 1fr; gap: 16px; }
  .promise-item { padding: 26px 24px; grid-template-columns: 52px 1fr; gap: 18px; }
  .promise-num { font-size: 32px; }
}

/* --- 출처 미주 (메타 라벨 안) --- */
.meta-source,
.src-note {
  display: block;
  font-size: 0.62em;
  font-weight: 500;
  color: rgba(31,30,29,0.50);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.srv-outcome .src-note,
.srv-outcome.dark .src-note {
  display: inline-block;
  margin-left: 4px;
  margin-top: 0;
  color: rgba(245,239,227,0.55);
  font-size: 11.5px;
  font-style: italic;
}


/* === Cream CTA section -light 가독성 패치 (2026-05-21v) === */
/* 이슈: .cta-section은 transparent → body cream 노출 → -light 변형이 묻힘 */
/* 적용 범위: .cta-section 내부 한정 (hero 등 다크 섹션의 -light는 영향 없음) */
.cta-section .btn-outline-light {
  color: #1B3B2E !important;
  border-color: rgba(27, 59, 46, 0.55) !important;
}
.cta-section .btn-outline-light:hover {
  border-color: #1B3B2E !important;
  background: rgba(27, 59, 46, 0.06) !important;
  color: #0F2820 !important;
}
.cta-section .eyebrow-light {
  color: rgba(31, 30, 29, 0.72) !important;
}
.cta-section .eyebrow-light::before {
  background: #D4B872 !important;
}

/* ============================================================
   💰 Services Pricing — Engagement에 가격 구조 + 정직한 가격 설계 통합 (v=w)
   ============================================================ */

/* 각 카드 가격 구조 라인 (h3 다음) — Gold dashed */
.engage-card .engage-structure {
  font-size: 12.5px;
  font-weight: 600;
  color: #B8A05E;
  letter-spacing: 0.04em;
  padding: 10px 0;
  margin: -2px 0 14px;
  border-top: 1px dashed rgba(212, 184, 114, 0.45);
  border-bottom: 1px dashed rgba(212, 184, 114, 0.45);
}
.engage-card.featured .engage-structure {
  color: #D4B872;
  border-color: rgba(212, 184, 114, 0.50);
}

/* 정직한 가격 설계 박스 */
.pricing-principles {
  max-width: 880px;
  margin: 48px auto 32px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.38);
  border-left: 4px solid #D4B872;
  border-radius: 12px;
  padding: 32px 36px;
}
.pricing-principles .pp-label {
  font-size: 12px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pricing-principles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-principles li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(31, 30, 29, 0.85);
  word-break: keep-all;
}
.pricing-principles li:last-child { margin-bottom: 0; }
.pricing-principles li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D4B872;
}
.pricing-principles li strong {
  color: #1B3B2E;
  font-weight: 700;
}

/* 가격 안내 CTA */
.pricing-cta {
  text-align: center;
  margin: 32px auto 24px;
  max-width: 720px;
}
.pricing-cta p {
  font-size: 16px;
  color: rgba(31, 30, 29, 0.78);
  margin-bottom: 18px;
  word-break: keep-all;
}
.pricing-cta p strong {
  color: #B8A05E;
  font-weight: 700;
}
.btn-pricing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #1B3B2E;
  color: #F5EFE3 !important;
  border: 1px solid #1B3B2E;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-pricing:hover {
  background: #D4B872;
  border-color: #D4B872;
  color: #1B3B2E !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 184, 114, 0.32);
}

/* section-head 본문 (Transparent Pricing eyebrow 아래 리드 문구) */
.srv-engage .section-head p strong {
  color: #1B3B2E;
  font-weight: 700;
}

@media (max-width: 720px) {
  .pricing-principles { padding: 26px 24px; margin: 36px 16px 24px; }
  .pricing-cta { padding: 0 16px; }
}

/* ============================================================
   📦 Engagement Detail Modals (v=y)
   ============================================================ */

/* 카드 클릭 가능 표시 */
.engage-card[data-modal] {
  cursor: pointer;
  position: relative;
}
.engage-card[data-modal]::after {
  content: '자세히 보기 →';
  position: absolute;
  bottom: 18px; right: 22px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(212, 184, 114, 0.78);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.engage-card[data-modal]:hover::after,
.engage-card[data-modal]:focus::after {
  opacity: 1;
  transform: translateX(4px);
}
.engage-card.featured[data-modal]::after { color: #D4B872; }

/* Backdrop */
.engage-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(13, 30, 22, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.engage-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal */
.engage-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%) scale(0.96);
  width: min(720px, 92vw);
  max-height: 88vh;
  background: #FAF6EC;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(13, 30, 22, 0.45);
  z-index: 1501;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.engage-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Inner scrollable */
.em-inner {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  overflow: hidden;
}

/* Close button */
.em-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(31, 30, 29, 0.06);
  color: #1B3B2E;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease;
}
.em-close:hover {
  background: rgba(212, 184, 114, 0.18);
  transform: rotate(90deg);
}

/* Header */
.em-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 44px 28px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EC 100%);
  border-bottom: 1px solid rgba(212, 184, 114, 0.30);
}
.em-header.featured {
  background: linear-gradient(135deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
}
.em-tier {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: #D4B872;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}
.em-head-text { position: relative; }
.em-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #D4B872;
  color: #1B3B2E;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.em-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.em-header.featured .em-name { color: #D4B872; }
.em-head-text h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 10px;
}
.em-header.featured .em-head-text h3 { color: #F5EFE3; }
.em-structure {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #B8A05E;
  padding: 6px 12px;
  background: rgba(212, 184, 114, 0.12);
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.em-header.featured .em-structure {
  color: #D4B872;
  background: rgba(212, 184, 114, 0.18);
}

/* Body */
.em-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 44px;
}
.em-section { margin-bottom: 26px; }
.em-section:last-of-type { margin-bottom: 20px; }
.em-label {
  font-size: 12px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.em-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.em-section li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(31, 30, 29, 0.85);
  word-break: keep-all;
  margin-bottom: 10px;
}
.em-section li:last-child { margin-bottom: 0; }
.em-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 2px;
  background: #D4B872;
}
.em-section li strong {
  color: #1B3B2E;
  font-weight: 700;
}

/* Meta grid */
.em-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding: 22px 24px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.34);
  border-radius: 10px;
}
.em-mlabel {
  font-size: 10.5px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.em-mvalue {
  font-size: 13.5px;
  color: #1B3B2E;
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}

/* Footer */
.em-footer {
  padding: 22px 44px 32px;
  border-top: 1px solid rgba(212, 184, 114, 0.28);
  background: #FFFFFF;
}
.em-cta {
  display: block;
  text-align: center;
  padding: 15px 28px;
  background: #1B3B2E;
  color: #F5EFE3 !important;
  border: 1px solid #1B3B2E;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.em-cta:hover {
  background: #D4B872;
  border-color: #D4B872;
  color: #1B3B2E !important;
  transform: translateY(-2px);
}
.em-cta.featured {
  background: #D4B872;
  color: #1B3B2E !important;
  border-color: #D4B872;
}
.em-cta.featured:hover {
  background: #E6CB85;
  color: #1B3B2E !important;
}

/* Mobile fullscreen */
@media (max-width: 720px) {
  .engage-modal {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    top: 0; left: 0;
    transform: translate(0, 0) scale(1);
  }
  .engage-modal.is-open {
    transform: translate(0, 0) scale(1);
  }
  .em-inner { max-height: 100vh; }
  .em-header {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 28px 24px 22px;
  }
  .em-tier { font-size: 48px; }
  .em-head-text h3 { font-size: 22px; }
  .em-body { padding: 24px 24px; }
  .em-grid { grid-template-columns: 1fr; gap: 12px; padding: 18px 20px; }
  .em-footer { padding: 18px 24px 28px; }
  .em-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   📦 Service Area Detail Modals (srv01-04) v=z
   ============================================================ */

/* srv-head 클릭 가능 표시 */
.srv-head[data-detail] {
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}
.srv-head[data-detail]:hover { transform: translateX(4px); }
.srv-head[data-detail]:hover .srv-icon-box,
.srv-head[data-detail]:focus .srv-icon-box {
  border-color: #D4B872;
  background: rgba(212, 184, 114, 0.22);
  transform: scale(1.04);
}
.srv-head[data-detail]::after {
  content: '자세히 보기 →';
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #B8A05E;
  letter-spacing: 0.04em;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.srv-forest .srv-head[data-detail]::after { color: rgba(212, 184, 114, 0.85); }
.srv-head[data-detail]:hover::after,
.srv-head[data-detail]:focus::after {
  opacity: 1;
  transform: translateX(4px);
}
.srv-icon-box {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Backdrop */
.srv-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(13, 30, 22, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.srv-modal-backdrop.is-open {
  opacity: 1; pointer-events: auto;
}

/* Modal — 더 큰 사이즈 (서비스 영역 전체 표시) */
.srv-detail-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%) scale(0.96);
  width: min(820px, 94vw);
  max-height: 90vh;
  background: #FAF6EC;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(13, 30, 22, 0.45);
  z-index: 1501;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.srv-detail-modal.is-open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.sm-inner {
  display: flex; flex-direction: column;
  max-height: 90vh; overflow: hidden;
}
.sm-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(31, 30, 29, 0.06);
  color: #1B3B2E;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease;
}
.sm-close:hover {
  background: rgba(212, 184, 114, 0.18);
  transform: rotate(90deg);
}
.sm-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
  padding: 38px 44px 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EC 100%);
  border-bottom: 1px solid rgba(212, 184, 114, 0.30);
}
.sm-header.dark {
  background: linear-gradient(135deg, #1B3B2E 0%, #163225 100%);
  color: #F5EFE3;
  border-bottom-color: rgba(212, 184, 114, 0.40);
}
.sm-icon {
  width: 80px; height: 80px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: rgba(212, 184, 114, 0.16);
  border: 1.5px solid rgba(212, 184, 114, 0.45);
  color: #1B3B2E;
}
.sm-icon.light { color: #F5EFE3; }
.sm-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sm-header.dark .sm-num { color: #D4B872; }
.sm-head-text h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #1B3B2E;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.sm-header.dark .sm-head-text h3 { color: #F5EFE3; }
.sm-lead {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(31, 30, 29, 0.78);
  margin: 0;
  word-break: keep-all;
}
.sm-header.dark .sm-lead { color: rgba(245, 239, 227, 0.82); }

.sm-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 44px;
}
.sm-section { margin-bottom: 28px; }
.sm-section:last-child { margin-bottom: 0; }
.sm-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sm-features {
  display: grid;
  gap: 14px;
}
.sm-feat {
  background: #FFFFFF;
  border: 1px solid rgba(212, 184, 114, 0.32);
  border-left: 3px solid #D4B872;
  border-radius: 10px;
  padding: 18px 22px;
  transition: all 0.3s ease;
}
.sm-feat:hover {
  border-color: #D4B872;
  border-left-color: #B8A05E;
  transform: translateX(3px);
}
.sm-fnum {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: #B8A05E;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sm-feat h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #1B3B2E;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  word-break: keep-all;
}
.sm-feat p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(31, 30, 29, 0.78);
  margin: 0;
  word-break: keep-all;
}

/* outcome (대표 산출물 / 기대 효과 / 제공 범위 / 법적 준수) */
.sm-outcome {
  background: rgba(212, 184, 114, 0.10);
  border: 1.5px solid rgba(212, 184, 114, 0.40);
  border-left: 4px solid #D4B872;
  border-radius: 10px;
  padding: 22px 26px;
  margin-top: 24px;
}
.sm-outcome ul {
  list-style: none; padding: 0; margin: 0;
}
.sm-outcome li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(31, 30, 29, 0.85);
  word-break: keep-all;
  margin-bottom: 6px;
}
.sm-outcome li:last-child { margin-bottom: 0; }
.sm-outcome li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 11px; height: 2px;
  background: #D4B872;
}
.sm-outcome li strong { color: #1B3B2E; font-weight: 700; }
.sm-src {
  font-size: 11.5px;
  color: rgba(31, 30, 29, 0.55);
  font-style: italic;
  margin-left: 4px;
}
.sm-outcome.legal p {
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(31, 30, 29, 0.82);
  margin: 0;
  word-break: keep-all;
}
.sm-outcome.legal strong { color: #1B3B2E; font-weight: 700; }

.sm-footer {
  padding: 22px 44px 30px;
  border-top: 1px solid rgba(212, 184, 114, 0.28);
  background: #FFFFFF;
}
.sm-cta {
  display: block;
  text-align: center;
  padding: 14px 28px;
  background: #1B3B2E;
  color: #F5EFE3 !important;
  border: 1px solid #1B3B2E;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sm-cta:hover {
  background: #D4B872;
  border-color: #D4B872;
  color: #1B3B2E !important;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .srv-detail-modal {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    top: 0; left: 0;
    transform: translate(0, 0) scale(1);
  }
  .srv-detail-modal.is-open {
    transform: translate(0, 0) scale(1);
  }
  .sm-inner { max-height: 100vh; }
  .sm-header {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 26px 22px 22px;
  }
  .sm-icon { width: 60px; height: 60px; }
  .sm-icon svg { width: 36px; height: 36px; }
  .sm-head-text h3 { font-size: 22px; }
  .sm-body { padding: 22px 22px; }
  .sm-feat { padding: 16px 18px; }
  .sm-feat h4 { font-size: 15.5px; }
  .sm-footer { padding: 18px 22px 26px; }
  .sm-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   about-profile — Foresight Company Profile (신뢰 자산 섹션)
   추가일: 2026-05-23
============================================================ */
.about-profile {
  background: linear-gradient(180deg, #0E2419 0%, #061811 100%);
  color: #F5EFE3;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.about-profile::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(212,184,114,0.10) 0%, rgba(212,184,114,0) 70%);
  pointer-events: none;
}
.about-profile .container { position: relative; z-index: 1; }
.about-profile .ap-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.about-profile .ap-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #D4B872;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.about-profile .ap-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 18px;
  background: linear-gradient(120deg, #F5EFE3 0%, #D4B872 60%, #F5EFE3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.about-profile .ap-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 239, 227, 0.78);
  margin: 0;
}

.about-profile .ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 22px;
}
.about-profile .ap-card {
  background: rgba(245, 239, 227, 0.04);
  border: 1px solid rgba(212, 184, 114, 0.28);
  border-radius: 14px;
  padding: 32px 30px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.about-profile .ap-card:hover {
  border-color: rgba(212, 184, 114, 0.65);
  background: rgba(245, 239, 227, 0.07);
  transform: translateY(-4px);
}
.about-profile .ap-card-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #D4B872;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.about-profile .ap-card-h {
  font-size: 20px;
  font-weight: 800;
  color: #F5EFE3;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(212, 184, 114, 0.30);
  letter-spacing: -0.005em;
}

.about-profile .ap-list,
.about-profile .ap-promise {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-profile .ap-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 239, 227, 0.06);
  font-size: 14px;
  line-height: 1.6;
}
.about-profile .ap-list li:last-child { border-bottom: none; }
.about-profile .ap-k {
  color: rgba(212, 184, 114, 0.85);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.about-profile .ap-v {
  color: #F5EFE3;
  font-weight: 500;
}

.about-profile .ap-promise li {
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.06);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.85);
  position: relative;
}
.about-profile .ap-promise li:last-child { border-bottom: none; }
.about-profile .ap-promise li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D4B872;
}
.about-profile .ap-promise li strong {
  color: #F5EFE3;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .about-profile .ap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-profile .ap-card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .about-profile { padding: 80px 0 90px; }
  .about-profile .ap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-profile .ap-card,
  .about-profile .ap-card:last-child {
    grid-column: auto;
    padding: 26px 24px;
  }
  .about-profile .ap-head { margin-bottom: 44px; }
  .about-profile .ap-list li {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }
}
/* /about-profile */

/* ============================================================
   Insights — Article + Index pages
   추가일: 2026-05-23
============================================================ */
.article-page { background: #FAF6EC; }

.article-hero {
  background: linear-gradient(135deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 110px 24px 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(212,184,114,0.15) 0%, rgba(212,184,114,0) 70%);
  pointer-events: none;
}
.article-hero .container { position: relative; z-index: 1; max-width: 920px; }
.article-hero .breadcrumb {
  font-size: 13px;
  color: rgba(245,239,227,0.65);
  margin-bottom: 28px;
}
.article-hero .breadcrumb a { color: rgba(245,239,227,0.65); text-decoration: none; }
.article-hero .breadcrumb a:hover { color: #D4B872; }
.article-hero .breadcrumb span { margin: 0 6px; color: rgba(245,239,227,0.4); }
.article-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #D4B872;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.article-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  background: linear-gradient(120deg, #F5EFE3 0%, #D4B872 60%, #F5EFE3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.article-title em {
  font-style: normal;
  display: block;
  font-size: 0.65em;
  font-weight: 700;
  margin-top: 12px;
  color: rgba(245,239,227,0.85);
  background: none;
  -webkit-text-fill-color: rgba(245,239,227,0.85);
  letter-spacing: -0.005em;
}
.article-lead {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245,239,227,0.85);
  margin: 0;
  max-width: 720px;
}

.article-body {
  padding: 100px 24px 110px;
}
.article-body .container.narrow {
  max-width: 760px;
  margin: 0 auto;
}
.article-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1B3B2E;
  margin: 60px 0 22px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.article-body h2:first-of-type { margin-top: 0; }
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #2E5D48;
  margin: 38px 0 14px;
  line-height: 1.45;
}
.article-body p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #2A2A2A;
  margin: 0 0 18px;
}
.article-body ol,
.article-body ul {
  font-size: 16.5px;
  line-height: 1.85;
  color: #2A2A2A;
  padding-left: 28px;
  margin: 0 0 22px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #1B3B2E; font-weight: 700; }

.tldr-box {
  background: rgba(212,184,114,0.10);
  border-left: 5px solid #D4B872;
  border-radius: 8px;
  padding: 26px 30px;
  margin: 0 0 48px;
}
.tldr-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #9A7B3F;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.tldr-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tldr-box li {
  padding: 6px 0 6px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #1F1E1D;
  position: relative;
}
.tldr-box li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: #9A7B3F;
  font-weight: 800;
}

.table-wrap { overflow-x: auto; margin: 0 0 26px; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E3DCC8;
}
.article-table thead { background: #1B3B2E; color: #F5EFE3; }
.article-table th,
.article-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid #E3DCC8;
}
.article-table th { font-weight: 700; }
.article-table tbody tr:last-child td { border-bottom: none; }
.article-table tbody tr:nth-child(odd) { background: rgba(212,184,114,0.04); }

.checklist {
  list-style: none !important;
  padding-left: 0 !important;
}
.checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid rgba(216,222,219,0.6);
  font-size: 16px;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 4px; top: 12px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #D4B872;
  color: #1B3B2E;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
}

.check-numbered {
  list-style: none !important;
  padding-left: 0 !important;
  counter-reset: cn;
}
.check-numbered li {
  padding: 14px 0 14px 44px;
  position: relative;
  counter-increment: cn;
  border-bottom: 1px solid rgba(216,222,219,0.6);
}
.check-numbered li:last-child { border-bottom: none; }
.check-numbered li::before {
  content: counter(cn);
  position: absolute;
  left: 0; top: 16px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: #1B3B2E;
  color: #D4B872;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
}

.article-faq {
  background: #fff;
  border: 1px solid #E3DCC8;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.article-faq[open] {
  border-color: #D4B872;
  box-shadow: 0 6px 20px rgba(27,59,46,0.06);
}
.article-faq summary {
  font-weight: 700;
  color: #1B3B2E;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 22px;
  color: #D4B872;
  font-weight: 800;
  transition: transform 0.25s ease;
}
.article-faq[open] summary::after { transform: rotate(45deg); }
.article-faq p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #2A2A2A;
}

.article-disclaimer {
  background: rgba(27,59,46,0.04);
  border-left: 4px solid #2E5D48;
  border-radius: 6px;
  padding: 20px 24px;
  margin: 56px 0 32px;
}
.article-disclaimer p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #5A5A5A;
  margin: 0;
}
.article-disclaimer strong { color: #1B3B2E; }

.article-meta {
  border-top: 1px solid #E3DCC8;
  padding-top: 24px;
}
.article-byline {
  font-size: 13px;
  color: #5A5A5A;
  margin: 0;
}

.article-cta {
  background: linear-gradient(135deg, #1B3B2E 0%, #102819 100%);
  color: #F5EFE3;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,184,114,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta .container { position: relative; z-index: 1; }
.article-cta .cta-h {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  margin: 18px 0 14px;
  background: linear-gradient(120deg, #F5EFE3 0%, #D4B872 60%, #F5EFE3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.article-cta .cta-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,239,227,0.82);
  margin: 0 0 32px;
}
.article-cta .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Insights Index ===== */
.insights-index { background: #FAF6EC; }
.insights-index .ix-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.ix-card {
  background: #fff;
  border: 1px solid #E3DCC8;
  border-radius: 12px;
  padding: 32px 34px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ix-card:hover {
  border-color: #D4B872;
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(27,59,46,0.08);
}
.ix-card-meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #9A7B3F;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.ix-card-h {
  font-size: 22px;
  font-weight: 800;
  color: #1B3B2E;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.ix-card-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #5A5A5A;
  margin: 0 0 18px;
}
.ix-card-arrow {
  font-size: 14px;
  color: #1B3B2E;
  font-weight: 600;
}
.ix-card:hover .ix-card-arrow { color: #9A7B3F; }

@media (max-width: 720px) {
  .article-hero { padding: 80px 20px 60px; }
  .article-body { padding: 70px 20px 80px; }
  .article-body h2 { font-size: 23px; margin: 44px 0 16px; }
  .article-body h3 { font-size: 17px; margin: 28px 0 10px; }
  .article-body p,
  .article-body ol,
  .article-body ul { font-size: 15.5px; }
  .tldr-box { padding: 22px 20px; }
  .article-cta { padding: 70px 20px; }
  .ix-card { padding: 24px 22px; }
  .ix-card-h { font-size: 19px; }
}
/* /Insights */

/* ============================================================
   article-hero 통일 패치 — about-hero와 동일 높이·폰트·톤
   추가일: 2026-05-23
============================================================ */
.article-hero {
  background: linear-gradient(180deg, #1B3B2E 0%, #163225 100%) !important;
  padding: 140px 0 100px !important;
}
.article-hero .container { padding: 0 24px; max-width: 1080px; }
.article-title {
  font-family: var(--font-serif, 'Noto Serif KR', serif) !important;
  font-size: clamp(40px, 5.2vw, 68px) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  margin: 18px 0 0 !important;
}
.article-title em {
  font-style: normal;
  display: block;
  font-size: 0.55em !important;
  font-weight: 700;
  margin-top: 18px !important;
  letter-spacing: -0.01em;
}
.article-lead {
  margin-top: 36px !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
  max-width: 660px;
  word-break: keep-all;
}

@media (max-width: 720px) {
  .article-hero { padding: 100px 0 70px !important; }
  .article-hero .container { padding: 0 20px; }
}
/* /article-hero 통일 */

/* article-hero 최종 통일 — min-height + flex center (about와 정확히 같은 높이) */
.article-hero {
  min-height: 614px !important;
  display: flex !important;
  align-items: center !important;
}
.article-hero .container { width: 100%; }
.article-title em {
  font-size: 0.85em !important;
  font-weight: 700 !important;
  margin-top: 10px !important;
  background: linear-gradient(135deg, #D4B872 0%, #E6CB85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.article-title {
  background: none !important;
  -webkit-text-fill-color: #F5EFE3 !important;
  color: #F5EFE3 !important;
}
@media (max-width: 720px) {
  .article-hero { min-height: 480px !important; }
}
/* / */

/* article-hero 하드 고정 614px — 모든 인사이트 페이지 동일 높이 강제 */
.article-hero {
  height: 614px !important;
  min-height: 614px !important;
  max-height: 614px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}
.article-hero .container { width: 100%; }
.article-lead {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  max-height: 96px !important;
  margin-top: 24px !important;
}
.article-title {
  margin: 12px 0 0 !important;
}
.article-title em {
  font-size: 0.72em !important;
  margin-top: 6px !important;
}
@media (max-width: 720px) {
  .article-hero {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
  }
}
/* / */

/* ============================================================
   checkup-mso highlight 카드 + CTA 호버 효과
   추가일: 2026-05-27
============================================================ */
.checkup-mso-highlight {
  position: relative;
  overflow: hidden;
}
.checkup-mso-highlight::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.checkup-mso-highlight:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 80px rgba(212, 184, 114, 0.42),
              0 0 0 1px rgba(212, 184, 114, 0.6) !important;
}
.checkup-mso-highlight:hover::before {
  opacity: 1;
}
.checkup-mso-highlight span {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}
.checkup-mso-highlight:hover span {
  background: #0E2419 !important;
  color: #E6CB85 !important;
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(14, 36, 25, 0.4);
}
/* /checkup-mso */
