/* ============================================================================
   app.css — 프런트엔드 기본 스타일 + 컴포넌트
   tokens.css 의 변수만 참조한다. 색·간격을 여기에 직접 쓰지 말 것.
   ========================================================================== */

/* ---------- 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;      /* 한글 단어 중간에서 줄이 끊기지 않게 */
  overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p, ul, ol, dl, figure, blockquote, pre { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--brand-strong); }

img, svg, video { max-width: 100%; height: auto; display: block; }
hr { border: 0; border-top: var(--border); margin: var(--space-6) 0; }
small { font-size: var(--text-sm); }

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

/* 스크린리더 전용 + 건너뛰기 링크 */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: var(--z-toast);
  background: var(--brand); color: var(--on-brand); padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: var(--space-4); color: var(--on-brand); }

/* ---------- 레이아웃 ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); }
.section--flush { padding-block: 0; }

.stack > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-6); }

.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.cluster--between { justify-content: space-between; }
.cluster--end { justify-content: flex-end; }

.split { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }

/* ---------- 섹션 헤더 ---------- */
.section-head { max-width: 62ch; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; margin-bottom: var(--space-2);
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--brand);
}
.section-head p { margin-top: var(--space-3); color: var(--ink-2); font-size: var(--text-lg); }

/* ---------- 버튼 ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-brand);
  --btn-border: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.75em 1.5em;
  min-height: 44px;                       /* 터치 타깃 확보 */
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: var(--weight-medium); line-height: 1;
  text-align: center; cursor: pointer;
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease), background var(--duration) var(--ease);
}
.btn:hover { color: var(--btn-fg); filter: brightness(0.94); }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn.is-loading { opacity: 0.55; pointer-events: none; }

.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--surface-3); filter: none; }
.btn--soft    { --btn-bg: var(--brand-soft); --btn-fg: var(--brand); }
.btn--accent  { --btn-bg: var(--accent); --btn-fg: #06231a; }
.btn--danger  { --btn-bg: var(--danger); --btn-fg: #fff; }
.btn--link    { --btn-bg: transparent; --btn-fg: var(--brand); min-height: 0; padding: 0; }
.btn--sm { padding: 0.5em 1em; min-height: 36px; font-size: var(--text-sm); }
.btn--lg { padding: 0.9em 2em; min-height: 52px; font-size: var(--text-lg); }
.btn--block { width: 100%; }

/* ---------- 카드 ---------- */
.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: var(--border); border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-3); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.card--link:hover .card__media img { transform: scale(1.04); }
.card__media--tall { aspect-ratio: 3 / 4; }
.card__body { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-5); flex: 1; }
.card__title { font-size: var(--text-lg); font-weight: var(--weight-bold); line-height: var(--leading-snug); color: var(--ink); }
.card__text { color: var(--ink-2); font-size: var(--text-sm); }
.card__meta { margin-top: auto; padding-top: var(--space-3); color: var(--ink-3); font-size: var(--text-xs); display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- 배지 / 태그 ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.3em 0.7em; border-radius: var(--radius-full);
  background: var(--brand-soft); color: var(--brand);
  font-size: var(--text-xs); font-weight: var(--weight-medium); line-height: 1.4;
}
.badge--muted  { background: var(--surface-3); color: var(--ink-2); }
.badge--ok     { background: color-mix(in srgb, var(--ok) 14%, transparent); color: var(--ok); }
.badge--warn   { background: color-mix(in srgb, var(--warn) 16%, transparent); color: var(--warn); }
.badge--danger { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }

/* ---------- 폼 ---------- */
.field { display: block; margin-bottom: var(--space-4); }
.field__label { display: block; margin-bottom: var(--space-2); font-size: var(--text-sm); font-weight: var(--weight-medium); }
.field__label .req { color: var(--danger); margin-left: 2px; }
.field__hint { margin-top: var(--space-2); color: var(--ink-3); font-size: var(--text-xs); }
.field__error { margin-top: var(--space-2); color: var(--danger); font-size: var(--text-xs); }

.input, .textarea, .select {
  width: 100%; padding: 0.7em 0.9em; min-height: 46px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font: inherit; line-height: 1.5;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-ring);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-3); }
.textarea { min-height: 160px; resize: vertical; }
.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--danger); }

.check { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--brand); flex: none; }

.field-row { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }

/* 허니팟: 사람 눈에 안 보이게 */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- 알림 ---------- */
.alert {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-4); border-radius: var(--radius-sm);
  border-left: 4px solid var(--info);
  background: color-mix(in srgb, var(--info) 8%, var(--surface));
  font-size: var(--text-sm);
}
.alert--success { border-color: var(--ok);     background: color-mix(in srgb, var(--ok) 10%, var(--surface)); }
.alert--error   { border-color: var(--danger); background: color-mix(in srgb, var(--danger) 10%, var(--surface)); }
.alert--warn    { border-color: var(--warn);   background: color-mix(in srgb, var(--warn) 12%, var(--surface)); }

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: var(--space-5); min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: var(--space-3); font-weight: var(--weight-bold); font-size: var(--text-lg); color: var(--ink); letter-spacing: var(--tracking-tight); }
.brand img { max-height: 36px; width: auto; }
.brand:hover { color: var(--ink); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--space-1); list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  color: var(--ink-2); font-size: var(--text-sm); font-weight: var(--weight-medium);
}
.nav__link:hover { color: var(--ink); background: var(--surface-3); }
.nav__link.is-active { color: var(--brand); }

.nav__sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 190px;
  list-style: none; margin: 0; padding: var(--space-2);
  background: var(--surface); border: var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--duration) var(--ease);
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: none; }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.lang-switch { display: flex; gap: 2px; padding: 3px; background: var(--surface-3); border-radius: var(--radius-full); }
.lang-switch a {
  padding: 0.3em 0.75em; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: var(--weight-medium); color: var(--ink-2);
}
.lang-switch a.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-1); }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav-toggle span { margin: 0 auto; position: relative; }
.nav-toggle span::before { content: ''; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ''; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav { position: fixed; inset: var(--header-h) 0 auto; margin: 0; background: var(--surface); border-bottom: var(--border);
         transform: translateY(-120%); transition: transform var(--duration) var(--ease); max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; padding: var(--space-4) var(--gutter) var(--space-6); gap: 0; }
  .nav__link { padding: var(--space-4) 0; border-bottom: var(--border); font-size: var(--text-md); border-radius: 0; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 var(--space-4); }
  .header-actions .lang-switch { order: -1; }
}

/* ---------- 히어로 ---------- */
.hero { position: relative; padding-block: clamp(3.5rem, 9vw, 8rem); overflow: hidden; }
.hero--tint { background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
.hero__inner { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 900px) { .hero__inner--split { grid-template-columns: 1.05fr 0.95fr; } }
.hero__title { font-size: var(--text-4xl); }
.hero__text { margin-top: var(--space-4); max-width: 54ch; color: var(--ink-2); font-size: var(--text-lg); }
.hero__actions { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-3); aspect-ratio: 4 / 3; object-fit: cover; }

/* 페이지 상단 타이틀 바 */
.page-head { padding-block: clamp(2.5rem, 6vw, 5rem); background: var(--surface-2); border-bottom: var(--border); }
.page-head h1 { font-size: var(--text-3xl); }
.page-head p { margin-top: var(--space-3); color: var(--ink-2); max-width: 60ch; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; margin: 0 0 var(--space-4); padding: 0; font-size: var(--text-xs); color: var(--ink-3); }
.breadcrumb li + li::before { content: '/'; margin-right: var(--space-2); color: var(--line-strong); }
.breadcrumb a { color: var(--ink-3); }

/* ---------- 기능 소개 ---------- */
.feature { padding: var(--space-5); border-radius: var(--radius); background: var(--surface); border: var(--border); height: 100%; }
.feature__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: var(--space-4);
  border-radius: var(--radius-sm); background: var(--brand-soft); color: var(--brand); font-size: var(--text-xl);
}
.feature h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.feature p { color: var(--ink-2); font-size: var(--text-sm); }

.stat { text-align: center; }
.stat__value { font-size: var(--text-3xl); font-weight: var(--weight-bold); color: var(--brand); line-height: 1.1; }
.stat__label { color: var(--ink-2); font-size: var(--text-sm); margin-top: var(--space-2); }

/* ---------- 본문(prose) : 관리자가 작성한 HTML 이 들어오는 영역 ---------- */
.prose { max-width: 72ch; color: var(--ink); line-height: var(--leading-body); }
.prose > * + * { margin-top: var(--space-4); }
.prose h2 { font-size: var(--text-2xl); margin-top: var(--space-7); }
.prose h3 { font-size: var(--text-xl); margin-top: var(--space-6); }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li + li { margin-top: var(--space-2); }
.prose img { border-radius: var(--radius); margin-inline: auto; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin-inline: 0; padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--brand); background: var(--surface-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-2);
}
.prose pre { padding: var(--space-4); background: var(--surface-3); border-radius: var(--radius-sm); overflow-x: auto; font-family: var(--font-mono); font-size: var(--text-sm); }
.prose code { font-family: var(--font-mono); font-size: 0.9em; background: var(--surface-3); padding: 0.15em 0.4em; border-radius: 4px; }
.prose pre code { background: none; padding: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.prose th, .prose td { padding: var(--space-3); border: var(--border); text-align: left; }
.prose th { background: var(--surface-2); }
.prose figure figcaption { margin-top: var(--space-2); color: var(--ink-3); font-size: var(--text-sm); text-align: center; }

/* ---------- 필터 탭 ---------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.filter {
  padding: 0.5em 1.1em; border-radius: var(--radius-full);
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); font-size: var(--text-sm); font-weight: var(--weight-medium);
}
.filter:hover { border-color: var(--line-strong); color: var(--ink); }
.filter.is-active { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }

/* ---------- 목록 ---------- */
.post-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.post-list__item { border-bottom: var(--border); }
.post-list__link { display: flex; gap: var(--space-5); align-items: baseline; padding: var(--space-5) var(--space-2); color: var(--ink); }
.post-list__link:hover { background: var(--surface-2); color: var(--brand); }
.post-list__title { flex: 1; font-weight: var(--weight-medium); }
.post-list__meta { color: var(--ink-3); font-size: var(--text-sm); white-space: nowrap; }

.empty { padding: var(--space-8) var(--space-4); text-align: center; color: var(--ink-3); }
.empty__icon { font-size: 2.5rem; margin-bottom: var(--space-3); opacity: 0.5; }

/* ---------- 페이지네이션 ---------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); margin-top: var(--space-7); }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  padding-inline: var(--space-2); border-radius: var(--radius-sm);
  border: 1px solid var(--line); color: var(--ink-2); font-size: var(--text-sm);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .is-active { background: var(--brand); border-color: var(--brand); color: var(--on-brand); font-weight: var(--weight-medium); }
.pagination .is-gap { border: 0; }

/* ---------- 갤러리 ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: var(--space-3); }
.gallery a { display: block; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-3); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery a:hover img { transform: scale(1.05); }

/* 라이트박스 */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  display: none; place-items: center; padding: var(--gutter);
  background: rgba(8, 10, 14, 0.92);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; width: auto; border-radius: var(--radius-sm); }
.lightbox__close { position: absolute; top: var(--space-4); right: var(--space-4); width: 44px; height: 44px; border: 0; border-radius: var(--radius-full); background: rgba(255,255,255,0.15); color: #fff; font-size: 1.4rem; cursor: pointer; }

/* ---------- 문의 정보 ---------- */
.contact-info { display: grid; gap: var(--space-4); }
.contact-info__row { display: flex; gap: var(--space-4); align-items: flex-start; padding-bottom: var(--space-4); border-bottom: var(--border); }
.contact-info__label { flex: none; width: 88px; color: var(--ink-3); font-size: var(--text-sm); }
.contact-info__value { color: var(--ink); font-weight: var(--weight-medium); }

/* ---------- CTA 밴드 ---------- */
.cta-band {
  padding-block: var(--section-y);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--on-brand); text-align: center;
}
.cta-band h2 { color: var(--on-brand); }
.cta-band p { margin-top: var(--space-3); color: color-mix(in srgb, var(--on-brand) 82%, transparent); font-size: var(--text-lg); }
.cta-band .btn { --btn-bg: var(--surface); --btn-fg: var(--brand); margin-top: var(--space-6); }

/* ---------- 푸터 ---------- */
.site-footer { padding-block: var(--space-8) var(--space-6); background: var(--surface-2); border-top: var(--border); font-size: var(--text-sm); color: var(--ink-2); }
.site-footer__grid { display: grid; gap: var(--space-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.site-footer h4 { font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--ink); margin-bottom: var(--space-3); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: var(--space-2); }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--brand); }
.site-footer__bottom { margin-top: var(--space-7); padding-top: var(--space-5); border-top: var(--border); display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; color: var(--ink-3); font-size: var(--text-xs); }
.sns { display: flex; gap: var(--space-2); }
.sns a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--radius-full); background: var(--surface-3); color: var(--ink-2); }
.sns a:hover { background: var(--brand); color: var(--on-brand); }

/* 맨 위로 */
.to-top {
  position: fixed; right: var(--gutter); bottom: var(--gutter); z-index: var(--z-header);
  width: 46px; height: 46px; display: grid; place-items: center;
  border: var(--border); border-radius: var(--radius-full);
  background: var(--surface); color: var(--ink-2); box-shadow: var(--shadow-2); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--duration) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ---------- 스크롤 진입 애니메이션 (JS 가 .is-in 을 붙인다) ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---------- 유틸 (남용 금지 : 반복되면 컴포넌트로 승격) ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--ink-2); }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.hide-mobile { }
@media (max-width: 640px) { .hide-mobile { display: none !important; } }

@media print {
  .site-header, .site-footer, .to-top, .filters, .pagination { display: none !important; }
  body { color: #000; background: #fff; }
}
