/* ---------- Hangul display font (self-hosted subset) ---------- */

@font-face {
  font-family: "MI Hangul";
  src: url("/assets/fonts/hangul-subset.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   MI:SKIN - Korean Professional Facial Sanctuary, Zurich
   Design system from MI:SKIN Brand Book V5
   Palette: skin tones (light + saturated), black & white,
   light grey, accents of pale olive and white gold.
   Type: Cormorant Garamond (display) / Jost (body)
   ============================================================ */

:root {
  --cream: #faf6f1;
  --blush: #fdefe8;
  --rose: #e5bbaa;
  --rose-deep: #c08a72;
  --grey: #d7d4d6;
  --olive: #a2ac93;
  --olive-deep: #6f7a5e;
  --gold: #e1d1c0;
  --ink: #1c1a18;
  --ink-soft: #55504a;
  --line: rgba(28, 26, 24, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 5px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.display {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.04;
}

.h-xl { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.h-lg { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.h-md { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }

.italic { font-style: italic; font-weight: 300; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.label--olive { color: var(--olive-deep); }
.label--rose { color: var(--rose-deep); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

p + p { margin-top: 1.1em; }

.hangul {
  font-family: "MI Hangul", "Noto Serif KR", var(--serif);
  color: var(--rose-deep);
}

section[id], div[id] { scroll-margin-top: 90px; }

/* ---------- Layout helpers ---------- */

.wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.wrap--narrow { width: min(880px, 92vw); }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }

.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section--blush { background: var(--blush); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink .label { color: var(--gold); }
.section--ink .ritual-list, .section--ink .steps { border-top-color: rgba(250, 246, 241, 0.18); }
.section--ink .ritual-item, .section--ink .step { border-bottom-color: rgba(250, 246, 241, 0.18); }
.section--ink .ritual-item p, .section--ink .step p,
.section--ink .check-list li { color: rgba(250, 246, 241, 0.72); }
.section--ink .section-head p { color: rgba(250, 246, 241, 0.7); }
.section--ink .check-list li::before { background: var(--gold); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .label { display: block; margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1.2rem; }
.section-head p { color: var(--ink-soft); }

.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-header .header-inner {
  width: min(1360px, 94vw);
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: height 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.scrolled .header-inner { height: 66px; }

/* Transparent header over dark hero media (not yet scrolled) */
.site-header--light:not(.scrolled) .logo,
.site-header--light:not(.scrolled) .main-nav a.nav-link,
.site-header--light:not(.scrolled) .lang-switch,
.site-header--light:not(.scrolled) .lang-switch a { color: var(--cream); }
.site-header--light:not(.scrolled) .logo .dot { color: var(--rose); }
.site-header--light:not(.scrolled) .main-nav a.nav-link::after { background: var(--cream); }
.site-header--light:not(.scrolled) .lang-switch a.active { border-bottom-color: var(--cream); }
.site-header--light:not(.scrolled) .menu-toggle span { background: var(--cream); }
.site-header--light:not(.scrolled) { text-shadow: 0 1px 10px rgba(28, 26, 24, 0.35); }

.logo {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.logo em { font-style: italic; font-weight: 300; }
.logo span { font-weight: 500; }
.logo .dot { color: var(--rose-deep); }

.main-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }

.main-nav a.nav-link {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}

.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.main-nav a.nav-link:hover::after,
.main-nav a.nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 400;
}

.lang-switch a { opacity: 0.5; transition: opacity 0.3s; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a.active { opacity: 1; border-bottom: 1px solid var(--ink); }
.lang-switch .sep { opacity: 0.35; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--cream); }

.btn--outline-cream {
  border-color: rgba(250, 246, 241, 0.75);
  background: transparent;
  color: var(--cream);
}
.btn--outline-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--sm { padding: 0.8rem 1.6rem; font-size: 11.5px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s;
}

.link-arrow:hover { gap: 1rem; color: var(--rose-deep); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 24, 0.80) 0%, rgba(28, 26, 24, 0.50) 42%, rgba(28, 26, 24, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding-bottom: clamp(4rem, 9vh, 7rem);
  padding-top: calc(var(--header-h) + 4rem);
  color: var(--cream);
}

.hero-content .label { color: var(--gold); display: block; margin-bottom: 1.4rem; }

.hero-content h1 { max-width: 20ch; margin-bottom: 1.6rem; }

.hero-content p.lead { max-width: 46ch; color: rgba(250, 246, 241, 0.88); margin-bottom: 2.4rem; }

.hero-content .label, .hero-content p.lead, .hero-content h1, .hero-content .rating-line { text-shadow: 0 1px 18px rgba(28, 26, 24, 0.55); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: 2.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--cream);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.75;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: var(--cream);
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (subpages) */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}

.page-hero--img { color: var(--cream); min-height: 62svh; display: flex; align-items: flex-end; }
.page-hero--img .page-hero-bg { position: absolute; inset: 0; }
.page-hero--img .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.page-hero--img .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.6), rgba(28,26,24,0.15) 60%);
}
.page-hero--img .wrap { position: relative; z-index: 1; }
.page-hero--img .label { color: var(--gold); }
.page-hero--img .lead, .page-hero--img .breadcrumb { text-shadow: 0 1px 14px rgba(28, 26, 24, 0.45); }

.page-hero .label { display: block; margin-bottom: 1.2rem; }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.4rem; }
.page-hero .lead { max-width: 52ch; }
.page-hero--img .lead { color: rgba(250,246,241,0.9); }

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--cream);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  font-family: "MI Hangul", var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  white-space: nowrap;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.marquee span::after { content: "·"; color: var(--rose-deep); font-style: normal; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Manifesto ---------- */

.manifesto { position: relative; }

.manifesto .hangul-big {
  position: absolute;
  top: 2rem;
  right: 4vw;
  font-family: "MI Hangul", "Noto Serif KR", var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: var(--rose);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.3;
  max-width: 24ch;
}

.manifesto blockquote em { color: var(--rose-deep); }

/* ---------- Cards ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(28, 26, 24, 0.25);
  border-color: var(--rose);
}

.card .card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-deep);
}

.card h3 { font-size: 1.65rem; }

.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

.card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.card .price { font-family: var(--serif); font-size: 1.3rem; }
.card .price small { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--ink-soft); display: block; }

/* ---------- Feature (image + text) ---------- */

.feature .media-frame { position: relative; overflow: hidden; }

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.media-frame:hover img { transform: scale(1.04); }

.feature .media-frame { aspect-ratio: 4 / 5; }

.media-caption {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

.media-frame--monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--blush) 0%, var(--gold) 55%, var(--olive) 130%);
}

.media-frame--monogram span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 9vw, 8rem);
  color: rgba(28, 26, 24, 0.55);
}

.feature-body .label { display: block; margin-bottom: 1.1rem; }
.feature-body h2 { margin-bottom: 1.4rem; }
.feature-body p { color: var(--ink-soft); }
.feature-body .btn, .feature-body .link-arrow { margin-top: 2rem; }

.check-list { margin-top: 1.6rem; display: grid; gap: 0.85rem; }

.check-list li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  color: var(--ink);
  font-size: 1rem;
}

.check-list li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  transform: translateY(-1px);
}

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--rose-deep);
}

.step h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); max-width: 60ch; }

/* ---------- Ritual list (sanctuary) ---------- */

.ritual-list { display: grid; gap: 0; border-top: 1px solid var(--line); }

.ritual-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}

.ritual-item:hover { padding-left: 1rem; }

.ritual-item h3 { font-size: 1.45rem; }
.ritual-item h3 .hangul { font-size: 1.1rem; margin-left: 0.6rem; }
.ritual-item p { color: var(--ink-soft); }

/* ---------- Filter (facials) ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover { border-color: var(--ink); color: var(--ink); }

.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}

.t-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s, border-color 0.45s;
}

.t-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -22px rgba(28,26,24,0.22); border-color: var(--rose); }

.t-card.hidden { display: none; }

.t-card .t-cat {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
}

.t-card h3 { font-size: 1.5rem; }
.t-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }

.t-card .t-foot {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
}

.t-card .t-price { font-family: var(--serif); font-size: 1.25rem; }
.t-card .t-note { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.06em; }

/* ---------- Price table ---------- */

.price-table { border-top: 1px solid var(--line); }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.35s var(--ease);
}

.price-row:hover { padding-left: 0.8rem; }

.price-row h3 { font-size: 1.4rem; }
.price-row p { color: var(--ink-soft); font-size: 0.95rem; max-width: 56ch; }

.price-row .p-val { text-align: right; font-family: var(--serif); font-size: 1.5rem; white-space: nowrap; }
/* the amount stays on one line, the footnote under it is allowed to wrap:
   the owner edits these strings, and a long one must never widen the page */
.price-row .p-val small { display: block; font-family: var(--sans); font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.08em; white-space: normal; }
.price-row .p-val s { color: var(--ink-soft); font-size: 1.05rem; margin-left: 0.6rem; }

.offer-badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-align: left;
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  position: relative;
  color: var(--ink);
  line-height: 1.3;
}

.faq-q::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-a-inner {
  padding: 0 3rem 1.8rem 0;
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ---------- CTA band ---------- */

.cta-band { position: relative; overflow: hidden; text-align: center; }

.cta-band .hangul-big {
  position: absolute;
  inset: auto 0 -2.5rem 0;
  text-align: center;
  font-family: "MI Hangul", "Noto Serif KR", var(--serif);
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
  color: rgba(250, 246, 241, 0.06);
  pointer-events: none;
  user-select: none;
}

.cta-band h2 { max-width: 20ch; margin: 0 auto 1.4rem; }
.cta-band .lead { color: rgba(250,246,241,0.8); max-width: 48ch; margin: 0 auto 2.4rem; }
.cta-band .label { display: block; margin-bottom: 1.2rem; }

/* ---------- Visit / contact ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.visit-block { border-top: 1px solid var(--line); padding-top: 1.6rem; margin-top: 2.2rem; }
.visit-block:first-of-type { margin-top: 0; }

.visit-block .label { display: block; margin-bottom: 0.9rem; }

.visit-block p, .visit-block a { color: var(--ink); font-size: 1.05rem; }

.visit-block a:hover { color: var(--rose-deep); }

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.hours-table td:last-child { text-align: right; font-family: var(--serif); font-size: 1.1rem; }

.map-embed {
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  width: 100%;
  filter: grayscale(0.4) sepia(0.12);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Values ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: background 0.4s var(--ease);
}

.value-cell:hover { background: var(--blush); }

.value-cell h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.value-cell p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Gallery strip ---------- */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}

.gallery-strip .media-frame { aspect-ratio: 3/4; }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }

.team-member .media-frame { aspect-ratio: 4/5; }

.team-member h3 { font-size: 1.6rem; margin-top: 1.4rem; }
.team-member .role { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive-deep); margin-top: 0.3rem; }
.team-member p { color: var(--ink-soft); margin-top: 0.8rem; font-size: 0.98rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 241, 0.15);
}

.footer-brand .logo { font-size: 34px; }
.footer-brand p { color: rgba(250, 246, 241, 0.65); font-size: 0.95rem; margin-top: 1rem; max-width: 30ch; }

.footer-col .label { color: var(--gold); display: block; margin-bottom: 1.2rem; }

.footer-col ul { display: grid; gap: 0.7rem; }

.footer-col a, .footer-col li {
  color: rgba(250, 246, 241, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 241, 0.45);
  letter-spacing: 0.06em;
}

/* ---------- Mobile menu ---------- */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 210;
}

body.menu-open .menu-toggle {
  z-index: 310;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.35s var(--ease), opacity 0.3s, background 0.3s;
}

body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body.menu-open .menu-toggle span { background: var(--cream); }

body.menu-open .site-header {
  z-index: 300;
  background: transparent;
  box-shadow: none;
}

body.menu-open .site-header .logo { color: var(--cream); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu a.m-nav {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(250,246,241,0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}

body.menu-open .mobile-menu a.m-nav { transform: none; opacity: 1; }
body.menu-open .mobile-menu a.m-nav:nth-child(2) { transition-delay: 0.06s; }
body.menu-open .mobile-menu a.m-nav:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .mobile-menu a.m-nav:nth-child(4) { transition-delay: 0.18s; }

.mobile-menu a.m-nav small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }

.mobile-menu .m-foot { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.mobile-menu .m-foot a { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

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

/* ---------- Rating line (5.0 badges, no counts) ---------- */

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.rating-line .stars { color: var(--rose-deep); letter-spacing: 0.2em; font-size: 0.95rem; }
.page-hero--img .rating-line, .hero .rating-line { color: rgba(250, 246, 241, 0.85); }
.page-hero--img .rating-line .stars, .hero .rating-line .stars { color: var(--gold); }

/* ---------- Offer strip (homepage current offer, on/off) ---------- */

.offer-strip {
  background: linear-gradient(120deg, var(--blush) 0%, var(--gold) 130%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-strip-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.offer-strip h2 { margin: 0.6rem 0 0.8rem; }

.offer-strip p { color: var(--ink-soft); max-width: 52ch; }

.offer-side { text-align: right; }

.offer-price { font-family: var(--serif); margin-bottom: 1.1rem; }
.offer-price s { color: var(--ink-soft); font-size: 1.3rem; margin-right: 0.8rem; }
.offer-price .offer-now { font-size: 2.6rem; line-height: 1; color: var(--ink); }
.offer-price > small { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--ink-soft); display: block; margin-top: 0.35rem; }

/* ---------- Direction blocks + tag filter (Treatments) ---------- */

.tag-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }

.tag-pill {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.tag-pill:hover { border-color: var(--ink); color: var(--ink); }

.tag-pill.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.tag-pill--reset { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }

.dir-block {
  border-top: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.dir-block.is-hidden { display: none; }

.dir-name { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.05; }
.dir-name small { display: block; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 0.7rem; }

.dir-claim { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--olive-deep); margin-bottom: 0.8rem; }

.dir-block p.dir-desc { color: var(--ink-soft); max-width: 62ch; }

.for-line { margin-top: 1.3rem; font-size: 0.92rem; color: var(--ink); }
.for-line b { font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--ink-soft); margin-right: 0.8rem; }

.for-line .fw { cursor: pointer; border-bottom: 1px dotted var(--line); transition: color 0.25s, border-color 0.25s; }
.for-line .fw:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

/* ---------- Level table (intensity I-IV) ---------- */

.level-table { border-top: 1px solid var(--line); }

.level-row {
  display: grid;
  grid-template-columns: 70px 1fr 110px 120px 130px;
  gap: 1.4rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.level-row--head {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.level-num { font-family: var(--serif); font-size: 1.9rem; color: var(--olive-deep); }

.level-row h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.level-row p { color: var(--ink-soft); font-size: 0.94rem; max-width: 58ch; }

.level-cell { text-align: right; font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; }
.level-cell small { display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.08em; }
.level-cell--dur { font-family: var(--sans); font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Protocol cards ---------- */

.proto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.proto-card {
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--cream);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.proto-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 26, 24, 0.08); }

.proto-card--feature { grid-column: span 2; border-color: var(--olive-deep); background: rgba(162, 172, 147, 0.12); }

.proto-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }

.proto-meta { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.proto-card p { color: var(--ink-soft); font-size: 0.94rem; }

.proto-sum { margin-top: auto; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }

.proto-per { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }
.proto-per s { color: var(--ink-soft); }
.proto-per .save { color: var(--olive-deep); letter-spacing: 0.04em; display: block; }

.proto-price { font-family: var(--serif); font-size: 2rem; white-space: nowrap; }
.proto-price small { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-soft); }

/* ---------- Included band + side note ---------- */

.included-band {
  background: var(--gold);
  padding: 1.4rem 1.8rem;
  margin-top: 2.2rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.included-band strong { display: block; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.35rem; }

.side-note {
  border-left: 2px solid var(--olive-deep);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.2rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

.side-note b { font-weight: 500; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .grid-3, .treatment-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav, .site-header .lang-switch { display: none; }
  .menu-toggle { display: block; }
  .grid-2, .visit-grid, .team-grid { grid-template-columns: 1fr; }
  .feature .media-frame { aspect-ratio: 4/3; }
  .ritual-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .step { grid-template-columns: 60px 1fr; }
  .hero-scroll { display: none; }
  .manifesto .hangul-big { top: auto; bottom: 0; right: 2vw; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .treatment-grid, .values-grid, .footer-grid, .gallery-strip, .grid-4 { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .price-row .p-val { text-align: left; }
  .hero-content .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
}

/* ---------- Responsive: new menu components ---------- */

@media (max-width: 1020px) {
  .proto-grid { grid-template-columns: repeat(2, 1fr); }
  .proto-card--feature { grid-column: span 2; }
  .level-row { grid-template-columns: 54px 1fr 100px 105px 115px; gap: 1rem; }
}

@media (max-width: 860px) {
  .offer-strip-inner { grid-template-columns: 1fr; }
  .offer-side { text-align: left; }
  .dir-block { grid-template-columns: 1fr; gap: 1rem; }
  .level-row { grid-template-columns: 44px 1fr; row-gap: 0.3rem; padding: 1.4rem 0; }
  .level-row--head { display: none; }
  .level-num { grid-row: span 1; }
  .level-cell { grid-column: 2; text-align: left; font-size: 1.2rem; }
  .level-cell--dur { font-size: 0.9rem; }
  .level-cell::before { content: attr(data-l); display: block; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
}

@media (max-width: 560px) {
  .proto-grid { grid-template-columns: 1fr; }
  .proto-card--feature { grid-column: span 1; }
  .offer-price .offer-now { font-size: 2.1rem; }
}

/* ---------- Proof: reviews, before/after, diploma, studio ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.7rem;
  background: var(--cream);
  border: 1px solid var(--line);
}

.review-card .stars { color: var(--rose-deep); letter-spacing: 0.2em; font-size: 0.95rem; }

.review-card blockquote {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
}

.review-meta {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section--ink .review-card { background: rgba(250, 246, 241, 0.055); border-color: rgba(250, 246, 241, 0.18); }
.section--ink .review-card .stars { color: var(--gold); }
.section--ink .review-card blockquote { color: var(--cream); }
.section--ink .review-meta { color: rgba(250, 246, 241, 0.6); }

/* Before/after comparison. The after layer is clipped at --pos; a visually
   hidden range input carries the drag, so touch and keyboard work for free. */

.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }

.ba-figure { margin: 0; }

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush);
  touch-action: pan-y;
  user-select: none;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider .ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.ba-tag {
  position: absolute;
  bottom: 0.9rem;
  z-index: 3;
  padding: 0.34rem 0.62rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(28, 26, 24, 0.6);
  pointer-events: none;
}

.ba-tag--before { left: 0.9rem; }
.ba-tag--after { right: 0.9rem; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  z-index: 4;
  width: 2px;
  margin-left: -1px;
  background: var(--cream);
  pointer-events: none;
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  background: rgba(28, 26, 24, 0.52);
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-slider:has(.ba-range:focus-visible) { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

.ba-caption {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.ba-note {
  margin-top: 2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.proof-doc { margin: 1.6rem 0 0; }
.proof-doc .media-frame { aspect-ratio: 4 / 3; }

.studio-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.studio-strip--single { grid-template-columns: minmax(0, 620px); justify-content: center; }
.studio-strip figure { margin: 0; }
.studio-strip .media-frame { aspect-ratio: 4 / 5; }

@media (max-width: 1020px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .ba-grid { grid-template-columns: 1fr; }
  .studio-strip { grid-template-columns: 1fr; }
}

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

/* Long rating line (homepage hero): reads as a sentence, not a label */
.rating-line--long { text-transform: none; letter-spacing: 0.03em; font-size: 0.92rem; }
.review-card--empty { background: transparent; border-style: dashed; }
.section--ink .review-card--empty { background: transparent; }

@media (max-width: 560px) {
  .rating-line--long { flex-direction: column; align-items: flex-start; gap: 0.45rem; }
}

/* Named treatment rows (September 2026 menu): no roman numeral column */
.level-row--named { grid-template-columns: 1fr 110px 120px 130px; }
.level-row--addon h3 { color: var(--ink-soft); }

@media (max-width: 1020px) {
  .level-row--named { grid-template-columns: 1fr 100px 105px 115px; }
}

@media (max-width: 860px) {
  .level-row--named { grid-template-columns: 1fr; row-gap: 0.3rem; }
  .level-row--named .level-cell { grid-column: 1; }
}

/* Membership card sits under the protocols */
.member-card {
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--blush);
  padding: 2rem 1.8rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
}

.member-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.member-card p { color: var(--ink-soft); font-size: 0.95rem; }
.member-price { text-align: right; font-family: var(--serif); font-size: 2.2rem; line-height: 1.1; }
.member-price small { display: block; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--ink-soft); margin-top: 0.4rem; }

@media (max-width: 860px) {
  .member-card { grid-template-columns: 1fr; gap: 1.2rem; }
  .member-price { text-align: left; }
}
