/* =========================================================
   Soonji 순지 — Hanbang skincare from Seoul
   Editorial / museum aesthetic. Generous space, slow motion.
   ========================================================= */

:root {
  --bg:           #FAF7F2;   /* warm white */
  --bg-warm:      #F2ECE0;   /* deeper paper */
  --bone:         #EFE9DD;
  --sage:         #9CAF94;
  --sage-deep:    #738174;
  --terracotta:   #C97D5D;
  --ink:          #2A1F1A;   /* deep brown */
  --ink-soft:     #4A3F36;
  --ink-mute:     #6E5E54;
  --ghost:        #E5DCC9;
  --ghost-deep:   #D7CDB8;
  --rule:         #D9CFBE;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --kr:    'Noto Serif KR', 'Fraunces', serif;

  --container: 1480px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 56px);

  --easing: cubic-bezier(0.2, 0.7, 0.1, 1);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
ol, ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }

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

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 200; border-radius: 2px;
}
.skip-link:focus { top: 12px; }

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-top: clamp(80px, 14vw, 200px);
  padding-bottom: clamp(80px, 14vw, 200px);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 28px;
}
.eyebrow-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-soft);
}
.eyebrow-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--rule);
}

.section-header {
  max-width: 920px;
  margin-bottom: clamp(48px, 8vw, 100px);
}
.section-header--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
  position: relative;
}
.section-title > span { display: block; }
.section-title .italic { font-style: italic; font-variation-settings: "opsz" 144; }
.section-title--center > span { display: inline; }

.section-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  font-style: italic;
  font-variation-settings: "opsz" 30;
}
.section-sub--center { margin-left: auto; margin-right: auto; }

/* ---------- hangul ghost ---------- */
.hangul-ghost {
  font-family: var(--kr);
  font-weight: 300;
  color: var(--ghost);
  user-select: none;
  pointer-events: none;
  display: inline-block;
  font-variant-ligatures: none;
}
.hangul-ghost--inline {
  font-size: 0.42em;
  color: var(--ghost-deep);
  margin-left: 0.6em;
  vertical-align: 0.2em;
  letter-spacing: -0.04em;
  opacity: 0.85;
}

.hero-ghost,
.ingredients-ghost,
.philosophy-ghost {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-ghost {
  top: 10%; right: -8%;
  font-size: clamp(280px, 42vw, 640px);
  line-height: 1;
}
.ingredients-ghost {
  top: 60px; left: -4%;
  font-size: clamp(200px, 30vw, 460px);
  line-height: 1;
}
.philosophy-ghost {
  bottom: 8%; right: -2%;
  font-size: clamp(200px, 30vw, 420px);
  line-height: 1;
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: opacity 0.3s var(--easing);
}
.cursor-inner {
  position: absolute; inset: 0;
  background: var(--ink);
  border-radius: 50%;
  transform: scale(1);
  transition: transform 0.4s var(--easing), background 0.3s ease;
}
.cursor-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.25s var(--easing), transform 0.4s var(--easing);
}
.cursor--big .cursor-inner {
  transform: scale(5.6);
}
.cursor--big .cursor-label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--easing), padding 0.4s var(--easing), backdrop-filter 0.4s var(--easing);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(217, 207, 190, 0.4);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo-en {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144;
}
.nav-logo-kr {
  font-family: var(--kr);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 44px);
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--easing);
}
.nav-links a:hover { color: var(--ink-soft); }
.nav-links a:hover::after { width: 100%; }
.nav-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav-lang .active { color: var(--ink); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  flex-wrap: wrap;
  gap: 12px 16px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  will-change: transform;
}
.hero-title .line:nth-of-type(2) > span {
  font-style: italic;
  padding-left: clamp(40px, 8vw, 120px);
  color: var(--ink-soft);
}
.hero-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 44px;
  font-variation-settings: "opsz" 30;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.4s var(--easing), transform 0.4s var(--easing);
  position: relative;
  overflow: hidden;
}
.btn-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: translateY(100%);
  transition: transform 0.5s var(--easing);
  z-index: 0;
}
.btn-link > * { position: relative; z-index: 1; }
.btn-link:hover::before { transform: translateY(0); }

.btn-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); }

.hero-media { position: relative; }
.hero-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.hero-caption {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--bg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-weight: 400;
}
.hero-caption span:first-child {
  font-style: italic;
  color: var(--terracotta);
}
.hero-caption span:last-child {
  font-family: var(--kr);
  font-size: 11px;
  color: var(--ink-mute);
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 2;
}
.scroll-cue-line {
  position: relative;
  width: 80px;
  height: 1px;
  background: var(--rule);
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%; height: 100%;
  background: var(--ink);
  animation: scroll-cue 2.4s var(--easing) infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(330%); }
  100% { transform: translateX(330%); }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-image-wrap { max-width: 100%; aspect-ratio: 4 / 5; margin-left: 0; }
  .hero-caption { bottom: -20px; left: 0; }
  .hero-title .line:nth-of-type(2) > span { padding-left: clamp(24px, 8vw, 60px); }
  .scroll-cue { display: none; }
}

/* ---------- products ---------- */
.products { padding-bottom: 0; }
.products .container { position: relative; z-index: 2; }
.products-rail {
  position: relative;
  margin-top: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding-bottom: 24px;
}
.products-rail::-webkit-scrollbar { display: none; }
.products-track {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  padding: 0 var(--gutter) 16px;
  width: max-content;
}
.product-card {
  flex: 0 0 clamp(260px, 28vw, 360px);
  scroll-snap-align: start;
  cursor: pointer;
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
  margin-bottom: 22px;
}
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--easing), opacity 0.5s var(--easing);
  will-change: transform, opacity;
}
.product-img--primary { z-index: 2; }
.product-img--secondary { z-index: 1; opacity: 0; transform: scale(1.06); }
.product-card:hover .product-img--primary {
  opacity: 0;
  transform: scale(1.04);
}
.product-card:hover .product-img--secondary {
  opacity: 1;
  transform: scale(1.02);
}
.product-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}
.product-name {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-name-en {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
}
.product-name-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
}
.product-desc {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 30;
  margin: 0 0 14px;
  max-width: 320px;
}
.product-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  display: flex;
  gap: 10px;
  margin: 0;
}
.product-meta .dot { color: var(--rule); }

.products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(80px, 12vw, 140px);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.products-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.products-counter-current { color: var(--ink); }
.products-nav { display: flex; gap: 28px; }
.products-prev, .products-next {
  color: var(--ink);
  transition: color 0.3s ease, transform 0.4s var(--easing);
}
.products-prev:hover { transform: translateX(-4px); }
.products-next:hover { transform: translateX(4px); }
.products-prev:disabled, .products-next:disabled {
  color: var(--rule); cursor: not-allowed;
}

/* ---------- ritual ---------- */
.ritual {
  background: var(--bg-warm);
}
.ritual-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
  counter-reset: step;
}
.ritual-step {
  display: flex;
  flex-direction: column;
}
.ritual-step-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--bone);
}
.ritual-step-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.ritual-step:hover .ritual-step-image img {
  transform: scale(1.04);
}
.ritual-step-num {
  font-family: var(--kr);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin: 0 0 10px;
}
.ritual-step-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.ritual-step-desc {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 30;
}
.ritual-step-product {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

@media (max-width: 1024px) {
  .ritual-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ritual-list { grid-template-columns: 1fr; }
}

/* ---------- ingredients ---------- */
.ingredients {
  position: relative;
  overflow: hidden;
}
.ingredients .container { position: relative; z-index: 2; }
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
  margin-top: clamp(40px, 6vw, 80px);
}
.ingredient {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.ingredient--reverse {
  direction: rtl;
}
.ingredient--reverse > * { direction: ltr; }
.ingredient-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.ingredient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--easing);
}
.ingredient:hover .ingredient-img { transform: scale(1.03); }
.ingredient-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg);
  padding: 8px 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.ingredient-body { padding: clamp(12px, 2vw, 28px) 0; }
.ingredient-origin {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 22px;
  padding-left: 36px;
  position: relative;
}
.ingredient-origin::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--rule);
}
.ingredient-name {
  font-family: var(--serif);
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ingredient-name-en {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.ingredient-name-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}
.ingredient-text {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 540px;
  font-variation-settings: "opsz" 30;
}
.ingredient-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  max-width: 540px;
}

@media (max-width: 880px) {
  .ingredient, .ingredient--reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
}

/* ---------- philosophy ---------- */
.philosophy {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.philosophy .container { position: relative; z-index: 2; }
.philosophy-body {
  font-family: var(--serif);
  text-align: left;
}
.philosophy-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 60px;
  font-variation-settings: "opsz" 144;
}
.philosophy-body p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-weight: 300;
  font-variation-settings: "opsz" 30;
}
.philosophy-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 60px 0;
  overflow: hidden;
  background: var(--bone);
}
.philosophy-image--wide {
  width: calc(100% + clamp(40px, 8vw, 120px));
  margin-left: clamp(-20px, -4vw, -60px);
}
.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.philosophy-sign {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 60px !important;
  color: var(--ink-mute);
  font-size: 16px !important;
}

/* ---------- journal ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(40px, 6vw, 64px);
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.journal-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.journal-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.journal-card:hover .journal-card-media img { transform: scale(1.04); }
.journal-card-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
  display: flex;
  gap: 10px;
}
.journal-card-meta .dot { color: var(--rule); }
.journal-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.journal-card:hover .journal-card-title { color: var(--terracotta); transition: color 0.4s ease; }
.journal-card-excerpt {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-variation-settings: "opsz" 30;
}
.journal-card-author {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

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

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

.footer .eyebrow { color: rgba(250, 247, 242, 0.55); }
.footer-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--bg);
  font-variation-settings: "opsz" 144;
}
.footer-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(250, 247, 242, 0.75);
  margin: 0 0 40px;
  max-width: 480px;
  font-variation-settings: "opsz" 30;
}

.newsletter-form { max-width: 520px; }
.newsletter-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 14px;
}
.newsletter-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(250, 247, 242, 0.3);
  transition: border-color 0.3s ease;
}
.newsletter-row:focus-within { border-color: var(--bg); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bg);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(250, 247, 242, 0.4);
}
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 14px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  transition: color 0.3s ease;
}
.newsletter-form button:hover { color: var(--terracotta); }
.newsletter-thanks {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  margin-top: 16px;
  min-height: 1.5em;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-block-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin: 0 0 18px;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--bg);
  transition: color 0.3s ease;
}
.footer-list a:hover { color: var(--terracotta); }
.footer-address {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.75);
  font-style: italic;
  font-variation-settings: "opsz" 30;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
}
.footer-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.footer-mark-en {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144;
}
.footer-mark-kr {
  font-family: var(--kr);
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
}
.footer-legal {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 242, 0.5);
  margin: 0;
}

.footer-veydros {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  margin: 40px 0 0;
}
.footer-veydros a {
  color: rgba(250, 247, 242, 0.7);
  border-bottom: 1px solid rgba(250, 247, 242, 0.25);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-veydros a:hover {
  color: var(--bg);
  border-color: var(--bg);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-meta { grid-template-columns: 1fr; }
}

/* ---------- reveal initial states (set by JS before SrollTrigger) ---------- */
[data-reveal] { opacity: 1; }
[data-clip] { will-change: clip-path; }

/* =========================================================
   MULTI-PAGE COMPONENTS
   ========================================================= */

/* nav active state */
.nav-links a[data-current] {
  color: var(--ink);
}
.nav-links a[data-current]::after {
  width: 100%;
  background: var(--terracotta);
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.breadcrumb a {
  color: var(--ink-mute);
  transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span[aria-hidden] { color: var(--rule); }
.breadcrumb > span:last-child {
  color: var(--ink);
}

/* page-hero (inner-page header used on /range, /ritual, etc.) */
.page-hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) var(--gutter) clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.page-hero-ghost {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-hero-ghost .hangul-ghost {
  position: absolute;
  top: 30%;
  right: -4%;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 1;
}
.page-hero-eyebrow { margin-bottom: 36px; flex-wrap: wrap; gap: 12px 16px; }
.page-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.page-hero-title > .line {
  display: block;
  overflow: hidden;
}
.page-hero-title > .line > span {
  display: block;
}
.page-hero-title .italic {
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144;
}
.page-hero-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
  font-variation-settings: "opsz" 30;
}

/* prose sections (long-form text blocks) */
.prose-section { background: var(--bg); }
.prose-body p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 26px;
  font-weight: 300;
  font-variation-settings: "opsz" 30;
}
.prose-lede {
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  margin-bottom: 40px !important;
  font-variation-settings: "opsz" 144 !important;
}
.prose-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 36px;
  font-variation-settings: "opsz" 144;
}
.prose-image {
  margin: 50px 0;
  overflow: hidden;
  background: var(--bone);
  aspect-ratio: 16 / 9;
}
.prose-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* section CTA (small footer-of-section row) */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 64px);
}
.btn-text--center { display: block; text-align: center; margin: 32px auto 0; width: fit-content; }

/* page CTA (final block of inner pages) */
.page-cta-section { background: var(--bg-warm); }
.page-cta {
  text-align: center;
}
.page-cta .btn-link { margin-top: 36px; }

/* wide-image break section */
.wide-image-section { padding: clamp(40px, 6vw, 80px) 0; }
.wide-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bone);
}
.wide-image img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}

/* =========================================================
   HOME — featured + ritual mini + ingredient feature + pull-quote + journal feature
   ========================================================= */

/* feature block (home page "Currently" featured product) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.feature-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.feature-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-body {
  display: flex;
  flex-direction: column;
}
.feature-num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 24px;
}
.feature-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-title-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 22px;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}
.feature-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
  font-variation-settings: "opsz" 30;
}
.feature-meta {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-meta > div { display: flex; flex-direction: column; gap: 4px; }
.feature-meta dt {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.feature-meta dd {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.feature-body .btn-link { align-self: flex-start; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature-meta { grid-template-columns: 1fr 1fr; }
}

/* ritual mini (4 small steps on home page) */
.ritual-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(40px, 6vw, 64px);
}
.ritual-mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ritual-mini-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 18px;
}
.ritual-mini-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.ritual-mini-step:hover .ritual-mini-image img { transform: scale(1.04); }
.ritual-mini-num {
  font-family: var(--kr);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  margin: 0 0 6px;
}
.ritual-mini-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
@media (max-width: 760px) {
  .ritual-mini { grid-template-columns: repeat(2, 1fr); }
}

/* ingredient feature (single-ingredient highlight on home) */
.ingredient-feature {
  position: relative;
  overflow: hidden;
}
.ingredient-feature .container { position: relative; z-index: 2; }
.ingredient--feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.ingredient--feature .ingredient-body { padding: 0; }
.ingredient--feature .ingredient-name { margin-bottom: 28px; }
.ingredient--feature .btn-text { margin-top: 12px; display: inline-block; }
@media (max-width: 880px) {
  .ingredient--feature { grid-template-columns: 1fr; }
}

/* philosophy teaser / pull quote on home */
.philosophy-teaser {
  position: relative;
  text-align: center;
  background: var(--bg);
}
.philosophy-teaser .container { position: relative; z-index: 2; }
.pull-quote {
  margin: 36px 0 32px;
  padding: 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144;
}

/* journal feature block (large article preview) */
.journal-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(20px, 4vw, 40px);
}
.journal-feature-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone);
}
.journal-feature-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.journal-feature:hover .journal-feature-media img { transform: scale(1.04); }
.journal-feature-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  transition: color 0.4s ease;
}
.journal-feature:hover .journal-feature-title { color: var(--terracotta); }
.journal-feature-excerpt {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 520px;
  font-variation-settings: "opsz" 30;
}
@media (max-width: 900px) {
  .journal-feature { grid-template-columns: 1fr; }
}

/* =========================================================
   RANGE PAGE
   ========================================================= */

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(20px, 4vw, 40px);
}
.range-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.range-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
  margin-bottom: 24px;
}
.range-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--easing), opacity 0.5s var(--easing);
}
.range-card-img--primary { z-index: 2; }
.range-card-img--secondary { z-index: 1; opacity: 0; transform: scale(1.06); }
.range-card:hover .range-card-img--primary { opacity: 0; transform: scale(1.04); }
.range-card:hover .range-card-img--secondary { opacity: 1; transform: scale(1.02); }
.range-card-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}
.range-card-name {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  transition: color 0.3s ease;
}
.range-card-name-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.range-card:hover .range-card-name { color: var(--terracotta); }
.range-card-desc {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 14px;
  max-width: 320px;
  font-variation-settings: "opsz" 30;
}
.range-card-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  display: flex;
  gap: 10px;
  margin: 0;
}
.range-card-meta .dot { color: var(--rule); }

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

/* "order" list on range page */
.order-section { background: var(--bg-warm); }
.order-list {
  margin: 40px 0;
  border-top: 1px solid var(--rule);
}
.order-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 140px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
}
.order-row-num {
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  font-variation-settings: "opsz" 144;
}
.order-row-step {
  font-family: var(--kr);
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.06em;
}
.order-row-product {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
  transition: color 0.3s ease;
}
.order-row-product:hover { color: var(--terracotta); }
.order-row-when {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  font-family: var(--sans);
}
@media (max-width: 760px) {
  .order-row { grid-template-columns: 60px 1fr; gap: 8px 18px; }
  .order-row-when { grid-column: 1 / -1; text-align: left; padding-top: 4px; }
}

/* =========================================================
   RITUAL PAGE — expanded 4-step deep dive + weekly
   ========================================================= */

.ritual-deep {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
}
.ritual-deep-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.ritual-deep-num {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.ritual-deep-num-roman {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144;
}
.ritual-deep-num-kr {
  font-family: var(--kr);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink-soft);
  font-weight: 400;
}
.ritual-deep-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.ritual-deep-step--reverse .ritual-deep-content { direction: rtl; }
.ritual-deep-step--reverse .ritual-deep-content > * { direction: ltr; }
.ritual-deep-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.ritual-deep-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.ritual-deep-step:hover .ritual-deep-media img { transform: scale(1.03); }
.ritual-deep-body { padding-top: 8px; }
.ritual-deep-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.ritual-deep-eyebrow em { color: var(--terracotta); font-style: italic; }
.ritual-deep-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.ritual-deep-instruction {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-variation-settings: "opsz" 30;
}
.ritual-deep-note {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 0 26px;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
  font-variation-settings: "opsz" 30;
}
@media (max-width: 980px) {
  .ritual-deep-step { grid-template-columns: 1fr; gap: 28px; }
  .ritual-deep-num { position: static; flex-direction: row; align-items: baseline; gap: 18px; }
}
@media (max-width: 720px) {
  .ritual-deep-content { grid-template-columns: 1fr; direction: ltr; }
}

/* weekly card */
.weekly-section { background: var(--bg-warm); }
.weekly-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
}
.weekly-card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.weekly-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.weekly-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.weekly-card-body p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-variation-settings: "opsz" 30;
}
@media (max-width: 880px) {
  .weekly-card { grid-template-columns: 1fr; }
}

/* =========================================================
   STORY PAGE — atelier + practitioners
   ========================================================= */

.atelier-section { background: var(--bg-warm); }
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(40px, 6vw, 64px);
}
.atelier-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.atelier-figure-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 22px;
}
.atelier-figure-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.atelier-figure:hover .atelier-figure-media img { transform: scale(1.03); }
.atelier-figure-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  margin: 0 0 8px;
  font-variation-settings: "opsz" 144;
}
.atelier-figure-text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-variation-settings: "opsz" 30;
}
@media (max-width: 880px) {
  .atelier-grid { grid-template-columns: 1fr; }
}

.practitioners {
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--rule);
}
.practitioner {
  display: grid;
  grid-template-columns: 60px 280px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.practitioner-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.practitioner-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  margin: 0 0 6px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.practitioner-name-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-mute);
  margin-left: 4px;
}
.practitioner-role {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.practitioner-bio {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-variation-settings: "opsz" 30;
}
.practitioner-bio a { border-bottom: 1px solid var(--rule); transition: color 0.3s ease, border-color 0.3s ease; }
.practitioner-bio a:hover { color: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 880px) {
  .practitioner { grid-template-columns: 40px 1fr; gap: 12px 18px; }
  .practitioner-bio { grid-column: 1 / -1; padding-top: 10px; }
}

/* =========================================================
   JOURNAL PAGE — featured + index
   ========================================================= */

.journal-featured { padding-bottom: 0; }
.journal-index .section-header { margin-top: clamp(60px, 8vw, 100px); }
.journal-card--placeholder { opacity: 0.85; }
.journal-card--placeholder:hover { opacity: 1; }
.journal-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.journal-pagination-info {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  font-variation-settings: "opsz" 30;
}

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.product-hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(40px, 6vw, 80px);
  position: relative;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.product-hero-media { position: relative; }
.product-hero-main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 16px;
}
.product-hero-main img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.product-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-thumb {
  background: var(--bone);
  border: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-thumb:hover { opacity: 0.85; }
.product-thumb.is-active { opacity: 1; outline: 1px solid var(--ink); outline-offset: 2px; }

.product-hero-body {
  padding-top: 8px;
}
.product-hero-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 26px;
}
.product-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.product-hero-title-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 22px;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}
.product-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 500px;
  font-variation-settings: "opsz" 30;
}
.product-hero-meta {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.product-hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.product-hero-meta dt {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.product-hero-meta dd {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.product-hero-buy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.product-hero-price {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.product-hero-shipping {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 4px 0 0;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 380px;
}

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

/* actives section (product page) */
.actives-section { background: var(--bg-warm); }
.actives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  margin-top: clamp(20px, 4vw, 40px);
}
.active-block {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.active-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144;
}
.active-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.active-name-kr {
  font-family: var(--kr);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-mute);
  margin-left: 4px;
}
.active-block p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
  font-variation-settings: "opsz" 30;
}
.active-block .btn-text { align-self: flex-start; }
@media (max-width: 880px) {
  .actives-grid { grid-template-columns: 1fr; }
}

/* how-to section (product page) */
.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.howto-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.howto-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.howto-steps {
  margin: 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howto-steps li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-variation-settings: "opsz" 30;
}
.howto-steps li:last-child { border-bottom: 0; }
.howto-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
  width: 28px;
  font-variation-settings: "opsz" 144;
}
.howto-warning {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 0 24px;
  padding: 14px 18px;
  background: var(--bg-warm);
  border-left: 2px solid var(--terracotta);
  font-variation-settings: "opsz" 30;
}
@media (max-width: 880px) {
  .howto-grid { grid-template-columns: 1fr; }
}

/* formulation section (INCI list) */
.formulation-section { background: var(--bg-warm); }
.formulation-list {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 30px 0 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.01em;
}
.formulation-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
  font-variation-settings: "opsz" 30;
}

/* related products (product page footer) */
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(20px, 4vw, 40px);
}
.related-card { color: inherit; }
.related-card-media {
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
  margin-bottom: 16px;
}
.related-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--easing);
}
.related-card:hover .related-card-media img { transform: scale(1.04); }
.related-card-num {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 6px;
}
.related-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-variation-settings: "opsz" 144;
  transition: color 0.3s ease;
}
.related-card-name span {
  font-family: var(--kr);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.related-card:hover .related-card-name { color: var(--terracotta); }
.related-card-price {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: 0;
}
@media (max-width: 1100px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   ARTICLE PAGE (journal article)
   ========================================================= */

.article-header {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.article-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 30px;
}
.article-meta .dot { color: var(--rule); }
.article-meta-category {
  color: var(--terracotta);
  font-weight: 500;
}
.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.article-title > span { display: block; }
.article-title .italic {
  font-style: italic;
  color: var(--ink-soft);
}
.article-deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 30;
}
.article-byline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(40px, 6vw, 64px);
  overflow: hidden;
  background: var(--bone);
}
.article-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}

.article-body {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
}
.article-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  color: var(--terracotta);
  margin: 64px 0 32px;
  font-variation-settings: "opsz" 144;
}
.article-body p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 300;
  font-variation-settings: "opsz" 30;
}
.article-body p em { font-style: italic; }
.article-lede {
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  margin-bottom: 48px !important;
  font-variation-settings: "opsz" 144 !important;
}
.article-quote {
  margin: 48px 0;
  padding: 0;
  border: 0;
  text-align: center;
}
.article-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  margin: 0 0 18px !important;
  font-variation-settings: "opsz" 144 !important;
}
.article-quote footer {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: normal;
}
.article-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px !important;
  color: var(--ink-mute) !important;
  margin-top: 64px !important;
  line-height: 1.5 !important;
  font-variation-settings: "opsz" 30 !important;
}

/* article author bio */
.article-author { background: var(--bg-warm); padding: clamp(48px, 8vw, 100px) 0; }
.article-author-card {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article-author-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  margin: 18px 0 12px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.article-author-bio {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 640px;
  font-variation-settings: "opsz" 30;
}

/* article related */
.article-related { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(80px, 10vw, 140px); }
.journal-grid--related { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .journal-grid--related { grid-template-columns: 1fr; }
}

/* =========================================================
   BG-WARM SECTIONS (alternation cue across pages)
   ========================================================= */
.section + .section { /* no override; sections own their bg */ }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-cue-line::after { animation: none; }
}
