/* ============================================================
   MFG-CORP-034 · 대성정밀 · CRP 코퍼레이트·신뢰형
   ============================================================ */

:root {
  --brand:       #14509b;
  --brand-ink:   #ffffff;
  --accent:      #0e2c4e;
  --accent-ink:  #ffffff;
  --surface:     #ffffff;
  --surface-alt: #f1f5f9;
  --font-display: var(--font-sans);
  --r: var(--r-sm);
}

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

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

.kicker, .label {
  display: block;
  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.08; }
.h3 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); }
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 48ch; }
.body-sm { font-size: var(--fs-sm); color: var(--ink-2); }

.sec-head { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-7); }
.sec-head--split { align-items: end; }

@media (min-width: 1024px) {
  .sec-head--split { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: var(--sp-8); }
}

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

.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); }
.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--brand); color: var(--brand); }
.btn--ghost { border: 1px solid color-mix(in oklab, var(--accent-ink) 34%, transparent); color: var(--accent-ink); }
.btn--ghost:hover { background: var(--accent-ink); color: var(--accent); }

/* ── 헤더 ──────────────────────────────────────────────────── */
/* 히어로 우측이 어두운 풀블리드 사진이다. 헤더는 항상 배경을 깐다. */

.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);
  transition: box-shadow var(--dur) var(--ease);
}
.nav.is-stuck { box-shadow: var(--sh-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.nav__logo { display: inline-flex; align-items: baseline; gap: var(--sp-2); margin-right: auto; }
.nav__logo b { font-size: var(--fs-lg); font-weight: var(--fw-black); letter-spacing: var(--ls-tighter); }
.nav__logo span {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav__menu { display: none; gap: var(--sp-6); }
.nav__menu a { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-2); }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--brand); }
.nav__cta { display: none; }

/* 모바일 메뉴 — details 기반이라 JS 없이도 열린다 */
.nav__more { position: relative; }
.nav__more summary {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  cursor: pointer;
  list-style: none;
}
.nav__more summary::-webkit-details-marker { display: none; }
.nav__more summary i {
  width: 14px; height: 9px;
  background:
    linear-gradient(var(--ink), var(--ink)) top / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom / 100% 1px no-repeat;
}
.nav__more[open] summary i { background: linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat; }
.nav__panel {
  position: absolute;
  right: 0;
  top: calc(100% + var(--sp-3));
  width: min(78vw, 260px);
  display: grid;
  padding: var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
}
.nav__panel a { padding: var(--sp-3); font-size: var(--fs-sm); border-radius: var(--r); }
.nav__panel a:hover { background: var(--surface-alt); color: var(--brand); }

@media (min-width: 1024px) {
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__more { display: none; }
}

/* ── 히어로 ────────────────────────────────────────────────── */

/* 모바일(375px)에서는 헤드라인·리드·CTA·이미지를 세로로 쌓으면 100svh 를 넘긴다.
   SPEC 8절 v1.2/v1.3 대로 이미지를 배경으로 깔고, --surface 톤의 밝은 스크림 위에
   기존 본문 색을 그대로 쓴다(어두운 스크림 + 흰 글자 금지).
   --header-h 는 고정 헤더가 히어로를 덮는 높이 — :root 가 아닌 로컬 스코프에 둔다. */
.hero {
  --header-h: 64px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + var(--sp-5));
}

.hero__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-5);
  padding-inline: var(--gutter);
  padding-block: var(--sp-7) var(--sp-7);
}

.hero__title { font-size: var(--fs-4xl); line-height: 1.02; 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: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.hero__spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.hero__spec div { min-width: 0; padding-top: var(--sp-4); padding-right: var(--sp-4); }
.hero__spec dt { font-size: var(--fs-xs); color: var(--ink-3); margin-bottom: var(--sp-1); }
/* 375px 에서 3칸 그리드에 ±0.005mm 가 5px 넘쳤다. 모바일에서만 한 단계 줄인다. */
.hero__spec dd { font-size: var(--fs-md); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
@media (min-width: 768px) { .hero__spec dd { font-size: var(--fs-lg); } }

/* 모바일: 이미지를 히어로 전체 배경으로 */
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
/* 밝은 스크림 — 상단부 합성 밝기를 고정해 본문 대비비를 구조적으로 보장하고
   사진은 하단부에 남긴다 (SPEC 8절 ★v1.3) */
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--surface) 95%, transparent) 0%,
    color-mix(in oklab, var(--surface) 90%, transparent) 46%,
    color-mix(in oklab, var(--surface) 34%, transparent) 100%);
}

/* 이미지 위로 겹쳐 올라오는 인증 칩 */
.hero__badge {
  position: absolute;
  left: var(--gutter);
  bottom: var(--sp-5);
  z-index: 3;
  display: grid;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-5);
  background: color-mix(in oklab, var(--surface) 94%, transparent);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--brand);
}
.hero__badge b { font-size: var(--fs-sm); letter-spacing: var(--ls-tight); }
.hero__badge span { font-size: var(--fs-xs); color: var(--ink-3); }
.hero__badge { display: none; }

@media (min-width: 1024px) {
  /* 데스크탑: 오버레이를 풀고 2단 분할로 되돌린다 */
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 50%); padding-top: 0; }
  .hero__text {
    padding-block: var(--sp-10) var(--sp-8);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding-right: var(--sp-8);
  }
  .hero__title { font-size: var(--fs-4xl); }
  .hero__media { position: relative; inset: auto; min-height: 100svh; }
  .hero__media::after { content: none; }
  .hero__badge { display: grid; left: calc(var(--sp-6) * -1); bottom: var(--sp-8); }
}

/* ── 지표 밴드 (헤어라인 그리드 + 큰 숫자) ─────────────────── */

.stats { border-bottom: 1px solid var(--line); background: var(--surface); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.stat { padding-block: var(--sp-6); padding-right: var(--sp-5); border-top: 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); color: var(--ink-3); margin-bottom: var(--sp-2); }
.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: 2px; }

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

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

.ticker { overflow: hidden; background: var(--accent); padding-block: var(--sp-3); }
.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-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent-ink) 78%, transparent);
  white-space: nowrap;
}
.ticker__track i { width: 4px; height: 4px; background: var(--brand); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ── 사업 영역 (비대칭 2단 + 스티키) ───────────────────────── */

.biz__inner { display: grid; gap: var(--sp-7); }
.biz__head { display: grid; gap: var(--sp-4); align-content: start; }
.biz__list { display: grid; gap: var(--sp-6); }

.card { display: grid; gap: var(--sp-4); }
.card__media { border-radius: var(--r); }
.card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: var(--brand);
}
.card h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.card p { font-size: var(--fs-sm); color: var(--ink-2); }
.card ul { display: grid; gap: var(--sp-2); padding-top: var(--sp-3); border-top: 1px solid var(--line); }
.card li { position: relative; padding-left: var(--sp-4); font-size: var(--fs-sm); color: var(--ink-2); }
.card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 1px; background: var(--brand); }

@media (min-width: 768px) { .biz__list { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
@media (min-width: 1024px) {
  .biz__inner { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: var(--sp-9); }
  .biz__head { position: sticky; top: var(--sp-9); }
}

/* ── 설비 (풀블리드 + 겹침 카드) ───────────────────────────── */

.facility { position: relative; padding-bottom: var(--section-y); }
.facility__media { border-radius: 0; aspect-ratio: 4 / 5; }
.facility__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);
}
.facility__list { display: grid; gap: var(--sp-3); }
.facility__list li {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.facility__list b { color: var(--ink); font-weight: var(--fw-semibold); }

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

/* ── 공정 (큰 숫자) ────────────────────────────────────────── */

.flow__list { display: grid; gap: var(--sp-6); }
.flow__item { display: grid; gap: var(--sp-3); padding-top: var(--sp-5); border-top: 2px solid var(--brand); }
.flow__num { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tighter); line-height: 1; color: var(--brand); }
.flow__item h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.flow__item p { font-size: var(--fs-sm); color: var(--ink-2); }

@media (min-width: 768px) { .flow__list { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

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

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

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

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

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

.cta { background: var(--accent); color: var(--accent-ink); padding-block: var(--section-y); }
.cta__inner { display: grid; gap: var(--sp-5); }
.cta__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
.cta__lead { font-size: var(--fs-md); color: color-mix(in oklab, var(--accent-ink) 72%, transparent); max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.cta .btn--solid { background: var(--brand-ink); color: var(--accent); }
.cta .btn--solid:hover { background: var(--brand); color: var(--brand-ink); }

@media (min-width: 1024px) {
  .cta__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); align-items: end; }
  .cta__title { font-size: var(--fs-4xl); }
}

/* ── 페이지 헤드 (서브페이지) ──────────────────────────────── */

.page-head {
  padding-top: calc(var(--sp-10) + var(--sp-5));
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}
.page-head__inner { display: grid; gap: var(--sp-4); }
.page-head h1 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
.crumb { display: flex; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--ink-3); }
.crumb a:hover { color: var(--brand); }

@media (min-width: 1024px) {
  .page-head__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); align-items: end; gap: var(--sp-8); }
  .page-head h1 { font-size: var(--fs-4xl); }
}

/* ── 연혁 ──────────────────────────────────────────────────── */

.timeline { display: grid; gap: 0; }
.timeline__row { display: grid; gap: var(--sp-2); padding-block: var(--sp-5); border-top: 1px solid var(--line); }
.timeline__row:last-child { border-bottom: 1px solid var(--line); }
.timeline__year { font-size: var(--fs-lg); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); color: var(--brand); }
.timeline__row ul { display: grid; gap: var(--sp-2); }
.timeline__row li { font-size: var(--fs-sm); color: var(--ink-2); }

@media (min-width: 768px) {
  .timeline__row { grid-template-columns: 160px minmax(0, 1fr); gap: var(--sp-6); align-items: start; }
}

/* ── 지표 바 차트 (품질) ───────────────────────────────────── */

.bars { display: grid; gap: var(--sp-4); }
.bar { display: grid; gap: var(--sp-2); }
.bar__head { display: flex; justify-content: space-between; font-size: var(--fs-sm); }
.bar__head b { font-weight: var(--fw-semibold); }
.bar__head span { color: var(--ink-3); font-family: var(--font-mono); }
.bar__track { height: 10px; background: var(--surface-alt); border-radius: var(--r-full); overflow: hidden; }
.bar__fill { height: 100%; background: var(--brand); border-radius: var(--r-full); }

/* ── 폼 ────────────────────────────────────────────────────── */

.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: var(--sp-2); }
.field label { font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.field input, .field select, .field textarea {
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
}
.field textarea { min-height: 9em; resize: vertical; }
.field small { font-size: var(--fs-xs); color: var(--ink-3); }
.form__row { display: grid; gap: var(--sp-5); }
.form__note { font-size: var(--fs-xs); color: var(--ink-3); }

@media (min-width: 768px) { .form__row { grid-template-columns: 1fr 1fr; } }

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

.qa { border-top: 1px solid var(--line); }
.qa:last-of-type { 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: 13px; height: 13px; 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: 66ch; }

/* ── 2단 본문 ──────────────────────────────────────────────── */

.split { display: grid; gap: var(--sp-6); }
@media (min-width: 1024px) { .split { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: var(--sp-9); align-items: start; } }
.split__aside { display: grid; gap: var(--sp-4); align-content: start; }
@media (min-width: 1024px) { .split__aside { position: sticky; top: var(--sp-9); } }

.prose { display: grid; gap: var(--sp-5); }
.prose p { font-size: var(--fs-md); color: var(--ink-2); max-width: 60ch; }

/* ── 정보 그리드 ───────────────────────────────────────────── */

.info { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.info > div { padding-block: var(--sp-5); border-bottom: 1px solid var(--line); }
.info dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); margin-bottom: var(--sp-2); }
.info dd { font-size: var(--fs-sm); color: var(--ink-2); }

@media (min-width: 768px) {
  .info { grid-template-columns: repeat(2, 1fr); }
  .info > div { padding-right: var(--sp-6); }
  .info > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: var(--sp-6); }
  .info > div:nth-child(even) { padding-left: var(--sp-6); }
}

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

.foot { padding-block: var(--sp-8) var(--sp-6); background: var(--surface-alt); border-top: 1px solid var(--line); }
.foot__inner { display: grid; gap: var(--sp-6); }
.foot__brand b { display: block; font-size: var(--fs-lg); font-weight: var(--fw-black); letter-spacing: var(--ls-tighter); }
.foot__brand p { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--ink-2); max-width: 34ch; }
.foot__col h3 { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); margin-bottom: var(--sp-4); }
.foot__col a, .foot__col p { display: block; font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: var(--sp-2); }
.foot__col a:hover { color: var(--brand); }
.foot__copy {
  grid-column: 1 / -1;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-strong);
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

@media (min-width: 768px) { .foot__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-7); } }

/* 그리드/플렉스 아이템이 콘텐츠 폭에 밀려 가로 스크롤을 만들지 않게 한다 */
.stat, .kpi, .step, .tile, .job, .index-row, .entry, .amen__row, .sched__row,
.access__item, .flow__item, .hub, .work, .card, .timeline__row { min-width: 0; }

/* ============================================================
   ★ 브랜드 마크 · 아이콘 · 인터랙션 (SPEC 4-C)
   9절의 "장치 최소 3개"는 구조의 하한이고 이건 반응의 하한이다.
   ============================================================ */

/* ── 브랜드 마크 — 측정 원점(모서리 브래킷 + 데이텀 사각) ──────
   currentColor 로 그렸으므로 푸터·다크 섹션에서 부모 color 만 바꾸면 된다. */
.nav__mark {
  flex: none;
  align-self: center;
  display: inline-block;
  vertical-align: middle;
  width: 26px; height: 26px;
  color: var(--brand);
  background: none; border: 0; border-radius: 0; box-shadow: none;
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur) var(--ease);
}
.foot__brand b { display: flex; align-items: center; gap: var(--sp-3); }
.foot__brand .nav__mark { width: 22px; height: 22px; }
.nav__logo b { transition: color var(--dur) var(--ease); }
.nav__logo:hover .nav__mark { transform: rotate(90deg); }
.nav__logo:hover b { color: var(--brand); }
.foot__brand:hover .nav__mark { transform: rotate(-90deg); color: var(--accent); }

/* ── 아이콘 ─────────────────────────────────────────────────── */
.ico { width: 1em; height: 1em; flex: none; display: inline-block; vertical-align: -0.125em; }
.stat dt .ico {
  font-size: var(--fs-sm); margin-right: var(--sp-2); color: var(--brand);
  transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease);
}
.stat:hover dt .ico { transform: translateY(-2px) scale(1.1); color: var(--accent); }
.foot__col p .ico { margin-right: var(--sp-2); color: var(--brand); }
.btn__arrow { font-size: 1.25em; margin-left: 1px; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── 내비게이션 — 밑줄이 한쪽에서 그어진다 ───────────────────── */
.nav__menu a { position: relative; padding-block: 2px; transition: color var(--dur) var(--ease); }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__more summary { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.nav__more summary:hover { border-color: var(--brand); background: var(--surface-alt); }
.nav__panel a { transition: background var(--dur) var(--ease), color var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.nav__panel a:hover { padding-left: var(--sp-4); }

/* ── 히어로 ─────────────────────────────────────────────────── */
.hero__spec dd { transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.hero__spec div:hover dd { color: var(--brand); transform: translateY(-2px); }
.hero__badge { transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease); }
.hero__badge:hover { transform: translateX(5px); box-shadow: var(--sh-md); }

/* ── 지표 밴드 ──────────────────────────────────────────────── */
.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: translateY(-2px); }

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

/* ── 사업 카드 — 들어올려지고 사진이 당겨진다 ───────────────── */
.card { transition: transform var(--dur) var(--ease-out); }
.card:hover { transform: translateY(-6px); }
.card__media img { transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .card__media img { transform: scale(1.06); }
.card h3 { transition: color var(--dur) var(--ease); }
.card:hover h3 { color: var(--brand); }
.card ul { transition: border-color var(--dur) var(--ease); }
.card:hover ul { border-top-color: var(--brand); }
.card li::before { transition: width var(--dur) var(--ease-out); }
.card:hover li::before { width: 14px; }

/* ── 설비 목록 — 행이 밀려나온다 ────────────────────────────── */
.facility__list li { transition: padding-left var(--dur) var(--ease-out), border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.facility__list li:hover { padding-left: var(--sp-3); border-top-color: var(--brand); color: var(--ink); }
.facility__card { transition: box-shadow var(--dur) var(--ease); }
.facility__card:hover { box-shadow: var(--sh-lg); }

/* ── 공정 — 상단 선이 차오른다 ──────────────────────────────── */
.flow__item { position: relative; transition: transform var(--dur) var(--ease-out); }
.flow__item::before {
  content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width var(--dur-slow) var(--ease-out);
}
.flow__item:hover { transform: translateY(-4px); }
.flow__item:hover::before { width: 100%; }
.flow__num { transition: color var(--dur) var(--ease); }
.flow__item:hover .flow__num { color: var(--accent); }

/* ── 표 · 연혁 · 정보 ───────────────────────────────────────── */
.tbl tbody tr { transition: background var(--dur) var(--ease); }
.tbl tbody tr:hover { background: var(--surface-alt); }
.timeline__row { transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.timeline__row:hover { background: var(--surface-alt); padding-left: var(--sp-4); }
.timeline__year { transition: color var(--dur) var(--ease); }
.timeline__row:hover .timeline__year { color: var(--accent); }
.info > div { transition: background var(--dur) var(--ease); }
.info > div:hover { background: var(--surface-alt); }

/* ── 품질 바 — 화면에 들어오면 차오른다 ─────────────────────── */
html.js .bar__fill { transform-origin: left; animation: barGrow var(--dur-slow) var(--ease-out) both; }
.bar__fill { transition: filter var(--dur) var(--ease); }
.bar:hover .bar__fill { filter: saturate(1.5); }
.bar__track { transition: box-shadow var(--dur) var(--ease); }
.bar:hover .bar__track { box-shadow: inset 0 0 0 1px var(--line-strong); }

/* ── 폼 · FAQ ───────────────────────────────────────────────── */
.field input, .field select, .field textarea {
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 18%, transparent);
}
.qa summary { transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.qa summary:hover { padding-left: var(--sp-2); }
.qa[open] p { animation: qaOpen var(--dur) var(--ease-out) both; }

/* ── CTA — 화살표와 함께 광택이 지나간다 ────────────────────── */
.cta .btn--solid { position: relative; overflow: hidden; }
.cta .btn--solid::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 36%;
  background: linear-gradient(100deg, transparent,
              color-mix(in oklab, var(--brand) 40%, transparent), transparent);
  transform: translateX(-140%); pointer-events: none;
}
.cta .btn--solid:hover::after { animation: sheen 760ms var(--ease-out); }

/* ── 푸터 링크 ──────────────────────────────────────────────── */
.foot__col a { position: relative; }
.foot__col a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.foot__col a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */
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 .biz__list .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .biz__list .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .flow__list .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .flow__list .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .flow__list .reveal:nth-child(4) { transition-delay: 240ms; }

@keyframes qaOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes barGrow { from { transform: scaleX(0); } to { transform: none; } }
@keyframes sheen { from { transform: translateX(-140%); } to { transform: translateX(320%); } }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  html.js .bar__fill { animation: none; }
  .cta .btn--solid:hover::after { animation: none; }
  .nav__logo:hover .nav__mark, .foot__brand:hover .nav__mark,
  .stat:hover dd, .stat:hover dt .ico, .card:hover, .flow__item:hover,
  .hero__spec div:hover dd, .hero__badge:hover, .card:hover .card__media img,
  .btn:hover .btn__arrow { transform: none; }
}


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

/* 코퍼레이트 — 밑줄이 애니메이션 없이 즉시 나타난다. 신뢰형에는 절제가 맞다. */
.nav__menu a::after, .foot__col a::after { display: none !important; }
.foot__col a, .nav__menu a { border-bottom: 2px solid transparent; padding-bottom: 2px; }
.foot__col a, .nav__menu a:hover { border-bottom-color: var(--brand); }
.stat:hover dt .ico, .hero__spec div:hover dd, .stat:hover dd, .card:hover, .flow__item:hover { transform: none; }
.stat:hover dt .ico, .hero__spec div:hover dd, .stat:hover dd, .card:hover, .flow__item:hover { box-shadow: 0 2px 10px color-mix(in oklab, var(--ink) 8%, transparent); }


/* ===== 티커 걷어내기 — CRP 무드에 마퀴는 어울리지 않는다 ==========
   내용(실적·목록·인증)은 실제 정보라 유지하고 장치만 바꾼다.
   ================================================================ */
/* 티커 → 격자. 실적·지점 목록은 흐르는 것보다 표로 보이는 게 신뢰를 만든다. */
.ticker { overflow: visible; }
.ticker__track {
  animation: none !important; width: auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--line);
}
.ticker__track > span { background: var(--surface); padding: var(--sp-3) var(--sp-4); }
.ticker__track > i { display: none; }
@media (min-width: 768px) { .ticker__track { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .btn--solid { letter-spacing: .08em; text-transform: uppercase; font-size: .92em; }
