/* ============================================================
   WED-BRND-133 · 연분 YEONBUN · MIN 미니멀·클린
   오프화이트 지면 + 로즈(#96406B) 한 점. 헤어라인 그리드로만 나눈다.
   ============================================================ */

/* 암묵 그리드 트랙이 max-content 로 부풀어 페이지를 밀어내는 것을 원천 차단 */
* { grid-auto-columns: minmax(0, 1fr); }
/* 그리드/플렉스 자식이 내재 폭을 주장하지 못하게 한다 (중간 래퍼까지 커버) */
:where([style*="grid"], .grid, [class*="__grid"], [class*="__inner"], [class*="__list"],
       .hero, .stats, .lines, .plans, .steps, .foot__inner) > * { min-width: 0; }

:root {
  --brand:       #96406b;
  --brand-ink:   #ffffff;
  --accent:      #211a1e;
  --accent-ink:  #fdfafc;
  --surface:     #fdfafc;
  --surface-alt: #f6eef2;
  --font-display: var(--font-sans);
  --r: var(--r-sm);
}

body { background: var(--surface); }
::selection { background: var(--brand); color: var(--brand-ink); }

/* ── 공통 타입 ─────────────────────────────────────────────── */

.kicker {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--brand);
}
.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--ink-3);
}
.label--alt { color: var(--ink-2); }

.h2 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.08; }
.h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; }
.body-sm { font-size: var(--fs-sm); color: var(--ink-2); }

.sec-head { display: grid; gap: var(--sp-4); align-content: start; justify-items: start; }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  border-radius: var(--r);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: var(--sp-3) var(--sp-5); }
.btn--solid { background: var(--brand); color: var(--brand-ink); }
.btn--solid:hover { background: var(--accent); color: var(--accent-ink); }
.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }

/* ── 헤더 ── 2줄 접힘 + 메뉴 가로 스크롤 (JS 없이 전 페이지 이동 가능) ── */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--sp-4);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-sm); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
}
.nav__mark { width: 8px; height: 8px; border-radius: var(--r-full); background: var(--brand); flex: none; }
.nav__menu {
  display: flex; order: 3; width: 100%;
  gap: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu a {
  font-size: var(--fs-sm); color: var(--ink-2); white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a[aria-current="page"] { color: var(--ink); font-weight: var(--fw-semibold); }

@media (min-width: 1024px) {
  .nav__inner { flex-wrap: nowrap; padding-block: var(--sp-4); }
  .nav__menu { order: 0; width: auto; padding-top: 0; border-top: 0; overflow: visible; margin-left: var(--sp-8); }
}

/* ── 히어로 ── 모바일: 사진 행 26svh + 아래 solid 텍스트 (SPEC 8 해법 B) ── */

.hero {
  --header-h: 104px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 26svh auto;
  min-height: 100svh;
  padding-top: var(--header-h);
  border-bottom: 1px solid var(--line);
}
.hero__media { grid-area: 1 / 1 / 2 / 2; position: relative; overflow: hidden; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.hero__media--wide { display: none; }

.hero__text {
  grid-area: 2 / 1 / 3 / 2;
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--sp-5);
  padding-inline: var(--gutter);
  padding-block: var(--sp-6) var(--sp-7);
}
.hero__title { font-size: var(--fs-4xl); line-height: 1.04; letter-spacing: var(--ls-tighter); }
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 32ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  margin-top: var(--sp-2); padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--ink-3);
}

@media (min-width: 1024px) {
  .hero {
    --header-h: 0px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
    grid-template-rows: minmax(0, 1fr);
    padding-top: 0;
  }
  .hero__text {
    grid-area: 1 / 1 / 2 / 2;
    padding-block: var(--sp-10) var(--sp-8);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding-right: var(--sp-8);
  }
  .hero__media { grid-area: 1 / 2 / 2 / 3; display: none; }
  .hero__media--wide { display: block; }
}

/* ── 지표 ── 헤어라인 그리드 ──────────────────────────────── */

.stats__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.stat { padding-block: var(--sp-6); padding-right: var(--sp-5); border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(even) { padding-left: var(--sp-5); }
.stat dt {
  font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--ink-3); margin-bottom: var(--sp-3);
}
.stat dd { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); line-height: 1; }
.stat dd span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-3); margin-left: 2px; }

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: var(--sp-5); }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; }
}

/* ── 티커 ──────────────────────────────────────────────────── */

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface-alt); padding-block: var(--sp-4); }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: ticker 42s linear infinite; }
.ticker__track span {
  font-size: var(--fs-sm); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--ink-2); white-space: nowrap;
}
.ticker__track i { width: 4px; height: 4px; border-radius: var(--r-full); background: var(--brand); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 세 라인 ── 비대칭 2단 + sticky 제목 ─────────────────── */

.lines__inner { display: grid; gap: var(--sp-8); }
.lines__list { display: grid; gap: var(--sp-7); }
.line { display: grid; gap: var(--sp-5); }
.line__media { border-radius: var(--r); }
.line__no {
  font-size: var(--fs-2xl); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tighter); line-height: 1; color: var(--brand);
}
.line__body { display: grid; gap: var(--sp-3); }
.line__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-2); }
.line__tags li {
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--line-strong);
  font-size: var(--fs-xs); color: var(--ink-2);
}

@media (min-width: 768px) {
  .line { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: var(--sp-7); }
  .line:nth-child(even) .line__media { order: 2; }
}
@media (min-width: 1024px) {
  .lines__inner { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--sp-9); }
  .lines__head { position: sticky; top: var(--sp-9); align-self: start; }
}

/* ── 아틀리에 ── 풀블리드 + 겹침 카드 ────────────────────── */

.atelier { position: relative; padding-bottom: var(--section-y); }
.atelier__media { border-radius: 0; aspect-ratio: 4 / 5; }
.atelier__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; gap: var(--sp-4);
}
.atelier__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.atelier__list li {
  display: flex; gap: var(--sp-4);
  padding-top: var(--sp-3); border-top: 1px solid var(--line);
  font-size: var(--fs-sm); color: var(--ink-2);
}
.atelier__list b { color: var(--ink); min-width: 5.5em; flex: none; }

@media (min-width: 768px) {
  .atelier__media { aspect-ratio: 21 / 9; }
  .atelier__card { margin-top: calc(var(--sp-10) * -1); margin-right: auto; max-width: 640px; padding: var(--sp-8); }
}

/* ── 인용 ──────────────────────────────────────────────────── */

.quote-sec { background: var(--surface-alt); }
.quote { display: grid; gap: var(--sp-5); text-align: center; }
.quote p { font-size: var(--fs-xl); font-weight: var(--fw-medium); line-height: 1.5; letter-spacing: var(--ls-tight); }
.quote footer { font-size: var(--fs-sm); color: var(--ink-2); }
.quote footer b { color: var(--ink); font-weight: var(--fw-semibold); }

/* ── 요금 ── 헤어라인 그리드 ─────────────────────────────── */

.plans { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.plan {
  display: grid; gap: var(--sp-4);
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--line);
}
.plan__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--sp-4); }
.plan__name { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); }
.plan__name small { display: block; font-size: var(--fs-xs); font-weight: var(--fw-normal); color: var(--ink-3); letter-spacing: var(--ls-widest); text-transform: uppercase; margin-bottom: var(--sp-2); }
.plan__price { font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); white-space: nowrap; }
.plan__price span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-2); }
.plan__feat { display: grid; gap: var(--sp-2); }
.plan__feat li { position: relative; padding-left: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); }
.plan__feat li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 10px; height: 1px; background: var(--brand);
}
.plan--pick { background: var(--surface-alt); padding-inline: var(--sp-5); }
.plan--pick .plan__feat li { color: var(--ink-2); }
.plan__tag {
  align-self: start; justify-self: start;
  padding: var(--sp-1) var(--sp-3);
  background: var(--brand); color: var(--brand-ink);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide);
}

@media (min-width: 1024px) {
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
  .plan { border-bottom: 0; border-right: 1px solid var(--line); padding: var(--sp-7) var(--sp-6); align-content: start; }
  .plan:last-child { border-right: 0; }
}

/* ── 갤러리 그리드 (collection.html) ─────────────────────── */

.grid-3 { display: grid; gap: var(--sp-5); }
.gitem { display: grid; gap: var(--sp-4); }
.gitem figcaption { display: grid; gap: var(--sp-2); }
.gitem .h3 { font-size: var(--fs-md); }
.gitem p { font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-6); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ── 절차 (process.html) ─────────────────────────────────── */

.steps { display: grid; gap: var(--sp-6); counter-reset: st; }
.step { display: grid; gap: var(--sp-3); padding-top: var(--sp-5); border-top: 2px solid var(--accent); }
.step__num { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tighter); line-height: 1; color: var(--brand); }
.step h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.step p { font-size: var(--fs-sm); color: var(--ink-2); }
.step__when { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-7); } }
@media (min-width: 1280px) { .steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--sp-5); } }

/* ── 표 (process.html) ───────────────────────────────────── */

.scroll-x { overflow-x: auto; min-width: 0; -webkit-overflow-scrolling: touch; }
.tbl { width: 100%; min-width: 560px; border-collapse: collapse; font-size: var(--fs-sm); }
.tbl th, .tbl td { padding: var(--sp-4) var(--sp-4); text-align: left; border-bottom: 1px solid var(--line); }
.tbl thead th { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--line-strong); }
.tbl td { color: var(--ink-2); }
.tbl td:first-child { color: var(--ink); font-weight: var(--fw-semibold); }

/* ── FAQ ───────────────────────────────────────────────────── */

.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  padding-block: var(--sp-5); font-size: var(--fs-md); font-weight: var(--fw-semibold);
  cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--brand); }
.qa summary::after {
  content: ""; width: 12px; height: 12px; flex: none;
  background: linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
              linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat;
  transition: transform var(--dur) var(--ease);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); max-width: 64ch; }

/* ── 상담 폼 (contact.html) ──────────────────────────────── */

.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: var(--sp-2); }
.field > span { font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--sp-4);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r); font-size: var(--fs-sm); color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--brand); }
.field textarea { min-height: 8rem; resize: vertical; }
.form__row { display: grid; gap: var(--sp-5); }
@media (min-width: 768px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form__note { font-size: var(--fs-xs); color: var(--ink-3); }

.contact__inner { display: grid; gap: var(--sp-8); }
@media (min-width: 1024px) { .contact__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: var(--sp-9); } }
.info { display: grid; gap: var(--sp-5); align-content: start; padding: var(--sp-6); background: var(--surface-alt); }
.info dl { display: grid; gap: var(--sp-4); }
.info dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2); margin-bottom: var(--sp-1); }
.info dd { font-size: var(--fs-sm); color: var(--ink); }

/* ── 페이지 헤더 (하위 페이지) ───────────────────────────── */

.phead {
  padding-top: calc(var(--sp-10) + var(--sp-6));
  padding-bottom: var(--section-y);
  border-bottom: 1px solid var(--line);
}
.phead__inner { display: grid; gap: var(--sp-4); }
.phead h1 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
@media (min-width: 1024px) {
  .phead { padding-top: calc(var(--sp-11) + var(--sp-2)); }
  .phead__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); align-items: end; gap: var(--sp-8); }
}

/* ── CTA ───────────────────────────────────────────────────── */

.cta { background: var(--accent); color: var(--accent-ink); padding-block: var(--section-y); }
.cta .label { color: color-mix(in oklab, var(--accent-ink) 62%, transparent); }
.cta__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; margin-block: var(--sp-4); }
.cta__lead { font-size: var(--fs-md); color: color-mix(in oklab, var(--accent-ink) 78%, transparent); max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.cta .btn--line { border-color: color-mix(in oklab, var(--accent-ink) 40%, transparent); color: var(--accent-ink); }
.cta .btn--line:hover { background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); }
.cta :focus-visible { outline-color: var(--accent-ink); }
@media (min-width: 768px) { .cta__title { font-size: var(--fs-4xl); } }

/* ── 푸터 ──────────────────────────────────────────────────── */

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand { display: inline-flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; }
.foot__addr { font-style: normal; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.9; }
.foot__nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.foot__nav a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__nav a:hover { color: var(--brand); }
.foot__copy { grid-column: 1 / -1; padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--ink-3); }
@media (min-width: 768px) { .foot__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-7); } }


/* ── ★SPEC v1.8 · 유틸 색상 재확정 ──────────────────────────
   `.run p` 처럼 섹션 스코프 요소 선택자는 특이도 (0,1,1) 이라 색 유틸 (0,1,0) 을
   조용히 덮어쓴다. 레이아웃은 멀쩡하고 색만 새기 때문에 육안으로 안 잡힌다.
   파일 끝에서 요소 한정 선택자로 다시 못박는다 (동률이면 나중 규칙이 이긴다). */
p.kicker { color: var(--brand); }
p.label { color: var(--ink-3); }
p.label--alt { color: var(--ink-2); }
p.step__num { color: var(--brand); }
p.step__when { color: var(--ink-3); }
.cta p.label { color: color-mix(in oklab, var(--accent-ink) 62%, transparent); }

/* ============================================================
   ★ SPEC 4-C — 브랜드 마크 · 아이콘 · 인터랙션 보강
   미니멀이라 반응도 얇다. 헤어라인이 브랜드색으로 바뀌는 정도.
   ============================================================ */

/* base.css 의 `svg { display:block }` 때문에 인라인 아이콘이 제 줄로 떨어진다.
   inline-block 으로 되돌려야 글자 옆에 붙는다. */
.ico { display: inline-block; width: 1em; height: 1em; flex: none; vertical-align: -.125em; }
:is(dt, dd, h2, h3, p, li, span, b) > .ico:first-child { margin-inline-end: var(--sp-2); }

/* ── 브랜드 마크 — 스·드·메 세 가닥이 하나로 묶이는 매듭 ────── */
.nav__mark {
  width: 26px; height: 26px; flex: none; align-self: center;
  border: 0; border-radius: 0; background: none; box-shadow: none; transform: none;
  color: var(--brand);
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur) var(--ease);
}
.nav__logo:hover .nav__mark,
.nav__logo:focus-visible .nav__mark { transform: rotate(-9deg); color: var(--accent); }
.foot__brand .nav__mark { width: 22px; height: 22px; }
.foot__brand:hover .nav__mark { transform: rotate(-9deg); }

/* ── 아이콘 자리 ────────────────────────────────────────────── */
.line__body h3 .ico, .plan__feat .ico { color: var(--brand); }
.plan__feat .ico { margin-top: .18em; }
.foot__addr { display: grid; gap: var(--sp-3); line-height: 1.6; }
.foot__addr span { display: flex; align-items: flex-start; transition: color var(--dur) var(--ease); }
.foot__addr .ico { color: var(--brand); font-size: var(--fs-lg); margin-top: .05em; }
.foot__addr span:hover { color: var(--ink); }

/* ── 버튼 화살표 ────────────────────────────────────────────── */
.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── 링크 밑줄 ──────────────────────────────────────────────── */
.nav__menu a, .foot__nav a, .crumb a { position: relative; }
.nav__menu a::after, .foot__nav a::after, .crumb a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--brand); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after, .foot__nav a:hover::after, .crumb a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 지표 ───────────────────────────────────────────────────── */
.stat { transition: background var(--dur) var(--ease); }
.stat:hover { background: var(--surface-alt); }
.stat dd { transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.stat:hover dd { transform: translateY(-3px); color: var(--brand); }

/* ── 라인(스·드·메) 카드: 사진이 당겨지고 태그가 켜진다 ────── */
.line__media { overflow: hidden; }
.line__media img { transition: transform 950ms var(--ease-out); }
.line:hover .line__media img { transform: scale(1.05); }
.line__no { transition: color var(--dur) var(--ease), letter-spacing var(--dur-slow) var(--ease); }
.line:hover .line__no { color: var(--brand); letter-spacing: var(--ls-wide); }
.line__tags li { transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.line__tags li:hover { color: var(--brand-ink); background: var(--brand); border-color: var(--brand); }
.line__body h3 .ico { transition: transform var(--dur) var(--ease-out); }
.line:hover .line__body h3 .ico { transform: translateY(-2px) scale(1.08); }

/* ── 갤러리 ─────────────────────────────────────────────────── */
.gitem figure { overflow: hidden; }
.gitem img { transition: transform 950ms var(--ease-out); }
.gitem:hover img { transform: scale(1.05); }

/* ── 패키지: 카드가 들어올려지고 가격이 브랜드색으로 ────────── */
.plan { transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease); }
.plan:hover { transform: translateY(-6px); border-color: var(--brand); }
.plan__price { transition: color var(--dur) var(--ease); }
.plan:hover .plan__price { color: var(--brand); }
.plan__feat li { transition: color var(--dur) var(--ease); }
.plan__feat li:hover { color: var(--ink); }

/* ── 진행 절차: 번호 위 선이 차오른다 ───────────────────────── */
.step { position: relative; transition: transform var(--dur) var(--ease-out); }
.step::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--brand); transition: width var(--dur-slow) var(--ease-out);
}
.step:hover { transform: translateY(-4px); }
.step:hover::before { width: 100%; }
.step__num { transition: color var(--dur) var(--ease); }
.step:hover .step__num { color: var(--accent); }
.step__when { transition: color var(--dur) var(--ease); }
.step:hover .step__when { color: var(--brand); }

/* ── 티커: 올리면 멈춘다 (읽을 수 있게) ─────────────────────── */
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { transition: color var(--dur) var(--ease); }
.ticker:hover .ticker__track span { color: var(--ink); }

/* ── FAQ ────────────────────────────────────────────────────── */
@keyframes qaFlow { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.qa[open] p { animation: qaFlow var(--dur) var(--ease-out) both; }
.qa summary::after { transition: transform var(--dur) var(--ease-out); }
.qa:hover summary::after { transform: rotate(90deg); }
.qa[open] summary::after { transform: rotate(45deg); }

/* ── 폼 ─────────────────────────────────────────────────────── */
.field input, .field select, .field textarea { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand); }

/* ── 매듭이 한 번 조여진다 (로고 hover) ─────────────────────── */
@keyframes knotTie {
  0%   { transform: rotate(0) scaleY(1); }
  50%  { transform: rotate(-12deg) scaleY(.94); }
  100% { transform: rotate(-9deg) scaleY(1); }
}
.nav__logo:hover .nav__mark { animation: knotTie var(--dur-slow) var(--ease-out) both; }

/* ── 상담 예약 CTA 강조 ─────────────────────────────────────── */
@keyframes ctaHalo {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand) 34%, transparent); }
  60%      { box-shadow: 0 0 0 10px color-mix(in oklab, var(--brand) 0%, transparent); }
}
.cta__actions .btn--solid { animation: ctaHalo 3.4s var(--ease) infinite; }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */
html.js .stats .reveal:nth-child(2) { transition-delay: 70ms; }
html.js .stats .reveal:nth-child(3) { transition-delay: 140ms; }
html.js .stats .reveal:nth-child(4) { transition-delay: 210ms; }
html.js .lines .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .lines .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .plans .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .plans .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .steps .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .steps .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .steps .reveal:nth-child(4) { transition-delay: 240ms; }
html.js .steps .reveal:nth-child(5) { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .nav__mark, .qa[open] p, .cta__actions .btn--solid { animation: none; }
  .nav__logo:hover .nav__mark, .foot__brand:hover .nav__mark,
  .stat:hover dd, .line:hover .line__media img, .line:hover .line__body h3 .ico,
  .gitem:hover img, .plan:hover, .step:hover,
  .btn:hover .btn__arrow { transform: none; }
}


/* ===== 획일성 제거 — MIN 무드 어휘 =====================================
   160작품이 레퍼런스의 밑줄 draw·카드 리프트·대문자 킥커를 그대로 복사해
   같은 사이트 리스킨으로 보였다. 반응 방식을 무드에 맞게 갈아끼운다.
   ==================================================================== */
/* 세로 카덴스를 작품마다 다르게 — 전부 같은 --section-y 를 쓰는 게 구조적 tell 이었다 */
:root { --section-y: clamp(3.52rem, 2.1861rem + 5.7029vw, 7.03rem); }

/* 미니멀 — 밑줄을 없앤다. 여백과 색만으로 반응한다. */
.nav__menu a::after, .foot__nav a::after, .crumb a::after { display: none !important; }
.nav__menu a, .foot__nav a, .crumb a:hover { color: var(--ink); }
.nav__menu a, .foot__nav a, .crumb a { position: relative; }
.nav__menu a, .foot__nav a, .crumb a::before {
  content: ""; position: absolute; left: -10px; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--dur) var(--ease);
}
.nav__menu a, .foot__nav a, .crumb a:hover::before { opacity: 1; }
.stat:hover dd, .line:hover .line__body h3 .ico, .plan:hover, .step:hover { transform: none; }
.stat:hover dd, .line:hover .line__body h3 .ico, .plan:hover, .step:hover { box-shadow: none; }
.kicker, .label { text-transform: none; letter-spacing: var(--ls-snug); font-weight: var(--fw-medium); }

/* ===== 티커 걷어내기 — MIN 무드에 마퀴는 어울리지 않는다 ==========
   내용(실적·목록·인증)은 실제 정보라 유지하고 장치만 바꾼다.
   ================================================================ */
/* 티커 → 얇은 구분선으로 나눈 한 줄. 흐르지 않는다. */
.ticker { overflow: visible; }
.ticker__track { animation: none !important; width: auto; flex-wrap: wrap; gap: 0; }
.ticker__track > span { padding-inline: var(--sp-5); border-left: 1px solid var(--line); }
.ticker__track > span:first-child { padding-left: 0; border-left: 0; }
.ticker__track > i { display: none; }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .hero__title em, html.tier-premium h1 em { font-style: italic; }
html.tier-premium .btn--solid { letter-spacing: .06em; }
