:root {
  --ink: #141414;
  --paper: #f6f4f0;
  --white: #ffffff;
  --muted: #7d786f;
  --line: #d9d4cb;
  --serif: "Cormorant Garamond", "Noto Serif KR", serif;
  --sans: "Jost", "Noto Sans KR", system-ui, sans-serif;
  --kr: "Noto Sans KR", system-ui, sans-serif;
  --gutter: clamp(16px, 4vw, 56px);
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--kr);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
h2 {
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.45;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.slogan {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.01em;
}
.slogan em { font-style: italic; }
.slogan-ko { font-size: 15px; letter-spacing: .35em; color: var(--muted); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background .25s, color .25s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

section { padding: clamp(80px, 12vw, 160px) var(--gutter); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
}

/* ---------- logo ---------- */
.logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo span { font-family: var(--sans); font-size: 10px; letter-spacing: .32em; margin-left: .32em; }
.logo-sm { width: 40px; height: 40px; }
.logo-sm span { font-size: 8px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(246, 244, 240, .92); backdrop-filter: blur(8px); border-color: var(--line); }
.nav { display: flex; gap: clamp(20px, 3vw, 44px); align-items: center; }
.nav a {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav a:hover::after { transform: scaleX(1); }
.nav .nav-shop { padding: 8px 16px; border: 1px solid var(--ink); }
.nav .nav-shop::after { display: none; }
.menu-btn { display: none; font-family: var(--sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
}
.hero .slogan { font-size: clamp(64px, 9vw, 144px); margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 44px; }
.hero-img { aspect-ratio: 1; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 32px; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.6vw, 32px);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---------- name ---------- */
.name { text-align: center; max-width: 900px; margin: 0 auto; }
.statement { font-size: clamp(28px, 4.2vw, 52px); line-height: 1.4; margin-bottom: 36px; }
.u { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.lede { color: var(--muted); }

/* ---------- split (light) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split-img { max-width: 520px; width: 100%; justify-self: center; }
.split-img img { width: 100%; height: auto; }
.big-num { font-family: var(--serif); font-size: clamp(120px, 16vw, 220px); line-height: 1; padding-bottom: .12em; }
.big-num span { font-size: .35em; font-style: italic; margin-left: 6px; }
.caption { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 8px 0 32px; }

/* ---------- two ways ---------- */
.two-ways {
  background: var(--ink); color: var(--paper);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center;
}
.two-ways .eyebrow { color: #a19b90; }
.tw-text p { color: #cfc9be; }
.tw-toggle { display: inline-flex; border: 1px solid #5a5650; margin-top: 40px; }
.tw-toggle button {
  font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  padding: 12px 18px; color: #a19b90; transition: background .25s, color .25s;
}
.tw-toggle button[aria-selected="true"] { background: var(--paper); color: var(--ink); }
.flip-btn {
  display: block; margin-top: 18px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #cfc9be;
}
.flip-btn:hover { color: var(--white); }
.tw-stage { perspective: 1600px; }
.flipper {
  position: relative; aspect-ratio: 432 / 596;
  max-width: 460px; margin: 0 auto;
  transform-style: preserve-3d; transition: transform .9s cubic-bezier(.6, .1, .2, 1);
  cursor: pointer;
}
.flipper[data-side="b"] { transform: rotateY(180deg); }
.face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; background: var(--white); overflow: hidden; }
.face img { width: 100%; height: 100%; object-fit: cover; }
.face-b { transform: rotateY(180deg); }
.tw-product { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #a19b90; margin-top: 16px; text-align: center; }

/* ---------- full-bleed band ---------- */
.band {
  position: relative; overflow: hidden;
  min-height: min(92vh, 900px);
  display: grid; align-items: end;
  padding: var(--gutter); color: var(--white);
}
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0, 0, 0, .42)); }
.band-text { position: relative; z-index: 1; }
.band .eyebrow { color: rgba(255, 255, 255, .85); margin-bottom: 8px; }
.band .slogan { font-size: clamp(56px, 8vw, 128px); }
.band.reveal { transform: none; }
.band-quiet { min-height: min(80vh, 760px); }

/* ---------- collection ---------- */
.section-head { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.section-head .eyebrow { flex-basis: 100%; margin-bottom: 0; }
.section-head h2 { font-family: var(--serif); font-style: italic; font-size: clamp(36px, 5vw, 64px); margin: 0; }
.section-head .more { margin-left: auto; font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.grid a { display: block; }
.grid .thumb { aspect-ratio: 1; overflow: hidden; background: var(--white); margin-bottom: 14px; }
.grid .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.grid a:hover .thumb img { transform: scale(1.05); }
.grid .p-type { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.grid .p-name { font-size: 14px; line-height: 1.5; margin: 2px 0 4px; }
.grid .p-price { font-family: var(--sans); font-size: 14px; }

/* ---------- made few ---------- */
.made-few { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; background: var(--white); }
.mf-imgs { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: end; }
.mf-imgs img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.mf-imgs img:last-child { aspect-ratio: 1; }

/* ---------- archive ---------- */
.timeline { list-style: none; border-top: 1px solid var(--line); margin-bottom: 56px; }
.timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.timeline b { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; line-height: 1.3; }
.archive-strip { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(200px, 24vw, 320px); gap: 16px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.archive-strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; scroll-snap-align: start; filter: grayscale(.15); }

/* ---------- closing ---------- */
.closing { text-align: center; border-top: 1px solid var(--line); }
.closing .slogan { font-size: clamp(48px, 8vw, 112px); margin: 20px 0 48px; }

/* ---------- footer ---------- */
.site-footer {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: start;
  padding: 48px var(--gutter) 32px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.f-links { display: flex; gap: 24px; font-family: var(--sans); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: var(--ink); }
.copy { grid-column: 1 / -1; font-size: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero, .split, .two-ways, .made-few { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-img { order: -1; }
  .band { min-height: 70vh; }
  .band-quiet { min-height: 75vh; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .tw-stage { width: 100%; max-width: 460px; justify-self: center; }
}
/* 모바일 하단 고정 주문 버튼 (PC에서는 숨김) */
.m-shop { display: none; }

@media (max-width: 720px) {
  .menu-btn { display: block; padding: 12px 0 12px 12px; }
  .nav a { font-size: 14px; padding: 4px 0; }

  .hero { padding-top: calc(var(--header-h) + 8px); gap: 28px; }
  .hero .slogan { font-size: 60px; margin-bottom: 16px; }
  .hero-cta { margin-top: 28px; }
  .hero-cta .btn { flex: 1; text-align: center; }

  .m-shop {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60; height: 54px;
    background: var(--ink); color: var(--paper);
    font-family: var(--sans); font-size: 14px; letter-spacing: .24em; text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
    transform: translateY(140%); transition: transform .35s ease;
  }
  .m-shop.show { transform: none; }
  body { padding-bottom: 80px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 22px;
    padding: 28px var(--gutter) 36px; background: var(--paper); border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-header { background: rgba(246, 244, 240, .92); }
  .timeline li { grid-template-columns: 72px 1fr; gap: 12px; }
  .site-footer { grid-template-columns: 1fr; }
  .tw-toggle button { padding: 10px 12px; letter-spacing: .08em; }
}
