/* ============================================
   GLOW — Beauty & Skincare
   Palette: Soft Blush + Plum + Champagne Gold
   ============================================ */

:root {
  --bg:          #fdf6f4;
  --bg-soft:     #faeae6;
  --bg-card:     #ffffff;
  --ink:         #2e1c26;
  --ink-soft:    #5a414e;
  --ink-mute:    #97808c;
  --ink-faint:   #c2adb8;
  --line:        #f1e0db;
  --line-strong: #e6cdc6;

  --plum:        #8e3b62;   /* deep plum */
  --plum-soft:   #f6e3ec;
  --plum-deep:   #6b2649;
  --blush:       #e89aaa;   /* soft blush */
  --gold:        #c9a35e;   /* champagne gold */
  --gold-soft:   #f5ecda;
  --rose:        #d97b8f;
  --sale:        #d6455f;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-head:    'Sora', 'Inter', system-ui, sans-serif;
  --ff-sans:    'Inter', system-ui, sans-serif;
  --ff-ar:      'Vazirmatn', 'Tajawal', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  --t-eyebrow: 0.6875rem;
  --t-xs: 0.75rem; --t-sm: 0.875rem; --t-base: 1rem;
  --t-md: 1.125rem; --t-lg: 1.375rem; --t-xl: 1.75rem;
  --t-2xl: 2.25rem; --t-3xl: 3rem;
  --t-hero: clamp(2.75rem, 7vw, 5.5rem);

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem;

  --header-h: 72px;
  --max-w: 1360px;
  --gutter: 1.25rem;
  --r: 22px;
  --r-sm: 12px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 14px rgba(142,59,98,0.07);
  --shadow-md: 0 18px 44px -16px rgba(142,59,98,0.22);
  --safe-top:    env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-ar);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input { font: inherit; color: inherit; background: transparent; border: none; outline: none; }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
::selection { background: var(--plum-soft); color: var(--plum-deep); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--r-pill); }

.shell { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--gutter); }
@media (min-width: 768px) { .shell { padding-inline: 2rem; } }

.eyebrow {
  font-family: var(--ff-head);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum);
}
.script { font-family: var(--ff-display); font-style: italic; font-weight: 500; }
.mono { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }

/* ── Top bar ── */
.topbar {
  background: var(--plum);
  color: #fff;
  font-family: var(--ff-head);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px var(--gutter);
  padding-top: calc(9px + var(--safe-top));
  text-align: center;
}
.topbar b { color: var(--gold); }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,246,244,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__row { height: var(--header-h); display: flex; align-items: center; gap: var(--s-5); }
.brand {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--plum);
  white-space: nowrap;
}
.brand b { font-style: italic; }
.nav { display: none; gap: 1.75rem; margin-inline-start: var(--s-6); }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 180ms;
}
.nav a:hover, .nav a.is-active { color: var(--plum); }
.nav a.is-sale { color: var(--sale); }
.header__actions { margin-inline-start: auto; display: flex; align-items: center; gap: var(--s-1); }
.icon-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  position: relative;
  transition: background 180ms, color 180ms;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--plum); }
.icon-btn__count {
  position: absolute;
  top: 5px; inset-inline-end: 5px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--plum);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.burger { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
@media (min-width: 1024px) { .burger { display: none; } }

/* ── Buttons ── */
.btn {
  --bg: var(--plum);
  --fg: #fff;
  --bd: var(--plum);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0 var(--s-6);
  min-height: 52px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 180ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { --bg: var(--plum-deep); --bd: var(--plum-deep); transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn--gold { --bg: var(--gold); --bd: var(--gold); color: var(--ink); }
.btn--gold:hover { --bg: #b88f47; --bd: #b88f47; }
.btn--light { --bg: #fff; --fg: var(--plum); --bd: #fff; box-shadow: var(--shadow-sm); }
.btn--light:hover { --bg: var(--plum); --fg: #fff; --bd: var(--plum); }
.btn--outline { --bg: transparent; --fg: var(--plum); --bd: var(--plum); }
.btn--outline:hover { --bg: var(--plum); --fg: #fff; }
.btn--lg { min-height: 58px; padding-inline: var(--s-8); font-size: var(--t-md); }

.linkline {
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: gap 180ms;
}
.linkline:hover { gap: var(--s-3); }
[dir="rtl"] .linkline svg { transform: scaleX(-1); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--s-8);
  padding-block: var(--s-12) var(--s-10);
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1fr; gap: var(--s-16); } }
.hero__title {
  font-family: var(--ff-display);
  font-size: var(--t-hero);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-block: var(--s-4) var(--s-4);
}
.hero__title em { font-style: italic; color: var(--plum); }
.hero__sub { font-size: var(--t-md); color: var(--ink-soft); max-width: 42ch; margin-bottom: var(--s-6); }
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.hero__meta { display: flex; gap: var(--s-6); margin-top: var(--s-8); flex-wrap: wrap; }
.hero__metaitem { display: flex; flex-direction: column; }
.hero__metaitem .n { font-family: var(--ff-display); font-size: var(--t-xl); font-weight: 600; color: var(--plum); }
.hero__metaitem .l { font-family: var(--ff-head); font-size: var(--t-xs); color: var(--ink-mute); letter-spacing: 0.04em; }
.hero__visual {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__float {
  position: absolute;
  bottom: var(--s-5);
  inset-inline-start: var(--s-5);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: var(--s-3) var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  box-shadow: var(--shadow-sm);
}
.hero__float .stars { color: var(--gold); font-size: var(--t-sm); }
.hero__float .txt { font-family: var(--ff-head); font-size: var(--t-xs); }
.hero__float .txt b { display: block; font-size: var(--t-sm); color: var(--ink); }

/* ── Concern pills ── */
.concerns {
  display: flex;
  gap: var(--s-3);
  overflow-x: auto;
  padding-bottom: var(--s-3);
  scroll-snap-type: x mandatory;
}
.concern {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  width: 100px;
  scroll-snap-align: start;
  cursor: pointer;
}
.concern__img {
  width: 88px; height: 88px;
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--bg-soft);
  border: 2px solid transparent;
  transition: all 200ms var(--ease);
}
.concern__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.concern:hover .concern__img { border-color: var(--plum); transform: translateY(-3px); }
.concern:hover .concern__img img { transform: scale(1.08); }
.concern__name { font-family: var(--ff-head); font-size: var(--t-sm); font-weight: 500; color: var(--ink); text-align: center; }

/* ── Section head ── */
.s-head { display: flex; align-items: end; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-6); flex-wrap: wrap; }
.s-head__title { display: flex; flex-direction: column; gap: var(--s-1); }
.s-head__title .eyebrow { margin-bottom: 2px; }
.s-head__title h2 { font-family: var(--ff-display); font-size: var(--t-3xl); font-weight: 500; letter-spacing: -0.01em; line-height: 1; }
.s-head__title h2 em { font-style: italic; color: var(--plum); }
.s-head--center { justify-content: center; text-align: center; }
.s-head--center .s-head__title { align-items: center; }

/* ── Collections (3-up) ── */
.cols { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 768px) { .cols { grid-template-columns: repeat(3, 1fr); } }
.col {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
  cursor: pointer;
}
.col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.col:hover img { transform: scale(1.05); }
.col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,28,38,0.6) 0%, transparent 55%); }
.col__body { position: relative; z-index: 2; padding: var(--s-6); }
.col__body h3 { font-family: var(--ff-display); font-size: var(--t-2xl); font-weight: 500; color: #fff; }
.col__body h3 em { font-style: italic; }
.col__body span { font-family: var(--ff-head); font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ── Product grid ── */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
@media (min-width: 640px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }

.prod {
  background: var(--bg-card);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms, transform 250ms var(--ease);
  position: relative;
}
.prod:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prod__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__tags { position: absolute; top: var(--s-3); inset-inline-start: var(--s-3); display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.tag {
  font-family: var(--ff-head);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  line-height: 1;
  border-radius: var(--r-pill);
}
.tag--plum { background: var(--plum); color: #fff; }
.tag--gold { background: var(--gold); color: var(--ink); }
.tag--sale { background: var(--sale); color: #fff; }
.prod__wish {
  position: absolute;
  top: var(--s-3);
  inset-inline-end: var(--s-3);
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  z-index: 2;
  transition: all 180ms;
}
.prod__wish:hover { color: var(--sale); transform: scale(1.08); }
.prod__wish.is-active { color: var(--sale); }
.prod__add {
  position: absolute;
  inset-inline: var(--s-3);
  bottom: var(--s-3);
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  color: var(--plum);
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 11px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms, transform 250ms;
}
.prod:hover .prod__add { opacity: 1; transform: translateY(0); }
.prod__add:hover { background: var(--plum); color: #fff; }
@media (hover: none) { .prod__add { opacity: 1; transform: none; } }
.prod__body { padding: var(--s-4); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod__brand { font-family: var(--ff-head); font-size: var(--t-2xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.prod__name { font-family: var(--ff-display); font-size: var(--t-md); font-weight: 500; color: var(--ink); line-height: 1.3; }
.prod__rating { display: inline-flex; align-items: center; gap: 4px; font-family: var(--ff-mono); font-size: var(--t-xs); color: var(--ink-mute); margin-top: 2px; }
.prod__rating svg { fill: var(--gold); }
.prod__shades { display: flex; gap: 5px; margin-top: var(--s-2); align-items: center; }
.shade { width: 16px; height: 16px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); cursor: pointer; transition: transform 150ms; }
.shade:hover, .shade.is-active { transform: scale(1.2); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 0 0 1.5px var(--plum); }
.shade-more { font-family: var(--ff-mono); font-size: 0.6875rem; color: var(--ink-mute); margin-inline-start: 2px; }
.prod__foot { display: flex; align-items: baseline; gap: var(--s-2); margin-top: var(--s-3); }
.prod__price { font-family: var(--ff-display); font-size: var(--t-lg); font-weight: 600; color: var(--ink); }
.prod__was { font-family: var(--ff-mono); font-size: var(--t-xs); color: var(--ink-faint); text-decoration: line-through; }

/* ── Ritual / editorial banner ── */
.ritual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r);
  overflow: hidden;
  margin-block: var(--s-16);
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff;
  align-items: center;
}
@media (min-width: 768px) { .ritual { grid-template-columns: 1fr 1fr; } }
.ritual__body { padding: clamp(2rem, 5vw, 3.5rem); }
.ritual__body .eyebrow { color: var(--gold); }
.ritual__body h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #fff; margin-block: var(--s-3) var(--s-3); line-height: 1.05; }
.ritual__body h2 em { font-style: italic; color: var(--gold); }
.ritual__body p { color: rgba(255,255,255,0.85); margin-bottom: var(--s-6); max-width: 40ch; }
.ritual__steps { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-6); }
.ritual__step { display: flex; align-items: center; gap: var(--s-3); }
.ritual__step b { width: 28px; height: 28px; border-radius: var(--r-pill); background: rgba(255,255,255,0.15); border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-mono); font-size: var(--t-xs); flex-shrink: 0; }
.ritual__step span { font-size: var(--t-sm); }
.ritual__img { position: relative; min-height: 360px; }
.ritual__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── Promise / values ── */
.promise { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-block: var(--s-16); }
@media (min-width: 768px) { .promise { grid-template-columns: repeat(4, 1fr); } }
.promise__item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-3); padding: var(--s-6) var(--s-4); }
.promise__icon { width: 56px; height: 56px; border-radius: var(--r-pill); background: var(--gold-soft); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.promise__item h4 { font-family: var(--ff-display); font-size: var(--t-lg); font-weight: 600; }
.promise__item p { font-size: var(--t-sm); color: var(--ink-mute); max-width: 26ch; }

/* ── Reviews ── */
.reviews { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { background: var(--bg-card); border-radius: var(--r); padding: var(--s-6); box-shadow: var(--shadow-sm); }
.review__stars { color: var(--gold); margin-bottom: var(--s-3); letter-spacing: 2px; }
.review__text { font-family: var(--ff-display); font-size: var(--t-md); font-style: italic; line-height: 1.6; color: var(--ink-soft); margin-bottom: var(--s-4); }
.review__by { display: flex; align-items: center; gap: var(--s-3); }
.review__avatar { width: 42px; height: 42px; border-radius: var(--r-pill); background: var(--plum-soft); color: var(--plum); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 600; }
.review__name { font-family: var(--ff-head); font-weight: 600; font-size: var(--t-sm); }
.review__meta { font-size: var(--t-xs); color: var(--ink-mute); }

/* ── Newsletter ── */
.news {
  border-radius: var(--r);
  margin-block: var(--s-16);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  background: var(--gold-soft);
  position: relative;
  overflow: hidden;
}
.news::before {
  content: '';
  position: absolute;
  inset-inline-end: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--blush), transparent 70%);
  opacity: 0.4;
}
.news__inner { position: relative; max-width: 540px; margin-inline: auto; }
.news h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; color: var(--ink); margin-bottom: var(--s-3); }
.news h2 em { font-style: italic; color: var(--plum); }
.news p { color: var(--ink-soft); margin-bottom: var(--s-6); }
.news__form { display: flex; gap: var(--s-2); max-width: 440px; margin-inline: auto; background: #fff; border-radius: var(--r-pill); padding: 6px; box-shadow: var(--shadow-sm); }
.news__form input { flex: 1; padding: 0 var(--s-5); min-height: 48px; }
.news__form input::placeholder { color: var(--ink-faint); }

/* ── Footer ── */
.foot { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: var(--s-12) var(--s-5); }
.foot__top { display: grid; grid-template-columns: 1fr; gap: var(--s-8); margin-bottom: var(--s-10); }
@media (min-width: 768px) { .foot__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot__brand { font-family: var(--ff-display); font-size: 2.25rem; font-weight: 600; color: #fff; margin-bottom: var(--s-3); }
.foot__brand b { font-style: italic; color: var(--gold); }
.foot__col p { font-size: var(--t-sm); line-height: 1.7; max-width: 34ch; margin-bottom: var(--s-4); }
.foot__col h4 { font-family: var(--ff-head); font-size: var(--t-eyebrow); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-4); }
.foot__col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.foot__col a { font-size: var(--t-sm); color: rgba(255,255,255,0.7); transition: color 180ms; }
.foot__col a:hover { color: var(--gold); }
.foot__social { display: flex; gap: var(--s-2); }
.foot__social a { width: 38px; height: 38px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 180ms; }
.foot__social a:hover { background: var(--plum); color: #fff; }
.foot__bottom { padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3); font-size: var(--t-xs); color: rgba(255,255,255,0.5); }
.foot__pay { display: flex; gap: var(--s-2); }
.foot__pay span { background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: var(--r-sm); font-family: var(--ff-mono); font-size: 0.625rem; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* TK-DARK-INJECTED */
[data-theme="dark"] {
  --bg:          #1a0f14;
  --bg-soft:     #251820;
  --bg-card:     #20131a;
  --ink:         #f7e8ee;
  --ink-soft:    #d4bcc8;
  --ink-mute:    #9c818f;
  --ink-faint:   #6a525e;
  --line:        #38222d;
  --line-strong: #4f3140;
  --plum:        #d57aa0;
  --plum-soft:   #381f2c;
  --plum-deep:   #b85d83;
  --blush:       #efafbe;
  --gold:        #e0b876;
  --gold-soft:   #3d2f1f;
  --rose:        #e89aac;
  --sale:        #ef6076;
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.4);
  --shadow-md: 0 18px 44px -16px rgba(0,0,0,0.6);
}
html { color-scheme: dark; }
[data-theme="dark"] body { background: var(--bg); color: var(--ink); }
