/* ============================================================
   FIT-COMM-092 · 루트나인 · EDT 에디토리얼 (클라이밍 커뮤니티·멤버십)
   종이 지면 · 딥그린 #1C692A · 다단 괘선 · 드롭캡 · 큰 인덱스 넘버
   ── 같은 FIT 안에서 027(LUX 명조·아이보리·딥그린 163°)과 헷갈리지 않도록
      092는 산세리프 헤드라인 + 명조는 인용/리드에만, 지면은 종이 백색, 색상 131°.
   ============================================================ */

:root {
  --brand:       #1c692a;
  --brand-ink:   #ffffff;
  --accent:      #12301a;
  --accent-ink:  #fbfaf5;
  --surface:     #fbfaf5;
  --surface-alt: #efeee4;
  --font-display: var(--font-sans);
  --r: var(--r-none);
}

body { background: var(--surface); }

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

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

.h2 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.02; }
.h3 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); line-height: 1.16; }
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; line-height: var(--lh-loose); }
.muted { font-size: var(--fs-sm); color: var(--ink-2); }
.serif { font-family: var(--font-serif); }
.lede {
  font-family: var(--font-serif);
  font-size: var(--fs-lg); line-height: 1.6; color: var(--ink-2); max-width: 38ch;
}
.rule-t { border-top: 1px solid var(--line-strong); }

/* 큰 인덱스 넘버 — 에디토리얼의 척추 */
.idx {
  font-size: var(--fs-2xl); font-weight: var(--fw-bold);
  line-height: 0.9; letter-spacing: var(--ls-tighter); color: var(--brand);
}

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

.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-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  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(--accent); color: var(--accent-ink); }
.btn--solid:hover { background: var(--brand); }
.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--brand); color: var(--brand); }

/* ── 헤더 (6페이지 · 메뉴 줄 가로 스크롤) ──────────────────── */

.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.3) blur(12px);
  border-bottom: 2px solid var(--accent);
}
.nav__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-3) var(--sp-5);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
}
.nav__logo {
  display: inline-flex; align-items: baseline; gap: var(--sp-2);
  font-size: var(--fs-md); font-weight: var(--fw-black);
  letter-spacing: var(--ls-tight); text-transform: uppercase;
}
.nav__logo b { color: var(--brand); }
.nav__menu {
  display: flex; order: 3; width: 100%; gap: var(--sp-5);
  overflow-x: auto; scrollbar-width: none; padding-bottom: var(--sp-1);
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu a {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-2);
  white-space: nowrap; padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--brand); }

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

/* ── 히어로 ────────────────────────────────────────────────── */
/* 모바일: 사진을 깔고 밝은 스크림(해법 A) — 본문 색은 건드리지 않는다.
   1024px 이상: 비대칭 2단, 왼쪽 텍스트 / 오른쪽 이미지 풀블리드. */

.hero {
  --header-h: 106px;
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr);
  min-height: 100svh;
  padding-top: var(--header-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--surface) 95%, transparent) 0%,
    color-mix(in oklab, var(--surface) 90%, transparent) 44%,
    color-mix(in oklab, var(--surface) 28%, transparent) 100%);
}
.hero__text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: var(--sp-4);
  padding-inline: var(--gutter);
  padding-block: var(--sp-6) var(--sp-8);
}
.hero__title { font-size: var(--fs-4xl); line-height: 0.94; letter-spacing: var(--ls-tighter); text-transform: uppercase; }
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { font-family: var(--font-serif); font-size: var(--fs-md); line-height: 1.65; color: var(--ink-2); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-1); }
.hero__facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--sp-5); border-top: 1px solid var(--line-strong);
}
.hero__facts div { padding-block: var(--sp-4); padding-right: var(--sp-4); border-bottom: 1px solid var(--line); }
.hero__facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.hero__facts dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.hero__facts dd { font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); margin-top: var(--sp-1); }

@media (min-width: 1024px) {
  .hero { --header-h: 74px; grid-template-columns: minmax(0, 1fr) minmax(0, 50%); padding-top: 0; }
  /* ★ grid-column 만 주면 뒤따르는 .hero__text 가 다음 행으로 밀려
     이미지 행 높이가 0 이 된다(1280px 실측에서 히어로 이미지가 사라졌다).
     두 아이템의 행·열을 모두 못박는다. */
  .hero__media { position: relative; grid-column: 2; grid-row: 1; }
  .hero__media::after { display: none; }
  .hero__text {
    grid-column: 1; grid-row: 1;
    justify-content: center;
    padding-top: calc(var(--header-h) + var(--sp-7));
    padding-bottom: var(--sp-8);
    padding-left: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
    padding-right: var(--sp-8);
    gap: var(--sp-5);
  }
}

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

.ticker { overflow: hidden; border-bottom: 1px solid var(--line-strong); background: var(--accent); color: var(--accent-ink); padding-block: var(--sp-3); }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: ticker 36s linear infinite; }
.ticker__track span { font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; white-space: nowrap; }
.ticker__track i { width: 6px; height: 6px; background: var(--brand); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 섹션 헤드 (sticky) ────────────────────────────────────── */

.split { display: grid; gap: var(--sp-7); }
/* ★SPEC 7절 — 그리드 트랙의 기본 min-width 는 auto 라, 안에 표를 감싼
   .scroll-x 가 들어오면 overflow-x 가 무력화되고 페이지 전체가 밀린다.
   실제로 routes.html 375px 에서 11px 오버플로가 났다. 자식을 0으로 못박는다. */
.split > * { min-width: 0; }
.split__head { display: grid; gap: var(--sp-4); align-content: start; }
@media (min-width: 1024px) {
  .split { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--sp-9); }
  .split__head { position: sticky; top: var(--sp-9); }
}

/* ── 기사형 카드 리스트 ────────────────────────────────────── */

.cards { display: grid; gap: var(--sp-6); }
.card { display: grid; gap: var(--sp-4); }
.card__media img { transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .card__media img { transform: scale(1.04); }
.card__no { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-3); }
.card__title { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); line-height: 1.22; }
.card__text { font-size: var(--fs-sm); color: var(--ink-2); }
.card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); padding-top: var(--sp-3); 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: 768px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-7) var(--sp-6); } }
@media (min-width: 1280px) { .cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ── 겹침 카드 풀블리드 ────────────────────────────────────── */

.feature { position: relative; padding-bottom: var(--section-y); }
.feature__media { border-radius: 0; aspect-ratio: 4 / 5; }
.feature__card {
  position: relative; margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface); border: 2px solid var(--accent);
  display: grid; gap: var(--sp-4);
}
.feature__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.feature__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); }
.feature__list b { color: var(--ink); min-width: 4.2em; }

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

/* ── 지표 ──────────────────────────────────────────────────── */

.stats { border-top: 2px solid var(--accent); }
.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 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-tighter); line-height: 1; }
.stat dd span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-3); margin-left: 3px; }
@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; }
}

/* ── 인용 (화면을 채우는 한 문장) ──────────────────────────── */

.quote-sec { background: var(--surface-alt); }
.quote { display: grid; gap: var(--sp-5); }
.quote p { font-family: var(--font-serif); font-size: var(--fs-2xl); line-height: 1.32; letter-spacing: var(--ls-tight); }
.quote footer { font-size: var(--fs-sm); color: var(--ink-3); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.quote footer span { color: var(--ink); font-weight: var(--fw-bold); }

/* ── 드롭캡 본문 (2단) ─────────────────────────────────────── */

.prose { display: grid; gap: var(--sp-5); max-width: 68ch; }
.prose p { font-size: var(--fs-md); color: var(--ink-2); line-height: var(--lh-loose); }
.prose h3 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); }
.prose strong { color: var(--ink); font-weight: var(--fw-bold); }
.prose--drop > p:first-of-type::first-letter {
  float: left; font-family: var(--font-serif); font-size: 3.4em;
  line-height: 0.82; padding-right: var(--sp-3); padding-top: 0.06em; color: var(--brand);
}
.cols-2 { display: grid; gap: var(--sp-6); }
.cols-2 p { font-size: var(--fs-md); color: var(--ink-2); line-height: var(--lh-loose); }
@media (min-width: 768px) { .cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-7); } }

/* ── 표 ────────────────────────────────────────────────────── */

.scroll-x { overflow-x: auto; min-width: 0; }
.tbl { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.tbl caption { text-align: left; font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); padding-bottom: var(--sp-3); }
.tbl th, .tbl td { text-align: left; padding: var(--sp-4); border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl thead th { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--line-strong); }
.tbl tbody th { font-weight: var(--fw-bold); }
.tbl td b { color: var(--brand); }

/* ── 요금 카드 ─────────────────────────────────────────────── */

.plans { display: grid; gap: var(--sp-5); margin-top: var(--sp-7); }
.plan { border: 1px solid var(--line-strong); padding: var(--sp-6); display: grid; gap: var(--sp-4); align-content: start; }
.plan--hi { border: 2px solid var(--accent); background: var(--surface-alt); }
.plan__name { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.plan__price { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tighter); line-height: 1; }
.plan__price span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-3); margin-left: 4px; }
.plan ul { display: grid; gap: var(--sp-3); }
.plan li { position: relative; padding-left: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); }
.plan li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 9px; height: 1px; background: var(--brand); }
@media (min-width: 768px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ── 커뮤니티 게시판 ───────────────────────────────────────── */

.board { display: grid; margin-top: var(--sp-6); border-top: 2px solid var(--accent); }
.board__row { display: grid; gap: var(--sp-2); padding-block: var(--sp-5); border-bottom: 1px solid var(--line); transition: background var(--dur) var(--ease); }
.board__row:hover { background: var(--surface-alt); }
.board__cat { font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--brand); }
.board__title { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.board__meta { font-size: var(--fs-xs); color: var(--ink-3); }
@media (min-width: 768px) {
  .board__row { grid-template-columns: 130px minmax(0, 1fr) 210px; align-items: baseline; gap: var(--sp-5); }
  .board__meta { text-align: right; }
}

/* ── 페이지 헤더 ───────────────────────────────────────────── */

.phead { padding-top: calc(106px + var(--sp-8)); padding-bottom: var(--sp-7); border-bottom: 2px solid var(--accent); }
.phead__inner { display: grid; gap: var(--sp-4); }
.phead h1 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.02; text-transform: uppercase; }
@media (min-width: 1024px) { .phead { padding-top: calc(74px + var(--sp-9)); } }

/* ── 배너 (풀블리드 배경 위 텍스트) ────────────────────────── */

.band { position: relative; isolation: isolate; }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.band__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: color-mix(in oklab, var(--surface) 88%, transparent);
}
.band__inner { position: relative; z-index: 1; padding-block: var(--section-y); display: grid; gap: var(--sp-5); justify-items: start; }

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

.cta { background: var(--accent); color: var(--accent-ink); padding-block: var(--section-y); }
.cta .label { color: color-mix(in oklab, var(--accent-ink) 60%, transparent); }
.cta__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.02; text-transform: uppercase; margin-block: var(--sp-4); }
.cta__lead { color: color-mix(in oklab, var(--accent-ink) 76%, transparent); font-size: var(--fs-md); max-width: 44ch; }
.cta__form { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); max-width: 540px; }
.cta__form input {
  flex: 1 1 240px; padding: var(--sp-4) var(--sp-5);
  background: transparent; border: 1px solid color-mix(in oklab, var(--accent-ink) 34%, transparent);
  color: var(--accent-ink); font-size: var(--fs-sm);
}
.cta__form input::placeholder { color: color-mix(in oklab, var(--accent-ink) 54%, transparent); }
.cta__form .btn--solid { background: var(--brand); color: var(--brand-ink); }
.cta__form .btn--solid:hover { background: var(--accent-ink); color: var(--accent); }
.cta__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: color-mix(in oklab, var(--accent-ink) 60%, transparent); }
.cta :focus-visible { outline-color: var(--accent-ink); }
@media (min-width: 768px) { .cta__title { font-size: var(--fs-4xl); } }

/* ── 갤러리 그리드 ─────────────────────────────────────────── */

.grid-4 { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

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

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 2px solid var(--accent); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand { display: inline-flex; align-items: baseline; gap: var(--sp-2); font-size: var(--fs-md); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); text-transform: uppercase; }
.foot__brand b { color: var(--brand); }
.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-4) 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); } }

/* ============================================================
   ★ 브랜드 마크 · 아이콘 · 인터랙션 보강
   EDT 무드 — 잡지 지면처럼 선이 먼저 반응한다.
   헤어라인이 굵어지고 밑줄이 그어지고 사진이 당겨진다.
   ============================================================ */

/* ── 아이콘 ───────────────────────────────── */
.ico { width: 1em; height: 1em; flex: none; vertical-align: -.125em; }

.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.hero__facts dt { display: flex; align-items: center; gap: var(--sp-2); }
.hero__facts .ico { color: var(--brand); }
/* 홀드를 짚듯 두 번에 나눠 올라갔다 내려온다 */
.hero__facts > div:hover .ico { animation: factTick var(--dur-slow) var(--ease-out) both; }
@keyframes factTick {
  0%   { transform: translateY(0); }
  38%  { transform: translateY(-4px); }
  62%  { transform: translateY(-1px); }
  100% { transform: translateY(-3px); }
}

.feature__list li { align-items: center; }
.feature__list .ico { color: var(--brand); transition: transform var(--dur) var(--ease-out); }
.feature__list li:hover .ico { transform: rotate(-12deg); }

.card__title { display: flex; align-items: flex-start; gap: var(--sp-3); }
.card__title .ico { color: var(--brand); margin-top: .12em; transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .card__title .ico { transform: translateX(3px); }

.cols-2 .h3 { display: flex; align-items: center; gap: var(--sp-3); }
.cols-2 .h3 .ico { color: var(--brand); }

.plan__name { display: flex; align-items: center; gap: var(--sp-3); }
.plan__name .ico { color: var(--brand); transition: transform var(--dur-slow) var(--ease-out); }
.plan:hover .plan__name .ico { transform: rotate(12deg); }

.prose h3 { display: flex; align-items: center; gap: var(--sp-3); }
.prose h3 .ico { color: var(--brand); }

/* ── 브랜드 마크 ────────────────────────────── */
/* 루트 선이 아래에서 위로 한 번 그어지고 정상 홀드가 뒤따라 커진다. */
.nav__logo, .foot__brand { align-items: center; }
.bmark { flex: none; color: var(--accent); }
.bmark .mk-line { transition: transform var(--dur-slow) var(--ease-out); }
.bmark .mk-top { transition: transform var(--dur-slow) var(--ease-out); transform-origin: 24.4px 7.4px; }
.nav__logo:hover .bmark .mk-line,
.foot__brand:hover .bmark .mk-line { animation: markDraw var(--dur-slow) var(--ease-out) both; }
.nav__logo:hover .bmark .mk-top,
.foot__brand:hover .bmark .mk-top { transform: scale(1.22); }
.nav__logo:hover .bmark, .foot__brand:hover .bmark { color: var(--brand); }
.nav__logo .bmark, .foot__brand .bmark { transition: color var(--dur) var(--ease); }

@keyframes markDraw {
  from { opacity: 0; transform: translate(-3px, 4px); }
  to   { opacity: 1; transform: none; }
}

/* ── 내비 ────────────────────────────────── */
.nav__menu a:hover { border-bottom-color: var(--brand); }
.nav__logo b { transition: color var(--dur) var(--ease); }
.nav__logo:hover b { color: var(--accent); }

/* ── 티커 ────────────────────────────────── */
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track i { transition: transform var(--dur) var(--ease-out); }
.ticker:hover .ticker__track i { transform: rotate(45deg); }

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

/* ── 기사형 카드 ──────────────────────────── */
.card__media { overflow: hidden; }
.card__title { transition: color var(--dur) var(--ease); }
.card:hover .card__title { color: var(--brand); }
.card__meta { transition: border-color var(--dur) var(--ease); }
.card:hover .card__meta { border-top-color: var(--accent); }
.card__no { transition: color var(--dur) var(--ease); }
.card:hover .card__no { color: var(--ink-2); }

/* ── 겹침 카드 ────────────────────────────── */
.feature__card { transition: box-shadow var(--dur-slow) var(--ease); }
.feature__card:hover { box-shadow: var(--sh-lg); }
.feature__list li { transition: border-color var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.feature__list li:hover { border-top-color: var(--accent); padding-left: var(--sp-2); }

/* ── 요금 카드 ────────────────────────────── */
.plan { transition: border-color var(--dur) var(--ease), transform var(--dur-slow) var(--ease-out); }
.plan:hover { border-color: var(--accent); transform: translateY(-4px); }
.plan li { transition: color var(--dur) var(--ease); }
.plan li:hover { color: var(--ink); }
.plan li::before { transition: width var(--dur) var(--ease-out); }
.plan li:hover::before { width: 16px; }

/* ── 게시판 ──────────────────────────────── */
.board__row { position: relative; }
.board__row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--brand);
  transition: width var(--dur-slow) var(--ease-out);
}
.board__row:hover::after { width: 100%; }
.board__title { transition: transform var(--dur) var(--ease-out); }
.board__row:hover .board__title { transform: translateX(4px); }
/* 카테고리 라벨이 도장처럼 한 번 찍힌다 */
.board__row:hover .board__cat { animation: catStamp var(--dur) var(--ease-out) both; }
@keyframes catStamp {
  0%   { transform: scale(.88); opacity: .5; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── 갤러리 그리드 ─────────────────────────── */
.grid-4 .img-slot img { transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease); }
.grid-4 .img-slot:hover img { transform: scale(1.06); filter: saturate(1.08); }

/* ── 표 ──────────────────────────────────── */
.tbl tbody tr { transition: background var(--dur) var(--ease); }
.tbl tbody tr:hover { background: var(--surface-alt); }

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

/* ── 푸터 ────────────────────────────────── */
.foot__addr { display: grid; gap: var(--sp-2); line-height: 1.5; }
.foot__addr span { display: flex; align-items: flex-start; gap: var(--sp-3); }
.foot__addr .ico { color: var(--brand); margin-top: .28em; transition: transform var(--dur) var(--ease-out); }
.foot__addr span:hover .ico { transform: translateX(2px); }
.foot__nav a { position: relative; transition: color var(--dur) var(--ease); }
.foot__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.foot__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 형제 계단식 지연 ──────────────────────── */
html.js .cards .reveal:nth-child(2)       { transition-delay: 80ms; }
html.js .cards .reveal:nth-child(3)       { transition-delay: 160ms; }
html.js .cards .reveal:nth-child(4)       { transition-delay: 240ms; }
html.js .stats__grid .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .stats__grid .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .stats__grid .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .grid-4 .reveal:nth-child(2)      { transition-delay: 70ms; }
html.js .grid-4 .reveal:nth-child(3)      { transition-delay: 140ms; }
html.js .grid-4 .reveal:nth-child(4)      { transition-delay: 210ms; }
html.js .cols-2 .reveal:nth-child(2)      { transition-delay: 80ms; }
html.js .cols-2 .reveal:nth-child(3)      { transition-delay: 160ms; }
html.js .cols-2 .reveal:nth-child(4)      { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .bmark .mk-line,
  .foot__brand:hover .bmark .mk-line,
  .board__row:hover .board__cat,
  .hero__facts > div:hover .ico { animation: none; }
  .plan:hover, .stat:hover dd, .board__row:hover .board__title,
  .grid-4 .img-slot:hover img, .card:hover .card__title .ico,
  .feature__list li:hover .ico, .hero__facts > div:hover .ico,
  .plan:hover .plan__name .ico, .ticker:hover .ticker__track i,
  .board__row:hover .board__cat, .hero__facts > div:hover .ico,
  .nav__logo:hover .bmark .mk-top, .foot__brand:hover .bmark .mk-top,
  .btn:hover .btn__arrow, .foot__addr span:hover .ico { transform: none; }
}


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

/* 에디토리얼 — 헤어라인은 늘 있고, hover 시 진해질 뿐이다. 움직이지 않는다. */
.foot__nav a::after { display: none !important; }
.foot__nav a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.foot__nav a:hover { border-bottom-color: var(--ink); color: var(--ink); }
.plan:hover { transform: none; }
.plan:hover { box-shadow: none; }
.kicker, .label { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: var(--ls-base); }

/* ===== 티커 걷어내기 — EDT 무드에 마퀴는 어울리지 않는다 ==========
   내용(실적·목록·인증)은 실제 정보라 유지하고 장치만 바꾼다.
   ================================================================ */
/* 티커 → 매거진 인덱스 줄. 세리프에 가운뎃점. */
.ticker { overflow: visible; }
.ticker__track { animation: none !important; width: auto; flex-wrap: wrap; gap: var(--sp-2) 0; }
.ticker__track > span { font-family: var(--font-serif); }
.ticker__track > span:not(:last-child)::after { content: " · "; opacity: .45; padding-inline: var(--sp-3); }
.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, html.tier-premium h1 { font-feature-settings: "kern" 1; }
html.tier-premium .kicker { letter-spacing: .18em; }
