/* ============================================================
   WED-PORT-038 · 스튜디오 온 · EDT 에디토리얼
   아이보리 지면 + 헤어라인 그리드 + 세리프 대제목.
   장식을 넣지 않고 활자 크기와 여백의 대비만으로 끌고 간다.
   ============================================================ */

:root {
  --brand:       #4f6e63;
  --brand-ink:   #ffffff;
  --accent:      #1a1a18;
  --accent-ink:  #faf9f6;
  --surface:     #faf9f6;
  --surface-alt: #efede6;
  --font-display: var(--font-serif);
  --r: var(--r-none);
}

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

::selection { background: var(--brand); color: var(--brand-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);
}
.label { color: var(--ink-3); }

.h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-normal);
  line-height: 1.04;
  letter-spacing: var(--ls-tight);
}
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 44ch; line-height: var(--lh-loose); }

.sec-head { display: grid; gap: var(--sp-4); align-content: start; justify-items: start; }
.sec-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--ink);
}

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

.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-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: var(--sp-3) var(--sp-5); }
.btn--solid { background: var(--accent); color: var(--accent-ink); }
.btn--solid:hover { background: var(--brand); }
.btn--line { border: 1px solid var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--surface); }

/* ── 헤더 ──────────────────────────────────────────────────── */
/* 히어로 오른쪽 절반이 밝은 사진이지만 스크롤하면 어두운 컷 위를
   지난다. 헤더는 항상 불투명 아이보리 배경 + 하단 헤어라인. */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
  padding-inline: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
}
.nav__logo {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-normal);
  letter-spacing: var(--ls-wide);
}
.nav__logo em { font-style: italic; color: var(--brand); }

.nav__menu { display: none; gap: var(--sp-6); }
.nav__menu a {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-2);
  padding-block: var(--sp-1);
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--brand); }

@media (min-width: 768px) { .nav__menu { display: flex; } }

/* ── 히어로 ────────────────────────────────────────────────── */
/* 텍스트 왼쪽 / 이미지 오른쪽. 이미지는 뷰포트 끝까지 붙는다.
   모바일에서는 이미지를 먼저 두어 첫 화면에 사진이 반드시 보이게 한다. */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  border-bottom: 1px solid var(--ink);
}
/* 모바일·태블릿에서는 사진을 위로 올려 첫 화면에 반드시 보이게 하되,
   높이를 30svh 로 눌러 헤드라인과 CTA 가 같은 화면에 남게 한다. */
.hero__media { position: relative; order: -1; min-height: 30svh; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--gutter) var(--sp-7);
}
.hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-normal);
  line-height: 1.0;
  letter-spacing: var(--ls-tight);
}
.hero__title em { font-style: italic; color: var(--brand); }
.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-6); margin-top: var(--sp-3); }
.hero__meta dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.hero__meta dd { font-family: var(--font-display); font-size: var(--fs-lg); }

/* 768~1023 구간은 헤드라인이 69px 로 커지는 만큼 사진 띠를 더 줄인다. */
@media (min-width: 768px) {
  .hero__media { min-height: 24svh; }
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 48%); }
  .hero__media { order: 0; min-height: 100svh; border-left: 1px solid var(--ink); }
  .hero__text {
    gap: var(--sp-5);
    padding-block: var(--sp-9);
    padding-left: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
    padding-right: var(--sp-8);
  }
  /* 5xl 은 "찍습니다"가 두 줄로 깨지면서 CTA 가 첫 화면 밖으로 나간다.
     에디토리얼이라도 문의 버튼은 첫 화면에 있어야 한다. */
  .hero__title { font-size: var(--fs-4xl); }
}

/* ── 인덱스 라인 ───────────────────────────────────────────── */

.idx { border-bottom: 1px solid var(--ink); background: var(--surface-alt); }
.idx__inner { display: grid; gap: var(--sp-4); padding-block: var(--sp-5); }
.idx__label { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--ink-3); }
.idx__list { display: grid; gap: var(--sp-3); }
.idx__list li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
}
.idx__list b { font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--brand); }
.idx__note { font-size: var(--fs-xs); color: var(--ink-3); }

@media (min-width: 768px) {
  .idx__inner { grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-7); }
  .idx__list { grid-auto-flow: column; gap: var(--sp-6); }
}

/* ── 작업 ──────────────────────────────────────────────────── */

.works__inner { display: grid; gap: var(--sp-7); }
.works__list { display: grid; gap: var(--sp-6); }
.wk__cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  margin-top: var(--sp-3);
  border-top: 1px solid var(--line-strong);
}
.wk__cap b { font-family: var(--font-display); font-size: var(--fs-md); font-weight: var(--fw-normal); }
.wk__cap span { font-size: var(--fs-xs); color: var(--ink-3); letter-spacing: var(--ls-wide); text-transform: uppercase; }

@media (min-width: 768px) {
  .works__list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) var(--sp-5); align-items: start; }
  .wk--tall { margin-top: 0; }
  .wk:nth-child(2) { margin-top: var(--sp-8); }
  .wk:nth-child(4) { margin-top: var(--sp-8); }
}
@media (min-width: 1024px) {
  .works__inner { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--sp-9); }
  .works__inner .sec-head { position: sticky; top: calc(var(--sp-9) + var(--sp-2)); }
}

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

.quote-sec {
  padding-block: var(--section-y);
  border-block: 1px solid var(--ink);
  background: var(--accent);
  color: var(--accent-ink);
}
.quote { display: grid; gap: var(--sp-5); }
.quote p {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-normal);
  line-height: 1.36;
  letter-spacing: var(--ls-snug);
}
.quote footer { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: #a5a29a; }

/* ── 디테일 · 프로세스 ─────────────────────────────────────── */

.detail__inner { display: grid; gap: var(--sp-6); align-items: start; }
.detail__body { display: grid; gap: var(--sp-4); }
.steps { display: grid; border-top: 1px solid var(--line-strong); margin-top: var(--sp-2); }
.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line-strong);
  align-items: baseline;
}
.steps b { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--brand); }
.steps h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); font-family: var(--font-sans); }
.steps p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: var(--sp-1); }

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

/* ── 가격 ──────────────────────────────────────────────────── */

.price { background: var(--surface-alt); }
.price__note { font-size: var(--fs-xs); color: var(--ink-3); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.price__list { display: grid; border-top: 1px solid var(--ink); }
.price__list > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line-strong);
}
.price__list dt { font-size: var(--fs-md); }
.price__list dd { font-family: var(--font-display); font-size: var(--fs-lg); }

@media (min-width: 1024px) { .price__list { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-8); } }

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

.cta { padding-block: var(--section-y); border-top: 1px solid var(--ink); }
.cta__inner { display: grid; gap: var(--sp-6); }
.cta__title { font-size: var(--fs-3xl); font-weight: var(--fw-normal); line-height: 1.06; letter-spacing: var(--ls-tight); margin-top: var(--sp-3); }
.cta__side { display: grid; gap: var(--sp-5); justify-items: start; align-content: end; }
.cta__side p { font-size: var(--fs-md); color: var(--ink-2); max-width: 40ch; line-height: var(--lh-loose); }

@media (min-width: 768px) { .cta__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: end; } }
@media (min-width: 768px) { .cta__title { font-size: var(--fs-4xl); } }

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

.foot { padding-block: var(--sp-7) var(--sp-5); border-top: 1px solid var(--ink); background: var(--surface-alt); }
.foot__inner { display: grid; gap: var(--sp-6); }
.foot__logo { font-family: var(--font-display); font-size: var(--fs-lg); letter-spacing: var(--ls-wide); }
.foot__logo em { font-style: italic; color: var(--brand); }
.foot__col { display: grid; gap: var(--sp-2); align-content: start; }
.foot__col h2 { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.foot__col a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__col a:hover { color: var(--brand); }
.foot__addr { font-style: normal; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.9; }
.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: 2fr 1fr 1.6fr; gap: var(--sp-7); } }

/* ── 서브페이지 ────────────────────────────────────────────── */

.phead { padding-block: var(--sp-8); border-bottom: 1px solid var(--ink); }
.phead__inner { display: grid; gap: var(--sp-4); }
.phead h1 { font-size: var(--fs-3xl); font-weight: var(--fw-normal); line-height: 1.04; letter-spacing: var(--ls-tight); }
.phead h1 em { font-style: italic; color: var(--brand); }
.phead p { font-size: var(--fs-md); color: var(--ink-2); max-width: 50ch; line-height: var(--lh-loose); }
.crumb { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.crumb a:hover { color: var(--brand); }
@media (min-width: 768px) { .phead h1 { font-size: var(--fs-4xl); } }

/* 작업 아카이브 그리드 */
.arch { display: grid; gap: var(--sp-6); }
.arch__item { display: grid; gap: var(--sp-3); }
.arch__cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-strong);
}
.arch__cap b { font-family: var(--font-display); font-size: var(--fs-md); font-weight: var(--fw-normal); }
.arch__cap span { font-size: var(--fs-xs); color: var(--ink-3); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.arch__item p { font-size: var(--fs-sm); color: var(--ink-2); max-width: 46ch; }

@media (min-width: 768px) { .arch { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7) var(--sp-5); } }
@media (min-width: 1024px) { .arch { grid-template-columns: repeat(3, 1fr); } }

/* 필터 라인 */
.filter { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.filter button {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filter button:hover { border-color: var(--ink); color: var(--ink); }
.filter button.is-on { background: var(--ink); border-color: var(--ink); color: var(--surface); }

/* 스튜디오 페이지 */
.about__inner { display: grid; gap: var(--sp-6); align-items: start; }
.about__body { display: grid; gap: var(--sp-4); }
.about__body p { font-size: var(--fs-md); color: var(--ink-2); line-height: var(--lh-loose); max-width: 52ch; }
@media (min-width: 1024px) { .about__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 42%); gap: var(--sp-8); } }

.people { display: grid; border-top: 1px solid var(--ink); }
.people > li {
  display: grid;
  gap: var(--sp-2);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line-strong);
}
.people h3 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-normal); }
.people p { font-size: var(--fs-sm); color: var(--ink-2); max-width: 52ch; }
.people__role { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--brand); }
@media (min-width: 768px) { .people > li { grid-template-columns: 8rem 12rem 1fr; gap: var(--sp-5); align-items: baseline; } }

/* 폼 */
.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: var(--sp-2); }
.field label { font-family: var(--font-sans); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: var(--sp-4) 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: var(--r);
  background: transparent;
  font-size: var(--fs-md);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field__hint { font-size: var(--fs-xs); color: var(--ink-3); }
.form__row { display: grid; gap: var(--sp-5); }
@media (min-width: 768px) { .form__row { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }

.check { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-2); }
.check input { width: 18px; height: 18px; flex: none; accent-color: var(--brand); }

.info { display: grid; gap: var(--sp-4); }
.info > div { display: grid; gap: var(--sp-1); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--line-strong); }
.info dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); }
.info dd { font-size: var(--fs-sm); line-height: 1.8; }

/* ============================================================
   ★ SPEC 4-C — 브랜드 마크 · 아이콘 · 인터랙션 보강
   에디토리얼이라 장식 대신 헤어라인이 그어지고 활자가 밀린다.
   ============================================================ */

/* base.css 의 `svg { display:block }` 때문에 인라인 아이콘이 제 줄로 떨어진다.
   inline-block 으로 되돌려야 글자 옆에 붙는다. */
.ico { display: inline-block; width: 1em; height: 1em; flex: none; vertical-align: -.125em; }
:is(dt, dd, h2, h3, p, li, span, b) > .ico:first-child { margin-inline-end: var(--sp-2); }

/* ── 브랜드 마크 — 스튜디오 소프트박스와 스탠드 ─────────────── */
.nav__mark {
  width: 26px; height: 26px; flex: none; align-self: center;
  color: var(--brand);
  transform: none;
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur) var(--ease);
}
.nav__logo { display: inline-flex; align-items: center; gap: var(--sp-3); }
.nav__logo:hover .nav__mark,
.nav__logo:focus-visible .nav__mark { transform: rotate(-8deg) scale(1.06); color: var(--accent); }
.foot__logo { display: flex; align-items: center; gap: var(--sp-3); }
.foot__logo .nav__mark { width: 22px; height: 22px; }
.foot__logo:hover .nav__mark { transform: rotate(-8deg); }

/* ── 아이콘 자리 ────────────────────────────────────────────── */
.hero__meta .ico, .info dt .ico, .wk__cap .ico, .arch__cap .ico { color: var(--brand); }
.foot__addr { display: grid; gap: var(--sp-3); line-height: 1.6; }
.foot__addr span { display: flex; align-items: flex-start; transition: color var(--dur) var(--ease); }
.foot__addr .ico { color: var(--brand); font-size: var(--fs-lg); margin-top: .05em; }
.foot__addr span:hover { color: var(--ink); }
.wk__cap, .arch__cap { align-items: center; }

/* ── 버튼 화살표 ────────────────────────────────────────────── */
.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── 링크: 밑줄이 한쪽에서 그어진다 ─────────────────────────── */
.nav__menu a, .foot__col a, .crumb a { position: relative; }
.nav__menu a::after, .foot__col a::after, .crumb 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);
}
.nav__menu a:hover::after, .foot__col a:hover::after, .crumb a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 인덱스 줄: 번호가 앞으로 나오고 선이 그어진다 ──────────── */
.idx__list li { position: relative; transition: padding-left var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.idx__list li::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.idx__list li:hover { padding-left: var(--sp-3); color: var(--ink); }
.idx__list li:hover::after { transform: scaleX(1); }
.idx__list b { transition: color var(--dur) var(--ease); }
.idx__list li:hover b { color: var(--brand); }

/* ── 작업 그리드: 사진이 당겨지고 캡션이 밀린다 ─────────────── */
.wk figure, .arch__item figure, .detail__media { overflow: hidden; }
.wk img, .arch__item img, .detail__media img { transition: transform 1000ms var(--ease-out), filter var(--dur-slow) var(--ease); }
.wk:hover img, .arch__item:hover img { transform: scale(1.05); }
.detail__inner:hover .detail__media img { transform: scale(1.04); }
.wk__cap, .arch__cap { transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.wk:hover .wk__cap, .arch__item:hover .arch__cap { transform: translateX(4px); }
.wk:hover .wk__cap b, .arch__item:hover .arch__cap b { color: var(--brand); }
.arch__item p { transition: color var(--dur) var(--ease); }
.arch__item:hover p { color: var(--ink); }

/* ── 요금표: 행이 차오른다 ──────────────────────────────────── */
.price__list > div { position: relative; transition: padding-left var(--dur) var(--ease-out); }
.price__list > div::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--brand); transition: width var(--dur-slow) var(--ease-out);
}
.price__list > div:hover { padding-left: var(--sp-3); }
.price__list > div:hover::before { width: 100%; }
.price__list dd { transition: color var(--dur) var(--ease); }
.price__list > div:hover dd { color: var(--brand); }

/* ── 히어로 메타 · 작가 소개 ────────────────────────────────── */
.hero__meta > div { transition: transform var(--dur) var(--ease-out); }
.hero__meta > div:hover { transform: translateY(-3px); }
.people li { transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease); }
.people li:hover { transform: translateY(-4px); }
.people__role { transition: letter-spacing var(--dur-slow) var(--ease); }
.people li:hover .people__role { letter-spacing: var(--ls-widest); }

/* ── 문의 정보 표 ───────────────────────────────────────────── */
.info > div { transition: background var(--dur) var(--ease); }
.info > div:hover { background: var(--surface-alt); }
.info dt .ico { transition: transform var(--dur) var(--ease-out); }
.info > div:hover dt .ico { transform: translateY(-2px); }

/* ── 폼 ─────────────────────────────────────────────────────── */
.field input, .field select, .field textarea { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand); }
.check span { transition: color var(--dur) var(--ease); }
.check:hover span { color: var(--ink); }

/* ── 인용 · CTA ─────────────────────────────────────────────── */
.quote p { transition: letter-spacing var(--dur-slow) var(--ease); }
.quote:hover p { letter-spacing: var(--ls-snug); }
.cta__title { transition: color var(--dur-slow) var(--ease); }
.cta__inner:hover .cta__title { color: var(--brand); }

/* ── 키프레임 3종 ───────────────────────────────────────────── */
@keyframes capRise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.wk:hover .wk__cap span, .arch__item:hover .arch__cap span { animation: capRise var(--dur) var(--ease-out) both; }

@keyframes hintIn { from { opacity: 0; } to { opacity: 1; } }
.field__hint { animation: hintIn var(--dur-slow) var(--ease) both; }

/* 로고에 올리면 조명이 한 번 켜졌다 자리를 잡는다 */
@keyframes markLit {
  0%   { transform: rotate(0) scale(1); }
  45%  { transform: rotate(-11deg) scale(1.12); }
  100% { transform: rotate(-8deg) scale(1.06); }
}
.nav__logo:hover .nav__mark { animation: markLit var(--dur-slow) var(--ease-out) both; }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */
html.js .works__list .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .works__list .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .works__list .reveal:nth-child(4) { transition-delay: 270ms; }
html.js .price__list .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .price__list .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .price__list .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .price__list .reveal:nth-child(5) { transition-delay: 240ms; }
html.js .price__list .reveal:nth-child(6) { transition-delay: 300ms; }
html.js .arch .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .arch .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .people .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .people .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .people .reveal:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .wk:hover .wk__cap span,
  .nav__logo:hover .nav__mark,
  .field__hint { animation: none; }
  .nav__logo:hover .nav__mark,
  .foot__logo:hover .nav__mark,
  .wk:hover img, .arch__item:hover img,
  .detail__inner:hover .detail__media img,
  .wk:hover .wk__cap, .arch__item:hover .arch__cap,
  .hero__meta > div:hover, .people li:hover,
  .info > div:hover dt .ico,
  .btn:hover .btn__arrow { transform: none; }
}


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

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

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .hero__title, html.tier-premium h1 { font-feature-settings: "kern" 1; }
html.tier-premium .kicker { letter-spacing: .18em; }
