/* ============================================================
   SHP-MAG-077 · 녹턴 에디트 · LUX 럭셔리·프리미엄 · 다크 지면
   ============================================================ */

:root {
  --brand:       #c74a4a;
  --brand-ink:   #1a1012;
  --brand-text:  #e4726b;
  --accent:      #e8d5b7;
  --accent-ink:  #1a1012;
  --surface:     #16100f;
  --surface-alt: #211917;

  --ink:         #f4ede7;
  --ink-2:       #c4b6ac;
  --ink-3:       #9c8c82;
  --line:        #332724;
  --line-strong: #4e3e39;

  --font-display: var(--font-serif);
  --r: var(--r-sm);
}

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

/* base.css 의 skip-link 는 --brand 배경 — 브랜드 컬러에 따라 4.5:1 미달이라 못박는다 */
.skip-link { background: var(--ink); color: var(--surface); }

/* 컨테이너 좌측 여백과 같은 값 — 풀블리드 구간 정렬용 */
.u-edge { padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); }

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

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

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

.h2 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tight); line-height: 1.12; }
.h3 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); line-height: 1.2; }

.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; line-height: var(--lh-loose); }
.body-sm { font-size: var(--fs-sm); color: var(--ink-2); }

.rule { height: 1px; background: var(--line); border: 0; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  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); color: var(--ink); }

.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--accent); color: var(--accent); }

/* ── 헤더 ──────────────────────────────────────────────────── */

.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3) 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);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
}
.nav__logo em { font-style: normal; color: var(--brand-text); }

/* JS 없이도 전 메뉴가 보이도록 2줄 랩 + 가로 스크롤 (SPEC 8절) */
.nav__menu {
  display: flex; order: 3; width: 100%;
  gap: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu a {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a[aria-current="page"] { color: var(--brand-text); font-weight: var(--fw-semibold); }

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

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

.hero {
  --header-h: 118px;
  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; }
/* 다크 지면이므로 --surface 스크림이 그대로 어두운 스크림이 된다 */
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--surface) 92%, transparent) 0%,
    color-mix(in oklab, var(--surface) 84%, transparent) 46%,
    color-mix(in oklab, var(--surface) 34%, transparent) 100%);
}
.hero__text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--sp-5);
  padding-inline: var(--gutter);
  padding-block: var(--sp-7) var(--sp-9);
}
.hero__issue {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--accent);
}
.hero__issue span { width: 34px; height: 1px; background: var(--accent); }
.hero__title {
  font-size: var(--fs-4xl);
  line-height: 1.04;
  letter-spacing: var(--ls-tighter);
}
.hero__title em { font-style: italic; color: var(--brand-text); }
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 32ch; line-height: var(--lh-loose); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-5);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: var(--ink-2);
}

@media (min-width: 1024px) {
  .hero { --header-h: 78px; grid-template-columns: minmax(0, 1fr) minmax(0, 48%); padding-top: 0; }
  .hero__media { position: relative; }
  .hero__media::after {
    background: linear-gradient(90deg,
      color-mix(in oklab, var(--surface) 96%, transparent) 0%,
      transparent 34%);
  }
  .hero__text {
    padding-block: calc(var(--header-h) + var(--sp-9)) var(--sp-9);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding-right: var(--sp-8);
  }
}

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

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

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

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

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

/* ── 커버 스토리 (풀블리드 + 겹침 카드) ─────────────────────── */

.cover { position: relative; padding-bottom: var(--section-y); }
.cover__media { border-radius: 0; aspect-ratio: 4 / 5; }
.cover__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  display: grid; gap: var(--sp-4);
}
.cover__card .h2 { font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); }
.cover__tag {
  display: inline-block; align-self: start;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--brand);
  color: var(--brand-text);
  font-family: var(--font-sans); font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}
@media (min-width: 768px) {
  .cover__media { aspect-ratio: 21 / 9; }
  .cover__card { margin-top: calc(var(--sp-10) * -1); margin-right: auto; max-width: 640px; padding: var(--sp-8); }
}

/* ── 기사 리스트 ───────────────────────────────────────────── */

.reads__inner { display: grid; gap: var(--sp-8); }
.reads__head { display: grid; gap: var(--sp-4); align-content: start; }
.reads__list { display: grid; gap: var(--sp-7); }

.read { display: grid; gap: var(--sp-4); }
.read__media { overflow: hidden; }
.read__media img { transition: transform var(--dur-slow) var(--ease-out); }
.read:hover .read__media img { transform: scale(1.04); }
.read__no {
  font-family: var(--font-sans); font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest); color: var(--ink-3);
}
.read__title { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); line-height: 1.24; }
.read a:hover .read__title, .read__title a:hover { color: var(--brand-text); }
.read__excerpt { font-size: var(--fs-sm); color: var(--ink-2); line-height: var(--lh-loose); }
.read__foot {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4);
  padding-top: var(--sp-3); border-top: 1px solid var(--line);
  font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--ink-3);
}

@media (min-width: 768px) { .reads__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-6); } }
@media (min-width: 1024px) {
  .reads__inner { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--sp-9); }
  .reads__head { position: sticky; top: var(--sp-9); }
}

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

.pull { background: var(--surface-alt); border-block: 1px solid var(--line); }
.pull blockquote { display: grid; gap: var(--sp-5); text-align: center; }
.pull p { font-size: var(--fs-2xl); line-height: 1.34; letter-spacing: var(--ls-tight); font-family: var(--font-display); }
.pull footer { font-family: var(--font-sans); font-size: var(--fs-sm); color: var(--ink-3); }
.pull footer b { color: var(--ink); font-weight: var(--fw-semibold); }

/* ── 노트 (헤어라인 그리드) ────────────────────────────────── */

.notes__grid { display: grid; border-top: 1px solid var(--line); }
.note {
  display: grid; gap: var(--sp-3);
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--line);
}
.note__idx { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-widest); color: var(--brand-text); }
.note h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.note p { font-size: var(--fs-sm); color: var(--ink-2); line-height: var(--lh-loose); max-width: 60ch; }

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

/* ── 상품 (에디터 픽) ──────────────────────────────────────── */

.pick__inner { display: grid; gap: var(--sp-7); align-items: center; }
.pick__body { display: grid; gap: var(--sp-4); justify-items: start; }
.pick__spec { display: grid; gap: var(--sp-3); width: 100%; margin-top: var(--sp-2); }
.pick__spec div {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding-top: var(--sp-3); border-top: 1px solid var(--line);
  font-family: var(--font-sans); font-size: var(--fs-sm);
}
.pick__spec dt { color: var(--ink-3); }
.pick__spec dd { color: var(--ink); font-weight: var(--fw-medium); }
.pick__price { font-family: var(--font-display); font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); }

@media (min-width: 768px) {
  .pick__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-8); }
}

/* ── 아카이브 표 ───────────────────────────────────────────── */

.arch { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.arch__row {
  display: grid; gap: var(--sp-2) var(--sp-5);
  grid-template-columns: minmax(0, 1fr);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background var(--dur) var(--ease);
}
.arch__row:hover { background: var(--surface-alt); }
.arch__no { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-widest); color: var(--brand-text); }
.arch__title { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.arch__desc { font-size: var(--fs-sm); color: var(--ink-2); }
.arch__date { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-3); }

@media (min-width: 768px) {
  .arch__row { grid-template-columns: 90px minmax(0, 300px) minmax(0, 1fr) 110px; padding-inline: var(--sp-3); }
}

/* ── 기사 본문 ─────────────────────────────────────────────── */

.post__head { display: grid; gap: var(--sp-5); }
.post__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.1; }
.post__by {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  padding-top: var(--sp-4); border-top: 1px solid var(--line);
  font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--ink-3);
  letter-spacing: var(--ls-wide);
}
.post__body { display: grid; gap: var(--sp-5); margin-top: var(--sp-7); }
.post__body p { font-size: var(--fs-md); color: var(--ink-2); line-height: var(--lh-loose); }
.post__body h2 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); margin-top: var(--sp-5); color: var(--ink); }
.post__body strong { color: var(--ink); font-weight: var(--fw-semibold); }
.post__drop::first-letter {
  float: left; font-family: var(--font-display);
  font-size: 3.4em; line-height: .82; font-weight: var(--fw-bold);
  color: var(--brand-text); padding-right: .12em; padding-top: .06em;
}
.post__fig { display: grid; gap: var(--sp-3); margin-block: var(--sp-5); }
.post__fig figcaption { font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--ink-3); }

.post__aside {
  padding: var(--sp-6);
  background: var(--surface-alt);
  border-left: 2px solid var(--brand);
  display: grid; gap: var(--sp-3);
}
.post__aside h3 { font-size: var(--fs-lg); }
.post__aside p { font-size: var(--fs-sm); color: var(--ink-2); line-height: var(--lh-loose); }

@media (min-width: 1024px) {
  .post__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: var(--sp-9); align-items: start; }
  .post__side { position: sticky; top: calc(var(--sp-9) + var(--sp-4)); display: grid; gap: var(--sp-6); }
}

/* ── 에디터 카드 ───────────────────────────────────────────── */

.eds { display: grid; gap: var(--sp-6); }
.ed {
  display: grid; gap: var(--sp-4);
  padding: var(--sp-6);
  border: 1px solid var(--line);
  background: var(--surface-alt);
}
.ed h3 { font-size: var(--fs-lg); }
.ed p { font-size: var(--fs-sm); color: var(--ink-2); line-height: var(--lh-loose); }
.ed__role { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--brand-text); }
@media (min-width: 768px) { .eds { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ── 구독 CTA ──────────────────────────────────────────────── */

.sub { background: color-mix(in oklab, var(--brand) 76%, var(--brand-ink)); color: var(--ink); padding-block: var(--section-y); }
.sub .label { color: color-mix(in oklab, var(--ink) 88%, transparent); }
.sub__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.08; margin-block: var(--sp-4); }
.sub__lead { font-size: var(--fs-md); color: color-mix(in oklab, var(--ink) 92%, transparent); max-width: 44ch; }
.sub__form { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); max-width: 540px; }
.sub__form input {
  flex: 1 1 240px;
  padding: var(--sp-4) var(--sp-5);
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--ink) 42%, transparent);
  border-radius: var(--r);
  color: var(--ink);
  font-size: var(--fs-sm);
}
.sub__form input::placeholder { color: color-mix(in oklab, var(--ink) 62%, transparent); }
.sub__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: color-mix(in oklab, var(--ink) 90%, transparent); }
@media (min-width: 768px) { .sub__title { font-size: var(--fs-4xl); } }

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

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.foot__brand em { font-style: normal; color: var(--brand-text); }
.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); }
.foot__nav a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__nav a:hover { color: var(--brand-text); }
.foot__copy {
  grid-column: 1 / -1;
  padding-top: var(--sp-5); border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--ink-3);
}
@media (min-width: 768px) { .foot__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-7); } }

/* ============================================================
   브랜드 마크 · 아이콘 · 인터랙션 보강 (SPEC 4-C)
   레이아웃·색·타이포는 건드리지 않는다. 반응만 더한다.
   ============================================================ */

/* ── 브랜드 마크 ───────────────────────────────────────────── */
/* Nocturne = 밤. 초승달과 그 옆에 뜬 밤빛 점. 헤더 26 · 푸터 22.
   다크 지면이라 색은 --brand-text(#e4726b, 6.3:1) 를 쓴다.
   --brand(#c74a4a) 는 이 배경에서 4.08:1 이라 미달이다. */

.nav__logo, .foot__brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.nav__mark {
  flex: none;
  color: var(--brand-text);
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur) var(--ease);
}
/* 로고에 올리면 달이 기울고 밤빛이 따라 돈다 */
.nav__logo:hover .nav__mark { transform: rotate(-24deg); color: var(--accent); }
.foot__brand:hover .nav__mark { transform: rotate(24deg); color: var(--accent); }

/* ── 아이콘 ────────────────────────────────────────────────── */

.ico { width: 1em; height: 1em; flex: none; vertical-align: -0.125em; }

.fig dt, .pick__spec dt, .cover__tag {
  display: flex; align-items: center; gap: var(--sp-2);
}
.cover__tag { display: inline-flex; }
.fig dt .ico, .pick__spec dt .ico {
  color: var(--brand-text);
  font-size: var(--fs-md);
  transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease);
}
.cover__tag .ico { font-size: var(--fs-sm); transition: transform var(--dur) var(--ease-out); }
.fig:hover dt .ico { transform: translateY(-2px); color: var(--accent); }
.pick__spec > div:hover dt .ico { transform: scale(1.14); }
.cover__card:hover .cover__tag .ico { transform: translateY(-2px); }

.foot__addr { display: grid; gap: var(--sp-3); line-height: 1.5; }
.foot__addr span { display: flex; align-items: center; gap: var(--sp-3); }
.foot__addr .ico { color: var(--brand-text); font-size: var(--fs-lg); transition: transform var(--dur) var(--ease-out); }
.foot__addr span:hover .ico { transform: scale(1.14); }

/* 버튼 화살표 — 14px 버튼에서 1em 이면 뭉개진다 */
.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; }
.nav__menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 티커: 올리면 멈춘다 (읽을 수 있게) ────────────────────── */

.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { transition: color var(--dur) var(--ease); }
.ticker:hover .ticker__track span { color: var(--ink); }

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

.fig { transition: background var(--dur) var(--ease); }
.fig:hover { background: var(--surface-alt); }
.fig dd { transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.fig:hover dd { transform: translateY(-2px); color: var(--brand-text); }

/* ── 커버 · 기사 카드 ──────────────────────────────────────── */

.cover__media { overflow: hidden; }
.cover__media img { transition: transform var(--dur-slow) var(--ease-out); }
.cover:hover .cover__media img { transform: scale(1.03); }
.cover__card { transition: transform var(--dur) var(--ease-out); }
.cover__card:hover { transform: translateY(-3px); }
.cover__tag { transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.cover__card:hover .cover__tag { border-color: var(--accent); color: var(--accent); }

.read { transition: transform var(--dur) var(--ease-out); }
.read:hover { transform: translateY(-4px); }
.read__title { transition: color var(--dur) var(--ease); }
.read:hover .read__title { color: var(--brand-text); }
.read__no { display: inline-block; transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.read:hover .read__no { transform: translateX(3px); color: var(--accent); }
.read__foot { transition: border-color var(--dur) var(--ease); }
.read:hover .read__foot { border-top-color: var(--brand-text); }

/* ── 아카이브 목록: 제목이 한 칸 나온다 ────────────────────── */

.arch__row { transition: background var(--dur) var(--ease); }
/* 행이 밀려 들어오는 반응은 transform 으로 — padding 을 움직이면 줄바꿈이 바뀐다 */
.arch__row > * { transition: transform var(--dur) var(--ease-out); }
.arch__row:hover > * { transform: translateX(6px); }
.arch__title { transition: color var(--dur) var(--ease); }
.arch__row:hover .arch__title { color: var(--brand-text); }
.arch__no { display: inline-block; transition: transform var(--dur) var(--ease-out); }
.arch__row:hover .arch__no { transform: translateY(-2px); }
.arch__date { transition: color var(--dur) var(--ease); }
.arch__row:hover .arch__date { color: var(--ink-2); }

/* ── 에디터 · 노트 ─────────────────────────────────────────── */

.ed { transition: transform var(--dur) var(--ease-out); }
.ed:hover { transform: translateY(-4px); }
.ed .img-slot { overflow: hidden; }
.ed .img-slot img { transition: transform var(--dur-slow) var(--ease-out); }
.ed:hover .img-slot img { transform: scale(1.05); }
.ed__role { transition: color var(--dur) var(--ease); }
.ed:hover .ed__role { color: var(--brand-text); }

.note { position: relative; transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease); }
.note::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 1px; width: 0;
  background: var(--brand-text);
  transition: width var(--dur-slow) var(--ease-out);
}
.note:hover { transform: translateY(-3px); }
.note:hover::before { width: 100%; }
.note__idx { display: inline-block; transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.note:hover .note__idx { transform: translateY(-2px); color: var(--accent); }

/* ── 픽 (제품 추천) ────────────────────────────────────────── */

.pick__spec > div { transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.pick__spec > div:hover { background: var(--surface-alt); }
.pick__price { transition: color var(--dur) var(--ease); }
.pick__inner:hover .pick__price { color: var(--accent); }

/* ── 구독 폼 ───────────────────────────────────────────────── */

.sub__form input {
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.sub__form input:hover { border-color: var(--brand-text); }
.sub__form input:focus { background: color-mix(in oklab, var(--ink) 6%, transparent); }

/* ── 본문 조판 ─────────────────────────────────────────────── */

.pull { transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.pull:hover { border-color: var(--brand-text); }
.post__body a { transition: color var(--dur) var(--ease); }

/* ── 달빛 애니메이션 ───────────────────────────────────────── */

@keyframes moonRise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes glowPulse {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
.hero__issue { animation: moonRise var(--dur-slow) var(--ease-out) both; }
/* 이슈 라벨 옆 짧은 선이 달빛처럼 천천히 밝아졌다 어두워진다 */
.hero__issue span { animation: glowPulse 3.6s var(--ease) infinite; }

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

.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; }
.foot__addr span { transition: color var(--dur) var(--ease); }
.foot__addr span:hover { color: var(--ink); }

/* ── 형제 계단식 지연 ──────────────────────────────────────── */

html.js .figs__grid .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .figs__grid .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .figs__grid .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .reads__list .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .reads__list .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .arch .reveal:nth-child(2) { transition-delay: 50ms; }
html.js .arch .reveal:nth-child(3) { transition-delay: 100ms; }
html.js .arch .reveal:nth-child(4) { transition-delay: 150ms; }
html.js .arch .reveal:nth-child(5) { transition-delay: 200ms; }
html.js .eds .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .eds .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .notes__grid .reveal:nth-child(2) { transition-delay: 70ms; }
html.js .notes__grid .reveal:nth-child(3) { transition-delay: 140ms; }
html.js .notes__grid .reveal:nth-child(4) { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .nav__mark, .foot__brand:hover .nav__mark,
  .fig:hover dd, .fig:hover dt .ico, .pick__spec > div:hover dt .ico,
  .cover:hover .cover__media img, .cover__card:hover, .cover__card:hover .cover__tag .ico,
  .read:hover, .read:hover .read__no, .arch__row:hover .arch__no,
  .ed:hover, .ed:hover .img-slot img, .note:hover, .note:hover .note__idx,
  .btn:hover .btn__arrow, .foot__addr span:hover .ico { transform: none; }
  .hero__issue, .hero__issue span { animation: none; }
}


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

/* 럭셔리 — 헤어라인이 느리게 떠오른다. 급한 움직임을 쓰지 않는다. */
.nav__menu a::after, .foot__nav a::after { display: none !important; }
.foot__nav a, .nav__menu a { position: relative; }
.foot__nav a::before, .nav__menu a::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor; opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.foot__nav a:hover::before, .nav__menu a:hover::before { opacity: .55; }
.fig:hover dt .ico, .cover__card:hover .cover__tag .ico, .fig:hover dd, .cover__card:hover, .read:hover, .arch__row:hover .arch__no, .ed:hover, .note:hover, .note:hover .note__idx { transform: none; }
.fig:hover dt .ico, .cover__card:hover .cover__tag .ico, .fig:hover dd, .cover__card:hover, .read:hover, .arch__row:hover .arch__no, .ed:hover, .note:hover, .note:hover .note__idx { transform: scale(1.012); }


/* ===== 티커 걷어내기 — LUX 무드에 마퀴는 어울리지 않는다 ==========
   내용(실적·목록·인증)은 실제 정보라 유지하고 장치만 바꾼다.
   ================================================================ */
/* 티커 → 넓은 자간에 마름모로 끊는 한 줄. 중앙 정렬. */
.ticker { overflow: visible; }
.ticker__track {
  animation: none !important; width: auto; flex-wrap: wrap;
  justify-content: center; gap: var(--sp-2) 0;
}
.ticker__track > span { letter-spacing: var(--ls-widest); }
.ticker__track > span:not(:last-child)::after { content: " ◆ "; opacity: .4; padding-inline: var(--sp-4); }
.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 .btn--solid { letter-spacing: .12em; }
html.tier-premium .nav { letter-spacing: .06em; }
