@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Noto+Serif+KR:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

/*
  폰트 역할 명확 분리
  --font-display : Playfair Display  → 제목·헤딩 전용 (영문 장식체)
  --font-body    : Noto Serif KR     → 본문·설명 전용
  --font-mono    : DM Mono           → 숫자 전용 (1과 I 혼동 방지)
*/

/* ─── Variables ─── */
:root {
  --bg:          #FAF8F4;
  --bg-alt:      #F3F0EB;
  --bg-dark:     #111111;
  --bg-dark2:    #0A0A0A;
  --gold:        #B59A6A;
  --gold-light:  #D9C49A;
  --gold-pale:   #EDE3D0;
  --text:        #111111;
  --text-mid:    #555550;
  --text-light:  #999990;
  --white:       #FFFFFF;
  --card-bg:     #FFFFFF;
  --border:      #E2DDD6;
  --border-dark: rgba(255,255,255,0.1);

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);

  --radius:      4px;
  --radius-sm:   2px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Noto Serif KR', serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography helpers ─── */
.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}
/* 숫자 전용 — DM Mono 고정 */
.num {
  font-family: var(--font-mono);
  font-weight: 300;
}

/* ─── Gold line divider ─── */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
  border: 1px solid #FEE500;
}
.btn-kakao:hover { background: #F5DB00; border-color: #F5DB00; transform: translateY(-2px); }
.btn-telegram {
  background: #229ED9;
  color: #fff;
  border: 1px solid #229ED9;
}
.btn-telegram:hover { background: #1A87C0; border-color:#1A87C0; transform: translateY(-2px); }

/* ─── Section ─── */
.section { padding: 96px 20px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); }
.container { max-width: 1100px; margin: 0 auto; width: 100%; }
.section-header { margin-bottom: 60px; }
.section-header .label { margin-bottom: 14px; }
.section-header .gold-line { margin: 16px 0 20px; }

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}
.nav-logo span {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta .btn { padding: 9px 20px; font-size: 0.78rem; }

/* ─────────────────────────────────────────────
   HERO — 좌우 분할형
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 40px;
  position: relative;
}
/* 골드 세로 구분선 */
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }

/* hero text */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 22px 0 32px;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.75s forwards;
}
.hero-tag {
  padding: 4px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.hero-notice {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-dark);
  padding: 0 20px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  /* 숫자는 반드시 DM Mono */
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   SERVICES — 라인형 카드
───────────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.svc-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
}
.svc-item:hover { background: var(--bg-alt); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.svc-num {
  /* 숫자 전용 폰트 */
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.svc-content {}
.svc-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 580px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.svc-tag {
  padding: 3px 10px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-light);
  border-radius: 2px;
}
.svc-arrow {
  font-size: 1.1rem;
  color: var(--border);
  padding-top: 4px;
  transition: color 0.2s, transform 0.2s;
}
.svc-item:hover .svc-arrow { color: var(--gold); transform: translateX(4px); }

/* ─────────────────────────────────────────────
   MID CTA STRIP
───────────────────────────────────────────── */
.mid-cta {
  background: var(--bg-dark);
  padding: 48px 20px;
}
.mid-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}
.mid-cta-text span { color: var(--gold-light); }
.mid-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   DIFFERENTIATORS — 2열 큰 타이포
───────────────────────────────────────────── */
.diff-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
  border: 1px solid var(--border);
}
.diff-cell {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.25s;
}
.diff-cell:hover { background: var(--bg-alt); }
.diff-cell-num {
  /* 숫자 전용 */
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.diff-cell-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.diff-cell-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ─────────────────────────────────────────────
   PROCESS — 번호형
───────────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  counter-reset: step;
}
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-item:first-child { border-top: 1px solid var(--border); }
.process-num-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* 숫자 전용 */
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.process-item:hover .process-num-box {
  background: var(--gold);
  color: var(--white);
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.process-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ─────────────────────────────────────────────
   TARGET
───────────────────────────────────────────── */
.target-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.target-card2 {
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.target-card2:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.target-icon2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.target-title2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.target-desc2 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ─────────────────────────────────────────────
   GALLERY — 가로 스크롤 슬라이드
───────────────────────────────────────────── */
.gallery-scroll-wrap {
  overflow-x: auto;
  margin-top: 60px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-alt);
  cursor: grab;
}
.gallery-scroll-wrap:active { cursor: grabbing; }
.gallery-scroll-wrap::-webkit-scrollbar { height: 3px; }
.gallery-scroll-wrap::-webkit-scrollbar-track { background: var(--bg-alt); }
.gallery-scroll-wrap::-webkit-scrollbar-thumb { background: var(--gold); }
.gallery-scroll {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 0;
}
.gallery-slide {
  width: 340px;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}
.gallery-slide:hover .gallery-slide-label { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   VISIT COMING SOON
───────────────────────────────────────────── */
.visit2 {
  background: var(--bg-alt);
  padding: 72px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.visit2-inner { max-width: 560px; margin: 0 auto; }
.visit2-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.visit2-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
.visit2-desc {
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.visit2-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   FAQ — 번호형 아코디언
───────────────────────────────────────────── */
.faq2-list {
  max-width: 720px;
  margin: 60px auto 0;
}
.faq2-item {
  border-bottom: 1px solid var(--border);
}
.faq2-item:first-child { border-top: 1px solid var(--border); }
.faq2-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq2-btn-num {
  /* 숫자 전용 */
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.faq2-btn-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}
.faq2-btn:hover .faq2-btn-text { color: var(--gold); }
.faq2-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  /* 아이콘도 mono */
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.faq2-item.open .faq2-icon {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  transform: rotate(45deg);
}
.faq2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq2-item.open .faq2-answer { max-height: 280px; }
.faq2-answer-inner {
  padding: 0 0 22px 64px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ─────────────────────────────────────────────
   FINAL CTA — 블랙 풀스크린
───────────────────────────────────────────── */
.cta2-section {
  background: var(--bg-dark);
  padding: 110px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* 골드 테두리 장식 */
.cta2-section::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(181,154,106,0.15);
  pointer-events: none;
}
.cta2-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta2-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.cta2-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta2-title em { font-style: italic; color: var(--gold-light); }
.cta2-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 44px;
}
.cta2-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cta2-note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark2);
  padding: 52px 20px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────
   FLOAT CTA (mobile)
───────────────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 10px 14px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(181,154,106,0.2);
  gap: 8px;
}

/* ─────────────────────────────────────────────
   TERMS / PRIVACY
───────────────────────────────────────────── */
.doc-page { padding-top: 64px; min-height: 100vh; }
.doc-hero {
  background: var(--bg-dark);
  padding: 64px 20px 52px;
  text-align: center;
}
.doc-hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.doc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.doc-hero-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}
.doc-body { max-width: 760px; margin: 0 auto; padding: 64px 20px 80px; }
.doc-section { margin-bottom: 44px; }
.doc-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.doc-section-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  margin-right: 8px;
  font-weight: 300;
}
.doc-text {
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 10px;
}
.doc-list { list-style: disc; padding-left: 20px; }
.doc-list li {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 4px;
}
.doc-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.doc-table th {
  background: var(--bg-alt);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text);
  border: 1px solid var(--border);
}
.doc-table td {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: var(--text-mid);
  border: 1px solid var(--border);
  vertical-align: top;
}
.doc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.doc-back-link:hover { border-color: var(--gold); }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .diff-grid2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  /* hero 세로 전환 */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 50vh;
  }
  .hero-left { padding: 56px 24px 40px; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 50vh; }
  .hero-right img { position: absolute; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .svc-item { grid-template-columns: 40px 1fr; }
  .svc-arrow { display: none; }
  .target-grid2 { grid-template-columns: 1fr; }
  .gallery-slide { width: 260px; height: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .float-cta { display: flex; }
  .cta2-section::before { inset: 12px; }
  .faq2-answer-inner { padding-left: 40px; }
  .mid-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
}
