:root {
  --paper: #f4f1ec;
  --paper-2: #ebe7e0;
  --ink: #2f2b28;
  --ink-2: #4f4944;
  --muted: #6b645d;
  --line: #dcd6cc;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1280px;
}
.lang-ja { --sans: "Pretendard Variable", Pretendard, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif; }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  /* 🔴 Cormorant 기본 숫자는 올드스타일이라 「99」가 쉼표 두 개처럼 보인다 — 라이닝 숫자로 고정 */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "onum" 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 600; margin: 0; letter-spacing: -0.01em; }

/* 한글 줄바꿈 — 어절 단위로 끊고, 줄 길이를 고르게 해서 마지막 줄에 한 단어만 남지 않게 */
.lang-ko, .lang-ko * { word-break: keep-all; }
.lang-ja p, .lang-ja h1, .lang-ja h2, .lang-ja h3 { line-break: strict; }
p, h1, h2, h3, figcaption, dd, li, blockquote { overflow-wrap: anywhere; }
h1, h2, h3, .lead, figcaption, .brand-line { text-wrap: balance; }
p, dd, li, blockquote { text-wrap: pretty; }

/* 세리프는 로고·슬로건·큰 숫자에만. 작은 글씨는 전부 산세리프로 — 잘 읽혀야 한다 */
.wordmark { font-family: var(--serif); font-weight: 500; letter-spacing: 0.03em; }
.slogan { font-family: var(--serif); font-style: italic; }
.label, .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.sub { color: var(--muted); margin: 0; font-size: 14px; }

/* ── header ── */
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 16px;
  padding: 12px var(--gutter);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.top .wordmark { font-size: 23px; white-space: nowrap; margin-right: auto; }
.top nav { display: flex; gap: clamp(14px, 2.6vw, 30px); font-size: 15px; font-weight: 500; }
.top nav a { opacity: .85; }
.top nav a:hover { opacity: 1; }
.langs { display: flex; gap: 2px; font-size: 13px; font-weight: 600; margin-left: clamp(8px, 2vw, 24px); }
.langs a { padding: 3px 7px; border-radius: 4px; opacity: .6; }
.langs a:hover { opacity: 1; }
.langs a.is-on { opacity: 1; background: var(--ink); color: var(--paper); }

.home .top {
  position: fixed; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent; backdrop-filter: none;
  color: #fff; transition: background .25s, color .25s, border-color .25s;
}
.home .top .langs a.is-on { background: #fff; color: var(--ink); }
.home .top.is-solid {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(8px); border-bottom-color: var(--line); color: var(--ink);
}
.home .top.is-solid .langs a.is-on { background: var(--ink); color: var(--paper); }

/* ── hero ── */
.hero { position: relative; height: min(92vh, 900px); min-height: 520px; overflow: hidden; background: #2a2522; max-width: none; padding: 0; }
.hero-row { display: grid; grid-template-columns: repeat(3, 1fr); height: 100%; }
.hero-cell { overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.08) 50%, rgba(0,0,0,.58) 100%);
}
.hero-text { position: absolute; left: 0; right: 0; bottom: clamp(48px, 10vh, 110px); z-index: 1; text-align: center; color: #fff; padding: 0 var(--gutter); }
.hero-text h1 { font-size: clamp(46px, 8vw, 104px); line-height: 1; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero-text .slogan { font-size: clamp(20px, 2.6vw, 30px); margin: 14px 0 0; text-shadow: 0 1px 12px rgba(0,0,0,.35); }

/* ── sections ── */
section, .series-page, .about { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 6px; }

.intro { text-align: center; padding-top: clamp(64px, 10vw, 120px); padding-bottom: clamp(56px, 8vw, 96px); max-width: 760px; }
.intro .lead { font-size: clamp(22px, 3vw, 30px); line-height: 1.5; font-weight: 600; margin: 0 0 20px; }
.intro p { color: var(--ink-2); margin: 0; font-size: 17px; }
.stats { display: flex; justify-content: center; gap: clamp(28px, 7vw, 80px); margin: 44px 0 0; }
.stats dt { color: var(--muted); font-size: 14px; font-weight: 500; }
.stats dd { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5vw, 54px); line-height: 1.1; }
.stats dd span { font-size: .5em; color: var(--muted); }

.kinds { padding-bottom: clamp(64px, 9vw, 110px); }
.kinds-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.kind img, .product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--paper-2); margin-bottom: 16px; }
.kind h3, .product h3 { font-size: 20px; margin: 0 0 8px; }
.kind p, .product .desc { color: var(--ink-2); font-size: 15px; margin: 0; }

.series { padding-bottom: clamp(56px, 8vw, 100px); scroll-margin-top: 70px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 auto 36px; max-width: 960px; }
.chip {
  font: inherit; font-size: 14px; font-weight: 500; color: var(--ink-2); cursor: pointer;
  background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
  transition: background .15s, color .15s, border-color .15s;
}
.chip span { color: var(--muted); font-size: 12px; margin-left: 2px; }
.chip:hover { border-color: var(--ink-2); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip.is-on span { color: rgba(244, 241, 236, .75); }

.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 4vw, 44px) clamp(14px, 2vw, 28px); }
.card { display: block; }
.card[hidden] { display: none; }
.card-img { aspect-ratio: 5 / 7; overflow: hidden; background: var(--paper-2); margin-bottom: 12px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.03); }
.card h3 { font-size: 17px; margin-top: 3px; line-height: 1.45; }
.card .sub { margin-top: 2px; }

.lowres { text-align: center; color: var(--muted); font-size: 13px; margin: 36px auto 0; max-width: 640px; }

.reviews { padding-bottom: clamp(56px, 8vw, 100px); }
.reviews-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review { margin: 0; background: #fbfaf7; border: 1px solid var(--line); padding: 22px 22px 18px; }
.review .stars { color: #b8862e; letter-spacing: 2px; margin: 0 0 8px; font-size: 14px; }
.review blockquote { margin: 0 0 12px; font-size: 15px; color: var(--ink); }
.review figcaption { font-size: 13px; color: var(--muted); }

.visited { text-align: center; padding-bottom: clamp(64px, 9vw, 110px); max-width: 860px; }
.visited-list { font-size: 16px; line-height: 2; color: var(--ink-2); margin: 0; }

/* ── series page ── */
.series-head { text-align: center; padding: clamp(44px, 7vw, 88px) 0 clamp(32px, 5vw, 52px); }
.series-head h1 { font-size: clamp(30px, 4.5vw, 46px); margin: 10px 0 6px; line-height: 1.3; }
.series-head .sub { font-size: 16px; }
.series-head .eyebrow a:hover { color: var(--ink); }

.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px) clamp(12px, 2vw, 24px); }
.photo { margin: 0; cursor: zoom-in; }
.photo img { width: 100%; background: var(--paper-2); }
.photo figcaption { font-size: 15px; font-weight: 500; padding-top: 10px; }
.photo figcaption .num { color: var(--muted); margin-right: 6px; font-weight: 600; }
.photo figcaption .sub { display: inline; font-weight: 400; margin-left: 6px; }

.products { padding: clamp(52px, 8vw, 96px) 0 clamp(36px, 6vw, 64px); border-top: 1px solid var(--line); margin-top: clamp(32px, 5vw, 56px); }
.products-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.product { display: flex; flex-direction: column; }
.product .desc { flex: 1; }
.product .tag { display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 600; color: var(--muted); border: 1px solid var(--line); padding: 1px 8px; margin: 0 0 8px; }
.buy { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.buy-group { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.btns { display: flex; flex-wrap: wrap; gap: 6px; }
.btn {
  display: inline-block; font-size: 13px; font-weight: 500; padding: 7px 12px; border: 1px solid var(--ink); color: var(--ink);
  transition: background .15s, color .15s;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.note { text-align: center; color: var(--muted); font-size: 14px; margin: 36px 0 0; }

.pager { display: flex; justify-content: space-between; gap: 16px; padding: 28px 0; border-top: 1px solid var(--line); font-size: 15px; font-weight: 500; }
.pager a { max-width: 45%; }
.pager a span { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.pager .next { text-align: right; margin-left: auto; }
.more { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(64px, 9vw, 110px); }
.more .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

img { -webkit-user-drag: none; -webkit-touch-callout: none; user-select: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center;
  background: rgba(20, 18, 16, .94); padding: 16px; cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button {
  position: absolute; top: 14px; right: 16px; font: inherit; font-size: 14px; color: #fff;
  background: none; border: 1px solid rgba(255,255,255,.5); padding: 6px 12px; cursor: pointer;
}

/* ── about ── */
.about { max-width: 880px; padding-top: clamp(52px, 8vw, 100px); padding-bottom: clamp(64px, 9vw, 110px); }
.about h1 { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(36px, 5.4vw, 56px); margin: 6px 0 18px; line-height: 1.15; }
.brand-line { font-size: 19px; color: var(--ink-2); margin: 0 0 20px; }
.about h2 { font-size: 20px; margin: 56px 0 16px; scroll-margin-top: 80px; }
.about .artist-title { font-family: var(--serif); font-size: 34px; font-weight: 500; margin-top: 60px; }
.artist-block { display: grid; grid-template-columns: 260px 1fr; gap: clamp(20px, 4vw, 44px); align-items: start; padding: 0; margin: 0 0 44px; max-width: none; }
.artist-block img { width: 100%; filter: grayscale(1); }
.artist-block h3 { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.artist-block p { margin: 0 0 14px; font-size: 16px; color: var(--ink-2); }
.stores { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.stores a { display: inline-block; border: 1px solid var(--ink); padding: 7px 14px; font-size: 14px; font-weight: 500; }
.stores a:hover { background: var(--ink); color: var(--paper); }
.mail { border-bottom: 1px solid var(--ink); font-weight: 500; }
.about .lowres { text-align: left; margin-left: 0; }
.notfound { text-align: center; padding: 140px var(--gutter); }
.notfound h1 { font-size: 26px; margin: 6px 0 28px; }

/* ── footer ── */
.foot { border-top: 1px solid var(--line); padding: 48px var(--gutter) 56px; text-align: center; color: var(--muted); font-size: 13px; }
.foot .wordmark { font-size: 25px; color: var(--ink); margin: 0; }
.foot .slogan { font-size: 17px; margin: 0 0 22px; color: var(--ink-2); }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-bottom: 16px; color: var(--ink-2); font-size: 14px; font-weight: 500; }
.foot-links a:hover { color: var(--ink); }
.foot-contact { margin: 0 0 16px; color: var(--ink-2); }
.foot-contact a { border-bottom: 1px solid var(--line); }
.biz { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 16px; margin: 0 auto 14px; max-width: 820px; }
.biz div { display: flex; gap: 6px; }
.biz dt::after { content: ":"; }
.biz dd { margin: 0; }
.copy { margin: 0; }

@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .grid, .more .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kinds-row { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .hero-row { grid-template-columns: 1fr; }
  .hero-cell:not(:first-child) { display: none; }
  .top { flex-wrap: wrap; row-gap: 6px; }
  .top .wordmark { font-size: 20px; }
  .top nav { order: 3; width: 100%; gap: 18px; font-size: 14px; }
  .langs { margin-left: 0; }
  .artist-block { grid-template-columns: 1fr; }
  .artist-block img { max-width: 260px; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .grid { gap: 26px 12px; }
  .card h3 { font-size: 15px; }
  .card .sub { font-size: 13px; }
  .eyebrow, .label { font-size: 11px; letter-spacing: .1em; }
  .gallery { grid-template-columns: 1fr; }
  .stats { gap: 24px; }
  .chips { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); padding: 0 var(--gutter) 4px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
}
