/* =========================================================
   세무회계 마루 — 고급 리디자인 (골드 테마)
   따뜻한 크림 화이트 + 샴페인 골드 + 다크 골드 히어로
   세리프 제목(Noto Serif KR) + 본문 Pretendard
   ========================================================= */

:root {
  --bg: #ffffff;            /* 화이트 */
  --bg-soft: #f5f6f8;       /* 쿨 라이트 그레이 */
  --bg-blush: #eef1f6;      /* 네이비 빛 도는 라이트 */
  --text: #232730;          /* 뉴트럴 다크 */
  --text-soft: #5b6270;     /* 쿨 그레이 (가독성) */
  --line: #e5e8ee;          /* 쿨 라인 */
  --accent: #b08a4a;        /* 골드 포인트 */
  --accent-strong: #8a6a2c; /* 진한 골드 */
  --accent-soft: #f3ecdf;   /* 밝은 골드 배경 */
  --blush: #b89455;         /* 골드 보조 */
  --blush-soft: #f3ecdf;
  --navy: #16223f;          /* 메인: 딥 네이비 */
  --navy-strong: #0d1730;   /* 더 진한 네이비 */
  --max-width: 760px;       /* 본문 가독성 폭 */
  --max-wide: 1140px;       /* 넓은 영역 */
  --radius: 16px;
  --shadow: 0 1px 2px rgba(40, 33, 20, .05), 0 18px 50px rgba(184, 146, 78, .15);
  --shadow-soft: 0 10px 30px rgba(184, 146, 78, .12);
  --serif: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
}

/* 책 표지 제목용 — 두꺼운 디스플레이 고딕 */
@font-face {
  font-family: "GmarketSansBold";
  font-display: swap;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 1.06rem;       /* 시인성: 본문 크게 */
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* 섹션 상단 작은 라벨(eyebrow) */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-wide);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .01em;
}

.brand .mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: filter .15s ease, transform .1s ease;
}
.nav a.nav-cta:hover { color: #fff; filter: brightness(1.06); transform: translateY(-1px); }

/* 앵커 이동 시 고정 헤더에 가리지 않도록 여백 */
.card, #services, #book, #media, #about, #contact-sec { scroll-margin-top: 96px; }

/* =========================================================
   하위 페이지 공통 헤더 (네이비 밴드)
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 0 64px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 320px at 80% 0%, rgba(176, 138, 74, .16) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero .eyebrow { color: #cfb888; }
.page-hero h1 {
  font-family: var(--serif);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 10px 0 0;
}
.page-hero .ph-divider {
  width: 46px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--accent), #d8c08a);
  border-radius: 2px;
}
.page-hero p { color: rgba(255, 255, 255, .76); margin: 18px auto 0; max-width: 38em; font-size: 1.05rem; }
@media (max-width: 600px) { .page-hero { padding: 56px 0 44px; } .page-hero h1 { font-size: 1.9rem; } }

/* =========================================================
   프리미엄 포트레이트 히어로 (딥네이비 + 골드)
   ========================================================= */
.hero-pro {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid var(--navy-strong);
}
.hero-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 380px at 86% 4%, rgba(176, 138, 74, .16) 0%, transparent 60%),
    linear-gradient(180deg, #18244166 0%, transparent 40%);
  pointer-events: none;
}

/* 풀스크린 상징 이미지 히어로 (협력·화합) */
.hero-pro.hero-img {
  /* 배경 = 연속된 블루→네이비 + 한스 짐머 콘서트 무대 조명 (경계 없이 블루가 감싸 안듯) */
  background-color: #0b1330;
  background-image:
    /* 베이스 — 블루에서 네이비로 끊김 없이 깊어짐 (가로) */
    linear-gradient(90deg,
      #16284f 0%,
      #142650 24%,
      #122247 38%,
      #0f1d3f 48%,
      #0c1734 58%,
      #0b1330 70%,
      #0b1330 100%);
}
.hero-pro.hero-img::before {
  /* 사진(초록 건물 제거) — 그대로 활용, 오른쪽 끝만 블루 그라데이션에 녹아듦 */
  background-image: url("../images/hero-tower.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  /* 사진 최대한 살리고 오른쪽 끝만 부드럽게 블렌딩 */
  -webkit-mask-image: linear-gradient(90deg,
    #000 0%, #000 32%, rgba(0, 0, 0, 0) 40%);
  mask-image: linear-gradient(90deg,
    #000 0%, #000 32%, rgba(0, 0, 0, 0) 40%);
}
/* 움직이는 격자무늬 레이어 */
.hero-pro::after {
  content: "";
  position: absolute;
  inset: -72px;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 71px, rgba(255, 255, 255, .06) 71px 72px),
    repeating-linear-gradient(90deg, transparent 0 71px, rgba(255, 255, 255, .06) 71px 72px);
  animation: grid-drift 11s linear infinite;
}
@keyframes grid-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(72px, 72px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pro::after { animation: none; }
}
/* 벚꽃 꽃잎 (꽃과 어우러진 롯데타워) */
.hero-petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.petal {
  position: absolute;
  top: -8%;
  width: var(--s, 14px);
  height: var(--s, 14px);
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ffe4ed 45%, #f5b6cd 100%);
  border-radius: 150% 0 150% 0;
  opacity: var(--op, .8);
  filter: drop-shadow(0 1px 1px rgba(180, 90, 120, .18));
  will-change: transform;
  animation: petal-fall var(--dur, 12s) linear var(--delay, 0s) infinite;
}
@keyframes petal-fall {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(var(--drift, 50px), 116vh) rotate(var(--spin, 360deg)); }
}
@media (prefers-reduced-motion: reduce) { .petal { display: none; } }
/* 글 하단 칩 + 통계 */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 38px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(205, 176, 121, .65);
  color: #fff;
  font-weight: 600;
  font-size: clamp(.98rem, 1.05vw, 1.18rem);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.hero-chip::after { content: "›"; font-size: 1.05em; opacity: .6; }
.hero-chip:hover { border-color: #cdb079; color: #f0dca8; background: rgba(205, 176, 121, .1); transform: translateY(-2px); }
.hero-chip-gold {
  background: linear-gradient(135deg, #e2c88f, #cdb079, #bf9f5f);
  border-color: transparent;
  color: #1a1305;
}
.hero-chip-gold:hover { filter: brightness(1.05); color: #1a1305; background: linear-gradient(135deg, #e2c88f, #cdb079, #bf9f5f); border-color: transparent; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(205, 176, 121, .5);
}
.hero-stats div { display: flex; flex-direction: column; gap: 5px; }
.hs-num { font-family: var(--serif); font-size: clamp(2rem, 2.5vw, 2.9rem); font-weight: 600; color: #fff; line-height: 1; }
.hs-num small { font-size: .56em; color: #cfb888; margin-left: 2px; font-weight: 600; }
.hs-label { font-size: clamp(.86rem, 1vw, 1.05rem); color: rgba(255, 255, 255, .74); }
.hero-pro.hero-img .hero-pro-grid {
  grid-template-columns: 1fr;
  align-items: start;          /* 위쪽 정렬 → 남자 얼굴 높이에서 시작 */
  padding-top: 17vh;
  padding-bottom: 9vh;
}
.hero-pro.hero-img .hero-pro-text { max-width: 46em; justify-self: end; text-align: right; }
.hero-pro.hero-img .hero-chips,
.hero-pro.hero-img .hero-stats { justify-content: flex-end; }
.hero-pro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  min-height: 86vh;
  padding: 96px 0;
}
.hero-pro-text { max-width: 600px; }
.hero-pro .eyebrow {
  display: inline-block;
  color: #cfb888;
  letter-spacing: .22em;
  font-size: clamp(.82rem, 1vw, 1.05rem);
  margin-bottom: 20px;
}
.hero-pro-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.8vw, 4.5rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 26px;
}
.hero-pro-title br { display: block; }
.hero-pro-title .g {
  background: linear-gradient(180deg, #ecd9ad 0%, #cdb079 55%, #c0a163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #cdb079;
}
.hero-pro-sub {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  line-height: 1.8;
  max-width: 32em;
  margin: 0 0 38px;
  word-break: keep-all;
}
.hero-pro-sub strong { color: #fff; font-weight: 600; }
.hero-pro-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-pro-cta .btn-primary {
  background: linear-gradient(135deg, #e2c88f 0%, #cdb079 52%, #bf9f5f 100%);
  color: #1a1305;
  border: none;
  box-shadow: 0 12px 30px rgba(176, 138, 74, .3);
}
.hero-pro-cta .btn-primary:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
}
.btn-outline-light:hover { border-color: #cdb079; color: #cdb079; background: rgba(205, 176, 121, .08); }

.hero-pro-figure { position: relative; justify-self: center; width: 100%; max-width: 430px; }
.hero-pro-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 4px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .5);
}
/* 세로 롯데타워 사진 (잘림 없이 전체) */
.hero-pro-figure.tower img { aspect-ratio: 3 / 4; object-position: center; }
.hero-pro-figure::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(205, 176, 121, .55);
  border-radius: 4px;
  z-index: -1;
}
.hero-pro-figure .figure-name {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 11px 18px;
  background: rgba(13, 18, 40, .68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  border: 1px solid rgba(205, 176, 121, .25);
  font-family: var(--serif);
  font-size: 1.08rem;
  color: #fff;
  line-height: 1.2;
}
.hero-pro-figure .figure-name small {
  display: block;
  margin-top: 2px;
  font-family: "Pretendard", sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #cfb888;
}
@media (max-width: 920px) {
  .hero-pro-grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; padding: 64px 0 72px; text-align: center; }
  .hero-pro-text { max-width: 100%; margin: 0 auto; }
  .hero-pro-sub { margin-left: auto; margin-right: auto; }
  .hero-pro-cta, .hero-chips, .hero-stats { justify-content: center; }
  .hero-pro-figure { order: -1; max-width: 320px; }
  .hero-pro-figure::after { inset: 12px -12px -12px 12px; }
  .hero-pro-title { font-size: 2.4rem; }
  /* 모바일: 사진 꽉 채우고 글 중앙 */
  .hero-pro.hero-img { background-size: cover; background-position: center 30%; }
  .hero-pro.hero-img::before { background: linear-gradient(180deg, rgba(11, 19, 46, .5) 0%, rgba(11, 19, 46, .82) 100%); }
  .hero-pro.hero-img .hero-pro-text { justify-self: center; text-align: center; }
  .hero-pro.hero-img .hero-chips, .hero-pro.hero-img .hero-stats { justify-content: center; }
}

/* =========================================================
   히어로 — (구) 밝은 화이트/블루, 좌측 카피 / 우측 대표 사진
   ========================================================= */
.hero-lux {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 82vh;
  /* 배경 사진(롯데타워 야경)이 전체를 꽉 채움 */
  background-color: #0a1020;
  border-bottom: 1px solid rgba(205, 176, 121, .38);
  padding: 80px 0 88px;
}
/* 사진 레이어 (선명하게: 대비·채도 보정) */
.hero-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/hero-bg.jpg") no-repeat center 32%;
  background-size: cover;
  /* 선명화: 샤픈 + 대비·채도 보정 */
  filter: url("#hero-sharpen") contrast(1.12) saturate(1.18) brightness(1.05);
}
/* 가독성 오버레이 (우측을 더 어둡게 → 우측 글) */
.hero-lux::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 26, .22) 0%, rgba(8, 12, 26, .5) 50%, rgba(8, 12, 26, .9) 100%),
    linear-gradient(180deg, rgba(8, 12, 26, .25) 0%, rgba(8, 12, 26, 0) 30%, rgba(8, 12, 26, .35) 100%);
  pointer-events: none;
}
.hero-sparkle { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.spark {
  position: absolute;
  width: var(--s, 3px);
  height: var(--s, 3px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 1px rgba(255, 238, 196, .92), 0 0 15px 3px rgba(255, 226, 160, .35);
  opacity: 0;
  animation: twinkle var(--dur, 3.2s) ease-in-out var(--delay, 0s) infinite;
}
.spark.gold { background: #ffe2a6; box-shadow: 0 0 9px 1px rgba(255, 206, 120, .95), 0 0 16px 4px rgba(255, 190, 90, .4); }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.45); }
  50%      { opacity: var(--max, .9); transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .spark { animation: none; opacity: .4; } }
.hero-lux .container-wide { position: relative; z-index: 2; }

.hero-copy {
  max-width: 640px;
  margin: 0 0 0 auto;   /* 오른쪽 배치 */
  text-align: right;
}
.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(214, 185, 127, .55);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .14em;
  color: #e3ca90;
  background: rgba(214, 185, 127, .07);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-title {
  margin: 0 0 24px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.005em;
  color: #f7f5f0;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .5);
}
/* 골드 밑줄 강조 */
.hero-title .ul { position: relative; white-space: nowrap; }
.hero-title .ul::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: .04em;
  height: .26em;
  background: linear-gradient(90deg, #e6cf9a, #c4a667);
  border-radius: 3px;
  opacity: .9;
  z-index: -1;
}
.hero-sub {
  margin: 0 0 34px auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
  max-width: 40em;
  word-break: keep-all;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}
.hero-sub strong { color: #fff; font-weight: 700; }

/* 분야별 상담 칩 — 골드 테두리 강조 형태 */
.hero-consult { margin: 0 0 36px; }
.hc-chips { display: flex; flex-wrap: nowrap; gap: 9px; justify-content: flex-end; }
.hc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(214, 185, 127, .06);
  border: 1.5px solid #d6b97f;
  color: #f0dca8;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.01em;
  box-shadow: 0 0 0 1px rgba(214, 185, 127, .1), 0 6px 16px rgba(0, 0, 0, .25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.hc-chip::after { content: "›"; font-size: 1.1em; opacity: .7; }
.hc-chip:hover {
  background: rgba(214, 185, 127, .16);
  border-color: #ecd5a0;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(236, 213, 160, .4), 0 10px 22px rgba(196, 166, 103, .25);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;          /* 배지와 통계 세로 균형 */
  gap: 18px 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  max-width: 620px;
  margin: 0 0 0 auto;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
/* 상담신청 — 원형 골드 테두리 배지 */
.hero-meta .m-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.m-cta-circle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  /* 솔리드 골드 채움 — 위의 테두리형 칩과 차별화 */
  background: linear-gradient(135deg, #efd79f 0%, #d6b97f 52%, #c4a667 100%);
  color: #2a1d05;
  font-weight: 800;
  font-size: .94rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(196, 166, 103, .4);
  transition: filter .15s ease, transform .12s ease, box-shadow .15s ease;
}
.m-cta-circle::after { content: "›"; font-size: 1.1em; opacity: .75; }
.m-cta:hover .m-cta-circle {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 166, 103, .5);
}
.hero-meta .m-cta .m-label { color: rgba(255, 255, 255, .78); }
.hero-meta .m-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-meta .m-num small { font-size: .55em; font-weight: 600; color: #d6b97f; margin-left: 2px; }
.hero-meta .m-label { font-size: .85rem; color: rgba(255, 255, 255, .7); }

/* 우측 인물 사진 */
.hero-figure {
  position: relative;
  justify-self: center;
}
.hero-figure .photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px 22px 22px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 30px 70px rgba(184, 146, 78, .22);
}
.hero-figure .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-figure .figure-ring {
  position: absolute;
  inset: -16px;
  border-radius: 270px 270px 30px 30px;
  border: 1px solid var(--accent);
  opacity: .35;
  pointer-events: none;
}
.hero-figure .figure-badge {
  position: absolute;
  left: -18px;
  bottom: 36px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-figure .figure-badge .fb-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.hero-figure .figure-badge .fb-role { font-size: .82rem; color: var(--accent); font-weight: 600; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: transform .08s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(184, 146, 78, .28); }
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); }

.btn-ghost { background: transparent; border-color: var(--accent); color: var(--accent-strong); }
.btn-ghost:hover { background: var(--accent-soft); }

.btn-call { background: var(--bg-soft); border-color: var(--line); color: var(--text); }
.btn-call:hover { background: var(--accent-soft); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; border-radius: 999px; }

/* =========================================================
   공통 섹션
   ========================================================= */
.section { padding: 96px 0; }
.section.tint { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.blush { background: var(--bg-blush); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin-left: 0; }
/* 제목 아래 절제된 골드 디바이더 */
.section-head .section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--accent), #d8c08a);
  border-radius: 2px;
}
.section-head.left .section-title::after { margin-left: 0; }
.section-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--navy);
}
.section-desc { margin: 14px 0 0; color: var(--text-soft); font-size: 1.05rem; }

/* ---------- 소개 (About) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* 격식 포트레이트(소개) — 원본 + 이름 캡션 + 골드 프레임 */
.about-photo-formal { position: relative; border-radius: 6px; }
.about-photo-formal img { object-position: center 26%; }
.about-photo-cap { z-index: 2; }
.about-photo-formal::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(176, 138, 74, .45);
  border-radius: 6px;
  z-index: -1;
}
.about-photo-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 16px;
  background: rgba(13, 18, 40, .68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(205, 176, 121, .25);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.about-photo-cap small { display: block; margin-top: 2px; font-family: "Pretendard", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: #cfb888; }
.about-body h2 { margin: 0 0 18px; font-size: 1.9rem; line-height: 1.4; }

/* 주요 경력 · 수상 요약 그리드 */
.about-creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 34px; margin: 26px 0 24px; }
.cred-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.cred-col ul { list-style: none; margin: 0; padding: 0; }
.cred-col li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  font-size: .92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.cred-col li::before { content: ""; position: absolute; left: 2px; top: .58em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.about-more { display: inline-block; color: var(--accent-strong); font-weight: 600; font-size: .96rem; }
.about-more:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .about-creds-grid { grid-template-columns: 1fr; gap: 18px; } }
.about-body p { margin: 0 0 16px; color: var(--text-soft); font-size: 1.05rem; }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-creds {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.about-creds li {
  position: relative;
  padding-left: 28px;
  font-size: .98rem;
  color: var(--text);
}
.about-creds li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.about-creds li b { color: var(--accent-strong); font-weight: 700; }

/* ---------- 전문 분야 카드 ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
/* 전문 분야 4개 — 고급 2×2 카드 */
.cards-4 { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .18s ease, border-color .15s ease;
}
/* 상단 골드 라인 (호버 시 등장) */
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), #d8c08a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(176, 138, 74, .4); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card .card-no {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.card .card-no::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 14px;
  background: var(--line);
}
.card h3 { margin: 16px 0 12px; font-size: 1.3rem; color: var(--navy); }
.card p { margin: 0; color: var(--text-soft); font-size: .98rem; line-height: 1.75; }
@media (max-width: 680px) { .cards-4 { grid-template-columns: 1fr; gap: 18px; } }

/* 오시는 길 (지도 + 정보) */
.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.location-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.15); }
/* 클릭형 지도 (미리보기·로딩 최적화) */
.map-facade {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  gap: 12px;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  text-align: center;
  background:
    linear-gradient(rgba(176, 138, 74, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 138, 74, .09) 1px, transparent 1px),
    var(--bg-blush);
  background-size: 28px 28px, 28px 28px, auto;
  transition: background-color .15s ease;
}
.map-facade:hover { background-color: #e6ebf3; }
.map-pin { font-size: 2.8rem; filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .22)); }
.map-facade-text { font-size: .95rem; color: var(--text-soft); line-height: 1.55; }
.map-facade-text b { color: var(--accent-strong); font-size: 1.05rem; }
.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px;
}
.location-info h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin: 0 0 18px; }
.location-info dl { display: grid; grid-template-columns: 70px 1fr; gap: 12px 16px; margin: 0 0 20px; }
.location-info dt { color: var(--accent-strong); font-weight: 700; font-size: .95rem; }
.location-info dd { margin: 0; color: var(--text); font-size: .98rem; line-height: 1.55; }
.location-info dd a { color: inherit; }
@media (max-width: 760px) {
  .location-grid { grid-template-columns: 1fr; gap: 24px; }
  .location-map { min-height: 280px; }
}

/* 실무 경력 음영 밴드 (주요업무 하단) */
.exp-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 50px 0;
  border-top: 1px solid var(--navy-strong);
}
.exp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 200px at 50% 0%, rgba(176, 138, 74, .14) 0%, transparent 70%);
  pointer-events: none;
}
.exp-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.eb-item { position: relative; text-align: center; padding: 4px 12px; }
.eb-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(205, 176, 121, .32);
}
.eb-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  font-weight: 600;
  color: #cfb888;
  line-height: 1;
}
.eb-num small { font-size: .5em; color: rgba(255, 255, 255, .82); margin-left: 2px; }
.eb-label { display: block; margin-top: 10px; font-size: .92rem; color: rgba(255, 255, 255, .78); }
@media (max-width: 760px) {
  .exp-band-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .eb-item:nth-child(2)::after { display: none; }
}

/* 대표 저서 — 딥 골드/브론즈 피처 밴드 (표지와 어울리게) */
.book-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8c6c25 0%, #654c16 52%, #43320d 100%);
  color: #fff;
  padding: 88px 0;
  border-top: 1px solid #d8b86a;
  border-bottom: 1px solid #2c2008;
}
.book-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 360px at 14% 8%, rgba(255, 236, 190, .26) 0%, transparent 60%),
    radial-gradient(560px 340px at 90% 100%, rgba(60, 44, 16, .45) 0%, transparent 62%);
  pointer-events: none;
}
.book-feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}
.book-feature-cover img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 64px rgba(0, 0, 0, .5);
  border: 1px solid rgba(205, 176, 121, .3);
}
.book-feature-info .eyebrow { color: #cfb888; display: inline-block; margin-bottom: 14px; }
.book-new {
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2c88f, #c4a667);
  color: #1a1305;
  font-size: .68rem;
  letter-spacing: 0;
}
.book-feature-info h2 {
  font-family: var(--serif);
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.book-feature-info h2 em { font-style: normal; color: rgba(255, 255, 255, .55); font-size: .68em; }
/* 책 표지와 동일한 느낌의 서체(블랙 고딕) */
.book-feature-info h2.book-title {
  font-family: "GmarketSansBold", "Black Han Sans", "Pretendard", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2.9vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.book-feature-info h2.book-title .kill { color: #f3dca6; }
.book-feature-info h2.book-title em {
  display: inline-block;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: .42em;
  color: rgba(255, 255, 255, .6);
  vertical-align: middle;
}
.book-feature-info p {
  color: rgba(255, 255, 255, .80);
  font-size: 1.06rem;
  line-height: 1.85;
  max-width: 44em;
  margin: 0 0 28px;
  word-break: keep-all;
}
.book-feature-info p strong { color: #fff; font-weight: 600; }
.book-feature-info .btn-primary {
  background: linear-gradient(135deg, #f0dca8 0%, #dcc282 52%, #c9ad6a 100%);
  color: #2a1d05;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}
.book-feature-info .btn-primary:hover { filter: brightness(1.05); transform: translateY(-2px); }
@media (max-width: 760px) {
  .book-feature { padding: 60px 0; }
  .book-feature-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; justify-items: center; }
  .book-feature-cover { max-width: 200px; }
  .book-feature-info p { margin-left: auto; margin-right: auto; }
}

/* ---------- 대표 저서 카드 (구) ---------- */
.book-card {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.book-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.book-cover {
  flex: 0 0 auto;
  width: 130px;
  height: 184px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(138, 106, 44, .3);
  overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-info { display: flex; flex-direction: column; gap: 8px; }
.book-info strong { font-family: var(--serif); font-size: 1.25rem; letter-spacing: -.01em; line-height: 1.4; }
.book-info strong em { font-style: normal; color: var(--text-soft); font-weight: 500; font-size: .9rem; }
.book-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--blush);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  font-family: "Pretendard", sans-serif;
  vertical-align: middle;
}
.book-desc { color: var(--text-soft); font-size: .96rem; line-height: 1.65; }
.book-link { margin-top: 4px; color: var(--accent-strong); font-weight: 700; font-size: .92rem; }

/* ---------- 미디어(방송) ---------- */
.media-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin: 0;
}
.media-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color .15s, box-shadow .15s, transform .12s;
}
.media-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.video-frame {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 0;
  overflow: hidden;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-card h3 { margin: 0; padding: 16px 18px 18px; font-size: 1rem; line-height: 1.5; letter-spacing: -.01em; font-family: var(--serif); color: var(--navy); }

.video-facade { display: block; padding: 0; border: 0; cursor: pointer; }
.video-facade .thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46, 42, 39, .72);
  display: grid;
  place-items: center;
  transition: background .15s, transform .15s;
}
.video-facade .play-btn::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.video-facade:hover .play-btn { background: var(--accent); transform: translate(-50%, -50%) scale(1.06); }

/* =========================================================
   상담 안내 — 상담 사진 + 연락 정보
   ========================================================= */
.consult-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}
.consult-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.consult-photo img { width: 100%; height: 100%; object-fit: cover; }
.consult-info h2 { margin: 0 0 14px; font-size: 1.8rem; }
.consult-info p { margin: 0 0 22px; color: var(--text-soft); font-size: 1.05rem; }

/* 사진 없이 가운데 정렬 상담 블록 */
.consult-center { max-width: 660px; margin: 0 auto; text-align: center; }
.consult-center h2 { margin: 0 0 14px; font-size: 2rem; }
.consult-center p { margin: 0 auto 26px; color: var(--text-soft); font-size: 1.08rem; max-width: 38em; }
.consult-center .consult-call { max-width: 460px; margin: 0 auto; }

.consult-call {
  display: block;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 16px 34px rgba(138, 106, 44, .3);
  transition: transform .12s ease, filter .15s ease;
}
.consult-call:hover { transform: translateY(-2px); filter: brightness(1.05); }
.consult-call .cc-label { display: block; font-size: .9rem; font-weight: 600; opacity: .95; }
.consult-call .cc-phone {
  display: block;
  margin: 4px 0 6px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.consult-call .cc-addr { display: block; font-size: .86rem; opacity: .9; }

/* =========================================================
   글 목록
   ========================================================= */
.post-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; }
.post-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.post-item:last-child { border-bottom: none; }
.post-item a.post-link { display: block; }
.post-item .post-meta { font-size: .85rem; color: var(--text-soft); margin-bottom: 8px; }
.post-item h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  transition: color .15s ease;
}
.post-item:hover h2 { color: var(--accent-strong); }
.post-item .excerpt { margin: 0; color: var(--text-soft); font-size: 1rem; }
.tag {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  font-size: .78rem;
  color: var(--accent-strong);
}

/* ---------- 글 본문 ---------- */
.article { padding: 60px 0 48px; }
.article .post-meta { font-size: .9rem; color: var(--text-soft); margin-bottom: 12px; }
.article h1 { margin: 0 0 30px; font-size: 2.1rem; line-height: 1.4; letter-spacing: -.01em; }
.article-body { font-size: 1.06rem; }
.article-body h2 { margin: 42px 0 14px; font-size: 1.45rem; letter-spacing: -.01em; }
.article-body h3 { margin: 30px 0 10px; font-size: 1.18rem; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 10px 10px 0;
  color: var(--text);
}
.article-body code { background: var(--bg-soft); padding: 2px 6px; border-radius: 6px; font-size: .92em; }
.article-body pre { background: #0f172a; color: #e2e8f0; padding: 18px; border-radius: 12px; overflow-x: auto; }
.article-body pre code { background: none; padding: 0; }
.article-body img { max-width: 100%; border-radius: 12px; }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.article-body th { background: var(--bg-soft); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: .95rem;
}
.back-link:hover { text-decoration: underline; }

/* =========================================================
   소개 페이지 — 프로필
   ========================================================= */
.about { padding: 60px 0 48px; }
.about h1 { font-size: 2.1rem; margin: 0 0 24px; letter-spacing: -.01em; }
.about > .container > p { color: var(--text); margin: 0 0 18px; }

.profile {
  margin: 32px 0 8px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.profile-head {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 26px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.profile-photo {
  width: 150px;
  height: 188px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.profile-en { display: block; color: var(--accent); font-size: .82rem; font-weight: 700; letter-spacing: .16em; }
.profile-headline h2 { margin: 6px 0 14px; font-size: 1.8rem; letter-spacing: -.01em; }
.profile-roles { list-style: none; margin: 0; padding: 0; }
.profile-roles li { position: relative; margin-bottom: 6px; padding-left: 16px; font-size: .98rem; color: var(--text); }
.profile-roles li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.profile-roles li span { color: var(--text-soft); font-size: .9rem; font-weight: 400; }

.profile-section { margin-top: 26px; }
.profile-section h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  color: var(--accent-strong);
}
.profile-section h3 span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: "Pretendard", sans-serif;
}
.profile-section ul { list-style: none; margin: 0; padding: 0; }
.profile-section li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-bottom: 1px dashed var(--line);
  font-size: .97rem;
  color: var(--text);
}
.profile-section li:last-child { border-bottom: none; }
.profile-section li::before {
  content: "";
  position: absolute;
  left: 2px; top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   상담신청 페이지
   ========================================================= */
.contact { padding: 60px 0 48px; }
.contact h1 { margin: 14px 0 16px; font-size: 2.1rem; line-height: 1.4; letter-spacing: -.01em; }
.contact-intro { margin: 0 0 32px; color: var(--text-soft); font-size: 1.05rem; }

/* 상담 분야 메뉴 */
.consult-menu-title {
  margin: 36px 0 6px;
  font-size: 1.5rem;
  letter-spacing: -.01em;
}
.consult-menu-desc { margin: 0 0 22px; color: var(--text-soft); font-size: 1rem; }
.consult-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.consult-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.consult-item:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.consult-item .ci-ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  font-size: 1.5rem;
}
.consult-item .ci-body { display: flex; flex-direction: column; gap: 7px; }
.consult-item .ci-body strong { font-family: var(--serif); font-size: 1.18rem; letter-spacing: -.01em; }
.consult-item .ci-desc { color: var(--text-soft); font-size: .95rem; line-height: 1.65; }
.consult-item .ci-cta { margin-top: auto; color: var(--accent-strong); font-weight: 700; font-size: .95rem; }

.call-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
}
.call-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: .82rem;
  font-weight: 600;
}
.call-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--accent-strong);
  line-height: 1.1;
}
.call-hours { margin: 14px 0 4px; color: var(--text-soft); font-size: .95rem; }
.call-card .btn-block { max-width: 320px; margin: 0 auto; }
.call-addr { margin: 0 0 22px; color: var(--text-soft); font-size: .98rem; }

.map-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-link:hover { color: var(--accent); }
.mail-link { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.mail-link:hover { color: var(--accent); }

.contact-box {
  margin: 32px 0 8px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.contact-box h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  color: var(--accent-strong);
}
.contact-box h3 span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: "Pretendard", sans-serif;
}
.contact-box dl { display: grid; grid-template-columns: 88px 1fr; gap: 10px 16px; margin: 0; }
.contact-box dt { color: var(--text-soft); font-weight: 600; }
.contact-box dd { margin: 0; }

/* 찾아오시는 길 (지도 카드) */
.map-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: box-shadow .15s ease, transform .1s ease;
}
.map-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.map-card-visual {
  flex: 0 0 40%;
  min-height: 170px;
  display: grid;
  place-items: center;
  background-color: var(--accent-soft);
  background-image:
    linear-gradient(rgba(184, 146, 78, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 78, .1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-card-pin { font-size: 2.8rem; filter: drop-shadow(0 4px 5px rgba(46, 42, 39, .22)); }
.map-card-info { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 24px 26px; }
.map-card-info strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -.01em; }
.map-card-addr { color: var(--text); font-size: 1rem; }
.map-card-sub { color: var(--text-soft); font-size: .9rem; }
.map-card-cta { margin-top: 8px; color: var(--accent-strong); font-weight: 700; font-size: .95rem; }

/* =========================================================
   푸터
   ========================================================= */
.site-footer {
  margin-top: 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-strong);
  padding: 44px 0;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-wide);
}
.site-footer .foot-brand { font-family: var(--serif); font-size: 1.1rem; color: #d6b97f; }
.site-footer .foot-credit { width: 100%; font-size: .76rem; color: rgba(255, 255, 255, .45); }

/* ---------- 플로팅 빠른 상담 버튼 ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 50; }
.float-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(184, 146, 78, .42);
  transition: transform .12s ease, filter .15s ease;
}
.float-call:hover { transform: translateY(-2px); filter: brightness(1.06); }
.float-ico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: 1.18rem;
}
.float-label { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: 1rem; }
.float-label small { font-weight: 600; font-size: .8rem; opacity: .92; }

/* ---------- 빈 상태 ---------- */
.empty { padding: 40px 0; color: var(--text-soft); text-align: center; }

/* =========================================================
   반응형
   ========================================================= */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo-side { order: -1; }
  .hero-photo-side img { max-width: 560px; margin: 0 auto; }
  .hero-copy { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 360px; }
  .consult-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 820px) {
  .site-header .container { flex-direction: column; align-items: stretch; height: auto; gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .nav { gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .card, #services, #book, #media, #about, #contact-sec { scroll-margin-top: 120px; }
}

@media (max-width: 600px) {
  .hero-lux { padding: 44px 0 52px; }
  .hero-title { font-size: 2.1rem; }
  .hero-sub { font-size: 1.02rem; }
  .hc-chips { flex-wrap: wrap; }
  .section { padding: 52px 0; }
  .section-title { font-size: 1.6rem; }
  .nav { gap: 15px; font-size: .9rem; }
  .book-card { flex-direction: column; text-align: center; }
  .book-info { align-items: center; }
  .media-feed { grid-template-columns: 1fr; gap: 18px; }
  .media-card h3 { font-size: .95rem; padding: 14px 16px 16px; }
  .profile, .contact-box { padding: 22px; }
  .profile-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .profile-headline h2 { font-size: 1.5rem; }
  .map-card { flex-direction: column; }
  .map-card-visual { flex-basis: auto; min-height: 130px; }
  .contact h1 { font-size: 1.8rem; }
  .call-number { font-size: 2.2rem; }
  .float-actions { right: 14px; bottom: 14px; }
  .float-label { font-size: .92rem; }
  .float-label small { font-size: .76rem; }
}

/* =========================================================
   Feminine professional refresh
   대표 프로필 중심의 소프트 럭셔리 톤
   ========================================================= */
:root {
  --bg: #fffdfb;
  --bg-soft: #f7f8fb;
  --bg-blush: #fbf1ee;
  --text: #242832;
  --text-soft: #606777;
  --line: #ece5df;
  --accent: #b98d68;
  --accent-strong: #8f6042;
  --accent-soft: #f7ebe3;
  --blush: #d8a8a0;
  --blush-soft: #fbefec;
  --navy: #14213d;
  --navy-strong: #0d172d;
  --shadow: 0 18px 54px rgba(75, 53, 42, .14);
  --shadow-soft: 0 12px 34px rgba(91, 69, 58, .09);
  --radius: 14px;
}

body {
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff 34%, #f8f9fb 100%);
  letter-spacing: 0;
}

.site-header {
  background: rgba(255, 253, 251, .9);
  border-bottom-color: rgba(185, 141, 104, .18);
}

.brand {
  color: var(--navy);
}

.nav a.nav-cta,
.float-call {
  background: linear-gradient(135deg, #c79b73, #9c6947);
  box-shadow: 0 12px 28px rgba(156, 105, 71, .22);
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: .14em;
}

.hero-pro.hero-signature {
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(115deg, rgba(255, 253, 251, .97) 0%, rgba(255, 246, 244, .93) 46%, rgba(244, 247, 252, .98) 100%),
    linear-gradient(180deg, #fffdfb, #f7f8fb);
  border-bottom: 1px solid rgba(185, 141, 104, .18);
  color: var(--text);
}

.hero-pro.hero-signature::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(185, 141, 104, .1) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 141, 104, .08) 0 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 74%, transparent 100%);
  opacity: .55;
}

.hero-pro.hero-signature::after {
  z-index: 1;
  inset: auto -10% -32% auto;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(216, 168, 160, .24), rgba(185, 141, 104, .12) 42%, transparent 70%);
  animation: none;
}

.hero-signature .hero-pro-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 0 78px;
}

.hero-signature .hero-pro-text {
  max-width: 650px;
}

.hero-signature .eyebrow {
  color: var(--accent-strong);
}

.hero-signature .hero-pro-title {
  color: var(--navy);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-signature .hero-pro-title .g {
  background: linear-gradient(135deg, #9c6947 0%, #c79b73 48%, #a77e51 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-signature .hero-pro-sub {
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  max-width: 36em;
  text-shadow: none;
}

.hero-signature .hero-pro-sub strong {
  color: var(--navy);
}

.hero-signature .hero-chips {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
}

.hero-signature .hero-chip {
  justify-content: center;
  min-height: 48px;
  padding: 10px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(185, 141, 104, .34);
  box-shadow: 0 10px 24px rgba(91, 69, 58, .08);
  font-size: .88rem;
  white-space: nowrap;
}

.hero-signature .hero-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(20, 33, 61, .18);
}

.hero-signature .hero-chip-gold {
  color: #fff;
  background: linear-gradient(135deg, #c79b73, #9c6947);
  box-shadow: 0 12px 28px rgba(156, 105, 71, .24);
}

.hero-signature .hero-chip-gold:hover {
  color: #fff;
  background: linear-gradient(135deg, #14213d, #8f6042);
  border-color: transparent;
}

.hero-signature .hero-stats {
  border-top-color: rgba(185, 141, 104, .25);
}

.hero-signature .hs-num {
  color: var(--navy);
}

.hero-signature .hs-num small {
  color: var(--accent-strong);
}

.hero-signature .hs-label {
  color: var(--text-soft);
}

.hero-signature-figure {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 470px);
  padding: 16px;
  border: 1px solid rgba(185, 141, 104, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 26px 70px rgba(66, 52, 44, .18);
}

.hero-signature-figure::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: -1;
  border: 1px solid rgba(185, 141, 104, .28);
  border-radius: 8px;
}

.hero-signature-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
}

.signature-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(20, 33, 61, .78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.signature-card span {
  display: block;
  margin-bottom: 3px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e8c9b3;
}

.signature-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section.tint {
  background:
    linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
  border-color: rgba(185, 141, 104, .14);
}

.section.blush {
  background:
    linear-gradient(135deg, #fbf1ee 0%, #fffaf7 52%, #f7f8fb 100%);
  border-color: rgba(185, 141, 104, .16);
}

.section-title,
.about-body h2,
.consult-center h2 {
  letter-spacing: 0;
}

.about-grid {
  grid-template-columns: .88fr 1.12fr;
  gap: 62px;
}

.about-photo {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(185, 141, 104, .22);
  box-shadow: 0 22px 58px rgba(66, 52, 44, .15);
}

.about-photo img {
  object-position: center 16%;
}

.about-photo-formal::after {
  border-color: rgba(185, 141, 104, .3);
  border-radius: 8px;
}

.about-photo-cap {
  background: rgba(20, 33, 61, .78);
  border-color: rgba(232, 201, 179, .32);
}

.about-body p {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.cred-col,
.card,
.media-card,
.location-info,
.contact-box,
.profile {
  border-color: rgba(185, 141, 104, .18);
  box-shadow: var(--shadow-soft);
}

.card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #fffdfb 100%);
}

.card::before {
  background: linear-gradient(90deg, #d8a8a0, #b98d68);
}

.card .card-no {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.book-feature {
  background:
    linear-gradient(135deg, #14213d 0%, #233553 54%, #8f6042 140%);
}

.consult-call,
.btn-primary {
  background: linear-gradient(135deg, #c79b73, #9c6947);
  box-shadow: 0 14px 30px rgba(156, 105, 71, .24);
}

.site-footer {
  background: #14213d;
}

@media (max-width: 920px) {
  .hero-signature .hero-pro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 54px 0 64px;
    text-align: center;
  }

  .hero-signature .hero-pro-text {
    order: 2;
  }

  .hero-signature-figure {
    order: 1;
    justify-self: center;
    width: min(82vw, 390px);
  }

  .hero-signature .hero-chips,
  .hero-signature .hero-stats {
    justify-content: center;
  }

  .hero-signature .hero-chips {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .hero-pro.hero-signature {
    min-height: 0;
  }

  .hero-signature .hero-pro-title {
    font-size: 2rem;
    line-height: 1.34;
  }

  .hero-signature .hero-pro-sub {
    font-size: 1.03rem;
  }

  .hero-signature-figure {
    padding: 10px;
  }

  .hero-signature-figure::before {
    inset: 22px -10px -10px 22px;
  }

  .signature-card {
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-signature .hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .hero-signature .hero-chip {
    min-height: 46px;
    font-size: .9rem;
  }

  .about-grid {
    gap: 34px;
  }

  .nav {
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .float-call {
    padding: 10px;
  }

  .float-ico {
    width: 42px;
    height: 42px;
  }

  .float-label {
    display: none;
  }
}

@media (max-width: 600px) {
  .float-actions {
    display: none;
  }
}
