/* ============================================================
   PROUDLEE 프라우들리 — 타이포그래피 주도 리디자인
   시스템: Pretendard 단독 · 극단적 웨이트 대비(200↔800)
   원칙: 직각 모서리 · 헤어라인 보더 · 골드는 액센트로만 절제
   ============================================================ */
:root {
  --ink: #1d1814;          /* 본문 잉크 (먹색) */
  --brown: #221c17;        /* 다크 섹션 바탕 */
  --brown-2: #2c251f;
  --paper: #faf7f0;        /* 라이트 바탕 (한지) */
  --sand: #f1ebdd;         /* 웜 베이지 */
  --gold: #c3a05c;         /* 골드 — 절제된 액센트 전용 */
  --gold-deep: #9d7e35;
  --line: #e4dccb;         /* 라이트 헤어라인 */
  --line-dark: rgba(255,255,255,.14);
  --muted: #7a7060;
  --dark-body: #a99d8b;    /* 다크 섹션 본문 */
  --dark-head: #f3ede2;
  --white: #ffffff;
  /* 3폰트 시스템 — 역할 분리
     --ui   : Pretendard      — 한글 헤드라인, 버튼, 내비, 폼 (웨이트 대비 200↔800)
     --body : Noto Sans KR    — 본문 문단 (장문 가독)
     --en   : Inter           — 영문 라벨, 숫자, 통계 (한글은 Pretendard로 폴백) */
  --ui: "Pretendard Variable", Pretendard, -apple-system, "Noto Sans KR", sans-serif;
  --body-font: "Noto Sans KR", "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  --en: "Inter", "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  --sans: var(--ui);       /* 구 마크업 호환용 */
  --serif: var(--ui);      /* 구 마크업 호환용 */
  --maxw: 1200px;

  /* 타이포 스케일 */
  --fs-display: clamp(2.6rem, 6vw, 4.6rem);
  --fs-title: clamp(1.8rem, 3.4vw, 2.8rem);
  --fs-lead: clamp(1.02rem, 1.5vw, 1.18rem);
  --fs-body: 1.0rem;
  --ls-tight: -0.035em;
  --ls-wide: 0.34em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  font-feature-settings: "tnum";
}
h1, h2, h3, h4, h5, .main-nav, .brand, .btn { font-family: var(--ui); }
.eyebrow, .stat .num, .num-item .no, .cycle-item::before,
.review-card .where, .ba-item figcaption, .compare .col h4,
.split-card .tag, .brand .logo-en, .site-footer .brand-f small { font-family: var(--en); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--brown); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 247, 240, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 16px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand .logo-kr {
  font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em;
  color: var(--white); transition: color .35s;
}
.brand .logo-en { font-size: .62rem; letter-spacing: var(--ls-wide); color: var(--gold); font-weight: 600; }
.site-header.scrolled .brand .logo-kr,
.site-header.on-light .brand .logo-kr { color: var(--ink); }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: .88rem; font-weight: 500; letter-spacing: .01em;
  color: var(--white); opacity: .8; transition: color .35s, opacity .2s;
}
.main-nav a:hover { opacity: 1; }
.site-header.scrolled .main-nav a,
.site-header.on-light .main-nav a { color: var(--ink); }
.main-nav a.nav-cta {
  background: transparent; color: var(--white) !important; opacity: 1;
  padding: 10px 22px; font-weight: 600; font-size: .85rem;
  border: 1px solid rgba(255,255,255,.5); transition: all .25s;
}
.main-nav a.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--brown) !important; }
.site-header.scrolled .main-nav a.nav-cta,
.site-header.on-light .main-nav a.nav-cta { color: var(--ink) !important; border-color: var(--ink); }
.site-header.scrolled .main-nav a.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 130; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 1.5px; background: var(--white);
  position: absolute; left: 9px; transition: all .25s;
}
.site-header.scrolled .nav-toggle span, .site-header.scrolled .nav-toggle span::before, .site-header.scrolled .nav-toggle span::after,
.site-header.on-light .nav-toggle span, .site-header.on-light .nav-toggle span::before, .site-header.on-light .nav-toggle span::after { background: var(--ink); }
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
body.nav-open .nav-toggle span { background: transparent !important; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; background: var(--ink); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; background: var(--ink); }

/* ---------- 히어로 ---------- */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.45) 0%, rgba(20,16,12,.26) 38%, rgba(20,16,12,.82) 100%);
}
.hero h1, .hero .lead, .hero .eyebrow { text-shadow: 0 1px 20px rgba(0,0,0,.35); }
.hero .container { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 96px; width: 100%; }
.hero .eyebrow {
  color: var(--gold); font-weight: 600; letter-spacing: var(--ls-wide);
  font-size: .68rem; margin-bottom: 28px;
}
.hero h1 {
  font-size: var(--fs-display); font-weight: 200; letter-spacing: var(--ls-tight);
  line-height: 1.22; margin-bottom: 28px; max-width: 18em;
}
.hero h1 strong, .hero h1 b { font-weight: 800; }
.hero .lead {
  font-size: var(--fs-lead); font-weight: 300; line-height: 1.9;
  max-width: 34em; opacity: .88; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; flex-wrap: wrap; margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.22); padding-top: 28px;
}
.hero-stats .hs { padding: 0 40px; border-left: 1px solid rgba(255,255,255,.22); }
.hero-stats .hs:first-child { padding-left: 0; border-left: 0; }
.hero-stats .hs b {
  display: block; font-family: var(--en); font-weight: 600; font-size: 1.5rem;
  color: var(--gold); letter-spacing: -0.02em; line-height: 1.3;
}
.hero-stats .hs span { font-size: .78rem; opacity: .7; font-weight: 400; letter-spacing: .02em; }
@media (max-width: 960px) {
  .hero-stats { gap: 18px 0; }
  .hero-stats .hs { padding: 0 20px; }
  .hero-stats .hs:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-stats .hs b { font-size: 1.2rem; }
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 17px 34px; font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  border: 1px solid transparent; transition: all .25s; font-family: var(--sans);
  border-radius: 0;
}
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--white); color: var(--brown); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--gold-deep); color: var(--white); }
.btn .arrow { transition: transform .25s; font-weight: 400; }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- 섹션 공통 ---------- */
section { padding: 120px 0; }
.section-head { margin-bottom: 72px; max-width: 820px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  color: var(--gold-deep); font-weight: 600; letter-spacing: var(--ls-wide);
  font-size: .68rem; margin-bottom: 22px; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.section-head.center .eyebrow { justify-content: center; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-deep); flex: none; }
.section-head.center .eyebrow::before { display: none; }
h2.title {
  font-size: var(--fs-title); font-weight: 250; letter-spacing: var(--ls-tight);
  line-height: 1.32; color: var(--ink);
}
h2.title .hl { font-weight: 800; }
.section-head p.desc {
  margin-top: 22px; color: var(--muted); font-size: 1.0rem; font-weight: 400;
  line-height: 1.95; max-width: 40em;
}
.section-head.center p.desc { margin-left: auto; margin-right: auto; }
.dark { background: var(--brown); color: var(--dark-head); }
.dark h2.title { color: var(--dark-head); }
.dark .eyebrow { color: var(--gold); }
.dark .eyebrow::before { background: var(--gold); }
.dark .section-head p.desc { color: var(--dark-body); }
.sand-bg { background: var(--sand); }

/* ---------- 분기 카드 (index) ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card {
  position: relative; overflow: hidden; min-height: 520px;
  display: flex; align-items: flex-end; color: var(--white);
}
.split-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.split-card:hover .bg { transform: scale(1.04); }
.split-card .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.08) 22%, rgba(20,16,12,.62) 55%, rgba(20,16,12,.92) 100%); }
.split-card h3, .split-card p { text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.split-card .card-body { position: relative; z-index: 2; padding: 44px 40px; width: 100%; }
.split-card .tag {
  display: inline-block; background: var(--gold); color: var(--brown);
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  padding: 7px 16px; margin-bottom: 20px; text-transform: uppercase;
}
.split-card h3 { font-size: 1.7rem; font-weight: 250; letter-spacing: -0.02em; line-height: 1.35; margin-bottom: 14px; }
.split-card h3 b, .split-card h3 strong { font-weight: 800; }
.split-card p { font-size: .93rem; font-weight: 300; opacity: .85; margin-bottom: 24px; max-width: 30em; line-height: 1.85; }
.split-card .link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .92rem; letter-spacing: .02em; color: var(--white);
  border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.08);
  padding: 15px 28px; transition: all .25s;
}
.split-card .link .arrow { transition: transform .25s; font-weight: 400; }
.split-card:hover .link { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.split-card:hover .link .arrow { transform: translateX(5px); }

/* ---------- 통계 밴드 ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: left; padding: 8px 32px; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-weight: 200; font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: var(--ls-tight); line-height: 1.15; color: var(--dark-head);
  font-feature-settings: "tnum"; white-space: nowrap;
}
.stat .num small { font-size: .42em; font-weight: 400; color: var(--gold); margin-left: 2px; white-space: nowrap; }
.stat .label { margin-top: 12px; font-size: .88rem; font-weight: 500; opacity: .85; }
.stat .note { font-size: .72rem; font-weight: 400; opacity: .45; margin-top: 3px; letter-spacing: .02em; }
section:not(.dark) .stat { border-left-color: var(--line); }
section:not(.dark) .stat .num { color: var(--ink); }

/* ---------- 카드/그리드 ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 40px 34px;
  transition: border-color .3s, transform .3s;
}
.sand-bg .card { background: var(--white); }
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card .icon { margin-bottom: 22px; color: var(--gold-deep); }
.card .icon svg { width: 30px; height: 30px; display: block; stroke-width: 1.3; }
.card h4 { font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.card p { font-size: .9rem; font-weight: 400; color: var(--muted); line-height: 1.85; }
.dark .card { background: transparent; border-color: var(--line-dark); }
.dark .card:hover { background: rgba(255,255,255,.03); }
.dark .card .icon { color: var(--gold); }
.dark .card h4 { color: var(--dark-head); }
.dark .card p { color: var(--dark-body); }

/* ---------- 넘버 리스트 (4가지 장점) ---------- */
.num-list { border-top: 1px solid var(--line); }
.dark .num-list { border-color: var(--line-dark); }
.num-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 32px;
  padding: 44px 4px; border-bottom: 1px solid var(--line); align-items: start;
}
.dark .num-item { border-color: var(--line-dark); }
.num-item .no {
  font-size: 2.6rem; font-weight: 150; letter-spacing: var(--ls-tight);
  color: var(--gold-deep); line-height: 1; padding-top: 4px;
}
.dark .num-item .no { color: var(--gold); }
.num-item h4 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
.num-item p { color: var(--muted); font-size: .93rem; line-height: 1.9; max-width: 52em; }
.dark .num-item p { color: var(--dark-body); }

/* ---------- 운영 사이클 ---------- */
.cycle { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; counter-reset: step; }
.cycle-item {
  background: var(--white); border: 1px solid var(--line);
  padding: 28px 22px 26px; text-align: left; font-size: .86rem; font-weight: 600;
  line-height: 1.6; position: relative; counter-increment: step;
  transition: border-color .3s, transform .3s;
}
.cycle-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.cycle-item::before {
  content: counter(step, decimal-leading-zero);
  display: block; color: var(--gold-deep); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; margin-bottom: 14px; font-family: var(--en);
}
.cycle-item:not(:last-child)::after {
  content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-size: .9rem; font-weight: 300; z-index: 2;
}
.cycle-item .ci-icon { color: var(--gold-deep); margin-bottom: 16px; }
.cycle-item .ci-icon svg { width: 26px; height: 26px; display: block; stroke-width: 1.4; }
.cycle-item h5 { font-size: 1.0rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.cycle-item .ci-desc { font-size: .82rem; font-weight: 400; color: var(--muted); line-height: 1.7; }
@media (max-width: 960px) { .cycle-item::after { display: none; } }

/* ---------- 이미지 + 텍스트 교차 ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.media-split .img-wrap { overflow: hidden; }
.media-split .img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.media-split .img-wrap:hover img { transform: scale(1.03); }
.media-split .content h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 250; letter-spacing: -0.025em;
  line-height: 1.4; margin-bottom: 20px;
}
.media-split .content h3 b, .media-split .content h3 strong { font-weight: 800; }
.media-split .content p { color: var(--muted); margin-bottom: 12px; font-size: .95rem; line-height: 1.9; }
.media-split .content ul { list-style: none; margin-top: 30px; border-top: 1px solid var(--line); }
.media-split .content li {
  padding: 17px 4px 17px 32px; position: relative; font-size: .95rem; font-weight: 500;
  line-height: 1.75; border-bottom: 1px solid var(--line);
}
.media-split .content li::before {
  content: ""; position: absolute; left: 4px; top: 1.62em; width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
}
.media-split .content li b { font-weight: 800; font-family: var(--en); }
.dark .media-split .content p { color: var(--dark-body); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.ba-item { position: relative; }
.ba-item figure { overflow: hidden; }
.ba-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.ba-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--en); font-size: .66rem; font-weight: 800; letter-spacing: .2em;
  padding: 8px 14px; text-transform: uppercase;
}
.ba-badge.before { background: rgba(29,24,20,.82); color: #ece5d6; }
.ba-badge.after { background: var(--gold); color: var(--brown); }
.ba-item figcaption {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; margin-top: 16px;
  color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.ba-item figcaption::before { content: ""; width: 20px; height: 1px; background: var(--gold-deep); }
.ba-arrow {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
  color: var(--brown); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 400;
}

/* ---------- 후기 ---------- */
section .grid-3 { gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  padding: 42px 36px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(43,36,32,.08); }
.review-card .where {
  align-self: flex-start; background: var(--sand); color: var(--gold-deep);
  font-weight: 700; font-size: .7rem; letter-spacing: .2em;
  padding: 7px 14px; margin-bottom: 28px; text-transform: uppercase;
}
.review-card blockquote {
  font-size: 1.13rem; font-weight: 500; line-height: 1.9; flex: 1;
  letter-spacing: -0.015em; position: relative; color: var(--ink);
}
.review-card blockquote::before {
  content: "“"; display: block; color: var(--gold); font-size: 3.2rem; font-weight: 800;
  font-family: var(--en); line-height: .8; margin-bottom: 16px;
}
.review-card .meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted); display: grid; gap: 6px; }
.review-card .meta b {
  color: var(--gold-deep); font-weight: 800; font-size: 1.3rem;
  font-family: var(--en); letter-spacing: -0.02em; margin-right: 2px;
}

/* ---------- 비교 표 ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
.compare::after {
  content: "→"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--brown);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; z-index: 2;
  border: 6px solid var(--paper);
}
@media (max-width: 960px) { .compare::after { display: none; } }
.compare .col { padding: 48px 44px; }
.compare .col.before-col { background: var(--paper); border: 1px solid var(--line); border-right: 0; }
.compare .col.after-col { background: var(--brown); color: var(--dark-head); }
.compare .col h4 {
  display: inline-block; font-size: .82rem; font-weight: 800; letter-spacing: .16em;
  margin-bottom: 34px; text-transform: uppercase; font-family: var(--en);
  padding: 10px 20px; background: var(--sand); color: var(--muted);
}
.compare .col.after-col h4 { background: var(--gold); color: var(--brown); }
.compare ul { list-style: none; display: grid; gap: 18px; }
.compare li { padding-left: 30px; position: relative; font-size: .94rem; line-height: 1.8; }
.compare .before-col li { color: var(--muted); font-weight: 300; }
.compare .before-col li::before { content: ""; position: absolute; left: 0; top: .8em; width: 14px; height: 1px; background: var(--muted); }
.compare .after-col li { font-weight: 500; }
.compare .after-col li::before { content: ""; position: absolute; left: 0; top: .8em; width: 14px; height: 1px; background: var(--gold); }

/* ---------- 폼 ---------- */
.contact-section { background: var(--brown); color: var(--dark-head); scroll-margin-top: 70px; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 88px; }
.contact-info .eyebrow { color: var(--gold); }
.contact-info .eyebrow::before { background: var(--gold); }
.contact-info h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 250; letter-spacing: -0.025em;
  line-height: 1.4; margin-bottom: 22px;
}
.contact-info h2 b, .contact-info h2 strong { font-weight: 800; }
.contact-info p { color: var(--dark-body); font-size: .95rem; font-weight: 300; line-height: 1.95; margin-bottom: 36px; }
.contact-info .direct { display: grid; gap: 12px; font-size: .9rem; font-weight: 300; color: var(--dark-body); }
.contact-info .direct a { color: var(--gold); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .2s; }
.contact-info .direct a:hover { border-bottom-color: var(--gold); }
.consult-form { display: grid; gap: 30px; }
.consult-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.consult-form label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .12em; color: var(--dark-body); text-transform: uppercase; }
.consult-form label .req { color: var(--gold); }
.consult-form label input, .consult-form label select, .consult-form label textarea { margin-top: 10px; }
.consult-form input, .consult-form select, .consult-form textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-dark);
  border-radius: 0; padding: 10px 2px 14px; color: var(--dark-head);
  font-size: 1.02rem; font-weight: 400; font-family: var(--sans); width: 100%;
  transition: border-color .25s; letter-spacing: 0;
}
.consult-form input::placeholder, .consult-form textarea::placeholder { color: rgba(243,237,226,.28); font-weight: 300; }
.consult-form select { appearance: none; cursor: pointer; }
.consult-form select option { color: var(--ink); }
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus {
  outline: none; border-bottom: 1px solid var(--gold);
}
.consult-form textarea { min-height: 96px; resize: vertical; }
.consult-form .privacy {
  font-size: .8rem; color: var(--dark-body); display: flex; gap: 10px; align-items: flex-start;
  font-weight: 400; letter-spacing: 0; text-transform: none; line-height: 1.75;
}
.consult-form .privacy input { width: auto; margin-top: 6px; accent-color: var(--gold); }
.form-status { font-size: .92rem; font-weight: 600; padding: 16px 18px; display: none; letter-spacing: 0; }
.form-status.ok { display: block; background: rgba(110, 150, 90, .18); color: #cfe3c5; }
.form-status.err { display: block; background: rgba(170, 80, 70, .18); color: #efcac2; }

/* ---------- 푸터 ---------- */
.site-footer { background: #171310; color: #8d8271; padding: 64px 0 52px; font-size: .84rem; font-weight: 300; }
.site-footer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.site-footer .brand-f { color: #f3ede2; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.site-footer .brand-f small { display: block; color: var(--gold); letter-spacing: var(--ls-wide); font-size: .58rem; font-weight: 600; margin-top: 6px; }
.site-footer nav { display: flex; gap: 28px; flex-wrap: wrap; font-weight: 500; }
.site-footer nav a { transition: color .2s; }
.site-footer nav a:hover { color: #f3ede2; }
.site-footer .info { display: grid; gap: 6px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 30px; letter-spacing: .01em; }

/* ---------- 플로팅 카카오 ---------- */
.kakao-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  background: #fee500; color: #191919; font-weight: 700; font-size: .88rem;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: none; align-items: center; gap: 8px; transition: transform .2s;
}
.kakao-fab.show { display: inline-flex; }
.kakao-fab:hover { transform: translateY(-3px); }
.kakao-fab svg { width: 18px; height: 18px; }

/* ---------- 임팩트 밴드 (사진 배경 강조 박스) ---------- */
.impact-band {
  position: relative; overflow: hidden; margin-top: 56px;
  padding: 88px 48px; text-align: center; color: #f3ede2;
}
.impact-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.impact-band .bg::after { content: ""; position: absolute; inset: 0; background: rgba(22,17,13,.86); }
.impact-band .inner { position: relative; z-index: 2; }
.impact-band .small-line { font-size: 1rem; font-weight: 300; opacity: .8; margin-bottom: 10px; }
.impact-band .big-line {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  letter-spacing: -0.025em; color: var(--gold); line-height: 1.4;
}
.impact-band .inner::before {
  content: ""; display: block; width: 1px; height: 44px; background: var(--gold);
  margin: 0 auto 28px;
}

/* ---------- 포토 밴드 ---------- */
.photo-band-section { padding: 0; }
.photo-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.photo-band figure { overflow: hidden; margin: 0; position: relative; }
.photo-band img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.photo-band figure:hover img { transform: scale(1.05); }
@media (max-width: 960px) { .photo-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 파트너 로고 밴드 ---------- */
.partners-white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-group { display: grid; gap: 26px; }
.logo-row { display: flex; align-items: center; gap: 52px; flex-wrap: wrap; }
.logo-row img { height: 34px; width: auto; display: block; }
.logo-row img.lg { height: 40px; }
@media (max-width: 960px) { .logo-row { gap: 32px; } .logo-row img { height: 28px; } .logo-row img.lg { height: 32px; } }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- CTA 밴드 ---------- */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 250; letter-spacing: var(--ls-tight);
  line-height: 1.35; margin-bottom: 18px;
}
.cta-band h2 b, .cta-band h2 strong { font-weight: 800; }
.cta-band p { color: var(--muted); font-weight: 300; margin-bottom: 40px; }
.dark .cta-band p { color: var(--dark-body); }

/* ---------- 반응형 ---------- */
@media (max-width: 960px) {
  section { padding: 84px 0; }
  .section-head { margin-bottom: 52px; }
  .split-grid, .grid-3, .grid-4, .media-split, .contact-wrap, .compare { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat { padding: 0 24px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .split-card { min-height: 420px; }
  .media-split { gap: 36px; }
  .contact-wrap { gap: 56px; }
  .kv { grid-template-columns: 1fr; gap: 4px; }
  .num-item { grid-template-columns: 72px 1fr; gap: 20px; padding: 34px 2px; }
  .num-item .no { font-size: 1.9rem; }
  .ba-grid { grid-template-columns: 1fr; gap: 20px; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
  .compare .col.before-col { border-right: 1px solid var(--line); border-bottom: 0; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: var(--paper); z-index: 120;
    flex-direction: column; justify-content: center; gap: 38px;
    display: none;
  }
  body.nav-open .main-nav { display: flex; }
  body.nav-open .main-nav a { color: var(--ink); font-size: 1.3rem; font-weight: 300; }
  body.nav-open .main-nav a.nav-cta { font-size: 1rem; font-weight: 600; }
}
/* ---------- 모바일 정밀 최적화 ---------- */
@media (max-width: 960px) {
  .cycle {
    display: flex; overflow-x: auto; gap: 12px; padding-bottom: 14px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
  }
  .cycle-item { flex: 0 0 auto; min-width: 224px; scroll-snap-align: start; }
}
@media (max-width: 640px) {
  :root {
    --fs-display: clamp(1.9rem, 8.4vw, 2.4rem);
    --fs-title: clamp(1.5rem, 6.4vw, 1.8rem);
    --fs-lead: 1rem;
  }
  .container { padding: 0 22px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p.desc { font-size: .94rem; }
  .eyebrow { font-size: .6rem; letter-spacing: .22em; }

  /* 모바일에서는 강제 줄바꿈 대신 자연스러운 줄바꿈 */
  .hero h1 br, h2.title br, .media-split .content h3 br, .cta-band h2 br,
  .contact-info h2 br, .impact-band .big-line br { display: none; }

  .hero { min-height: 84vh; align-items: flex-end; }
  .hero .bg::after { background: linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.45) 30%, rgba(20,16,12,.88) 78%); }
  .split-card .bg::after { background: linear-gradient(180deg, rgba(20,16,12,.22) 12%, rgba(20,16,12,.72) 48%, rgba(20,16,12,.94) 100%); }
  .hero .container { padding-top: 110px; padding-bottom: 48px; }
  .hero h1 { line-height: 1.3; margin-bottom: 18px; }
  .hero .lead { margin-bottom: 30px; opacity: .92; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-top: 38px; padding-top: 24px; }
  .hero-stats .hs { padding: 0 !important; border-left: 0 !important; }
  .hero-stats .hs b { font-size: 1.25rem; }
  .hero-stats .hs span { font-size: .72rem; }

  .stats-band { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .stat { border-left: 0 !important; padding: 0 !important; }
  .stat .num { font-size: 1.75rem; font-weight: 300; }
  .stat .label { margin-top: 6px; font-size: .8rem; }
  .stat .note { font-size: .68rem; }

  .split-card { min-height: 380px; }
  .split-card .card-body { padding: 28px 24px; }
  .split-card h3 { font-size: 1.4rem; }
  .split-card .link { width: 100%; justify-content: center; }

  .card { padding: 30px 26px; }
  .num-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 2px; }
  .num-item .no { font-size: 1.5rem; padding-top: 0; }
  .num-item h4 { font-size: 1.08rem; }

  .impact-band { padding: 56px 26px; margin-top: 40px; }
  .impact-band .inner::before { height: 32px; margin-bottom: 20px; }
  .impact-band .small-line { font-size: .88rem; }

  .compare .col { padding: 34px 24px; }
  .compare .col h4 { margin-bottom: 24px; }

  .media-split { gap: 28px; }
  .media-split .content li { font-size: .9rem; padding: 14px 2px 14px 28px; }

  .review-card { padding: 32px 26px; }
  .review-card blockquote { font-size: 1.02rem; }

  .contact-wrap { gap: 48px; }
  .consult-form { gap: 24px; }
  .consult-form .row { grid-template-columns: 1fr; gap: 24px; }
  .consult-form button[type=submit] { width: 100%; }

  .site-footer .top { flex-direction: column; gap: 22px; }
  .site-footer nav { gap: 16px 20px; }

  .kakao-fab { right: 16px; bottom: 16px; padding: 13px 18px; font-size: .84rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
