/* =========================================================
   ANOTHER MEN'S HAIR
   ========================================================= */
:root {
  --bg: #0c0c0d;
  --bg-2: #141415;
  --ink: #ececea;
  --ink-2: #b9b9b6;
  --muted: #7d7d7a;
  --line: rgba(236, 236, 234, 0.12);
  --accent: #e8623a;
  --accent-2: #e8285a;
  --naver: #03c75a;

  --display: 'Archivo', 'Pretendard Variable', Pretendard, sans-serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.mo-only { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --h: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn--sm { --h: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 68px; padding: 0 36px; font-size: 18px; }
.btn--block { width: 100%; }
.btn--light { background: var(--ink); color: var(--bg); }
.btn--light:hover { background: #fff; }
.btn--accent { background: var(--accent); color: #fff; }
.btn .ig { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.header__cta { display: flex; gap: 8px; }
.cta__ig { margin-top: 12px; }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(236,236,234,.06); }
.naver-n {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 5px;
  background: var(--naver); color: #fff;
  font-family: var(--display); font-weight: 900; font-size: 13px; line-height: 1;
}

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center; gap: 32px;
  padding: 0 var(--gutter);
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12, 12, 13, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { width: 74px; height: 24px; color: var(--ink); }
.brand__name {
  font-family: var(--display); font-size: 9.5px; font-weight: 400; font-style: italic;
  letter-spacing: .28em; line-height: 1.35; color: var(--ink-2);
  font-variation-settings: 'wdth' 110;
}
/* 메뉴는 네이버 예약 버튼 바로 왼쪽 */
.nav { display: flex; gap: 34px; }
.nav a {
  position: relative;
  font-family: var(--display); font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink-2); transition: color .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 60; }
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink);
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21.5px; transform: rotate(-45deg); }

/* Mobile menu */
.mnav {
  position: fixed; inset: 0; z-index: 45;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + 24px) var(--gutter) calc(28px + env(safe-area-inset-bottom));
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  visibility: hidden;
}
.mnav.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.mnav__links { display: flex; flex-direction: column; }
.mnav__links a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 800; font-size: clamp(36px, 11vw, 56px);
  font-variation-settings: 'wdth' 118; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.mnav__links a em { font-style: normal; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: .1em; }
.mnav.is-open .mnav__links a { opacity: 1; transform: none; }
.mnav.is-open .mnav__links a:nth-child(1) { transition-delay: .15s; }
.mnav.is-open .mnav__links a:nth-child(2) { transition-delay: .2s; }
.mnav.is-open .mnav__links a:nth-child(3) { transition-delay: .25s; }
.mnav.is-open .mnav__links a:nth-child(4) { transition-delay: .3s; }
.mnav.is-open .mnav__links a:nth-child(5) { transition-delay: .35s; }
.mnav.is-open .mnav__links a:nth-child(6) { transition-delay: .4s; }
.mnav__foot p { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -4%;
  background: url('../assets/img/hero.jpg') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.08);
  animation: heroIn 2.4s var(--ease) forwards;
  will-change: transform;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,13,.55) 0%, rgba(12,12,13,0) 28%, rgba(12,12,13,0) 55%, rgba(12,12,13,.92) 100%),
    linear-gradient(90deg, rgba(12,12,13,.35), transparent 60%);
}
@keyframes heroIn { from { transform: scale(1.18); opacity: 0; } to { transform: scale(1.08); opacity: 1; } }
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner {
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  width: 100%; max-width: 1600px; margin: 0 auto;
  padding: calc(var(--header-h) + 40px) var(--gutter) clamp(40px, 7vh, 80px);
}
.hero__kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: clamp(14px, 2.4vh, 28px);
}
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(232,98,58,.2); }
.hero__loc:not(:empty)::before { content: '—'; margin: 0 10px 0 2px; color: var(--muted); }

.hero__title {
  font-family: var(--display);
  /* 크기를 줄이고 얇게 — 부담 없이 고급스럽게 (사장님 요청) */
  font-weight: 500;
  font-variation-settings: 'wdth' 112;
  font-size: clamp(42px, min(7.2vw, 12vh), 124px);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-left: -0.04em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: block; transform: translateY(105%); animation: lineUp 1.2s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .1s; }
.hero__title .line:nth-child(3) > span { animation-delay: .2s; }
.hero__title i { font-style: italic; font-weight: 200; letter-spacing: -0.02em; }
@keyframes lineUp { to { transform: none; } }
/* 한글 가게 이름 — 'HAIR' 오른쪽 빈자리에 (자리가 없으면 아래 줄로) */
.hero__title .line--hair > span { display: flex; align-items: flex-end; flex-wrap: wrap; column-gap: .22em; }
/* 고급 명조체 + 샴페인 골드 그라데이션 */
.hero__ko {
  display: inline-flex; align-items: center; gap: .7em;
  padding-bottom: .32em;
  font-family: 'Noto Serif KR', serif; font-weight: 600; font-style: normal; font-variation-settings: normal;
  font-size: clamp(22px, 2.6vw, 42px); letter-spacing: .38em; line-height: 1; text-transform: none;
  color: #e6d3ad;
  background: linear-gradient(100deg, #f6ead2 0%, #d9bd8c 38%, #fff4dc 52%, #c9a66b 70%, #eddcb8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheen 6s ease-in-out 1.5s infinite;
}
.hero__ko::before {
  content: ''; width: 1.6em; height: 1px; flex-shrink: 0;
  background: linear-gradient(90deg, transparent, #d9bd8c);
}
@keyframes goldSheen { 0%, 100% { background-position: 100% 0; } 50% { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) { .hero__ko { animation: none; } }
.hero__journal { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; margin-top: clamp(22px, 3.4vh, 40px); max-width: 100%; }
.hero__journal.reveal-up { animation-delay: .85s; }
.hero__journal-post {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px; min-width: 0; max-width: 100%;
  padding: 8px 8px 8px 8px; border-radius: 999px;
  background: rgba(12,12,13,.55); border: 1px solid rgba(232,98,58,.55);
  box-shadow: 0 0 0 4px rgba(232,98,58,.12), 0 12px 40px -8px rgba(232,98,58,.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
/* 반짝이는 빛이 지나가는 효과 */
.hero__journal-post::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-120%); animation: journalShine 4s var(--ease) 1.8s infinite;
}
@keyframes journalShine { 0% { transform: translateX(-120%); } 40%, 100% { transform: translateX(120%); } }
.hero__journal-post:hover { background: rgba(12,12,13,.75); transform: translateY(-2px); box-shadow: 0 0 0 5px rgba(232,98,58,.2), 0 16px 48px -8px rgba(232,98,58,.6); }
.hero__journal-thumb { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center 25%; }
.hero__journal-thumb--mark { display: grid; place-items: center; background: var(--bg-2); color: var(--ink); }
.hero__journal-thumb--mark svg { width: 34px; height: auto; aspect-ratio: 296 / 96; }
/* 여러 글 카드를 같은 자리에 겹쳐 두고 하나씩 보여줌 */
.hero__journal-rotator { display: grid; min-width: 0; max-width: 100%; }
.hero__journal-rotator > .hero__journal-post { grid-area: 1 / 1; justify-self: start; transition: opacity .6s var(--ease), transform .6s var(--ease), visibility 0s, background .35s var(--ease), box-shadow .35s var(--ease); }
.hero__journal-rotator > .hero__journal-post:not(.is-active) { opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .6s var(--ease), transform .6s var(--ease), visibility 0s .6s; }
.hero__journal-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero__journal-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}
.hero__journal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: journalPulse 1.6s ease-in-out infinite; }
@keyframes journalPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,98,58,.7); } 50% { box-shadow: 0 0 0 6px rgba(232,98,58,0); } }
.hero__journal-title { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: clamp(15px, 1.3vw, 18px); font-weight: 700; letter-spacing: -0.02em; }
.hero__journal-go {
  flex-shrink: 0; width: 40px; height: 40px; margin-left: 6px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 16px;
  transition: transform .35s var(--ease);
}
.hero__journal-post:hover .hero__journal-go { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .hero__journal-post::after, .hero__journal-dot { animation: none; } }
.hero__journal-all { font-size: 13px; color: var(--ink-2); border-bottom: 1px solid rgba(236,236,234,.3); }
.hero__journal-all:hover { color: var(--ink); border-color: var(--ink); }

.hero__bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  margin-top: clamp(24px, 4vh, 48px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--line);
}
.hero__copy { font-size: clamp(15px, 1.2vw, 17px); color: var(--ink-2); line-height: 1.75; }
.hero__copy b { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; gap: 10px; flex-shrink: 0; }

.hero__scroll {
  position: absolute; right: var(--gutter); top: 50%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-2);
  writing-mode: vertical-rl;
}
.hero__scroll i { width: 1px; height: 64px; background: linear-gradient(var(--ink) 50%, transparent 50%) 0 0 / 1px 200%; animation: scrollLine 2s linear infinite; }
@keyframes scrollLine { from { background-position: 0 100%; } to { background-position: 0 -100%; } }

/* reveal (hero) */
.reveal-up { opacity: 0; transform: translateY(18px); animation: fadeUp 1s var(--ease) .5s forwards; }
.hero__actions.reveal-up { animation-delay: .65s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 22px 0; background: var(--bg);
}
.marquee__track {
  display: flex; align-items: center; gap: 36px; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--display); font-weight: 500; font-variation-settings: 'wdth' 112;
  font-size: clamp(18px, 2.2vw, 30px); text-transform: uppercase; letter-spacing: .04em; line-height: 1;
}
.marquee__track span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1px var(--ink-2); font-style: italic; font-weight: 300; }
.marquee__track b { font-size: .5em; color: var(--accent); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(96px, 14vw, 200px) 0; }
.section__head { margin-bottom: clamp(40px, 6vw, 80px); display: grid; gap: 22px; }
.section__head--row { grid-template-columns: 1fr auto; align-items: end; }
.eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.section__title {
  /* 첫 화면 제목과 같은 톤 — 작고 얇게 (사장님 요청) */
  font-family: var(--display); font-weight: 500; font-variation-settings: 'wdth' 112;
  font-size: clamp(38px, 5.6vw, 96px); line-height: .95; letter-spacing: .01em; text-transform: uppercase;
}
.section__title i { font-style: italic; font-weight: 200; text-transform: lowercase; letter-spacing: 0; }
.section__title sup {
  font-size: .2em; font-weight: 400; letter-spacing: .08em; vertical-align: top;
  margin-left: .4em; position: relative; top: .35em; color: var(--accent);
}
.section__desc { color: var(--ink-2); font-size: 15px; max-width: 460px; }
.section__head--row .section__desc { text-align: right; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Portfolio ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  height: 40px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line);
  font-family: var(--display); font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px;
  transition: all .35s var(--ease);
}
.chip small { font-size: 10px; color: var(--muted); transition: color .35s; }
.chip:hover { border-color: var(--ink-2); color: var(--ink); }
.chip[aria-selected="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip[aria-selected="true"] small { color: var(--bg); opacity: .6; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 18px);
}
.card { position: relative; opacity: 0; transform: translateY(24px); animation: cardIn .8s var(--ease) forwards; }
@keyframes cardIn { to { opacity: 1; transform: none; } }
.card__btn { display: block; width: 100%; text-align: left; position: relative; overflow: hidden; border-radius: 4px; background: var(--bg-2); }
.card__img { aspect-ratio: 4 / 5; overflow: hidden; }
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.card__btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,9,.85));
  opacity: .9; transition: opacity .5s;
}
.card__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  padding: clamp(14px, 1.6vw, 24px);
}
.card__no { font-family: var(--display); font-size: 11px; letter-spacing: .14em; color: var(--ink-2); display: block; margin-bottom: 4px; }
.card__title { font-size: clamp(16px, 1.5vw, 21px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.card__tag {
  margin-left: .6em; vertical-align: middle;
  font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #e6d3ad; opacity: .9;
}
.lb__title .card__tag { font-size: 12px; }
/* 사진 위 분류 표시(Design Cut / Perm) 숨김 — 다시 보이게 하려면 아래 한 줄 삭제 */
.card__cat, .lb__cat { display: none !important; }
.card__cat {
  flex-shrink: 0;
  font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid rgba(236,236,234,.35); border-radius: 999px;
}
.card__view {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  width: 84px; height: 84px; margin: -42px 0 0 -42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transform: scale(0); transition: transform .5s var(--ease);
}
@media (hover: hover) {
  .card__btn:hover .card__img img { transform: scale(1.08); }
  .card__btn:hover .card__view { transform: scale(1); }
}
.grid__more { display: flex; justify-content: center; margin-top: clamp(32px, 5vw, 64px); }
.grid__more[hidden] { display: none; }
.plus { font-size: 18px; font-weight: 300; }

/* ---------- About ---------- */
.about { background: var(--ink); color: var(--bg); }
.about .eyebrow { color: #6f6f6c; }
.about__wrap { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.about__statement {
  font-size: clamp(28px, 3.9vw, 60px); font-weight: 700; line-height: 1.28; letter-spacing: -0.045em;
}
.about .muted { color: #9a9a96; }
.about__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 4vw, 56px) clamp(20px, 3vw, 48px);
  margin-top: clamp(56px, 8vw, 120px); padding-top: 32px; border-top: 1px solid rgba(12,12,13,.15);
}
.about__outro {
  margin-top: clamp(48px, 6vw, 88px); padding-top: 28px; border-top: 1px solid rgba(12,12,13,.15);
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.8; color: #55554f;
}
.about__outro b { color: var(--bg); font-weight: 700; }
.feature__no { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--accent); }
.feature h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; margin: 14px 0 10px; }
.feature p { font-size: 15px; color: #55554f; line-height: 1.75; }

/* ---------- Service ---------- */
/* 가격표 — 고급 메뉴판 스타일 (이름 ····· 가격) */
.menu { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(8px, 1vw, 16px) 0; }
.menu__item {
  display: grid;
  grid-template-columns: 56px auto 1fr auto;
  grid-template-areas: "no name lead price" ".  desc desc  .";
  column-gap: clamp(16px, 2vw, 28px); row-gap: 8px; align-items: baseline;
  padding: clamp(20px, 2.2vw, 30px) 0;
}
.menu__item + .menu__item { border-top: 1px solid rgba(236,236,234,.06); }
.menu__no { grid-area: no; font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: .16em; color: var(--accent); }
.menu__name { grid-area: name; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; }
.menu__en {
  font-family: var(--display); font-weight: 300; font-variation-settings: 'wdth' 112;
  font-size: clamp(20px, 2.1vw, 32px); text-transform: uppercase; letter-spacing: .04em; line-height: 1.1; white-space: nowrap;
  transition: color .5s var(--ease), letter-spacing .6s var(--ease);
}
.menu__ko { font-size: 14px; font-weight: 500; color: var(--ink-2); letter-spacing: .04em; }
.menu__lead {
  grid-area: lead; align-self: center; min-width: 24px; height: 0;
  border-bottom: 1px dotted rgba(236,236,234,.4);
  transition: border-color .5s var(--ease);
}
.menu__price {
  grid-area: price; text-align: right; white-space: nowrap;
  font-family: var(--display); font-weight: 300; font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .02em; font-variant-numeric: tabular-nums; color: var(--ink);
}
.menu__price b { font-weight: 500; }
.menu__price small { margin-left: 4px; font-family: var(--sans); font-size: .55em; font-weight: 500; color: var(--ink-2); }
.menu__price:empty, .menu__price:empty ~ .menu__lead { visibility: hidden; }
.menu__desc { grid-area: desc; font-size: 14px; color: var(--muted); }
@media (hover: hover) {
  .menu__item:hover .menu__en { color: var(--accent); letter-spacing: .08em; }
  .menu__item:hover .menu__lead { border-color: var(--accent); }
}

/* ---------- Location ---------- */
/* ---------- Team ---------- */
.team { padding-top: 0; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.member__photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 4px; background: var(--bg-2); }
.member__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: grayscale(1) contrast(1.05); transform: scale(1.02);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.member__empty {
  position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 16px;
  background: radial-gradient(120% 80% at 50% 0%, #1f1f21, var(--bg-2));
}
.member__empty svg { width: 96px; height: 32px; color: rgba(236,236,234,.1); }
.member__empty span { font-family: var(--display); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.member__badge {
  position: absolute; left: 14px; top: 14px;
  padding: 6px 11px; border-radius: 999px;
  font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); background: rgba(12,12,13,.55); border: 1px solid rgba(236,236,234,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.member__badge:empty { display: none; }
.member--lead .member__badge { background: var(--accent); border-color: var(--accent); color: #fff; }
.member__info { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 18px; }
.member__name { font-size: clamp(20px, 1.8vw, 26px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.member__name small { margin-left: 10px; font-size: 13px; font-weight: 500; letter-spacing: .02em; color: var(--ink-2); }
.member__tbd { font-family: var(--display); font-weight: 300; font-style: italic; letter-spacing: .02em; color: var(--muted); }
.member__ig {
  flex-shrink: 0; width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--ink-2);
  transition: color .3s, border-color .3s;
}
.member__ig svg { width: 16px; height: 16px; }
.member__ig:hover { color: var(--ink); border-color: var(--ink); }
.member__desc { margin-top: 8px; font-size: 14px; color: var(--muted); }
.member__tags { margin-top: 16px; }
.member__tags-title { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.member__tags ul { display: flex; flex-wrap: wrap; gap: 6px; }
.member__tags li { padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--ink-2); }
@media (hover: hover) {
  .member:hover .member__photo img { filter: none; transform: scale(1.06); }
}

/* ---------- Journal (블로그 카드) ---------- */
.journal { padding-top: 0; }
.journal__all { color: var(--ink); border-bottom: 1px solid var(--accent); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2vw, 32px); }
.jcard { display: block; }
.jcard__img { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; background: var(--bg-2); margin-bottom: 18px; }
.jcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.jcard__img--type { display: grid; place-items: center; background: radial-gradient(120% 90% at 20% 0%, rgba(232,98,58,.28), transparent 60%), var(--bg-2); }
.jcard__img--type svg { width: 40%; height: auto; aspect-ratio: 296 / 96; color: rgba(236,236,234,.14); transition: color .6s var(--ease); }
.jcard__date { font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: .16em; color: var(--accent); }
.jcard__title { margin-top: 8px; font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.4; }
.jcard__excerpt { margin-top: 8px; font-size: 14px; color: var(--muted); }
@media (hover: hover) {
  .jcard:hover .jcard__img img { transform: scale(1.05); }
  .jcard:hover .jcard__img--type svg { color: rgba(236,236,234,.3); }
  .jcard:hover .jcard__title { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
}

/* ---------- 블로그 페이지 ---------- */
.post-page .reveal { opacity: 1; transform: none; }
.post-back { font-size: 14px; color: var(--ink-2); }
.post-back:hover { color: var(--ink); }
.post { padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 clamp(80px, 10vw, 140px); }
.post__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.post__head { padding-bottom: 36px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.post__title { margin-top: 18px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.3; }
.post__lead { margin-top: 20px; font-size: 17px; color: var(--ink-2); line-height: 1.8; }
.post__body { font-size: 16px; line-height: 1.9; color: var(--ink-2); }
.post__body h2 { margin: 56px 0 16px; font-size: 24px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.post__body h2::before { content: ''; display: block; width: 28px; height: 2px; margin-bottom: 16px; background: var(--accent); }
.post__body h3 { margin: 28px 0 8px; font-size: 17px; font-weight: 700; color: var(--ink); }
.post__body p + p { margin-top: 14px; }
.post__body strong { color: var(--ink); font-weight: 600; }
.post__body ul { margin: 14px 0; display: grid; gap: 6px; }
.post__body li { position: relative; padding-left: 18px; }
.post__body li::before { content: ''; position: absolute; left: 2px; top: .8em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.post__body a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.post__body img { width: 100%; height: auto; border-radius: 4px; margin: 24px 0 8px; }
.post__body figcaption { font-size: 13px; color: var(--muted); text-align: center; }
.post__fig { margin: 28px auto 32px; max-width: 560px; }
.post__fig img { margin: 0 0 10px; }
.post__fig--sm { max-width: 380px; }
.post__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: stretch; }
.post__pair img { height: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; }
.post__pair--3 { grid-template-columns: repeat(3, 1fr); }
.post__body blockquote { margin: 20px 0; padding: 4px 0 4px 18px; border-left: 2px solid var(--accent); color: var(--ink-2); }
.post__body table { width: 100%; margin: 16px 0 8px; border-collapse: collapse; font-size: 15px; }
.post__body th, .post__body td { padding: 12px 4px; border-bottom: 1px solid var(--line); text-align: left; }
.post__body th { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.post__body td:last-child, .post__body th:last-child { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.post__note { font-size: 13px; color: var(--muted); }
.post__cta {
  margin-top: 64px; padding: clamp(28px, 4vw, 44px); border-radius: 6px; text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(232,98,58,.22), transparent 60%), var(--bg-2);
}
.post__cta p { margin-bottom: 20px; font-size: 20px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.5; color: var(--ink); }
.post .journal__grid { margin-top: 8px; }
.post-footer { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 14px; color: var(--ink-2); }
.post-footer p { width: 100%; color: var(--muted); font-size: 13px; }

.location { padding-top: 0; }
.loc { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: stretch; }
.loc__map {
  position: relative; min-height: 460px; border-radius: 6px; overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--line);
}
.loc__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(.92) contrast(.9) brightness(.95);
}
.loc__pin {
  position: absolute; left: 16px; bottom: 16px; padding: 10px 12px; border-radius: 4px;
  background: var(--bg); border: 1px solid var(--line); pointer-events: none;
}
.loc__empty { display: none; }
.loc__map.is-empty .loc__pin { display: none; }
.loc__map.is-empty {
  background:
    radial-gradient(circle at 50% 50%, rgba(232,98,58,.22), transparent 40%),
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--bg-2);
}
.loc__map.is-empty .loc__empty {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.loc__map.is-empty .loc__empty:hover { color: var(--ink); }
.loc__dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 10px rgba(232,98,58,.25), 0 0 0 22px rgba(232,98,58,.1); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 14px rgba(232,98,58,.18), 0 0 0 30px rgba(232,98,58,.05); } }
.loc__pin svg { width: 62px; height: 20px; color: var(--ink); display: block; }
.loc__info { display: flex; flex-direction: column; }
.loc__info > div:not(.loc__btns) { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 96px 1fr; gap: 16px; }
.loc__info > div:first-child { padding-top: 0; }
.loc__info dt { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.loc__info dd { font-size: 16px; font-weight: 500; }
.loc__info dd small { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); font-weight: 400; }
.loc__info dd small:empty { display: none; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; }
.hours-row + .hours-row { margin-top: 4px; }
.hours-row span:first-child { color: var(--ink-2); font-weight: 400; }
.loc__info a[data-link="tel"] { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: .01em; }
.loc__btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(110px, 16vw, 220px) 0; text-align: center; }
.cta__bg {
  position: absolute; inset: -10%; z-index: -1;
  background: url('../assets/img/hero.jpg') 30% 80% / cover no-repeat;
  filter: saturate(1.15);
}
.cta__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(12,12,13,.25), rgba(12,12,13,.85) 75%); }
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { color: var(--ink-2); }
.cta__title {
  font-family: var(--display); font-weight: 800; font-variation-settings: 'wdth' 125;
  font-size: clamp(64px, 13vw, 220px); line-height: .84; letter-spacing: -0.04em; text-transform: uppercase;
  margin: 22px 0 28px;
}
.cta__title i { font-style: italic; font-weight: 200; text-transform: lowercase; }
.cta__desc { color: var(--ink-2); margin-bottom: 36px; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr; gap: 32px; align-items: start; }
.footer__logo { display: inline-flex; flex-direction: column; gap: 10px; }
.footer__logo svg { width: 150px; height: 49px; color: var(--ink); }
.footer__logo span { font-family: var(--display); font-size: 10px; font-style: italic; font-weight: 300; letter-spacing: .44em; color: var(--ink-2); }
.footer__info p, .footer__sns a { font-size: 14px; color: var(--ink-2); line-height: 1.9; }
.footer__sns { display: flex; flex-direction: column; align-items: flex-start; }
.footer__sns a:hover, .footer__info a:hover { color: var(--ink); }
.footer__copy { grid-column: 1 / -1; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }

/* ---------- Dock (mobile) ---------- */
.dock { display: none; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.lb[hidden] { display: none; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(8,8,9,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.lb__stage {
  position: relative; display: grid; grid-template-columns: auto 320px; gap: 40px; align-items: end;
  max-width: calc(100vw - 200px); animation: lbIn .6s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.lb__fig { height: min(84vh, 900px); aspect-ratio: 4 / 5; max-width: calc(100vw - 600px); border-radius: 4px; overflow: hidden; background: var(--bg-2); }
.lb__fig img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.lb__fig img.is-loading { opacity: 0; }
.lb__count { font-family: var(--display); font-size: 12px; letter-spacing: .14em; color: var(--muted); }
.lb__cat { margin-top: 28px; font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.lb__title { font-size: 34px; font-weight: 700; letter-spacing: -0.04em; margin: 8px 0 12px; line-height: 1.2; }
.lb__desc { color: var(--ink-2); font-size: 15px; margin-bottom: 28px; }
.lb__btn {
  position: absolute; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; font-size: 18px;
  background: rgba(12,12,13,.5); transition: background .3s, border-color .3s;
}
.lb__btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.lb__close { top: 24px; right: 24px; font-size: 16px; }
.lb__prev { left: 24px; top: 50%; margin-top: -28px; }
.lb__next { right: 24px; top: 50%; margin-top: -28px; }

/* Toast */
/* 오른쪽 아래 맨 위/맨 아래 버튼 */
.scroller {
  position: fixed; right: var(--gutter); bottom: 28px; z-index: 42;
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(20,20,21,.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s;
}
.scroller.is-show { opacity: 1; visibility: visible; transform: none; transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s; }
.scroller button { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink-2); transition: color .3s, background .3s; }
.scroller button + button { border-top: 1px solid var(--line); }
.scroller button:hover { color: var(--ink); background: rgba(236,236,234,.08); }
.scroller svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.is-locked .scroller { opacity: 0; visibility: hidden; }

.toast {
  position: fixed; left: 50%; bottom: 32px; z-index: 120;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--ink); color: var(--bg); padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav { gap: 24px; }
  .lb__stage { grid-template-columns: 1fr; gap: 20px; max-width: calc(100vw - 160px); justify-items: center; }
  .lb__fig { height: 68vh; max-width: calc(100vw - 160px); }
  .lb__meta { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .lb__cat { margin-top: 10px; }
  .lb__title { font-size: 26px; margin: 4px 0 6px; }
  .lb__desc { margin-bottom: 16px; }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .nav, .header__cta, .brand__name { display: none; }
  .burger { display: block; }
  .hero__scroll { display: none; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .about__wrap { grid-template-columns: 1fr; gap: 24px; }
  .about__cols { grid-template-columns: 1fr; gap: 0; padding-top: 0; border-top: 0; }
  .feature { padding: 26px 0; border-top: 1px solid rgba(12,12,13,.15); display: grid; grid-template-columns: 48px 1fr; column-gap: 8px; }
  .feature__no { grid-row: span 2; padding-top: 6px; }
  .feature h3 { margin: 0 0 6px; font-size: 18px; }
  .menu__item {
    grid-template-columns: 34px 1fr auto;
    grid-template-areas: "no name name" ". desc desc" ". lead price";
    column-gap: 12px;
  }
  .menu__price { font-size: 18px; }
  .loc { grid-template-columns: 1fr; }
  .loc__map { min-height: 0; aspect-ratio: 4 / 3; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__logo { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .hero__bg { background-image: url('../assets/img/hero-m.jpg'); background-position: 35% center; }
  .cta__bg { background-image: url('../assets/img/hero-m.jpg'); }
  .pc-only { display: none; }
  .mo-only { display: inline; }
  .brand__mark { width: 68px; height: 22px; }
  .hero__inner { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .hero__title { font-size: clamp(32px, 10vw, 72px); line-height: .95; }
  .hero__kicker { font-size: 10.5px; letter-spacing: .16em; white-space: nowrap; }
  .hero__ko { font-size: clamp(20px, 6.2vw, 30px); letter-spacing: .3em; padding-top: 10px; }
  .hero__actions { width: 100%; }
  .hero__actions { flex-wrap: wrap; }
  .hero__actions .btn { flex: 1 1 40%; padding: 0 12px; }
  .section__head--row { grid-template-columns: 1fr; }
  .section__head--row .section__desc { text-align: left; }
  .journal__grid { grid-template-columns: 1fr; gap: 36px; }
  .post-page .header { gap: 14px; }
  .post-page .header .btn { display: none; }
  .team__grid {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 76%;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter); scroll-padding: 0 var(--gutter);
  }
  .team__grid::-webkit-scrollbar { display: none; }
  .member { scroll-snap-align: start; }
  .filters { flex-wrap: nowrap; overflow-x: auto; margin: 0 calc(var(--gutter) * -1) 20px; padding: 0 var(--gutter); scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; height: 36px; padding: 0 14px; font-size: 12px; }
  .card__meta { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px; }
  .card__cat { order: -1; padding: 3px 8px; font-size: 9px; }
  .card__no { display: none; }
  .card__title { font-size: 15px; }
  .card__view { display: none; }
  .about__statement { letter-spacing: -0.05em; }
  .loc__info > div:not(.loc__btns) { grid-template-columns: 1fr; gap: 6px; }
  .loc__btns .btn { flex: 1; padding: 0 10px; }
  .cta { padding-bottom: 140px; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .footer__inner { grid-template-columns: 1fr; }

  .dock {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1.6fr; gap: 6px;
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40;
    padding: 6px; border-radius: 18px;
    background: rgba(20,20,21,.82); border: 1px solid var(--line);
    backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
    transform: translateY(140%); transition: transform .6s var(--ease);
  }
  .dock.is-show { transform: none; }
  .is-locked .dock { transform: translateY(140%); }
  .dock a {
    height: 52px; border-radius: 13px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    font-size: 11px; font-weight: 600; color: var(--ink-2);
  }
  .dock a svg { width: 19px; height: 19px; fill: currentColor; }
  .dock a.dock__book { flex-direction: row; gap: 8px; background: var(--ink); color: var(--bg); font-size: 15px; }
  .scroller { right: 12px; bottom: calc(88px + env(safe-area-inset-bottom)); }
  .scroller button { width: 42px; height: 42px; }

  .lb__stage { max-width: 100vw; padding: 0 16px; }
  .lb__fig { height: auto; width: calc(100vw - 32px); max-width: 480px; max-height: 64vh; }
  .lb__btn { width: 46px; height: 46px; }
  .lb__close { top: calc(12px + env(safe-area-inset-top)); right: 12px; }
  .lb__prev, .lb__next { top: auto; bottom: calc(24px + env(safe-area-inset-bottom)); margin: 0; }
  .lb__prev { left: 16px; }
  .lb__next { right: 16px; }
  .lb__meta { padding-bottom: 72px; }
  .lb__title { font-size: 22px; }
  .toast { bottom: calc(96px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
