/* 미술관 도록 — 차가운 뉴트럴 벽에 작품이 흰 매트로 걸리고, 그 아래 작은 라벨이 붙는다.
   색은 울트라마린 한 점. 주 행동은 검정 면이 맡는다. */

:root {
  --wall:    #EDEEEF;
  --wall-2:  #E4E6E7;
  --mat:     #FFFFFF;
  --ink:     #0D0E10;
  --ink-2:   #575D63;
  --ink-3:   #6F767C;
  --line:    #DBDDDF;
  --line-2:  #EAECED;
  --ultra:   #1B34D8;

  --mark: 'Archivo', 'Pretendard Variable', Pretendard, sans-serif;
  --serif: 'Noto Serif KR', 'Noto Serif JP', 'Apple SD Gothic Neo', serif;
  --kr: 'Pretendard Variable', Pretendard, 'Noto Sans JP', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --pad: clamp(20px, 5vw, 48px);
  --gap: clamp(44px, 5.6vw, 88px);
  --ease: cubic-bezier(.19, 1, .22, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--wall);
  color: var(--ink);
  font-family: var(--kr);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -.011em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* 일본어는 띄어쓰기가 없어 keep-all이 줄을 문장부호에서만 끊는다 — 글자 단위로 흐르게 둔다 */
html[lang="ja"] body { word-break: normal; line-break: strict; }

img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
p, dl, dd, ul, ol, figure { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3 {
  margin: 0; font-family: var(--kr); font-weight: 600;
  letter-spacing: -.038em; line-height: 1.18; text-wrap: balance;
}

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

:where(a, button, summary, [tabindex]):focus-visible { outline: 2px solid var(--ultra); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; }
.skip:focus { left: 8px; top: 8px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.wrap--wide { max-width: 1440px; }

/* ── 상단 바 ─────────────────────────────────────────── */

.bar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(237, 238, 239, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar__in {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--pad);
  height: 60px; display: flex; align-items: center; gap: clamp(14px, 3vw, 40px);
}
.bar__mark {
  font-family: var(--mark); font-weight: 600; font-size: 15px;
  letter-spacing: .17em; color: var(--ink); text-decoration: none; flex: none;
}
.bar__nav { display: none; gap: 26px; margin-left: auto; }
.bar__nav a { font-size: 14px; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: color .2s; }
.bar__nav a:hover { color: var(--ink); }
.lang {
  display: flex; align-items: center; gap: 5px; margin-left: auto;
  font-family: var(--mark); font-size: 11px; letter-spacing: .12em;
  color: var(--ink-3);
}
.lang button {
  font: inherit; letter-spacing: inherit; background: none; border: 0; padding: 3px 1px;
  color: var(--ink-3); cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.lang button:hover { color: var(--ink); }
.lang button[aria-pressed="true"] { color: var(--ink); border-bottom-color: var(--ink); }

.bar__cta { margin-left: 14px; }
@media (max-width: 879px) { .bar__nav { display: none; } .lang { margin-left: auto; } }
@media (min-width: 880px) {
  .bar__in { height: 68px; }
  .bar__nav { display: flex; }
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--kr); font-size: 14px; font-weight: 600; letter-spacing: -.015em;
  padding: 10px 20px; border: 0; border-radius: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ultra); }
.btn--line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--lg { font-size: 15px; padding: 14px 28px; }

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

.lede { padding: clamp(36px, 5.6vw, 76px) 0 clamp(30px, 4vw, 52px); overflow: hidden; }
.lede__grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) { .lede__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(40px, 5vw, 72px); } }
.lede__kicker {
  font-family: var(--mark); font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3); display: flex; align-items: center; gap: 14px;
}
.lede__kicker::before { content: ''; width: 28px; height: 1px; background: var(--ultra); }
.lede h1 {
  margin-top: clamp(18px, 2.4vw, 28px);
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 3.3vw, 48px); letter-spacing: -.02em; line-height: 1.2; max-width: 22ch;
  text-wrap: balance;
}
html[lang="ja"] .lede h1 { font-family: 'Noto Serif JP', var(--serif); letter-spacing: 0; line-height: 1.28; font-size: clamp(27px, 3vw, 44px); max-width: 20ch; }
.lede__p {
  margin-top: clamp(18px, 2.6vw, 28px); max-width: 44ch;
  font-size: clamp(15px, 1.5vw, 18px); color: var(--ink-2); line-height: 1.72; text-wrap: pretty;
}

/* 벽 — 세 작품이 겹쳐 걸린다. 큰 데스크톱 화면 하나, 뒤에 하나, 앞에 모바일 하나 */
.lede__wall { position: relative; margin: 0 0 30px; aspect-ratio: 1.08 / 1; width: 100%; max-width: 640px; justify-self: end; }
@media (max-width: 959px) { .lede__wall { max-width: 560px; justify-self: start; aspect-ratio: 1.2 / 1; } }
.wall__f {
  position: absolute; background: var(--mat); padding: 6px;
  box-shadow: 0 1px 2px rgba(13,14,16,.06), 0 24px 48px -24px rgba(13,14,16,.5), 0 60px 90px -50px rgba(13,14,16,.35);
  clip-path: inset(0 0 100% 0);
  animation: wall-reveal 1.15s cubic-bezier(.19,1,.22,1) forwards;
  will-change: transform;
}
.wall__f img { display: block; width: 100%; height: auto; }
.wall__f--b { left: 22%; top: 0; width: 74%; animation-delay: .05s; }
.wall__f--a { left: 0; top: 17%; width: 76%; animation-delay: .28s; }
.wall__f--c { right: 3%; bottom: 9%; width: 24%; animation-delay: .55s; }
.wall__f--a img, .wall__f--b img { aspect-ratio: 1440 / 900; object-fit: cover; object-position: top; }
.wall__f--c img { aspect-ratio: 390 / 844; object-fit: cover; object-position: top; }
.wall__l {
  position: absolute; left: 0; right: 0; bottom: -30px; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 6px 22px;
  font-family: var(--mark); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
  opacity: 0; animation: wall-fade .8s ease .9s forwards;
}
.wall__l b { font-weight: 500; color: var(--ink); }
@keyframes wall-reveal { to { clip-path: inset(0 0 0 0); } }
@keyframes wall-fade { to { opacity: 1; } }
html.no-motion .wall__f { clip-path: none; animation: none; }
html.no-motion .wall__l { opacity: 1; animation: none; }

/* 조건표 — 리본형. 표제 아래 한 줄로 여섯 칸 */
.terms { margin-top: clamp(26px, 3.6vw, 44px); display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
.terms__row {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.terms dt {
  font-family: var(--mark); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.terms dd { font-size: 15px; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
@media (min-width: 760px) { .terms { grid-template-columns: 1fr 1fr; column-gap: 56px; } }
.terms--ribbon { margin-top: clamp(40px, 5.6vw, 76px); grid-template-columns: 1fr 1fr; column-gap: 24px; }
.terms--ribbon .terms__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0 12px; }
.terms--ribbon dd { font-size: 14.5px; line-height: 1.45; }
@media (min-width: 640px) { .terms--ribbon { grid-template-columns: repeat(3, 1fr); column-gap: 28px; } }
@media (min-width: 1000px) { .terms--ribbon { grid-template-columns: repeat(6, 1fr); column-gap: 24px; } }

.lede__acts { margin-top: clamp(26px, 3.6vw, 42px); display: flex; flex-wrap: wrap; gap: 10px; }

/* ── 절 공통 ──────────────────────────────────────────── */

section > .wrap > h2, .head h2 { font-size: clamp(24px, 3.2vw, 38px); letter-spacing: -.042em; }
.why, .work, .scope, .flow, .price, .faq, .order { padding: var(--gap) 0; }
.why, .scope, .flow, .price, .faq { border-top: 1px solid var(--line); }

/* ── 무엇이 다릅니까 ──────────────────────────────────── */

.why__lead {
  margin-top: clamp(20px, 2.6vw, 30px);
  font-size: clamp(21px, 2.9vw, 34px); font-weight: 600;
  letter-spacing: -.042em; line-height: 1.32; max-width: 24ch;
  text-wrap: balance;
}
.why__sub { margin-top: 16px; font-size: clamp(14.5px, 1.5vw, 16.5px); color: var(--ink-2); max-width: 58ch; line-height: 1.72; }
.why__list { margin-top: clamp(32px, 4.4vw, 56px); display: grid; gap: clamp(26px, 3.6vw, 42px); }
@media (min-width: 720px) { .why__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .why__list { grid-template-columns: repeat(4, 1fr); } }

.why__item { border-top: 1px solid var(--ink); padding-top: 16px; }
.why__n { font-family: var(--mark); font-size: 11px; font-weight: 500; letter-spacing: .18em; color: var(--ultra); font-variant-numeric: tabular-nums; }
.why__t { margin-top: 12px; font-size: clamp(18px, 2vw, 22px); font-weight: 600; letter-spacing: -.035em; line-height: 1.34; }
.why__d { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }

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

.head { display: grid; gap: 12px; }
.head__p { font-size: 14.5px; color: var(--ink-3); max-width: 52ch; }

.plates { margin-top: clamp(32px, 5vw, 60px); display: grid; gap: clamp(44px, 6vw, 92px) clamp(24px, 3vw, 44px); grid-template-columns: 1fr; }
@media (min-width: 860px) { .plates { grid-template-columns: 1fr 1fr; } }

.plate { cursor: pointer; }

.plate__frame {
  position: relative; background: var(--mat); padding: clamp(14px, 1.8vw, 22px);
  box-shadow: 0 1px 2px rgba(13, 14, 16, .05), 0 18px 40px -28px rgba(13, 14, 16, .45);
  transition: box-shadow .38s var(--ease);
}
.plate:hover .plate__frame { box-shadow: 0 2px 4px rgba(13, 14, 16, .07), 0 30px 60px -30px rgba(13, 14, 16, .55); }

.plate__shot {
  width: 100%; height: auto; aspect-ratio: 1440 / 900;
  object-fit: cover; object-position: top center;
  background: var(--wall-2); outline: 1px solid var(--line-2); outline-offset: -1px;
}
.plate__m {
  position: absolute; right: clamp(18px, 2.4vw, 32px); bottom: -20px;
  width: clamp(48px, 18%, 82px); height: auto;
  aspect-ratio: 390 / 844; object-fit: cover; object-position: top center;
  background: var(--wall-2);
  box-shadow: 0 2px 4px rgba(13, 14, 16, .10), 0 14px 26px -12px rgba(13, 14, 16, .45);
  outline: 1px solid rgba(13, 14, 16, .10); outline-offset: -1px;
}

.plate__label { margin-top: 36px; }
.plate__no { font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .2em; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.plate__name { margin-top: 9px; font-size: clamp(19px, 1.9vw, 23px); font-weight: 600; letter-spacing: -.035em; line-height: 1.25; }
.plate__kind { margin-top: 5px; font-size: 13.5px; font-weight: 500; color: var(--ink-3); }
.plate__line { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); line-height: 1.65; max-width: 44ch; }

.plate__meta { margin-top: 16px; border-top: 1px solid var(--line); }
.plate__meta > div {
  display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--line-2);
}
.plate__meta dt { font-family: var(--mark); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.plate__meta dd { font-size: 13.5px; color: var(--ink); line-height: 1.55; }


/* 걷히듯 열린다 — 이 지면의 유일한 연출 */
html:not(.no-motion) .plate__shot { clip-path: inset(0 0 100% 0); }
html:not(.no-motion) .plate.is-in .plate__shot {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.05s var(--ease);
}
html:not(.no-motion) .plate__m,
html:not(.no-motion) .plate__label { opacity: .001; }
html:not(.no-motion) .plate.is-in .plate__m { opacity: 1; transition: opacity .5s var(--ease) .5s; }
html:not(.no-motion) .plate.is-in .plate__label { opacity: 1; transition: opacity .7s var(--ease) .34s; }
html:not(.no-motion) .plate:nth-child(2n).is-in .plate__shot { transition-delay: .1s; }
html:not(.no-motion) .plate:nth-child(2n).is-in .plate__m { transition-delay: .6s; }
html:not(.no-motion) .plate:nth-child(2n).is-in .plate__label { transition-delay: .44s; }

/* ── 제작 범위 ────────────────────────────────────────── */

.scope__p { margin-top: 14px; font-size: 14.5px; color: var(--ink-3); }
.scope__list { margin-top: clamp(24px, 3vw, 40px); border-top: 1px solid var(--ink); display: grid; }
.scope__item { display: grid; grid-template-columns: 78px 1fr; gap: 20px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid var(--line); }
.scope__n { font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; letter-spacing: -.045em; font-variant-numeric: tabular-nums; line-height: 1; justify-self: end; }
.scope__n i { font-style: normal; font-size: .46em; margin-left: 3px; color: var(--ink-3); font-weight: 500; }
.scope__label { font-size: 15px; color: var(--ink); line-height: 1.5; }
@media (min-width: 820px) { .scope__list { grid-template-columns: 1fr 1fr; column-gap: 56px; } }

/* ── 진행 ─────────────────────────────────────────────── */

.flow__list { margin-top: clamp(24px, 3vw, 40px); border-top: 1px solid var(--ink); }
.flow__item { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.flow__n { font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .2em; color: var(--ultra); font-variant-numeric: tabular-nums; }
.flow__t { font-size: 17px; font-weight: 600; letter-spacing: -.03em; }
.flow__d { font-size: 14.5px; color: var(--ink-2); max-width: 58ch; }
@media (min-width: 780px) {
  .flow__item { grid-template-columns: 60px minmax(0, 1fr) minmax(0, 1.35fr); gap: 24px; align-items: baseline; }
  .flow__n { padding-top: 3px; }
}

.note { margin-top: clamp(28px, 4vw, 44px); }
.note h3 { font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.note ul { margin-top: 14px; display: grid; gap: 9px; }
.note li { font-size: 14px; color: var(--ink-2); padding-left: 16px; position: relative; line-height: 1.62; max-width: 72ch; }
.note li::before { content: ''; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--ink-3); }

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

.price__p { margin-top: 14px; font-size: 14.5px; color: var(--ink-3); max-width: 56ch; }
.tiers { margin-top: clamp(26px, 3.5vw, 44px); display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--ink); }
@media (min-width: 640px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1120px) { .tiers { grid-template-columns: repeat(5, 1fr); } .tier__fig { flex-wrap: wrap; } .tier__fig b { font-size: clamp(20px, 1.7vw, 24px); white-space: nowrap; } }

.tier { background: var(--wall); padding: 24px clamp(16px, 2vw, 26px) 26px; display: flex; flex-direction: column; }
.tier.is-lead { background: var(--mat); }
.tier__name { font-size: 16px; font-weight: 600; letter-spacing: -.03em; }
.tier__fig { margin-top: 12px; display: flex; align-items: baseline; gap: 3px; }
.tier__fig b { font-size: clamp(26px, 2.9vw, 34px); font-weight: 600; letter-spacing: -.05em; font-variant-numeric: tabular-nums; line-height: 1; }
.tier__fig i { font-style: normal; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.tier__day { margin-top: 8px; font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.tier__d { margin-top: 14px; font-size: 14px; color: var(--ink-2); line-height: 1.65; }
.tier__items { margin-top: 16px; margin-bottom: auto; display: grid; gap: 7px; padding-top: 14px; border-top: 1px solid var(--line); }
.tier__items li { font-size: 13.5px; color: var(--ink); padding-left: 15px; position: relative; }
.tier__items li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--ink); }
.tier__cta { margin-top: 22px; align-self: flex-start; }

.adds { margin-top: clamp(30px, 4vw, 48px); border-top: 1px solid var(--ink); }
.adds h3 { padding-top: 14px; font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.adds ul { margin-top: 10px; }
.add { display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.add__t { font-size: 15px; font-weight: 600; letter-spacing: -.025em; }
.add__p { font-size: 15px; font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.add__d { grid-column: 1 / -1; font-size: 13.5px; color: var(--ink-3); }
@media (min-width: 720px) {
  .add { grid-template-columns: 230px 1fr auto; align-items: baseline; }
  .add__d { grid-column: auto; }
  .add__p { order: 3; }
}

/* ── 질문 ─────────────────────────────────────────────── */

.faq__list { margin-top: clamp(22px, 3vw, 36px); border-top: 1px solid var(--ink); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 17px 0; cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.028em; line-height: 1.5;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary svg { width: 15px; height: 15px; flex: none; color: var(--ink-3); transition: transform .3s var(--ease); align-self: center; }
.qa[open] summary svg { transform: rotate(180deg); }
.qa p { padding: 0 0 18px; font-size: 14.5px; color: var(--ink-2); max-width: 66ch; line-height: 1.75; }

/* ── 의뢰 · 바닥 ──────────────────────────────────────── */

.order { border-top: 1px solid var(--ink); }
.order h2 { font-size: clamp(28px, 4.4vw, 48px); letter-spacing: -.045em; }
.order__p { margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-2); max-width: 48ch; }
.order__grid { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .order__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 64px; align-items: start; } }
.inq { display: grid; gap: 14px; }
.inq__row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .inq__row { grid-template-columns: 1fr 1fr; } }
.inq__f { display: grid; gap: 6px; }
.inq__f span { font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.inq input, .inq select, .inq textarea { width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--mat); border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 12px 12px; outline: none; -webkit-appearance: none; appearance: none; }
.inq select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.inq textarea { resize: vertical; min-height: 150px; line-height: 1.55; }
.inq input:focus, .inq select:focus, .inq textarea:focus { border-bottom-color: var(--ultra); box-shadow: inset 0 -1px 0 var(--ultra); }
.inq__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.inq__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 6px; }
.inq__hint { font-size: 13px; color: var(--ink-3); }
.inq__msg { min-height: 1.4em; font-size: 14.5px; color: var(--ink-2); }
.inq__msg.is-ok { color: var(--ultra); }
.inq__msg.is-err { color: #B4231F; }
.inq.is-busy #inq-send { opacity: .5; pointer-events: none; }
.order__side { border-top: 1px solid var(--ink); padding-top: 16px; }
.order__side-h { font-size: 15px; font-weight: 600; letter-spacing: -.02em; }
.order__acts { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.order__note { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); }

.foot { background: var(--ink); color: rgba(255, 255, 255, .68); padding: clamp(40px, 6vw, 64px) 0; }
.foot__mark { font-family: var(--mark); font-size: 14px; font-weight: 600; letter-spacing: .17em; color: #fff; }
.foot__p { margin-top: 16px; font-size: 13.5px; max-width: 66ch; line-height: 1.75; }
@media (max-width: 879px) { .foot { padding-bottom: calc(88px + env(safe-area-inset-bottom)); } }

/* ── 하단 고정 행동 ───────────────────────────────────── */

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(237, 238, 239, .90);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-top: 1px solid var(--line);
}
.dock__cta { width: 100%; padding: 14px 20px; font-size: 15px; }
@media (min-width: 880px) { .dock { display: none; } }

/* ── 크게 보기 ────────────────────────────────────────── */

.view {
  border: 0; padding: 0; width: 100%; max-width: min(1120px, 94vw); max-height: 92dvh;
  background: var(--mat); border-radius: 0; overflow: visible;
  box-shadow: 0 40px 90px -40px rgba(13, 14, 16, .7);
}
.view::backdrop { background: rgba(13, 14, 16, .58); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.view__body { padding: clamp(24px, 3.6vw, 46px); overflow-y: auto; max-height: 92dvh; }
.view__close {
  position: absolute; top: -16px; right: -16px; z-index: 2;
  width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--ink); color: #fff; display: grid; place-items: center;
}
.view__close:hover { background: var(--ultra); }
.view__close svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
  .view { max-width: 100vw; width: 100vw; height: 100dvh; max-height: 100dvh; }
  .view__body { max-height: 100dvh; padding-top: 60px; }
  .view__close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

.view__no { font-family: var(--mark); font-size: 10.5px; font-weight: 500; letter-spacing: .2em; color: var(--ink-3); }
.view__name { margin-top: 10px; font-size: clamp(24px, 3.6vw, 38px); font-weight: 600; letter-spacing: -.045em; }
.view__kind { margin-top: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink-3); }
.view__line { margin-top: 14px; font-size: 15.5px; color: var(--ink-2); max-width: 56ch; }
.view__shots { margin-top: 26px; display: grid; gap: 16px; grid-template-columns: 1fr; }
.view__shots img { width: 100%; height: auto; background: var(--wall-2); outline: 1px solid var(--line); outline-offset: -1px; }
.view__m { max-width: 230px; justify-self: start; }
@media (min-width: 800px) {
  .view__shots { grid-template-columns: 1fr 210px; align-items: start; }
  .view__m { max-width: 100%; }
}
.view__spec { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--ink); display: grid; gap: 8px; }
.view__spec li { font-size: 14px; color: var(--ink); padding-left: 16px; position: relative; }
.view__spec li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--ink); }
.view__acts { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
