/* ============================================================
   YOON.AH — Salon site styles
   Aesthetic: Swiss International / brutalist grid, asymmetric,
   warm paper + ink black, oversized type, hairline rules.
   ============================================================ */

:root {
  --paper: #ede7dc;
  --paper-deep: #e2dccf;
  --ink: #0e0e0e;
  --ink-soft: #1d1d1d;
  --mute: #7a7367;
  --line: rgba(14, 14, 14, 0.18);
  --line-strong: rgba(14, 14, 14, 0.35);
  --accent: #a64027; /* terracotta */
  --accent-soft: #c97259;

  --ff-display: "Inter Tight", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ff-kr: "Noto Serif KR", "Nanum Myeongjo", serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --nav-h: 64px;
  --max: 1680px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: auto; }
body { overflow-x: hidden; }

/* Slots without media — keep in DOM, hidden until assets are ready */
.is-unpublished,
[data-unpublished]:not([data-unpublished="false"]) {
  display: none !important;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

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

/* a11y: Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--paper);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

/* a11y: Focus visible for all interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Lenis class — used while Lenis is active */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Hide native cursor when custom cursor active (desktop only) */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor * { cursor: none !important; }
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.85), 0 0 6px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 0 8px rgba(0,0,0,0.3);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.cursor-ring.is-active {
  width: 72px; height: 72px;
  background: rgba(0,0,0,0.75);
  border-color: rgba(255,255,255,0.9);
}
.cursor-ring .label {
  display: none;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}
.cursor-ring.is-active .label { display: flex; }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ============================================================
   Loader
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 10000;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.loader.is-done { transform: translateY(-100%); }
.loader-top, .loader-bot {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.loader-center {
  display: flex; align-items: center; justify-content: center;
  flex: 1;
}
.loader-mark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(72px, 14vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.loader-mark .dot { color: var(--accent); }
.loader-count { font-variant-numeric: tabular-nums; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--paper);
}
.nav-mark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-mark .dot { color: var(--accent-soft); }
.nav-links {
  display: flex; gap: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.55; }
.nav-cta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
}
@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section {
  position: relative;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.section-index {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.hairline { height: 1px; background: var(--line-strong); width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: var(--nav-h) auto 1fr auto;
  padding-top: 0;
  padding-bottom: 32px;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}
.hero-meta div {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-meta div span { display: block; color: var(--mute); margin-bottom: 6px; }

.hero-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(80px, 19vw, 320px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  margin: 48px 0 0;
  position: relative;
}
.hero-title .row {
  display: flex; align-items: baseline; gap: 0.08em;
}
.hero-title .accent { color: var(--accent); }
.hero-title .ko {
  font-family: var(--ff-kr);
  font-weight: 500;
  font-size: 0.16em;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-left: 0.4em;
  line-height: 1;
  align-self: center;
}
.hero-title .ital {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.62em;
  letter-spacing: -0.02em;
}

.hero-foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding-top: 32px;
}
.hero-foot .lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.3;
  max-width: 520px;
  color: var(--ink);
}
.hero-foot .stat {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-foot .stat strong {
  display: block;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px; right: var(--gutter);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--mute), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  display: flex;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.03em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   About / Philosophy
   ============================================================ */
.about {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-left {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 24px;
}
.about-left h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
}
.about-left h2 em {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.about-right {
  display: flex; flex-direction: column; gap: 48px;
  padding-top: 32px;
}
.about-right p {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  color: var(--ink);
  max-width: 60ch;
}
.about-right p .kr {
  font-family: var(--ff-kr);
  font-weight: 400;
}
.about-pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about-left { position: static; }
}

/* ============================================================
   Designers
   ============================================================ */
.designers {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line-strong);
}
.designers-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 64px;
}
.designers-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.designers-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}
.designers-head .meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
  max-width: 240px;
  margin-left: auto;
}

.designer-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.4fr;
  gap: 32px;
  align-items: end;
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
  transition: padding 0.3s ease;
}
.designer-row:last-of-type { border-bottom: 1px solid var(--line-strong); }
.designer-row:hover { padding-left: 12px; }
.designer-row .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.designer-row .name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  display: flex; align-items: baseline; gap: 16px;
}
.designer-row .name .ko {
  font-family: var(--ff-kr);
  font-size: 0.32em;
  color: var(--mute);
  letter-spacing: 0;
}
.designer-row .role {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; flex-direction: column; gap: 4px;
}
.designer-row .role strong { color: var(--ink); font-weight: 500; }
.designer-row .role em { font-style: normal; }

.designer-row .preview {
  position: absolute;
  top: 50%; right: 0;
  width: 240px; aspect-ratio: 3/4;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  transform: translate(40px, -50%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: flex; align-items: end; justify-content: start;
  padding: 16px;
  z-index: 2;
}
.designer-row:hover .preview {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}
.designer-row .preview .ph-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.designer-row .preview::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(166,64,39,0.25), transparent 70%),
    repeating-linear-gradient(135deg, rgba(14,14,14,0.04) 0 8px, transparent 8px 16px);
}

@media (max-width: 800px) {
  .designer-row { grid-template-columns: 32px 1fr; }
  .designer-row .role { grid-column: 1 / -1; }
  .designer-row .preview { display: none; }
}

/* ============================================================
   Lookbook — horizontal scroll
   ============================================================ */
.lookbook {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  position: relative;
}
.lookbook-head {
  padding: 80px var(--gutter) 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.lookbook-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.lookbook-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent-soft);
}
.lookbook-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--paper);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}

.lookbook-track-outer {
  height: 400vh;
  position: relative;
}
.lookbook-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
}
.lookbook-track {
  display: flex;
  gap: 32px;
  padding: 0 var(--gutter);
  will-change: transform;
}
.look-card {
  flex: 0 0 auto;
  width: 32vw;
  min-width: 320px;
  aspect-ratio: 3/4;
  background: #2a2a2a;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(237, 231, 220, 0.12);
}
.look-card.tall { aspect-ratio: 3/4.5; }
.look-card.wide { aspect-ratio: 4/3.2; width: 44vw; }
.look-card .ph-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, 0.5);
}
.look-card .tag {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  z-index: 2;
}
.look-card .tag .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 4px;
}
.look-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(166,64,39,0.35), transparent 70%),
    repeating-linear-gradient(45deg, rgba(237,231,220,0.04) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.look-card.tone-warm::before {
  background:
    radial-gradient(70% 60% at 30% 70%, rgba(201,114,89,0.45), transparent 70%),
    linear-gradient(180deg, #4a2c20, #2a1a14);
}
.look-card.tone-cool::before {
  background:
    radial-gradient(70% 60% at 70% 20%, rgba(120, 140, 160, 0.3), transparent 70%),
    linear-gradient(180deg, #1a2030, #0a1018);
}
.look-card.tone-paper::before {
  background:
    linear-gradient(180deg, #ede7dc 0%, #c9c0a8 100%);
}
.look-card.tone-paper .ph-label,
.look-card.tone-paper .tag { color: var(--ink); }
.look-card.tone-paper .tag .num { color: var(--accent); }

.look-card > * { position: relative; z-index: 1; }

.lookbook-progress {
  position: sticky;
  top: 100vh;
  margin-top: -40px;
  padding: 16px var(--gutter) 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(237,231,220,0.6);
  z-index: 2;
}
.lookbook-progress .bar {
  flex: 1;
  height: 1px;
  background: rgba(237,231,220,0.2);
  margin: 0 24px;
  position: relative; overflow: hidden;
}
.lookbook-progress .bar i {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent-soft);
  width: 0%;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding-top: 120px;
  padding-bottom: 120px;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 80px;
}
.services-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.services-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--mute);
  max-width: 360px;
  justify-self: end;
  text-align: right;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1.4fr 2fr 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  transition: padding 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-row:last-child { border-bottom: 1px solid var(--line-strong); }
.service-row:hover { padding-left: 16px; }
.service-row:hover .arrow { transform: translateX(8px); opacity: 1; }

.service-row .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.service-row .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 12px;
}
.service-row .title .ko {
  font-family: var(--ff-kr);
  font-size: 0.42em;
  color: var(--mute);
}
.service-row .copy {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  max-width: 48ch;
}
.service-row .price {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
button.price-trigger {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: right;
  transition: color 0.25s ease;
}
button.price-trigger:hover,
button.price-trigger:focus-visible {
  color: var(--accent);
  outline: none;
}
button.price-trigger:focus-visible {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--accent);
}
.service-row .price .from {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.service-row .price-split .price-line {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
}
.service-row .price-split .price-line em {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--mute);
  margin-right: 6px;
}
.service-row .arrow {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: 14px;
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}

@media (max-width: 900px) {
  .service-row { grid-template-columns: 32px 1fr; }
  .service-row .copy { grid-column: 2 / -1; }
  .service-row .price,
  button.price-trigger { grid-column: 2 / -1; text-align: left; }
}

/* ============================================================
   Booking
   ============================================================ */
.booking {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}
.booking-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 0;
}
.booking-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 260px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  margin: 0;
}
.booking-head h2 .dot { color: var(--accent-soft); }
.booking-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.32em;
  color: var(--paper);
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.booking-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-top: 8px;
}
.booking-head .info {
  display: flex; flex-direction: column; gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, 0.6);
}
.booking-head .info p { margin: 0; line-height: 1.6; }
.booking-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 36px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.35s ease;
}
/* 슬라이드-인 오버레이 */
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-soft);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.booking-cta:hover::before { transform: translateX(0); }
.booking-cta:hover { color: var(--paper); }

/* 텍스트·화살표는 오버레이 위 */
.booking-cta .cta-label,
.booking-cta .arr {
  position: relative;
  z-index: 1;
}
.booking-cta .arr {
  font-size: 1.2em;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.booking-cta:hover .arr { transform: translateX(10px); }

/* tablet */
@media (max-width: 900px) {
  .booking-head { grid-template-columns: 1fr; }
  .booking-right { gap: 24px; }
  .booking-cta { font-size: clamp(20px, 4vw, 28px); padding: 24px 28px; }
}
/* mobile */
@media (max-width: 600px) {
  .booking-cta { font-size: 18px; padding: 20px 24px; }
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(237,231,220,0.18);
}
.field {
  border-bottom: 1px solid rgba(237,231,220,0.18);
  padding: 28px 0;
  position: relative;
}
.field:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(237,231,220,0.18); }
.field:nth-child(even) { padding-left: 32px; }
.field .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, 0.55);
  display: flex; justify-content: space-between;
  margin-bottom: 16px;
}
.field .label .step {
  font-variant-numeric: tabular-nums;
}
.field label.label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.6);
  margin-bottom: 12px;
}

.field input[required]::after,
.field select[required]::after {
  content: ' *';
  color: var(--accent);
}

.field input, .field select, .field textarea {
  width: 100%;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  padding: 0;
  outline: none;
  resize: none;
}

.field input[required]:invalid,
.field select[required]:invalid {
  border-bottom-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(237,231,220,0.28);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M2 5 L7 10 L12 5' stroke='%23ede7dc' stroke-width='1.4' fill='none'/></svg>") no-repeat right 0 center;
  padding-right: 28px;
}
.field select option { background: var(--ink); color: var(--paper); }

/* day & time chip rows */
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(237,231,220,0.25);
  color: rgba(237,231,220,0.7);
  border-radius: 999px;
  transition: all 0.2s;
}
.chip:hover { color: var(--paper); border-color: var(--paper); }
.chip.is-on {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.chip.is-off {
  color: rgba(237,231,220,0.2);
  border-color: rgba(237,231,220,0.1);
  text-decoration: line-through;
  pointer-events: none;
}
.chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.chip:disabled {
  cursor: not-allowed;
}

.booking-submit {
  grid-column: 1 / -1;
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
}
.booking-submit .summary {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.6);
  flex: 1;
}
.booking-submit .summary strong { color: var(--paper); font-weight: 500; }

.btn-big {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.025em;
  padding: 28px 56px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 16px;
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.btn-big:hover { background: var(--accent); color: var(--paper); }
.btn-big .arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono);
  font-size: 14px;
}

@media (max-width: 800px) {
  .booking-form { grid-template-columns: 1fr; }
  .field:nth-child(odd) { padding-right: 0; border-right: none; }
  .field:nth-child(even) { padding-left: 0; }
  .booking-submit { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   Visit
   ============================================================ */
.visit {
  padding: 120px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.visit-left h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
}
.visit-left h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}
.visit-left .addr {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.visit-left .addr .kr {
  font-family: var(--ff-kr); font-weight: 400;
  display: block;
  color: var(--mute);
  font-size: 16px;
  margin-top: 8px;
  letter-spacing: 0;
}
.visit-hours {
  border-top: 1px solid var(--line-strong);
  margin-top: 32px;
}
.visit-hours .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.visit-hours .row .day { color: var(--ink); }
.visit-hours .row .hrs { font-family: var(--ff-display); font-size: 15px; letter-spacing: -0.01em; text-transform: none; }
.visit-hours .row.closed .hrs { color: var(--mute); text-decoration: line-through; }
.visit-hours .row .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); align-self: center; justify-self: center;
}
.visit-hours .row.closed .dot { background: var(--mute); }

.visit-map {
  aspect-ratio: 4/5;
  background: var(--paper-deep);
  position: relative;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.visit-map::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, var(--line) 49.5%, var(--line) 50.5%, transparent 50.5%),
    linear-gradient(180deg, transparent 49.5%, var(--line) 49.5%, var(--line) 50.5%, transparent 50.5%),
    radial-gradient(circle at 50% 50%, transparent 0, transparent 80px, var(--line) 80px, var(--line) 81px, transparent 82px),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(14,14,14,0.06) 39px, rgba(14,14,14,0.06) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(14,14,14,0.06) 39px, rgba(14,14,14,0.06) 40px);
}
.visit-map .pin {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(166, 64, 39, 0.2);
  animation: pinPulse 2.2s ease-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(166, 64, 39, 0.2); }
  50% { box-shadow: 0 0 0 18px rgba(166, 64, 39, 0); }
}
.visit-map .pin-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(16px, -50%);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  white-space: nowrap;
}
.visit-map .map-label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 900px) {
  .visit { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  border-top: 1px solid var(--line-strong);
  padding: 48px var(--gutter) 32px;
  display: flex; flex-direction: column; gap: 48px;
  overflow: hidden;
}
.foot-big {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(60px, 13.5vw, 220px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.foot-big .accent { color: var(--accent); }
.foot-bot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.foot-bot div span { display: block; color: var(--ink); margin-bottom: 6px; }
.foot-bot a:hover { color: var(--ink); }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal="char"] { display: inline-block; }
[data-reveal="char"] .char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.18, 0.8, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 0.025s);
}
[data-reveal="char"].is-in .char { transform: none; }
[data-reveal="char"] .char-wrap { display: inline-block; overflow: hidden; line-height: 1.05; white-space: nowrap; }

/* parallax wrapper */
[data-parallax] {
  will-change: transform;
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  z-index: 200;
  padding: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 32px 64px -32px rgba(0,0,0,0.4);
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks h4 {
  margin: 0 0 12px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h4 button {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.tweaks .group { margin-bottom: 12px; }
.tweaks .group > label { display: block; color: var(--mute); margin-bottom: 8px; font-size: 10px; }
.tweaks .swatches { display: flex; gap: 6px; }
.tweaks .swatch {
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  position: relative;
}
.tweaks .swatch.is-on::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--ink);
}
.tweaks .row { display: flex; gap: 6px; }
.tweaks .opt {
  flex: 1; padding: 8px;
  border: 1px solid var(--line-strong);
  text-align: center;
  font-size: 10px;
  cursor: pointer;
}
.tweaks .opt.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 600px) { .tweaks { display: none !important; } }

/* ============================================================
   Hero — poster (v2: full-bleed, single statement)
   ============================================================ */
.hero.v2 {
  display: grid;
  grid-template-rows: var(--nav-h) 1fr auto;
  min-height: 100vh;
  padding-bottom: 32px;
  position: relative;
}
.hero.v2 .hero-corners {
  position: absolute;
  inset: var(--nav-h) var(--gutter) 32px var(--gutter);
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.hero.v2 .corner {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  pointer-events: auto;
}
.hero.v2 .corner span { color: var(--ink); display: block; margin-bottom: 4px; }
.hero.v2 .corner.tr { text-align: right; }
.hero.v2 .corner.br { text-align: right; grid-row: 3; }
.hero.v2 .corner.bl { grid-row: 3; }
.hero.v2 .hero-stage {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--gutter);
  position: relative;
}
.hero.v2 .hero-photo {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: 22vw; min-width: 220px; max-width: 320px;
  aspect-ratio: 3/4;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  z-index: 1;
}
.hero.v2 .hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 30%, rgba(166,64,39,0.18), transparent 70%),
    repeating-linear-gradient(135deg, rgba(14,14,14,0.05) 0 8px, transparent 8px 18px);
}
.hero.v2 .hero-photo .ph-label {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  max-width: 80%;
  line-height: 1.3;
}
.hero.v2 .hero-photo .badge {
  position: absolute;
  right: 12px; top: 12px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 6px 8px;
  display: flex; align-items: center; gap: 6px;
}
.hero.v2 .hero-photo .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-soft);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.hero.v2 .poster {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(64px, 17vw, 260px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}
.hero.v2 .poster .row { display: block; white-space: nowrap; }
.hero.v2 .poster .accent { color: var(--accent); }
.hero.v2 .poster .ital {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: -0.02em;
  color: var(--mute);
  display: inline-block;
  margin-left: 0.2em;
  vertical-align: baseline;
}
.hero.v2 .poster .ko-sub {
  display: block;
  font-family: var(--ff-kr);
  font-weight: 500;
  font-size: 0.11em;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 1.2em;
  line-height: 1.4;
}
.hero.v2 .scissors {
  position: absolute;
  right: 6vw; top: 14vh;
  width: 220px; height: 220px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}
.hero.v2 .scissors path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawScissors 2.4s 0.6s cubic-bezier(0.6, 0.05, 0.2, 1) forwards;
}
@keyframes drawScissors {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
  .hero.v2 .hero-photo { display: none; }
  .hero.v2 .scissors { right: 4vw; top: 8vh; width: 120px; height: 120px; }
}

/* ============================================================
   Manifesto — sticky scrollytelling
   ============================================================ */
.manifesto {
  height: 260vh;
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line-strong);
}
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.manifesto-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.manifesto-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
}
.manifesto-eyebrow .step {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}
.manifesto-lines {
  position: relative;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  height: 1.2em;
}
.manifesto-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.manifesto-line.is-on {
  opacity: 1; transform: none;
}
.manifesto-line .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
  color: var(--mute);
}
.manifesto-line .em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.manifesto-line .ko {
  font-family: var(--ff-kr);
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--mute);
  display: block;
  margin-top: 0.4em;
}
.manifesto-progress {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 48px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.manifesto-progress .bar {
  flex: 1; height: 1px; background: var(--line-strong); position: relative; overflow: hidden;
}
.manifesto-progress .bar i {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.2s;
}

/* ============================================================
   About — salon intro
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  border-top: 1px solid var(--line-strong);
  align-items: start;
}
.about-side h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 12px 0 20px;
}
.about-side h2 .accent { color: var(--accent); }
.about-side h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.42em;
  margin-top: 0.2em;
  color: var(--mute);
  letter-spacing: 0;
}
.about-side-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 28ch;
  margin: 0 0 28px;
}
.about-side-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 22px;
  transition: background 0.25s, color 0.25s;
}
.about-side-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 72ch;
}
.about-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
}
.about-block h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.about-block h4 {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.about-block p,
.about-note,
.about-close {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.about-note {
  margin-top: 14px;
  color: var(--mute);
  font-size: 14px;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.about-cols ul,
.about-points {
  margin: 0;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}
.about-cols li,
.about-points li {
  margin-bottom: 8px;
}
.about-cols li:last-child,
.about-points li:last-child { margin-bottom: 0; }
.about-points {
  list-style: none;
  padding: 0;
  counter-reset: about-point;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-points li {
  counter-increment: about-point;
  padding-left: 2.4em;
  position: relative;
  margin: 0;
}
.about-points li::before {
  content: counter(about-point, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.about-pull {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
}
.about-pull cite {
  display: block;
  margin-top: 14px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.about-menu {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}
.about-menu th,
.about-menu td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.about-menu thead th {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line-strong);
}
.about-menu tbody th[scope="row"] {
  font-family: var(--ff-kr);
  font-weight: 600;
  white-space: nowrap;
}
.about-menu td:nth-child(2) {
  font-family: var(--ff-display);
  font-weight: 500;
  white-space: nowrap;
}
.about-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-info li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.about-info li span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.about-info a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-close {
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--mute);
}
.about-close strong {
  display: block;
  margin-top: 16px;
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.about-close a {
  color: var(--accent);
}
.about-links {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--mute);
}
.about-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.about-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (min-width: 901px) {
  .about-side {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
  }
}
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-side-desc { max-width: none; }
  .about-cols { grid-template-columns: 1fr; }
  .about-menu { display: block; overflow-x: auto; }
  .about-menu thead { display: none; }
  .about-menu tbody,
  .about-menu tr,
  .about-menu th,
  .about-menu td { display: block; }
  .about-menu tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .about-menu tbody th[scope="row"] {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .about-menu td { padding: 2px 0; border: 0; }
}

/* ============================================================
   Specialty band — full-height per card (poster)
   ============================================================ */
.specialty {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.spec-card {
  position: relative;
  padding: 48px var(--gutter);
  min-height: 500px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: background 0.35s ease;
  cursor: pointer;
}
.spec-card + .spec-card { border-left: 1px solid rgba(237,231,220,0.18); }
.spec-card:hover { background: #18181a; }
.spec-card .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.5);
  margin-bottom: 24px;
  display: flex; justify-content: space-between;
}
.spec-card .label-en {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.spec-card .label-en em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}
.spec-card .label-kr {
  font-family: var(--ff-kr);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: rgba(237,231,220,0.75);
  margin-bottom: 24px;
}
.spec-card .copy {
  font-size: 14px;
  line-height: 1.55;
  max-width: 38ch;
  color: rgba(237,231,220,0.65);
}
.spec-card .arrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  align-self: start;
  transition: gap 0.3s;
}
.spec-card:hover .arrow { gap: 24px; }
.spec-card .arrow .a {
  width: 36px; height: 1px; background: currentColor;
  position: relative; transition: width 0.3s;
}
.spec-card:hover .arrow .a { width: 56px; }
.spec-card .arrow .a::after {
  content: ""; position: absolute;
  right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.spec-card.is-active { background: var(--accent); }
.spec-card.is-active .num,
.spec-card.is-active .label-kr,
.spec-card.is-active .copy { color: rgba(237,231,220,0.9); }

@media (max-width: 800px) {
  .specialty { grid-template-columns: 1fr; }
  .spec-card + .spec-card { border-left: none; border-top: 1px solid rgba(237,231,220,0.18); }
}

/* ============================================================
   Before & After — horizontal scroll
   ============================================================ */
.ba {
  padding: 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.ba-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding: 80px var(--gutter) 24px;
}
.ba-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 8.5vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.ba-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent);
}
.ba-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--mute);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}

.ba-filter {
  display: flex; gap: 8px;
  padding: 0 var(--gutter) 24px;
  flex-wrap: wrap;
}
.ba-filter button {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  transition: all 0.2s;
}
.ba-filter button:hover { border-color: var(--ink); }
.ba-filter button.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.ba-track-outer {
  height: 420vh;
  position: relative;
}
.ba-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
}
.ba-track {
  display: flex;
  gap: 32px;
  padding: 0 var(--gutter);
  will-change: transform;
}
.ba-card {
  flex: 0 0 auto;
  width: 70vw;
  min-width: 320px;
  max-width: 860px;
  display: flex; flex-direction: column; gap: 16px;
  transition: opacity 0.4s;
}
.ba-card.is-hidden { display: none; }
.ba-progress {
  position: sticky;
  top: calc(100vh - 64px);
  margin-top: -64px;
  padding: 16px var(--gutter) 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mute);
  z-index: 2;
  background: linear-gradient(180deg, transparent, var(--paper) 40%);
}
.ba-progress .bar {
  flex: 1; height: 1px;
  background: var(--line-strong);
  margin: 0 24px;
  position: relative; overflow: hidden;
}
.ba-progress .bar i {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent);
  width: 0%;
}
.ba-compare {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 84vh;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  user-select: none;
  cursor: pointer;
}
.ba-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ba-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-img .ph-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--line);
  z-index: 2;
}
.ba-img.before {
  z-index: 1;
}
.ba-img.before::before { content: none; }
.ba-img.after {
  z-index: 2;
  clip-path: inset(0 0 0 0%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ba-compare.show-before .ba-img.after {
  clip-path: inset(0 0 0 100%);
}
.ba-img.after::before { content: none; }
.ba-img.after .ph-label { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.ba-handle { display: none; }
.ba-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.ba-meta .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.ba-meta .tag {
  display: inline-flex; padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.ba-meta .tag.men { color: var(--accent); border-color: var(--accent); }
.ba-meta .tag.women { color: #3f5d3d; border-color: #3f5d3d; }

@media (max-width: 900px) {
  .ba-card { width: 78vw; }
}
@media (max-width: 600px) {
  .ba-track-outer { height: auto; }
  .ba-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding: 24px 0 48px;
    display: block;
  }
  .ba-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
    padding: 0 var(--gutter);
    gap: 48px;
    width: 100%;
  }
  .ba-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .ba-compare {
    aspect-ratio: 3/4;
    max-height: none;
  }
  .ba-progress { display: none; }
}

/* ============================================================
   Studio Interior — magazine spread
   ============================================================ */
.studio {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--line-strong);
}
.studio-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.studio-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.studio-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent);
}
.studio-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--mute);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}

.spread {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 10.5vw;
  gap: 16px;
  margin-bottom: 64px;
}
.spread:last-child { margin-bottom: 0; }

.shot {
  position: relative;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shot:hover { transform: translateY(-4px); }
.shot.has-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.shot.has-photo:hover img { opacity: 1; }
.shot.has-photo .caption { z-index: 2; position: relative; }
.shot.has-photo .ph-label { z-index: 2; position: relative; }
.shot::before {
  content: "";
  position: absolute; inset: 0;
}
.shot.t-warm::before {
  background:
    radial-gradient(70% 60% at 30% 30%, rgba(166, 64, 39, 0.32), transparent 70%),
    linear-gradient(180deg, #4a2c20 0%, #2a1a14 100%);
}
.shot.t-paper::before {
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(180, 132, 58, 0.25), transparent 70%),
    linear-gradient(180deg, #ede7dc 0%, #c9c0a8 100%);
}
.shot.t-cool::before {
  background:
    radial-gradient(70% 60% at 60% 40%, rgba(120, 140, 160, 0.32), transparent 70%),
    linear-gradient(180deg, #1a2030 0%, #0a1018 100%);
}
.shot.t-stone::before {
  background:
    radial-gradient(60% 80% at 40% 50%, rgba(122, 115, 103, 0.35), transparent 70%),
    linear-gradient(135deg, #b9b29e, #8a8474);
}
.shot.t-ink::before {
  background:
    radial-gradient(70% 70% at 70% 30%, rgba(201, 114, 89, 0.4), transparent 70%),
    linear-gradient(180deg, #18181a 0%, #0e0e0e 100%);
}
.shot .ph-label {
  position: absolute;
  left: 12px; top: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(14, 14, 14, 0.55);
  padding: 4px 8px;
  z-index: 2;
}
.shot.t-paper .ph-label,
.shot.t-stone .ph-label { color: var(--ink); background: rgba(237, 231, 220, 0.7); }

.shot .caption {
  position: absolute;
  left: 16px; bottom: 16px;
  right: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
}
.shot.t-paper .caption,
.shot.t-stone .caption { color: var(--ink); }
.shot .caption .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: block;
  margin-bottom: 4px;
}
.shot .num {
  font-variant-numeric: tabular-nums;
}

/* Spread A (top-heavy) */
.spread.a .s1 { grid-column: 1 / span 8; grid-row: 1 / span 6; }
.spread.a .s2 { grid-column: 9 / span 4; grid-row: 1 / span 3; }
.spread.a .s3 { grid-column: 9 / span 4; grid-row: 4 / span 3; }
.spread.a .s4 { grid-column: 1 / span 4; grid-row: 7 / span 3; }
.spread.a .s5 { grid-column: 5 / span 4; grid-row: 7 / span 3; }
.spread.a .s6 { grid-column: 9 / span 4; grid-row: 7 / span 3; }

/* Spread B (mirrored, wider middle) */
.spread.b .s1 { grid-column: 1 / span 4; grid-row: 1 / span 4; }
.spread.b .s2 { grid-column: 5 / span 8; grid-row: 1 / span 6; }
.spread.b .s3 { grid-column: 1 / span 4; grid-row: 5 / span 4; }
.spread.b .s4 { grid-column: 5 / span 4; grid-row: 7 / span 3; }
.spread.b .s5 { grid-column: 9 / span 4; grid-row: 7 / span 3; }

@media (max-width: 900px) {
  .spread {
    grid-auto-rows: 24vw;
  }
  .spread.a .s1 { grid-column: 1 / -1; grid-row: 1 / span 4; }
  .spread.a .s2 { grid-column: 1 / span 6; grid-row: 5 / span 3; }
  .spread.a .s3 { grid-column: 7 / span 6; grid-row: 5 / span 3; }
  .spread.a .s4 { grid-column: 1 / span 6; grid-row: 8 / span 3; }
  .spread.a .s5 { grid-column: 7 / span 6; grid-row: 8 / span 3; }
  .spread.a .s6 { grid-column: 1 / -1; grid-row: 11 / span 3; }

  .spread.b .s1 { grid-column: 1 / span 6; grid-row: 1 / span 3; }
  .spread.b .s2 { grid-column: 7 / span 6; grid-row: 1 / span 3; }
  .spread.b .s3 { grid-column: 1 / -1; grid-row: 4 / span 4; }
  .spread.b .s4 { grid-column: 1 / span 6; grid-row: 8 / span 3; }
  .spread.b .s5 { grid-column: 7 / span 6; grid-row: 8 / span 3; }
}

/* ============================================================
   At-work trio — process close-ups
   ============================================================ */
.atwork {
  padding: 120px var(--gutter);
  background: var(--ink);
  color: var(--paper);
}
.atwork-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.atwork-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.atwork-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent-soft);
}
.atwork-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: rgba(237, 231, 220, 0.7);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}
.atwork-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  counter-reset: step;
}
.atwork-steps li {
  counter-increment: step;
}
.atwork-steps li::before {
  content: counter(step) ". ";
  opacity: 0.5;
}
.atwork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.atwork-card {
  display: flex; flex-direction: column; gap: 16px;
}
.atwork-card .img {
  aspect-ratio: 3/4;
  background: #1a1a1a;
  border: 1px solid rgba(237, 231, 220, 0.12);
  position: relative;
  overflow: hidden;
}
.atwork-card .img::before {
  content: ""; position: absolute; inset: 0;
}
.atwork-card.a .img::before {
  background:
    radial-gradient(70% 60% at 30% 70%, rgba(201, 114, 89, 0.4), transparent 70%),
    linear-gradient(135deg, #2a1a14, #18181a);
}
.atwork-card.b .img::before {
  background:
    radial-gradient(60% 70% at 60% 40%, rgba(166, 64, 39, 0.4), transparent 70%),
    linear-gradient(180deg, #1f1815, #0e0e0e);
}
.atwork-card.c .img::before {
  background:
    radial-gradient(70% 50% at 50% 50%, rgba(180, 132, 58, 0.3), transparent 70%),
    linear-gradient(180deg, #261f15, #14110b);
}
.atwork-card .img .ph-label {
  position: absolute;
  left: 12px; top: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, 0.55);
  z-index: 2;
}
.atwork-card .img .step {
  position: absolute;
  right: 16px; bottom: 16px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent-soft);
  z-index: 2;
}
.atwork-card .meta {
  display: flex; justify-content: space-between; align-items: baseline;
}
.atwork-card .meta .lbl {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, 0.55);
}
.atwork-card .meta .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.atwork-card .meta .title em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--accent-soft);
}
.atwork-card .desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(237, 231, 220, 0.78);
}

@media (max-width: 900px) {
  .atwork-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Lifestyle — taller, more breathing room
   ============================================================ */

/* ============================================================
   Master — single feature replacing designers grid
   ============================================================ */
.master {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
}
.master-img {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  line-height: 0;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
}
.master-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 4;
}
.master-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 40% 30%, rgba(166, 64, 39, 0.15), transparent 70%),
    linear-gradient(to bottom, transparent 60%, rgba(14,14,14,0.55) 100%);
}
.master-img .ph-label {
  position: absolute; left: 16px; top: 16px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.master-img .qty {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 2;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(56px, 14vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  text-align: right;
}
.master-img .qty span {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}

.master-body { display: flex; flex-direction: column; gap: 32px; }
.master-body h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
}
.master-body h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.master-body h2 .ko {
  font-family: var(--ff-kr);
  font-size: 0.42em;
  color: var(--mute);
  display: block;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: 0;
}
.master-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
  margin: 0;
}
.master-body .pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--ink);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}

.timeline {
  display: flex; flex-direction: column;
  margin-top: 16px;
  border-top: 1px solid var(--line-strong);
}
.timeline .t-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.timeline .yr {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}
.timeline .what {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.timeline .what em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent);
}

.signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.signature .sig {
  border: 1px solid var(--line-strong);
  padding: 20px;
  background: var(--paper);
}
.signature .sig .num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.signature .sig .name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.signature .sig .ko {
  font-family: var(--ff-kr);
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 12px;
}
.signature .sig .desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

@media (min-width: 901px) {
  .master-img {
    position: sticky;
    top: var(--nav-h);
    align-self: start;
  }
}

@media (max-width: 900px) {
  .master { grid-template-columns: 1fr; gap: 32px; }
  .master-img {
    width: 100%;
    max-width: 100%;
  }
  .master-img .qty {
    right: 12px;
    bottom: 12px;
  }
  .master-img .ph-label {
    left: 12px;
    top: 12px;
    font-size: 9px;
  }
}

/* ============================================================
   Lifestyle magazine
   ============================================================ */
.lifestyle {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--line-strong);
}
.life-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.life-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  margin: 0;
}
.life-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent);
}
.life-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--mute);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}

.life-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 16px;
  min-height: 100vh;
}
.life-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.life-card:hover { transform: translateY(-6px); }
.life-card.dance {
  grid-column: 1; grid-row: 1 / span 2;
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.life-card.dance::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 70%, rgba(201, 114, 89, 0.45), transparent 70%),
    linear-gradient(180deg, #18181a, #2a1a14);
}
.life-card.train { grid-column: 2; grid-row: 1; }
.life-card.train::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 70% 30%, rgba(63, 93, 61, 0.35), transparent 70%),
    linear-gradient(180deg, #d8d3c6, #b9b29e);
}
.life-card.read { grid-column: 3; grid-row: 1; }
.life-card.read::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(180, 132, 58, 0.3), transparent 70%),
    linear-gradient(180deg, #ede7dc, #c9c0a8);
}
.life-card.study { grid-column: 2 / span 2; grid-row: 2; }
.life-card.study::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 50% 50%, rgba(14,14,14,0.08), transparent 70%),
    linear-gradient(135deg, #efeae0, #d5d7dc);
}
.life-card > * { position: relative; z-index: 1; }
.life-card .ph-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.life-card.dance .ph-label { color: rgba(237,231,220,0.5); }
.life-card .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.life-card.dance .num { color: rgba(237,231,220,0.55); }
.life-card .info {
  display: flex; flex-direction: column; gap: 6px;
  align-self: flex-end;
  width: 100%;
}
.life-card .info-top {
  display: flex; justify-content: space-between; align-items: baseline;
}
.life-card .tag {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.life-card .ko {
  font-family: var(--ff-kr);
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
}
.life-card.dance .ko { color: rgba(237,231,220,0.6); }
.life-card .tag em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}
.life-card.dance .tag em { color: var(--accent-soft); }

.life-card.dance .play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.life-card.dance .play span {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.3s;
}
.life-card.dance:hover .play span { transform: scale(1.08); }

@media (max-width: 900px) {
  .life-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .life-card.dance { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16/9; }
  .life-card.train { grid-column: 1; grid-row: 2; aspect-ratio: 1/1; }
  .life-card.read { grid-column: 2; grid-row: 2; aspect-ratio: 1/1; }
  .life-card.study { grid-column: 1 / -1; grid-row: 3; aspect-ratio: 16/9; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 96px var(--gutter) 80px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.faq-head {
  margin-bottom: 40px;
  max-width: 720px;
}
.faq-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 12px 0 16px;
}
.faq-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.55em;
  margin-top: 0.15em;
  color: var(--mute);
}
.faq-head .desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
}
.faq-list {
  max-width: 820px;
  border-top: 1px solid var(--line-strong);
}
.faq-cat {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 28px 0 8px;
  padding-top: 8px;
}
.faq-cat:first-child { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--ff-kr);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--paper);
  position: relative;
  word-break: keep-all;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--mute);
  transition: transform 0.25s ease, color 0.25s ease;
}
.faq-item[open] .faq-q::after {
  content: '−';
  color: var(--paper);
}
.faq-a {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(237,231,220,0.72);
}
.faq-a p { margin: 0; }
.post-faq {
  margin-top: 1.5em;
  padding-top: 1.25em;
  border-top: 1px solid rgba(237,231,220,0.12);
}
.post-faq > p:first-child {
  margin-bottom: 0.75em;
  color: var(--paper);
}
.post-faq .faq-q-inline {
  font-weight: 600;
  color: var(--paper);
  margin: 1em 0 0.35em;
}
.post-faq .faq-a-inline {
  margin: 0 0 0.5em;
}

@media (max-width: 600px) {
  .faq { padding-top: 64px; padding-bottom: 56px; }
  .faq-q { padding-right: 28px; font-size: 14px; }
}

/* ============================================================
   BOARD — 게시판
   ============================================================ */
/* ── Board 게시판 ─────────────────────────────── */
.board {
  padding: 80px var(--gutter);
  background: #1a1816;
  border-top: 1px solid rgba(237,231,220,0.12);
  color: var(--paper);
}
.board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.board-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--paper);
  opacity: 1 !important;
}
.board-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  display: inline;
  font-size: 0.7em;
  color: rgba(237,231,220,0.6);
  margin-left: 10px;
  letter-spacing: -0.01em;
}
.board-head .desc {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.6;
}

/* 리스트 */
.board-grid {
  display: flex;
  flex-direction: column;
}
.board-row {
  display: grid;
  grid-template-columns: 72px 88px 1fr auto;
  align-items: center;
  gap: 20px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none;
  color: var(--paper);
  transition: background 0.2s;
}
.board-row-thumb {
  width: 72px;
  height: 54px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(237,231,220,0.06);
  flex-shrink: 0;
}
.board-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.board-row-thumb.is-empty {
  border: 1px solid rgba(237,231,220,0.1);
  background: rgba(237,231,220,0.03);
}
.board-row:first-child { border-top: 1px solid var(--line-strong); }
.board-row:hover { background: rgba(237,231,220,0.03); }
.board-row-date {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(237,231,220,0.35);
  white-space: nowrap;
}
.board-row-main { min-width: 0; }
.board-row-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-row-excerpt {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(237,231,220,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-row-arrow {
  font-size: 14px;
  color: rgba(237,231,220,0.3);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}
.board-row:hover .board-row-arrow { transform: translateX(4px); color: var(--paper); }

/* 스켈레톤 */
.board-skeleton {
  height: 72px;
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(90deg,
    rgba(237,231,220,0.04) 25%,
    rgba(237,231,220,0.08) 50%,
    rgba(237,231,220,0.04) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}
.board-skeleton:first-child { border-top: 1px solid var(--line-strong); }
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 더보기 */
.board-more { margin-top: 32px; text-align: center; }
.board-more-btn {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 12px 28px;
  border: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.board-more-btn:hover { color: var(--paper); border-color: var(--paper); }

/* 빈 상태 */
.board-empty {
  padding: 60px 0;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* 글쓰기 버튼 */
.board-write-btn {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  flex-shrink: 0;
  align-self: center;
}
.board-write-btn:hover { color: var(--paper); border-color: var(--paper); }

/* 글쓰기 모달 */
.write-modal {
  position: fixed; inset: 0;
  z-index: 9100;
  display: flex;
  pointer-events: none;
}
.write-modal.open { pointer-events: all; }
.write-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,14,14,0);
  transition: background 0.3s;
}
.write-modal.open .write-modal-backdrop { background: rgba(14,14,14,0.75); }
.write-modal-panel {
  position: relative;
  margin: auto;
  width: min(520px, 96vw);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.33,1,0.68,1), opacity 0.32s;
}
.write-modal.open .write-modal-panel { transform: translateY(0); opacity: 1; }
.write-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-strong);
}
.write-modal-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.write-modal-form { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.write-field { display: flex; flex-direction: column; gap: 6px; }
.write-field label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.write-field input {
  background: rgba(237,231,220,0.05);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--ff-body, sans-serif);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.write-field input:focus { border-color: rgba(237,231,220,0.4); }

/* Quill rich text editor */
.write-editor-wrap {
  border: 1px solid var(--line-strong);
  background: rgba(237,231,220,0.05);
  transition: border-color 0.2s;
}
.write-editor-wrap:focus-within { border-color: rgba(237,231,220,0.4); }
.write-editor-wrap .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(237,231,220,0.03);
  padding: 8px 10px;
}
.write-editor-wrap .ql-container.ql-snow {
  border: none;
  font-family: var(--ff-body, sans-serif);
  font-size: 14px;
}
.write-editor-wrap .ql-editor {
  min-height: 180px;
  max-height: 320px;
  overflow-y: auto;
  color: var(--paper);
  line-height: 1.75;
  padding: 12px 14px;
}
.write-editor-wrap .ql-editor.ql-blank::before {
  color: rgba(237,231,220,0.35);
  font-style: normal;
}
.write-editor-wrap .ql-snow .ql-stroke { stroke: rgba(237,231,220,0.65); }
.write-editor-wrap .ql-snow .ql-fill { fill: rgba(237,231,220,0.65); }
.write-editor-wrap .ql-snow .ql-picker { color: rgba(237,231,220,0.75); }
.write-editor-wrap .ql-snow .ql-picker-options {
  background: var(--ink-soft);
  border-color: var(--line-strong);
}
.write-editor-wrap .ql-snow .ql-picker.ql-expanded .ql-picker-label,
.write-editor-wrap .ql-snow .ql-picker-label:hover,
.write-editor-wrap .ql-snow button:hover,
.write-editor-wrap .ql-snow button.ql-active {
  color: var(--paper);
}
.write-editor-wrap .ql-snow button:hover .ql-stroke,
.write-editor-wrap .ql-snow button.ql-active .ql-stroke,
.write-editor-wrap .ql-snow .ql-picker-label:hover .ql-stroke {
  stroke: var(--paper);
}
.write-editor-wrap .ql-snow button:hover .ql-fill,
.write-editor-wrap .ql-snow button.ql-active .ql-fill {
  fill: var(--paper);
}
.write-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.write-error {
  font-size: 12px;
  color: #e06060;
  flex: 1;
}
.write-submit {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--paper);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.write-submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* 포스트 모달 */
.post-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex;
  pointer-events: none;
}
.post-modal.open { pointer-events: all; }
.post-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,14,14,0);
  transition: background 0.35s ease;
}
.post-modal.open .post-modal-backdrop { background: rgba(14,14,14,0.7); }
.post-modal-panel {
  position: relative;
  margin-left: auto;
  width: min(540px, 100vw);
  height: 100%;
  background: var(--ink);
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0, 0.67, 0);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.post-modal.open .post-modal-panel {
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}
.post-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.post-modal-date {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.post-modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--mute);
  font-size: 20px; line-height: 1;
  transition: color 0.2s;
  padding: 0;
}
.post-modal-close:hover { color: var(--paper); }
.post-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 32px 28px 48px;
}
.post-modal-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
}
.post-modal-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--paper);
  margin: 0 0 20px;
}
.post-modal-text,
.board-row-expand {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(237,231,220,0.75);
  word-break: keep-all;
}
.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 1.25em 0 1.5em;
}
.post-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: rgba(237,231,220,0.04);
}
.post-modal-text .post-gallery {
  grid-template-columns: 1fr;
  gap: 16px;
}
.post-modal-text .post-gallery img {
  border-radius: 6px;
}
.post-modal-text p,
.board-row-expand p { margin: 0 0 0.85em; }
.post-modal-text p:last-child,
.board-row-expand p:last-child { margin-bottom: 0; }
.post-modal-text ul,
.post-modal-text ol,
.board-row-expand ul,
.board-row-expand ol {
  margin: 0 0 0.85em;
  padding-left: 1.25em;
}
.post-modal-text a,
.board-row-expand a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-modal-text strong,
.board-row-expand strong { color: var(--paper); font-weight: 600; }

/* 인라인 펼침 (모바일 전용) */
.board-row-expand {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 0 20px;
  font-size: 13px;
  color: rgba(237,231,220,0.72);
}
.board-row.is-open .board-row-expand { display: block; }
.board-row.is-open .board-row-arrow { transform: rotate(90deg); color: var(--paper); }

/* 반응형 */
@media (max-width: 900px) {
  /* 태블릿: board 좌우 여백 명시 (var(--gutter) shorthand IACVT 방지) */
  .board { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .board { padding-top: 56px; padding-bottom: 56px; padding-left: 16px; padding-right: 16px; }
  .board-row {
    grid-template-columns: 56px 1fr 24px;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    cursor: pointer;
  }
  .board-row-thumb {
    width: 56px;
    height: 42px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
  }
  .board-row-date {
    grid-column: 2;
    grid-row: 1;
    font-size: 9px;
  }
  .board-row-main { grid-column: 2; grid-row: 2; }
  .board-row-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }
  .board-row-expand { grid-column: 1 / -1; }
  /* 모바일: 모달 숨기고 인라인 펼침 사용 */
  .post-modal { display: none !important; }
  .write-modal-panel {
    width: calc(100vw - 32px);
    margin: auto 16px;
  }
}

/* ============================================================
   SNS — social feed
   ============================================================ */
.sns {
  padding: 120px var(--gutter);
  background: var(--ink); color: var(--paper);
}
.sns-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
.sns-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}
.sns-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent-soft);
}
.sns-head .desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(237,231,220,0.7);
  max-width: 420px;
  justify-self: end;
  text-align: right;
}
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
/* v2 레이아웃: 왼쪽(소셜 링크) + 오른쪽(유튜브 ×2) */
.sns-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.sns-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sns-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sns-social-link {
  flex: 1;
}
.sns-social-link header {
  border-bottom: none;
  padding-bottom: 0;
}
/* 빈 유튜브 슬롯 플레이스홀더 */
.yt-pair-placeholder {
  display: flex;
  gap: 8px;
}
.yt-slot {
  flex: 1;
  aspect-ratio: 9/16;
  background: rgba(237,231,220,0.05);
  border: 1px dashed rgba(237,231,220,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-slot span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.3);
  text-align: center;
  padding: 8px;
}
.sns-col {
  border: 1px solid rgba(237,231,220,0.18);
  padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.sns-col header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(237,231,220,0.18);
  padding-bottom: 16px;
}
.sns-col header .name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.sns-col header .handle {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.55);
}
.sns-col header .follow {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 6px 12px;
  border-radius: 999px;
}
.sns-col header .follow:hover { background: var(--paper); color: var(--ink); }

.thread-post {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(237,231,220,0.1);
}
.thread-post:last-child { border-bottom: none; padding-bottom: 0; }
.thread-post .meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.45);
}
.thread-post .body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
}
.thread-post .body em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent-soft);
}
.thread-post .stats {
  display: flex; gap: 18px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(237,231,220,0.45);
  text-transform: uppercase;
}

.yt-pair {
  display: flex;
  gap: 8px;
}
.yt-card {
  flex: 1;
  border: 1px solid rgba(237,231,220,0.18);
  aspect-ratio: 9/16;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.yt-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(201,114,89,0.3), transparent 70%),
    repeating-linear-gradient(135deg, rgba(237,231,220,0.04) 0 6px, transparent 6px 14px);
}
.yt-card .play-btn {
  position: absolute;
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
}
.yt-card .play-btn::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.yt-card .dur {
  position: absolute;
  right: 8px; bottom: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.6);
  color: var(--paper);
  padding: 2px 6px;
}
.yt-card .ph-label {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,231,220,0.45);
}

.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.ig-grid .cell {
  aspect-ratio: 1/1;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.ig-grid .cell::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at var(--gx, 50%) var(--gy, 50%), var(--gc, rgba(166,64,39,0.4)), transparent 70%),
    linear-gradient(135deg, #2a1a14, #1a1a1a);
}
.ig-grid .cell:nth-child(1) { --gx: 30%; --gy: 30%; --gc: rgba(201,114,89,0.5); }
.ig-grid .cell:nth-child(2) { --gx: 70%; --gy: 30%; --gc: rgba(63, 93, 61, 0.4); }
.ig-grid .cell:nth-child(3) { --gx: 50%; --gy: 70%; --gc: rgba(180, 132, 58, 0.4); }
.ig-grid .cell:nth-child(4) { --gx: 30%; --gy: 70%; --gc: rgba(166, 64, 39, 0.45); }
.ig-grid .cell:nth-child(5) { --gx: 70%; --gy: 70%; --gc: rgba(120, 140, 160, 0.35); }
.ig-grid .cell:nth-child(6) { --gx: 50%; --gy: 30%; --gc: rgba(201, 114, 89, 0.4); }

@media (max-width: 900px) {
  .sns-grid { grid-template-columns: 1fr; }
  .sns-grid-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .yt-pair-placeholder { flex-direction: column; }
}

/* ============================================================
   Reserve modal (Menu → Naver)
   ============================================================ */
.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
.reserve-modal[hidden] { display: none; }
body.reserve-modal-open { overflow: hidden; }
.reserve-modal.open {
  pointer-events: all;
}
.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0);
  transition: background 0.35s ease;
}
.reserve-modal.open .reserve-modal-backdrop {
  background: rgba(14, 14, 14, 0.72);
}
.reserve-modal-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 40px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}
.reserve-modal.open .reserve-modal-panel {
  transform: translateY(0);
  opacity: 1;
}
.reserve-modal-eyebrow {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 16px;
}
.reserve-modal-panel h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.reserve-modal-panel h3 .accent { color: var(--accent); }
.reserve-modal-menu {
  font-family: var(--ff-kr);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-strong);
}
.reserve-modal-menu:empty { display: none; }
.reserve-modal-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  margin: 20px 0 0;
}
.reserve-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.reserve-modal-cancel,
.reserve-modal-go {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.reserve-modal-cancel {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--mute);
}
.reserve-modal-cancel:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.reserve-modal-go {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.reserve-modal-go:hover {
  background: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 480px) {
  .reserve-modal-panel { padding: 28px 24px; }
  .reserve-modal-actions { flex-direction: column; }
  .reserve-modal-cancel,
  .reserve-modal-go { justify-content: center; width: 100%; }
}

/* ============================================================
   Confirm overlay
   ============================================================ */
.confirm {
  position: fixed; inset: 0;
  background: rgba(14, 14, 14, 0.7);
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.confirm.is-open { display: flex; }
.confirm-inner {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
}
.confirm-inner h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.confirm-inner h3 .accent { color: var(--accent); }
.confirm-inner .sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--mute);
  margin: 0 0 32px;
}
#confirm-body { border-top: 1px solid var(--line-strong); }
#confirm-body .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  align-items: baseline;
}
#confirm-body .row strong {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
}
.confirm-close {
  margin-top: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
}
.confirm-close:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   MOBILE FIXES — 반응형 수정 2026-05-13
   ============================================================ */

/* ── 1. 공통 gutter 축소 ─────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --gutter: 16px; }
}

/* ── 2. 섹션 수직 패딩 축소 (120px → 64px) ─────────────────── */
@media (max-width: 600px) {
  .studio,
  .master,
  .lifestyle,
  .sns,
  .services { padding-top: 64px; padding-bottom: 64px; }

  .booking { padding-top: 64px; padding-bottom: 64px; }
  .atwork  { padding-top: 64px; padding-bottom: 64px; }
  .visit   { padding-top: 64px; padding-bottom: 64px; }
}

/* ── 3. 매니페스토 — white-space:nowrap 해제 + 폰트 축소 ────── */
@media (max-width: 600px) {
  .manifesto-lines {
    font-size: clamp(28px, 7.5vw, 56px);
    height: auto;
    min-height: 3em;
  }
  .manifesto-line {
    white-space: normal;
    line-height: 1.15;
  }
  .manifesto-line .ko {
    font-size: 0.5em;
    margin-top: 0.3em;
  }
}

/* ── 4. 부킹 헤드 — 2컬럼 → 1컬럼 ────────── */
@media (max-width: 900px) {
  .booking-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── 5. 섹션 헤드 2컬럼 → 1컬럼 ─────────────────────────────── */
@media (max-width: 600px) {
  .ba-head,
  .studio-head,
  .atwork-head,
  .life-head,
  .sns-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-head .desc,
  .studio-head .desc,
  .atwork-head .desc,
  .life-head .desc,
  .sns-head .desc {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }
}

/* ── 6. 예약 버튼 크기 축소 ──────────────────────────────────── */
@media (max-width: 600px) {
  .btn-big {
    font-size: clamp(22px, 5vw, 28px);
    padding: 18px 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ── 7. 마스터 시그니처 카드 → 1컬럼 ────────────────────────── */
@media (max-width: 600px) {
  .signature { grid-template-columns: 1fr; }
}

/* ── 8. 히어로 v2 코너 레이블 — 아주 작은 화면에서 숨김 ──────── */
@media (max-width: 480px) {
  .hero.v2 .hero-corners { display: none; }
}

/* ── 9. 라이프 그리드 — 480px 이하 단일 컬럼 ─────────────────── */
@media (max-width: 480px) {
  .life-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .life-card.dance { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .life-card.train { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .life-card.read  { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .life-card.study { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
}

/* ── 10. 푸터 그리드 ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .foot-bot { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .foot-bot { grid-template-columns: 1fr; }
}

/* ── 11. 컨펌 오버레이 패딩 축소 ─────────────────────────────── */
@media (max-width: 600px) {
  .confirm-inner { padding: 24px; }
  .confirm-inner h3 { font-size: 26px; }
}

/* ── 12. 스튜디오 스프레드 — 전체 1열 (The room 동일 크기) ────── */
@media (max-width: 600px) {
  .spread { grid-auto-rows: 56vw; }

  .spread.a .s1 { grid-column: 1 / -1; grid-row: 1 / span 3; }
  .spread.a .s2 { grid-column: 1 / -1; grid-row: 4 / span 3; }
  .spread.a .s3 { grid-column: 1 / -1; grid-row: 7 / span 3; }
  .spread.a .s4 { grid-column: 1 / -1; grid-row: 10 / span 3; }
  .spread.a .s5 { grid-column: 1 / -1; grid-row: 13 / span 3; }
  .spread.a .s6 { grid-column: 1 / -1; grid-row: 16 / span 3; }

  .spread.b .s1 { grid-column: 1 / -1; grid-row: 1 / span 3; }
  .spread.b .s2 { grid-column: 1 / -1; grid-row: 4 / span 3; }
  .spread.b .s3 { grid-column: 1 / -1; grid-row: 7 / span 3; }
  .spread.b .s4 { grid-column: 1 / -1; grid-row: 10 / span 3; }
  .spread.b .s5 { grid-column: 1 / -1; grid-row: 13 / span 3; }
}

/* ── 13. 캡션 + ph-label 한 줄 처리 ─────────────────────────── */
@media (max-width: 600px) {
  .shot .ph-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
  }
  .shot .caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .shot .caption .title {
    font-size: 20px;
    white-space: nowrap;
  }
  .shot .caption > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
  .shot .caption .num { white-space: nowrap; }
}
