@import url("./tokens.css");

/* ==========================================================================
   한성활자연구소 — editorial-archival. 글자가 상품.
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--surface);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

:where(h1, h2, h3) {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h2 {
  font-size: var(--step-2);
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-1);
}
:where(p, li, dd, dt, th, td, figcaption) {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: var(--leading-normal);
  text-wrap: pretty;
}

.muted {
  color: var(--ink-muted);
}
a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: var(--space-3) var(--space-4);
  z-index: 100;
}
.skip:focus {
  left: 0;
}

.wrap {
  width: min(100% - 2 * var(--pad-inline), var(--container));
  margin-inline: auto;
}

/* ── 헤더 ─────────────────────────────────────────────────────────────── */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}
.wordmark {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-decoration: none;
}
.nav {
  display: flex;
  gap: clamp(var(--space-3), 2vw, var(--space-5));
  font-size: var(--step--1);
}
.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-quick) var(--ease-soft),
    border-color var(--dur-quick) var(--ease-soft);
}
.nav a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

/* ── 스페시멘 히어로 ──────────────────────────────────────────────────── */

.hero {
  padding-block: var(--space-7) var(--space-8);
}
.hero-kicker {
  font-size: var(--step--1);
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.hero-glyph {
  font-size: clamp(11rem, 24vw, 22rem);
  line-height: 0.95;
  margin-top: var(--space-4);
  position: relative;
}
/* 인주각 — 글리프 옆에 찍히는 도장 */
.hero-glyph::after {
  content: "";
  position: absolute;
  right: 0.12em;
  bottom: 0.18em;
  width: 0.11em;
  height: 0.11em;
  background: var(--accent);
}
.hero-side {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--space-5) var(--space-7);
  align-items: start;
}
.hero-statement {
  max-width: 32em;
}
.hero-facts {
  display: grid;
  gap: var(--space-3);
  border-left: 1px solid var(--line);
  padding-left: var(--space-5);
}
.hero-facts dt {
  font-size: var(--step--1);
  color: var(--ink-faint);
}
.hero-facts dd {
  margin-top: 2px;
  font-weight: 500;
}

/* ── 섹션 공통 ────────────────────────────────────────────────────────── */

.section {
  padding-block: var(--space-8);
}
.band {
  background: var(--surface-raised);
  border-block: 1px solid var(--line);
}

/* ── 활자 두 종 ───────────────────────────────────────────────────────── */

.typeface + .typeface {
  margin-top: var(--space-6);
}
.typeface-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: var(--space-3);
}
.typeface-head .muted {
  font-size: var(--step--1);
}
.specimen {
  margin-top: var(--space-4);
  font-size: 1.1875rem;
  line-height: 1.9;
  max-width: 46em;
}
.specimen-display {
  font-size: clamp(1.75rem, 1.2rem + 3vw, 3.25rem);
  line-height: 1.45;
  max-width: 22em;
  font-weight: 600;
}

/* ── 조판 시험대 ──────────────────────────────────────────────────────── */

.bench-lead {
  max-width: 36em;
  margin-top: var(--space-3);
}
.bench {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--space-5) var(--space-7);
  align-items: start;
}
.bench-controls {
  display: grid;
  gap: var(--space-4);
}
.control label {
  display: flex;
  justify-content: space-between;
  font-size: var(--step--1);
  color: var(--ink-muted);
}
.control output {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.btn-reset {
  justify-self: start;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-size: var(--step--1);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: border-color var(--dur-quick) var(--ease-soft),
    color var(--dur-quick) var(--ease-soft);
}
.btn-reset:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.bench-sample {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-5);
  max-width: 46em;
}

/* ── 활자 케이스 ──────────────────────────────────────────────────────── */

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-6) var(--space-7);
  align-items: start;
}
.case-photo img,
.case-photo-b img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.case-photo figcaption,
.case-photo-b figcaption {
  font-size: var(--step--1);
  color: var(--ink-faint);
  margin-top: var(--space-2);
}
.case-text h2 {
  margin-bottom: var(--space-4);
}
.case-photo-b {
  margin-top: var(--space-5);
  max-width: 34rem;
}

/* ── 구입 ─────────────────────────────────────────────────────────────── */

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto;
  gap: var(--space-5) var(--space-7);
  align-items: start;
}
.order-grid .muted {
  margin-top: var(--space-3);
  max-width: 26em;
}
.order-rows {
  border-top: 1px solid var(--line);
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.order-row p {
  font-size: var(--step--1);
  color: var(--ink-muted);
  margin-top: 2px;
}
.order-price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  white-space: nowrap;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--dur-quick) var(--ease-soft);
}
.btn:hover {
  background: var(--accent-hover);
}

/* ── 푸터 ─────────────────────────────────────────────────────────────── */

.site-foot {
  border-top: 1px solid var(--line);
  padding-block: var(--space-5);
  font-size: var(--step--1);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3) var(--space-5);
  flex-wrap: wrap;
}

/* ── 등장 모션 ────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  translate: 0 12px;
  transition: opacity var(--dur-normal) var(--ease-soft),
    translate var(--dur-normal) var(--ease-soft);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}

/* ── 반응형 ───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-side,
  .bench,
  .case-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .case-photo {
    max-width: 24rem;
  }
  .hero,
  .section {
    padding-block: var(--space-6);
  }
}
@media (max-width: 560px) {
  .head-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }
  .nav {
    width: 100%;
    justify-content: space-between;
  }
  .order-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }
}
