/* ============================================================
   송승훈 노무사 홈페이지 — style.css
   아이덴티티: 검정 + 금색 (명함과 동일 축)
   색은 전부 :root 변수. 개별 규칙에 hex 직접 박지 말 것.
   ============================================================ */

:root {
  color-scheme: light dark;

  /* --- 금색: 명함의 금색 괘선에서 가져온 축 --- */
  --gold:      light-dark(#9a7420, #e2be62);   /* 본문에서 읽히는 금색 (대비 확보) */
  --gold-2:    light-dark(#c9a227, #f0d488);   /* 장식·큰 글씨용 밝은 금색 */
  --gold-soft: light-dark(#f8f2de, #2b2413);   /* 금색 배경 틴트 */
  --gold-line: light-dark(#d9c88f, #4a3d1c);   /* 금색 괘선 */

  /* --- 검정/중립 --- */
  --ink:    light-dark(#111113, #f2f1ec);
  --ink-2:  light-dark(#3c3c40, #c9c7bf);
  --muted:  light-dark(#6d6d73, #9a988f);
  --faint:  light-dark(#9b9ba1, #6d6b64);
  --line:   light-dark(#e4e1d8, #2a2a2f);
  --line-2: light-dark(#efece4, #201f24);

  /* --- 표면: 따뜻한 아이보리(금색과 어울리는 흰색) --- */
  --bg:      light-dark(#faf9f5, #0c0c0e);
  --bg-tint: light-dark(#f3f0e8, #121215);
  --card:    light-dark(#ffffff, #17171b);

  /* --- 버튼: 라이트=검정버튼, 다크=금색버튼. 양쪽 다 "검정+금색" --- */
  --btn-bg: light-dark(#141416, #e2be62);
  --btn-fg: light-dark(#ffffff, #141416);
  --btn-hv: light-dark(#2c2c31, #f0d488);

  /* --- 항상 검정인 밴드(헤더·히어로·푸터). 모드 무관 고정값 --- */
  --band:      #0c0c0e;
  --band-2:    #141417;
  --band-ink:  #f5f3ed;
  --band-mute: #a5a29a;
  --band-line: #2b2b31;

  --sh-a: light-dark(rgba(20, 18, 10, .05), rgba(0, 0, 0, .4));
  --sh-b: light-dark(rgba(20, 18, 10, .12), rgba(0, 0, 0, .66));
  --sh-c: light-dark(rgba(20, 18, 10, .20), rgba(0, 0, 0, .8));

  --shadow-sm: 0 1px 2px var(--sh-a), 0 1px 3px var(--sh-a);
  --shadow:    0 2px 4px var(--sh-a), 0 14px 30px -14px var(--sh-b);
  --shadow-lg: 0 4px 8px var(--sh-a), 0 28px 56px -22px var(--sh-c);

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;
  --r-pill: 999px;

  --w:        1140px;
  --w-narrow: 820px;
  --pad:   clamp(20px, 5vw, 44px);
  --sec-y: clamp(72px, 10vw, 124px);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Segoe UI", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
  --serif: "Nanum Myeongjo", "Batang", "바탕", Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Consolas, monospace;
}

/* 사용자가 토글로 고른 테마 — 시스템 설정보다 우선 */
:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"]  { color-scheme: dark; }

/* light-dark() 미지원 구형 브라우저 폴백 */
@supports not (color: light-dark(#000, #fff)) {
  @media (prefers-color-scheme: dark) {
    :root { --bg:#0c0c0e; --bg-tint:#121215; --card:#17171b; --ink:#f2f1ec; --ink-2:#c9c7bf;
            --muted:#9a988f; --faint:#6d6b64; --line:#2a2a2f; --line-2:#201f24;
            --gold:#e2be62; --gold-2:#f0d488; --gold-soft:#2b2413; --gold-line:#4a3d1c;
            --btn-bg:#e2be62; --btn-fg:#141416; --btn-hv:#f0d488; }
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
h1, h2, h3, h4 { color: var(--ink); line-height: 1.32; letter-spacing: -.025em; margin: 0; font-weight: 700; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico-fill { fill: currentColor; stroke: none; }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: fixed; top: -100px; left: 12px; z-index: 999;
  padding: 10px 16px; background: var(--gold-2); color: #141416;
  border-radius: var(--r-sm); font-weight: 700;
}
.skip:focus { top: 12px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--w); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: var(--w-narrow); }

.sec { position: relative; padding-block: var(--sec-y); }
.sec--tint { background: var(--bg-tint); border-block: 1px solid var(--line); }

/* 섹션 헤더 — 명함처럼 '제목 아래 얇은 금색 괘선', 좌측 정렬 */
.sec__head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 58px); }
.sec__head h2 { font-size: clamp(27px, 4vw, 40px); }
.sec__head .rule { width: 100%; max-width: 480px; height: 1px; margin: 20px 0 18px; background: var(--gold-line); }
.sec__sub { color: var(--muted); font-size: 15px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: var(--gold); margin-bottom: 14px; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }

/* ---------- 헤더: 항상 검정 ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--band) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-stuck { border-bottom-color: var(--band-line); background: color-mix(in srgb, var(--band) 96%, transparent); }
.nav__in { display: flex; align-items: center; gap: 18px; height: 66px; }

.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: 1px solid var(--gold-2);
  color: var(--gold-2); font-family: var(--serif); font-size: 17px; font-weight: 700;
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.28; }
.brand__txt b { font-size: 15.5px; color: var(--band-ink); letter-spacing: -.02em; }
.brand__txt small { font-size: 11px; color: var(--band-mute); letter-spacing: .01em; }

.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a {
  position: relative; padding: 8px 13px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: var(--band-mute);
  transition: color .2s;
}
.nav__links a:hover { color: var(--band-ink); }
.nav__links a.is-active { color: var(--gold-2); font-weight: 600; }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 1px; background: var(--gold-2);
}

.nav__theme {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 36px; height: 36px; padding: 0;
  background: none; border: 1px solid var(--band-line); border-radius: var(--r-sm);
  color: var(--band-mute); cursor: pointer;
  transition: color .2s, border-color .2s;
}
.nav__theme:hover { color: var(--gold-2); border-color: var(--gold-2); }
.nav__theme svg { width: 16px; height: 16px; }
.nav__theme-sun { display: none; }
:root[data-theme="dark"] .nav__theme-sun  { display: block; }
:root[data-theme="dark"] .nav__theme-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .nav__theme-sun  { display: block; }
  :root:not([data-theme="light"]) .nav__theme-moon { display: none; }
}

.nav__cta {
  flex: 0 0 auto; padding: 9px 17px; font-size: 13.5px;
  background: var(--gold-2); color: #141416; border-color: var(--gold-2);
}
.nav__cta:hover { background: #fff; border-color: #fff; }
.nav__cta svg { width: 14px; height: 14px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 40px; height: 40px; padding: 0; margin-left: 8px;
  background: none; border: 1px solid var(--band-line); border-radius: var(--r-sm); cursor: pointer;
}
.nav__burger span { display: block; width: 17px; height: 1.6px; margin-inline: auto; background: var(--band-ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__theme { margin-left: auto; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0; padding: 8px var(--pad) 16px;
    background: var(--band); border-bottom: 1px solid var(--band-line);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding: 13px 4px; font-size: 15px; border-bottom: 1px solid var(--band-line); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a.is-active::after { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .18s cubic-bezier(.2,.8,.2,1);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold-2); color: #141416; border-color: var(--gold-2); }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.btn--solid { background: var(--btn-bg); color: var(--btn-fg); border-color: var(--btn-bg); }
.btn--solid:hover { background: var(--btn-hv); border-color: var(--btn-hv); }

.btn--line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }

/* 검정 밴드 위에 올라가는 아웃라인 버튼 */
.btn--ghost { background: transparent; color: var(--band-ink); border-color: var(--band-line); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }

.btn--lg { padding: 15px 32px; font-size: 15.5px; }

/* ---------- 히어로: 검정 밴드 ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px) clamp(60px, 8vw, 104px);
  background: var(--band); color: var(--band-mute);
}
/* 금색 그리드 + 은은한 발광 — 떠다니는 카드 대신 쓰는 배경 모티프 */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(226, 190, 98, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 190, 98, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 20% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 20% 30%, #000 20%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  width: 720px; height: 720px; right: -180px; top: -280px;
  background: radial-gradient(circle, rgba(226, 190, 98, .13), transparent 62%);
}
.hero__in { position: relative; display: grid; grid-template-columns: 1.25fr .95fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
@media (max-width: 960px) { .hero__in { grid-template-columns: 1fr; } }

.hero .eyebrow { color: var(--gold-2); }
.hero .eyebrow::before { background: var(--gold-2); }

.hero__name {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px;
  color: var(--band-ink); font-size: clamp(44px, 8vw, 76px); letter-spacing: -.05em; line-height: 1.05;
}
.hero__name small { font-size: clamp(15px, 2vw, 19px); font-weight: 500; color: var(--gold-2); letter-spacing: .02em; }

.hero__rule { width: 100%; max-width: 420px; height: 1px; margin: 26px 0; background: linear-gradient(90deg, var(--gold-2), transparent); }

.hero__tagline { color: var(--band-ink); font-size: clamp(19px, 2.6vw, 26px); font-weight: 700; letter-spacing: -.035em; line-height: 1.4; }
.hero__tagline em { font-style: normal; color: var(--gold-2); }

.hero__lead { max-width: 540px; margin-top: 18px; font-size: 15.5px; line-height: 1.85; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

/* 히어로 우측 — 명함을 옮겨온 카드 */
.namecard {
  padding: 30px 30px 26px;
  background: var(--band-2); border: 1px solid var(--band-line); border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}
.namecard__top { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--gold-line); }
.namecard__seal {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--gold-2); color: var(--gold-2);
  font-family: var(--serif); font-size: 18px; font-weight: 700;
}
.namecard__top b { display: block; font-size: 15px; color: var(--band-ink); }
.namecard__top span { font-size: 12px; color: var(--band-mute); }

.namecard__h { margin: 22px 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--gold-2); text-transform: uppercase; }

.namecard__roles { display: grid; gap: 10px; }
.namecard__roles li { position: relative; padding-left: 30px; font-size: 14px; color: var(--band-ink); line-height: 1.55; }
.namecard__roles li::before {
  content: "現"; position: absolute; left: 0; top: 1px;
  font-family: var(--serif); font-size: 12px; font-weight: 700; color: var(--gold-2);
}

.namecard__contact { display: grid; gap: 9px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--band-line); }
.namecard__contact li { display: flex; gap: 12px; font-size: 13.5px; }
.namecard__contact span { flex: 0 0 52px; color: var(--band-mute); font-size: 12px; letter-spacing: .04em; }
.namecard__contact a, .namecard__contact b { color: var(--band-ink); font-weight: 500; }
.namecard__contact a:hover { color: var(--gold-2); }

/* ---------- 업무분야 ---------- */
.svc { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc__item { padding: 30px 28px 28px; background: var(--card); transition: background .25s; }
.svc__item:hover { background: var(--gold-soft); }
.svc__no { display: block; margin-bottom: 14px; font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.svc__item h3 { font-size: 18.5px; margin-bottom: 8px; }
.svc__item > p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.svc__item ul { display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.svc__item li { position: relative; padding-left: 15px; font-size: 14px; color: var(--ink-2); }
.svc__item li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ---------- 산재·직업병 특화 ---------- */
.disease { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.disease li {
  padding: 22px 22px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  border-top: 2px solid var(--gold); box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.disease li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.disease b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; letter-spacing: -.02em; }
.disease span { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.callout {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 26px; padding: 22px 24px;
  background: var(--gold-soft); border-left: 3px solid var(--gold); border-radius: 0 var(--r) var(--r) 0;
}
.callout svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; color: var(--gold); }
.callout b { display: block; margin-bottom: 5px; font-size: 14.5px; color: var(--ink); }
.callout p { font-size: 13.8px; color: var(--ink-2); line-height: 1.7; }

/* ---------- 소개 ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

.about__h { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-size: 17px; }
.about__h::after { content: ""; flex: 1; height: 1px; background: var(--gold-line); }

.steps { display: grid; }
.steps li { position: relative; padding: 18px 0 18px 48px; border-bottom: 1px solid var(--line-2); }
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero); counter-increment: step;
  position: absolute; left: 0; top: 18px;
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--gold);
}
.steps { counter-reset: step; }
.steps b { display: block; margin-bottom: 5px; font-size: 15.5px; color: var(--ink); }
.steps span { font-size: 14px; color: var(--muted); line-height: 1.7; }

.taglist { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.taglist li {
  padding: 6px 13px; border: 1px solid var(--gold-line); border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; color: var(--ink-2); background: var(--card);
}

.factlist { display: grid; }
.factlist li { display: flex; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.factlist li:last-child { border-bottom: 0; }
.factlist span { flex: 0 0 82px; color: var(--faint); font-size: 12.5px; letter-spacing: .02em; }
.factlist b { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 4px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -.02em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: "Q"; flex: 0 0 auto; font-family: var(--serif); font-weight: 700; color: var(--gold); }
.faq__item summary::after {
  content: ""; flex: 0 0 auto; margin-left: auto; align-self: center;
  width: 9px; height: 9px; border-right: 1.6px solid var(--faint); border-bottom: 1.6px solid var(--faint);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .25s, border-color .2s;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); border-color: var(--gold); }
.faq__item summary:hover { color: var(--gold); }
.faq__body { padding: 0 4px 26px 30px; display: grid; gap: 12px; }
.faq__body p { font-size: 14.8px; color: var(--ink-2); }
.faq__body b { color: var(--ink); font-weight: 600; }
@media (max-width: 560px) { .faq__body { padding-left: 4px; } }

.faq__note { margin-top: 24px; font-size: 12.5px; color: var(--faint); line-height: 1.7; }

/* ---------- 연락 ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.contact h2 { font-size: clamp(25px, 3.6vw, 36px); }
.contact__lead { margin-top: 18px; color: var(--muted); font-size: 15px; }
.contact__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.contact__box { padding: 30px; background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--gold); box-shadow: var(--shadow); }
.contact__box dl { display: grid; }
.contact__box > dl > div { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.contact__box > dl > div:last-child { border-bottom: 0; }
.contact__box dt { flex: 0 0 62px; color: var(--faint); font-size: 12.5px; letter-spacing: .03em; padding-top: 2px; }
.contact__box dd { color: var(--ink); font-weight: 500; }
.contact__box a:hover { color: var(--gold); }

/* ---------- 푸터: 항상 검정 ---------- */
.foot { padding-block: 56px 90px; background: var(--band); color: var(--band-mute); }
.foot__in { display: grid; gap: 30px; }
.foot__top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--band-line); }
.foot__brand b { display: block; font-size: 17px; color: var(--band-ink); letter-spacing: -.02em; }
.foot__brand span { font-size: 13px; color: var(--band-mute); }
.foot__links { display: flex; flex-wrap: wrap; gap: 8px; }
.foot__links a {
  padding: 8px 15px; border: 1px solid var(--band-line); border-radius: var(--r-pill);
  font-size: 13px; color: var(--band-mute); transition: color .2s, border-color .2s;
}
.foot__links a:hover { color: var(--gold-2); border-color: var(--gold-2); }

.foot__info { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px 28px; }
.foot__info > div { display: flex; gap: 12px; font-size: 13.5px; }
.foot__info dt { flex: 0 0 46px; color: var(--faint); font-size: 12px; }
.foot__info dd { color: var(--band-ink); }
.foot__info a:hover { color: var(--gold-2); }

.foot__copy { font-size: 12px; color: var(--band-mute); line-height: 1.8; }

/* ---------- 모바일 하단 고정 CTA ---------- */
.fab { display: none; }
@media (max-width: 720px) {
  .fab {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; gap: 8px; padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--band) 94%, transparent);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--band-line);
  }
  .fab__btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 700;
  }
  .fab__btn svg { width: 16px; height: 16px; }
  .fab__btn--call { background: var(--gold-2); color: #141416; }
  .fab__btn--kakao { background: #fee500; color: #3c1e1e; }
  .foot { padding-bottom: 108px; }
}

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .disease li:hover { transform: none; }
}

/* ---------- print ---------- */
@media print {
  .nav, .fab, .skip { display: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  body { background: #fff; color: #000; }
  .hero, .foot { background: #fff !important; color: #000 !important; }
  .hero__name, .hero__tagline, .namecard__top b, .foot__brand b, .foot__info dd { color: #000 !important; }
  .faq__item { break-inside: avoid; }
  .faq__body { display: block !important; }
}
