/* ============================================================
   법무사사무소 이로움 v4 - "리걸 원장(Ledger) 에디토리얼"
   - 구성 문법: 좌측 섹션 번호 칼럼(01~07) + 우측 내용 비대칭 2단
     카드 그리드 대신 괘선 원장 행 · 전부 좌측 정렬
   - 컬러: 먹네이비 + 샴페인 골드 + 아이보리 페이퍼 (확정 톤)
   - 서체: 명조 제목(Noto Serif KR) + 산세리프 본문(Pretendard)
   - 섹션 = 한 화면 (svh + vh 폴백) · 배경 교차 · 강제 줄바꿈
   - 모바일 fixed/sticky에 backdrop-filter 금지 · 기호 리스트 flex 금지
   ============================================================ */

:root {
  /* 컬러 */
  --navy: #16273B;
  --navy-deep: #0D1B2A;
  --gold: #B2924C;
  --gold-deep: #8A6D33;
  --gold-champ: #C9A96A;
  --gold-tint: #F3EDDD;
  --paper: #F6F3EC;
  --stone: #EDF1F4;
  --ink: #1A2530;
  --muted: #4A5866;
  --faint: #7E8B99;
  --line: #DDDDD3;
  --line-dark: #C9C9BD;
  --white: #FFFFFF;
  --ok: #047857;
  --ok-tint: #ECFDF5;
  --warn: #B45309;
  --warn-tint: #FFF7E8;
  --info: #16527A;
  --info-tint: #EAF2F8;
  --danger: #B91C1C;
  --danger-tint: #FEF2F2;

  /* 서체 */
  --font-serif: 'Noto Serif KR', 'Nanum Myeongjo', 'Batang', serif;

  /* 타이포 (390 -> PC 유동) */
  --fs-hero: clamp(2.05rem, .95rem + 4.7vw, 3.95rem);
  --fs-h2:   clamp(1.56rem, .98rem + 2.5vw, 2.6rem);
  --fs-h3:   clamp(1.26rem, 1.08rem + .8vw, 1.58rem);
  --fs-lead: clamp(1.11rem, 1rem + .5vw, 1.34rem);
  --fs-body: clamp(1.03rem, .97rem + .28vw, 1.16rem);
  --fs-sm:   clamp(.95rem, .9rem + .2vw, 1.03rem);
  --fs-xs:   .86rem;

  /* 레이아웃 */
  --header-h: 64px;
  --sticky-h: 60px;
  --container: 1160px;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(13, 27, 42, .05), 0 8px 22px rgba(13, 27, 42, .06);
  --shadow-lift: 0 2px 4px rgba(13, 27, 42, .07), 0 16px 38px rgba(13, 27, 42, .12);
}

html { font-size: 16px; }
@media (max-width: 389.98px) {
  html { font-size: calc(100vw / 24.375); }  /* 390 기준 판형 비례 축소 */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Malgun Gothic', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.68;
  letter-spacing: -.012em;
  word-break: keep-all;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.32; letter-spacing: -.01em; font-weight: 900; }
h3 { font-weight: 700; }
b, strong { font-weight: 800; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* 줄바꿈 유틸 */
.br-m { display: none; }
.br-d { display: inline; }
@media (max-width: 1023.98px) {
  .br-m { display: inline; }
  .br-d { display: none; }
  .m-hide { display: none !important; }
}

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  /* 상단 골드 헤어라인 - 문서의 금박 인장 */
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-champ));
}
.header-in { height: 100%; display: flex; align-items: center; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .66rem; flex: none; }
.brand .mk {
  width: 38px; height: 38px; border-radius: 8px; flex: none;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
}
.brand .tx b { display: block; font-family: var(--font-serif); font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; line-height: 1.2; }
.brand .tx small { display: block; font-size: .78rem; color: var(--faint); font-weight: 600; }
.gnb { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }
.gnb a { font-size: .99rem; font-weight: 600; color: var(--muted); transition: color .18s; }
.gnb a:hover { color: var(--navy); }
.header-cta { margin-left: 1.2rem; flex: none; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .22s, opacity .22s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1023.98px) {
  /* 모바일: 블러 금지 - 주소창 리사이즈 리페인트로 스크롤이 버벅인다 */
  .site-header { background: rgba(255, 255, 255, .97); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .gnb {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.4rem 1.1rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .22s, opacity .22s, visibility .22s;
  }
  .gnb.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .gnb a { padding: .74rem .2rem; font-size: 1.1rem; border-bottom: 1px solid #F1F4F8; }
  .gnb a:last-child { border-bottom: 0; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: 0 1.7rem;
  border: 0; border-radius: var(--radius-sm);
  font-size: var(--fs-body); font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(13, 27, 42, .22); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-champ { background: var(--gold-champ); color: #14212F; box-shadow: 0 8px 20px rgba(0, 0, 0, .25); }
.btn-champ:hover { background: #D8BC84; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #E4EAF1; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); }
.btn-outline { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); }
.btn-outline:hover { background: var(--stone); transform: translateY(-2px); }
.btn-sm { min-height: 44px; padding: 0 1.2rem; font-size: .99rem; }

/* ---------- 섹션 공통 (한 화면 리듬 + 좌측 번호 칼럼) ---------- */
main > section {
  min-height: calc(100vh - var(--header-h));   /* svh 미지원 폴백 */
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding-block: clamp(3rem, 6.5vh, 5rem);
  scroll-margin-top: var(--header-h);
}
main > section > .container { width: 100%; }
main > section.final-cta {
  min-height: calc((100vh - var(--header-h)) * .75);
  min-height: calc((100svh - var(--header-h)) * .75);
}
@media (max-width: 1023.98px) {
  main > section {
    min-height: calc(100vh - var(--header-h) - var(--sticky-h));
    min-height: calc(100svh - var(--header-h) - var(--sticky-h));
  }
  main > section.final-cta {
    min-height: calc((100vh - var(--header-h) - var(--sticky-h)) * .75);
    min-height: calc((100svh - var(--header-h) - var(--sticky-h)) * .75);
  }
}
@media (max-height: 640px) { main > section, main > section.final-cta { min-height: 0; } }

.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-navy {
  background:
    radial-gradient(820px 400px at 84% -8%, rgba(201, 169, 106, .16), transparent 58%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

/* 비대칭 2단: 좌측 = 번호+제목 칼럼 / 우측 = 내용 */
.sec-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) {
  .sec-grid { grid-template-columns: 300px 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
}
.sec-side { text-align: left; }
.sec-no {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-serif);
  font-size: .92rem; font-weight: 700; letter-spacing: .3em;
  color: var(--gold-deep);
  margin-bottom: .9rem;
}
.sec-no::after { content: ""; flex: 1; max-width: 90px; height: 1px; background: var(--gold); opacity: .55; }
.bg-navy .sec-no { color: var(--gold-champ); }
.sec-side h2 { font-size: var(--fs-h2); color: var(--ink); }
.bg-navy .sec-side h2 { color: #fff; }
.sec-side .lead { margin-top: .8rem; font-size: var(--fs-lead); color: var(--muted); }
.bg-navy .sec-side .lead { color: #C6D3E0; }
.sec-side .side-note { margin-top: 1.1rem; font-size: var(--fs-sm); color: var(--faint); }

/* ---------- 히어로: 순수 타이포그래피 (다크) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(880px 460px at 82% -12%, rgba(201, 169, 106, .15), transparent 56%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(201, 169, 106, .35);
}
.hero .container { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-serif);
  font-size: .9rem; font-weight: 700; letter-spacing: .3em;
  color: var(--gold-champ);
}
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold-champ); opacity: .7; }
.hero h1 {
  margin-top: 1.5rem;
  font-size: var(--fs-hero); color: #fff;
}
.hero h1 em { font-style: normal; color: var(--gold-champ); }
.hero-sub { margin-top: 1.3rem; font-size: var(--fs-lead); color: #C6D3E0; }
.hero-sub b { color: #fff; }
.hero-micro { margin-top: .9rem; font-size: var(--fs-sm); color: #8CA0B5; font-weight: 600; }
.hero-ctas { margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* 하단 분야 스트립: 괘선으로 3분할 */
.hero-strip {
  margin-top: clamp(2.4rem, 6vh, 4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 169, 106, .4);
}
.hero-strip > div { padding: 1.15rem 1.2rem 0 0; }
.hero-strip > div + div { border-left: 1px solid rgba(255, 255, 255, .14); padding-left: 1.2rem; }
.hero-strip b { display: block; font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-body); color: #EFE3C8; }
.hero-strip span { display: block; margin-top: .2rem; font-size: var(--fs-sm); color: #93A6BA; }
@media (max-width: 1023.98px) {
  .hero-strip { grid-template-columns: 1fr; border-top: 0; }
  .hero-strip > div { border-top: 1px solid rgba(255, 255, 255, .14); padding: .85rem .2rem; }
  .hero-strip > div + div { border-left: 0; padding-left: .2rem; }
  .hero-strip > div {
    display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: .9rem;
  }
  .hero-strip span { margin-top: 0; text-align: right; }
}

/* ---------- 원장(Ledger) 공통 ---------- */
.ledger { border-top: 2px solid var(--ink); }
.lg-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .92rem .15rem;
  border-bottom: 1px solid var(--line);
}
.lg-q { font-size: var(--fs-body); font-weight: 600; color: var(--ink); }
.lg-v {
  margin-left: auto; flex: none;
  font-size: .84rem; font-weight: 800;
  padding: .18rem .7rem; border-radius: 999px;
}
.lg-v.warn { background: var(--warn-tint); color: var(--warn); }
.lg-v.ok { background: var(--ok-tint); color: var(--ok); }
.lg-v.info { background: var(--info-tint); color: var(--info); }
.lg-closer {
  margin-top: 1.5rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
  font-size: var(--fs-lead); color: var(--muted);
}
.lg-closer b { color: var(--ink); }

/* ---------- 업무 분야: 원장 아코디언 ---------- */
.lg-fields { border-top: 2px solid var(--ink); }
.lg-field { border-bottom: 1px solid var(--line); }
.lg-field summary {
  display: flex; align-items: baseline; gap: 1.1rem;
  padding: 1.15rem .15rem;
  cursor: pointer; list-style: none;
}
.lg-field summary::-webkit-details-marker { display: none; }
.lg-field .no {
  flex: none;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 1rem; letter-spacing: .12em; color: var(--gold-deep);
}
.lg-field .fs-tx b { display: block; font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-h3); color: var(--ink); line-height: 1.3; }
.lg-field .fs-tx small { display: block; margin-top: .05rem; font-size: var(--fs-sm); color: var(--faint); font-weight: 600; }
.lg-field summary::after {
  content: "+"; margin-left: auto; flex: none;
  font-size: 1.5rem; font-weight: 600; color: var(--gold-deep);
  transition: transform .2s;
}
.lg-field[open] summary::after { transform: rotate(45deg); }
.lg-field ul {
  padding: .1rem .15rem 1.2rem calc(1rem + 1.1rem + 1em);
  display: grid; gap: .4rem;
}
@media (min-width: 1024px) {
  .lg-field ul { grid-template-columns: 1fr 1fr; column-gap: 2.2rem; }
}
/* 기호 리스트: block + 절대배치 (flex 금지 - <b> 칼럼 분열 함정) */
.lg-field li {
  display: block; position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-sm); color: var(--muted);
}
.lg-field li::before {
  content: "·"; position: absolute; left: .2rem; top: 0;
  color: var(--gold); font-weight: 800;
}
@media (max-width: 1023.98px) {
  .lg-field ul { padding-left: .15rem; }
}

/* ---------- 진행 절차: 번호 원장 ---------- */
.steps { border-top: 2px solid var(--ink); }
.steps li {
  display: grid; grid-template-columns: 72px 1fr auto;
  align-items: center; column-gap: 1.2rem;
  padding: 1.05rem .15rem;
  border-bottom: 1px solid var(--line);
}
.steps .no {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  color: var(--gold-champ); line-height: 1;
}
.steps h3 { font-size: var(--fs-h3); }
.steps p { margin-top: .15rem; font-size: var(--fs-sm); color: var(--muted); }
.steps .who {
  flex: none; align-self: center;
  padding: .18rem .7rem; border-radius: 999px;
  font-size: .8rem; font-weight: 800;
}
.steps .who.us { background: var(--stone); color: var(--navy); }
.steps .who.you { background: var(--gold-tint); color: var(--gold-deep); }
@media (max-width: 1023.98px) {
  .steps li { grid-template-columns: 52px 1fr; row-gap: .3rem; }
  .steps .who { grid-column: 2; justify-self: start; }
}

/* ---------- 준비 서류: 원장 아코디언 + 경고 인용 ---------- */
.check-card li {
  display: block; position: relative;
  padding-left: 1.35rem;
  font-size: var(--fs-sm); color: var(--muted);
}
.check-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--ok); font-weight: 800;
}
.check-card .note {
  margin: .8rem 0 0;
  padding: .1rem 0 0;
  font-size: .9rem; color: var(--gold-deep); font-weight: 700;
}
.lg-field .doc-body { padding: .1rem .15rem 1.2rem calc(1rem + 1.1rem + 1em); }
@media (max-width: 1023.98px) {
  .lg-field .doc-body { padding-left: .15rem; }
}
.lg-field .doc-body ul { padding: 0; display: grid; gap: .45rem; grid-template-columns: 1fr; }

.warn-quote {
  margin-top: 1.6rem;
  padding: .2rem 0 .2rem 1.15rem;
  border-left: 3px solid var(--danger);
}
.warn-quote h3 { font-size: var(--fs-h3); color: var(--danger); }
.warn-quote ul { margin-top: .6rem; display: grid; gap: .35rem; }
.warn-quote li { display: block; font-size: var(--fs-sm); color: var(--muted); }
.warn-quote li b, .warn-quote p b { color: var(--ink); }
.warn-quote p { margin-top: .7rem; font-size: var(--fs-sm); color: var(--muted); }

/* ---------- 임기 계산기 (다크 앵커 섹션) ---------- */
.calc-wrap {
  background: #fff; border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--ink);
}
.calc-note {
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--gold-tint); font-size: var(--fs-sm); color: var(--muted);
  margin-bottom: 1.3rem;
}
.calc-note b { color: var(--gold-deep); }
.calc-field { margin-bottom: 1.3rem; }
.calc-label {
  display: flex; align-items: center; gap: .55rem;
  font-size: var(--fs-body); font-weight: 800; color: var(--ink);
  margin-bottom: .65rem;
}
.calc-label .step {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .86rem; font-weight: 800;
}
input[type="date"] {
  width: 100%; min-height: 52px;
  padding: .6rem 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #FBFCFE; font-size: var(--fs-body);
}
input[type="date"]:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22, 39, 59, .13); }
.calc-opts { display: grid; gap: .55rem; }
.calc-opt {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .72rem .9rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .16s, background .16s;
}
.calc-opt:hover { border-color: #C7C7B9; }
.calc-opt:has(input:checked) { border-color: var(--gold); background: var(--gold-tint); }
.calc-opt input { width: 20px; height: 20px; margin-top: .22rem; accent-color: var(--navy); flex: none; }
.calc-opt > span { display: block; }
.calc-opt b { display: block; font-size: var(--fs-sm); color: var(--ink); }
.calc-opt span span { display: block; margin-top: .12rem; font-size: .86rem; color: var(--faint); line-height: 1.55; }
#agm-guide { margin: -.2rem 0 .55rem; font-size: .9rem; color: var(--muted); }
#agm-guide b { color: var(--navy); }
.btn-calc {
  width: 100%; min-height: 56px;
  border: 0; border-radius: var(--radius-sm);
  background: var(--navy); color: #fff;
  font-size: var(--fs-body); font-weight: 800; cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 27, 42, .25);
  transition: background .18s, transform .18s;
}
.btn-calc:hover { background: var(--navy-deep); transform: translateY(-2px); }

.calc-result {
  margin-top: 1.3rem; padding: 1.15rem 1.25rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #FBFCFE;
}
.calc-result .r-row {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px solid #EEF0EA;
  font-size: var(--fs-sm); color: var(--muted);
}
.calc-result .r-row b { margin-left: auto; font-family: var(--font-serif); font-size: var(--fs-body); color: var(--ink); }
.calc-result .r-row b.hl { color: var(--gold-deep); }
.calc-result .r-logic { margin-top: .7rem; font-size: .86rem; color: var(--faint); }
.dday { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); }
.dday .d-main { font-size: var(--fs-body); font-weight: 800; }
.dday .d-main .num { font-size: 1.35em; }
.dday .d-sub { margin-top: .3rem; font-size: .9rem; }
.dday.ok { background: var(--ok-tint); color: var(--ok); }
.dday.today { background: var(--warn-tint); color: var(--warn); }
.dday.over { background: var(--danger-tint); color: var(--danger); }
.dday .d-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .8rem; min-height: 46px; padding: 0 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--danger); color: #fff; font-weight: 800;
}
.calc-disclaimer { margin-top: 1.05rem; font-size: .84rem; color: var(--faint); }
#calc-error { color: var(--danger); font-weight: 700; }

/* ---------- FAQ: 번호 원장 ---------- */
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: baseline; gap: .9rem;
  padding: 1.1rem .15rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-serif);
  font-size: var(--fs-h3); font-weight: 700; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .qm {
  flex: none;
  font-style: italic; font-size: .95rem; letter-spacing: .06em;
  color: var(--gold-deep);
}
.faq-item summary::after {
  content: "+"; margin-left: auto; flex: none;
  font-size: 1.5rem; font-weight: 600; color: var(--gold-deep);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 .15rem 1.25rem 0; font-size: var(--fs-body); color: var(--muted); }
.faq-a b { color: var(--ink); }
@media (min-width: 1024px) { .faq-a { padding-left: 3rem; } }

/* ---------- 오시는 길: 풀폭 지도 + 오버레이 카드 ---------- */
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-frame { width: 100%; border: 0; display: block; height: clamp(340px, 46vh, 480px); }
.loc-overlay {
  background: #fff;
  padding: 1.35rem 1.45rem;
  border-top: 3px solid var(--gold);
}
@media (min-width: 1024px) {
  .loc-overlay {
    position: absolute; left: 1.6rem; top: 1.6rem;
    width: 340px; border-radius: var(--radius-sm);
    border: 1px solid var(--line); border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lift);
  }
}
.loc-overlay dl { display: grid; gap: .85rem; }
.loc-overlay dt {
  font-family: var(--font-serif);
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; color: var(--gold-deep);
}
.loc-overlay dd { margin-top: .15rem; font-size: var(--fs-sm); color: var(--ink); font-weight: 600; }
.loc-overlay dd a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.map-actions { display: flex; gap: .6rem; margin-top: 1.05rem; }
.map-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 44px; border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 800;
}
.map-btn .pin { width: 9px; height: 9px; border-radius: 50%; }
.map-btn.nv { background: #E8F5E9; color: #03A54A; }
.map-btn.nv .pin { background: #03A54A; }
.map-btn.kk { background: #FFF3D6; color: #8a6d1a; }
.map-btn.kk .pin { background: #d3a900; }

/* ---------- 최종 CTA: 좌 카피 / 우 대형 번호 ---------- */
.final-cta .cta-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; align-items: center; }
@media (min-width: 1024px) { .final-cta .cta-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.final-cta h2 { font-size: var(--fs-h2); color: #fff; }
.fc-lead { margin-top: .9rem; font-size: var(--fs-lead); color: #C6D3E0; }
.fc-micro { margin-top: 1.2rem; font-size: var(--fs-sm); color: #8CA0B5; font-weight: 600; }
.cta-call { text-align: left; }
@media (min-width: 1024px) {
  .cta-call { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: 3rem; }
}
.cta-call .lbl {
  font-family: var(--font-serif);
  font-size: .82rem; font-weight: 700; letter-spacing: .28em; color: var(--gold-champ);
}
.cta-tel {
  display: block; margin-top: .5rem;
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 2.9rem);
  color: #fff; letter-spacing: .01em;
}
.cta-tel:hover { color: var(--gold-champ); }
.cta-call .btn { margin-top: 1.1rem; }

/* ---------- 푸터 ---------- */
.site-footer {
  background: var(--navy-deep); color: #B9C6D6;
  padding: 2.6rem 0 2.1rem;
  font-size: var(--fs-sm);
  border-top: 1px solid rgba(201, 169, 106, .35);
}
.site-footer .f-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: #fff; }
.site-footer .biz { margin-top: .9rem; line-height: 1.8; color: #9AAABD; font-size: .95rem; }
.site-footer .biz a { color: #D7E0EB; text-decoration: underline; text-underline-offset: 3px; }
.spec-note {
  margin-top: 1.2rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem; color: #7E90A5;
}
.credit { margin-top: .9rem; font-size: .84rem; color: #7E90A5; }
.credit a { color: #C5D2E0; font-weight: 700; }
@media (max-width: 1023.98px) {
  .site-footer .biz { font-size: .84rem; }
}

/* ---------- 모바일 하단 전화 바 ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  display: none;
  height: var(--sticky-h);
  background: rgba(13, 27, 42, .98);   /* 블러 금지 (스크롤 성능) */
  border-top: 1px solid rgba(201, 169, 106, .45);
  padding: .45rem .8rem calc(.45rem + env(safe-area-inset-bottom));
}
.sticky-bar .btn {
  flex: 1 1 0; min-height: 46px; font-size: 1.04rem;
  background: var(--gold-champ); color: #14212F;
  box-shadow: none;
}
.sticky-bar .btn:hover { background: #D8BC84; }
@media (max-width: 1023.98px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: var(--sticky-h); }
}

/* ---------- 모바일 여백 압축 ---------- */
@media (max-width: 1023.98px) {
  .sec-side { margin-bottom: .2rem; }
  .lg-row { padding-block: .8rem; }
  .steps li { padding-block: .9rem; }
  .calc-wrap { padding: 1.25rem 1.1rem; }
  .calc-field { margin-bottom: 1.05rem; }
}

/* ---------- 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
