/* ============================================================
   LeMei Beauty · 乐美韩妆 — clean & minimal landing page
   (Nuvé-style header)
   ============================================================ */

:root {
  --bg: #fdfbf9;
  --bg-alt: #f6efe9;
  --ink: #2b2622;
  --ink-soft: #6b6259;
  --line: #e8ded6;
  --rose: #d98b8b;
  --rose-deep: #c06d6d;
  --blush: #f4e3df;
  --sand: #e9ddd2;
  --gold: #c9a877;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Noto Sans SC", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -24px rgba(70, 50, 40, 0.35);
  --shadow-sm: 0 8px 24px -16px rgba(70, 50, 40, 0.3);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
/* keep section headings clear of the sticky header when jumped to via anchors */
section[id] { scroll-margin-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--blush); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden; z-index: 0; isolation: isolate;
}
.btn--solid:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
/* looping shimmer sweep on primary buttons */
.btn--solid::after {
  content: ""; position: absolute; top: 0; left: -160%; z-index: -1;
  width: 55%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: shimmer 4s var(--ease) infinite;
}
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--text { color: var(--ink); background: transparent; padding-left: 0; padding-right: 0; }
.btn--text:hover { color: var(--rose-deep); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
}

/* ============================================================
   Header (Nuvé-style: logo · centered nav · actions)
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 249, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  height: 78px;
}

.logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
  justify-self: start;
  animation: header-in 0.7s var(--ease) both;
}
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px -3px rgba(70, 50, 40, 0.35);
  transition: transform 0.4s var(--ease);
}
.logo__mark img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); display: block;
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.06); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.02em; }
.logo__text small { font-size: 0.7rem; color: var(--ink-soft); letter-spacing: 0.16em; }
.logo__text small.logo__kr { font-family: "Noto Sans KR", var(--sans); font-weight: 500; letter-spacing: 0.14em; }

.nav { display: flex; gap: 2rem; justify-self: center; }
.nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.25s;
  /* staggered entrance */
  opacity: 0;
  animation: nav-in 0.6s var(--ease) forwards;
}
.nav a:nth-child(1) { animation-delay: 0.12s; }
.nav a:nth-child(2) { animation-delay: 0.18s; }
.nav a:nth-child(3) { animation-delay: 0.24s; }
.nav a:nth-child(4) { animation-delay: 0.30s; }
.nav a:nth-child(5) { animation-delay: 0.36s; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--rose-deep); transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--rose-deep); }
.nav a:hover::after { width: 100%; }

.header__actions {
  display: flex; align-items: center; gap: 0.7rem;
  justify-self: end;
  animation: header-in-right 0.7s 0.1s var(--ease) both;
}
.lang-toggle {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.lang-toggle:hover { border-color: var(--rose-deep); background: var(--blush); color: var(--rose-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
/* staggered entrance for each element in the left panel */
.hero__copy > * { opacity: 0; animation: rise 0.7s var(--ease) both; }
/* trust pill: entrance + continuous gentle float */
.hero__copy .trust {
  animation: rise 0.7s 0.10s var(--ease) both;
}
/* eyebrow: entrance + continuous color shimmer */
.hero__copy .eyebrow {
  background: linear-gradient(90deg, var(--rose-deep) 0%, var(--gold) 45%, var(--rose-deep) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rise 0.7s 0.24s var(--ease) both, eyebrow-shine 6s linear infinite;
}
.hero__copy h1            { animation-delay: 0.38s; }
.hero__copy .hero__lede   { animation-delay: 0.54s; }
.hero__copy .hero__cta    { animation-delay: 0.70s; }
.hero__copy .hero__badges { animation-delay: 0.86s; }

/* Trust pill (Nuvé-style) */
.trust {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.9rem 0.35rem 0.4rem;
  font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 1.6rem;
  background: var(--white);
}
.trust__badge {
  display: grid; place-items: center; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rose-deep); color: var(--white);
  font-size: 0.72rem; font-weight: 700; line-height: 1;
}

.hero h1 { margin-bottom: 1.4rem; }
.hero__lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
/* larger, rounder CTA buttons */
.hero__cta .btn--solid {
  border-radius: 16px;
  padding: 1.1rem 2.4rem;
  font-size: 0.98rem;
}
.hero__cta .btn--solid:hover { transform: translateY(-3px) scale(1.02); }
.hero__badges { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.hero__badges li {
  font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.04em;
  position: relative; padding-left: 1.1rem;
}
.hero__badges li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); animation: twinkle 3.2s ease-in-out infinite; }
.hero__badges li:nth-child(2)::before { animation-delay: 0.6s; }
.hero__badges li:nth-child(3)::before { animation-delay: 1.2s; }

.hero__media { position: relative; height: clamp(420px, 50vw, 600px); animation: rise 0.9s 0.15s var(--ease) both; }

/* Catching visual image with animated overlays */
.hero__visual {
  position: absolute; inset: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, #f3e3df, #e6cfc6); /* fallback while image loads */
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%;
  transform: scale(1.04);
  animation: kenburns 14s ease-in-out infinite alternate;
}
/* warm brand tint so the photo blends with the page */
.hero__visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(217,139,139,0.12) 0%, rgba(201,168,119,0.06) 50%, rgba(43,38,34,0.18) 100%);
}

/* scanning shimmer line */
/* high-tech signal lines pointing to the face */
.hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: visible; }
.hero__lines line {
  stroke: rgba(255, 255, 255, 0.92); stroke-width: 1.4; stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(255, 247, 242, 0.7));
  stroke-dasharray: 360; stroke-dashoffset: 360;
  animation: draw 0.8s var(--ease) both;
}
.hero__lines .node {
  fill: #fff; filter: drop-shadow(0 0 5px rgba(244, 227, 223, 0.95));
  transform-box: fill-box; transform-origin: center;
  animation: node-in 0.45s var(--ease) both;
}
.hero__lines .ring {
  fill: none; stroke: rgba(255, 255, 255, 0.85); stroke-width: 1.2;
  transform-box: fill-box; transform-origin: center;
  animation: radar 2.6s var(--ease) infinite both;
}
.line-grp--1 line { animation-delay: 0.7s; }
.line-grp--1 .node, .line-grp--1 .ring { animation-delay: 1.45s; }
.line-grp--2 line { animation-delay: 1.0s; }
.line-grp--2 .node, .line-grp--2 .ring { animation-delay: 1.75s; }
.line-grp--3 line { animation-delay: 1.3s; }
.line-grp--3 .node, .line-grp--3 .ring { animation-delay: 2.05s; }

/* floating glass labels (beauty analog of scan boxes) */
.hero__tag {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(253, 251, 249, 0.82);
  backdrop-filter: blur(8px);
  color: var(--ink); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.4rem 0.8rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  opacity: 0; animation: tag-in 0.6s var(--ease) forwards, tag-float 5s var(--ease) infinite;
}
.hero__tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose-deep); box-shadow: 0 0 0 0 rgba(192,109,109,0.5);
  animation: pulse 2s var(--ease) infinite;
}
.hero__tag--1 { top: 22%; left: 6%; animation-delay: 0.5s, 0.5s; }
.hero__tag--2 { top: 45%; right: 7%; animation-delay: 0.8s, 1.1s; }
.hero__tag--3 { top: 66%; left: 10%; animation-delay: 1.1s, 0.2s; }

.hero__since {
  position: absolute; left: 7%; bottom: 7%; z-index: 3;
  background: rgba(253, 251, 249, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1.15rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero__since strong {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--ink);
}

/* ---------- Brand bar (Korean beauty brands) ---------- */
.brandbar { background: var(--ink); overflow: hidden; padding: 1.5rem 0; position: relative; }
.brandbar::before, .brandbar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 2; pointer-events: none;
}
.brandbar::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.brandbar::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.brandbar__track {
  display: inline-flex; align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem);
  white-space: nowrap; width: max-content; will-change: transform;
  animation: scroll 32s linear infinite;
}
.brandbar:hover .brandbar__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .brandbar__track { animation-duration: 90s; }
}
.brand-logo {
  flex-shrink: 0; color: var(--bg); opacity: 0.5;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem); line-height: 1;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.brand-logo:hover { opacity: 1; transform: translateY(-1px); }
.brand-logo img { height: clamp(20px, 2vw, 28px); width: auto; display: block; filter: brightness(0) invert(1); }
/* wordmark style variants (echo each brand's real logo) */
.bl--serif      { font-family: var(--serif); font-weight: 500; }
.bl--serifcaps  { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; }
.bl--lowerserif { font-family: var(--serif); font-weight: 500; text-transform: lowercase; font-size: clamp(1.15rem, 1.7vw, 1.6rem); }
.bl--sans       { font-family: var(--sans); font-weight: 500; }
.bl--bold       { font-family: var(--sans); font-weight: 800; letter-spacing: -0.01em; }
.bl--lower      { font-family: var(--sans); font-weight: 600; text-transform: lowercase; }
.bl--caps       { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.bl--capsbold   { font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.bl--capslight  { font-family: var(--sans); font-weight: 300; text-transform: uppercase; letter-spacing: 0.2em; }
.bl--capswide   { font-family: var(--sans); font-weight: 400; text-transform: uppercase; letter-spacing: 0.3em; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { margin-bottom: 3rem; max-width: 38ch; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; max-width: 100%; }

/* ---------- Collections ---------- */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.collection {
  position: relative; min-height: 340px; border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; color: var(--ink); overflow: hidden; isolation: isolate;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.collection:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.collection::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease);
}
.collection:hover::after { transform: scale(1.07); }
.collection::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(253,251,249,0.96) 0%, rgba(253,251,249,0.55) 34%, rgba(253,251,249,0) 60%);
}
.collection--skincare::after { background-image: url("assets/lifestyle/collection-skincare.jpg"); }
.collection--makeup::after { background-image: url("assets/lifestyle/collection-makeup.jpg"); }
.collection--sets::after { background-image: url("assets/lifestyle/collection-giftsets.jpg"); }
.collection > * { position: relative; z-index: 2; }
.collection__zh {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  font-family: var(--serif); font-size: 2.4rem; color: rgba(43, 38, 34, 0.22);
}
.collection h3 { margin-bottom: 0.2rem; }
.collection p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); will-change: transform, opacity;
  transition: transform 0.55s var(--ease), box-shadow 0.45s var(--ease), opacity 0.55s var(--ease);
  opacity: 0; transform: translateY(26px);
}
.product.in { opacity: 1; transform: none; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product__img {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f6f3ef 0%, #eef1ef 100%);
}
.product__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s var(--ease);
}
.product:hover .product__img img { transform: scale(1.05); }
.product__badge {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 1;
  background: var(--white); color: var(--rose-deep);
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 0.3rem 0.65rem; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product__body { padding: 1.2rem 1.2rem 1.4rem; }
.product__brand {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 600;
}
.product__name { font-family: var(--serif); font-size: 1.18rem; line-height: 1.25; margin: 0.3rem 0 0.4rem; }
.product__spec { color: var(--ink-soft); font-size: 0.82rem; line-height: 1.45; min-height: 2.3em; margin-bottom: 0.9rem; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding-top: 0.8rem; border-top: 1px solid var(--line);
}
.product__cat { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.product__inquire {
  font-size: 0.82rem; font-weight: 600; color: var(--ink); white-space: nowrap;
  transition: color 0.25s var(--ease); flex-shrink: 0;
}
.product__inquire:hover { color: var(--rose-deep); }

/* ---------- Proof / Logistics (B2B) ---------- */
.proof__lede { max-width: 60ch; margin: 0.9rem auto 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.proof__grid {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 1.1rem; margin: 2.5rem 0; min-height: 420px;
}
.proof__shot { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.proof__shot--lg { grid-row: span 2; }
.proof__shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transition: transform 0.7s var(--ease); }
.proof__shot--lg img { object-position: center 45%; }
.proof__shot:hover img { transform: scale(1.05); }
.proof__points {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.proof__points li { padding-top: 1.1rem; border-top: 2px solid var(--ink); }
.proof__points strong { display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.35rem; }
.proof__points span { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }

/* ---------- About us ---------- */
.about__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about__intro h2 { margin: 0.4rem 0 0.6rem; }
.about__zh { font-family: var(--sans); font-size: 0.92rem; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.08em; margin-left: 0.4rem; white-space: nowrap; }
.about__since { color: var(--rose-deep); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 1.6rem; }
.about__points { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.about__points li { position: relative; padding-left: 1.7rem; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.about__points li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--rose-deep); }
.about__body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.2rem; }
.about__body p strong { color: var(--ink); font-weight: 600; }
.about__tagline { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.about__tagline span { display: block; font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--ink); line-height: 1.2; }
.about__tagline small { display: block; margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.95rem; letter-spacing: 0.18em; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; margin: 0; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.review blockquote {
  margin: 0 0 1.4rem; font-family: var(--serif); font-size: 1.12rem; line-height: 1.5;
  color: var(--ink); flex: 1;
}
.review__by { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.review__avatar {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush); color: var(--rose-deep);
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
}
.review__who { display: flex; flex-direction: column; line-height: 1.3; }
.review__who strong { font-size: 0.95rem; }
.review__who small { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__inner .section__head { margin-left: auto; margin-right: auto; text-align: center; max-width: 100%; }
.faq__list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.4rem; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--rose); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex-shrink: 0; font-family: var(--sans); font-weight: 400;
  font-size: 1.5rem; line-height: 1; color: var(--rose-deep);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 1.25rem; }
.faq__a p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; }

/* ---------- Legal pages (Terms, Privacy) ---------- */
.legal { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.legal__wrap { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal__updated { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.6rem; }
.legal__disclaimer {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--ink-soft); margin: 1.8rem 0 2.4rem; line-height: 1.6;
}
.legal h2 { font-size: 1.25rem; margin: 2.2rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; font-size: 0.98rem; }
.legal ul { padding-left: 1.2rem; margin: 0.4rem 0 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--rose-deep); text-decoration: underline; }
.legal__back { display: inline-block; margin-top: 2.6rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.legal__back:hover { color: var(--rose-deep); }

/* ---------- Ritual ---------- */
.ritual__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ritual__steps { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.ritual__steps li { display: flex; gap: 1.2rem; align-items: flex-start; }
.ritual__num { font-family: var(--serif); font-size: 1.5rem; color: var(--rose); min-width: 2.2rem; }
.ritual__steps strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }
.ritual__steps p { color: var(--ink-soft); font-size: 0.92rem; }
.ritual__media {
  height: clamp(360px, 44vw, 520px); border-radius: var(--radius); overflow: hidden;
  background: #efe6da url("assets/lifestyle/ritual.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--bg); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
.stat span { font-size: 0.85rem; color: rgba(253, 251, 249, 0.7); letter-spacing: 0.04em; }

/* ---------- Journal ---------- */
.journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  display: flex; flex-direction: column; color: var(--ink);
  border: 1px solid var(--line); will-change: transform;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__tag {
  align-self: flex-start; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--bg-alt); padding: 0.3rem 0.7rem; border-radius: 999px; color: var(--rose-deep);
}
.post h3 { margin: 1rem 0 0.4rem; }
.post p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- CTA ---------- */
.cta { background: var(--rose); color: var(--white); padding: clamp(3.5rem, 7vw, 6rem) 0; text-align: center; }
.cta__inner { max-width: 600px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta__lede { color: rgba(255, 255, 255, 0.88); margin-bottom: 2rem; }
.cta__form { display: flex; gap: 0.7rem; max-width: 440px; margin: 0 auto; }
.cta__form input {
  flex: 1; border: none; border-radius: 14px; padding: 0.9rem 1.3rem;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--white);
}
.cta__form input:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
.cta__form .btn--solid { background: var(--ink); }
.cta__form .btn--solid:hover { background: var(--rose-deep); }
.cta__note { min-height: 1.4rem; margin-top: 1rem; font-size: 0.88rem; color: var(--white); }

/* ---------- Wholesale inquiry form ---------- */
.inquiry { text-align: left; }
.inquiry__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start; max-width: 1100px; margin: 0 auto;
}
.inquiry__intro h2 { text-align: left; }
.inquiry__intro .cta__lede { text-align: left; margin-bottom: 1.6rem; }
.inquiry__points { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.inquiry__points li {
  position: relative; padding-left: 1.6rem; font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}
.inquiry__points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  font-weight: 700; color: var(--white);
}
.inquiry__form {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink);
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.92rem; color: var(--ink);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.7rem 0.85rem; width: 100%; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(192, 109, 109, 0.15);
}
.field .is-invalid, .field input.is-invalid, .field select.is-invalid {
  border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.inquiry__submit { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.inquiry__submit .btn--solid { background: var(--ink); }
.inquiry__submit .btn--solid:hover { background: var(--rose-deep); }
.inquiry__submit .cta__note { color: var(--ink-soft); margin-top: 0; }
.inquiry__submit .cta__note.is-success { color: var(--rose-deep); font-weight: 500; }
.inquiry__submit .cta__note.is-error { color: #c0392b; font-weight: 500; }
.inquiry__submit .btn[disabled] { opacity: 0.6; cursor: progress; }
.inquiry__form.is-flash { animation: form-flash 1.2s var(--ease); }
@keyframes form-flash {
  0%   { box-shadow: var(--shadow); }
  30%  { box-shadow: 0 0 0 3px rgba(192, 109, 109, 0.55), var(--shadow); }
  100% { box-shadow: var(--shadow); }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bg); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(253, 251, 249, 0.12); }
.logo--light { color: var(--bg); }
.logo--light .logo__text strong { color: var(--bg); }
.logo--light .logo__text small { color: rgba(253, 251, 249, 0.6); }
.footer__brand p { margin-top: 1rem; color: rgba(253, 251, 249, 0.65); max-width: 30ch; font-size: 0.92rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; color: rgba(253, 251, 249, 0.5); }
.footer__cols a { display: block; color: var(--bg); text-decoration: none; font-size: 0.92rem; padding: 0.3rem 0; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer__cols a:hover { opacity: 1; color: var(--rose); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.82rem; color: rgba(253, 251, 249, 0.6); }
.footer__social { display: flex; gap: 1.4rem; }
.footer__social a { color: rgba(253, 251, 249, 0.7); text-decoration: none; transition: color 0.2s; }
.footer__social a:hover { color: var(--rose); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes header-in { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }
@keyframes header-in-right { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@keyframes nav-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes nav-drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes nav-item { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12) translateY(-2%); } }
@keyframes scanY { 0% { top: -8%; } 55% { top: 92%; } 100% { top: 92%; } }
@keyframes tag-in { from { opacity: 0; transform: translateY(10px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes tag-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(192,109,109,0.5); } 70% { box-shadow: 0 0 0 7px rgba(192,109,109,0); } 100% { box-shadow: 0 0 0 0 rgba(192,109,109,0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes node-in { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: none; } }
@keyframes radar { 0% { opacity: 0.75; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(3.4); } }
@keyframes avatar-in { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 0% { left: -160%; } 55%, 100% { left: 160%; } }
@keyframes trust-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes eyebrow-shine { to { background-position: 200% 0; } }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.78); } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner, .ritual__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; height: 320px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .proof__points { grid-template-columns: 1fr; gap: 1.1rem; }
  .inquiry__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header__inner { grid-template-columns: auto 1fr; }
  .nav, .header__actions .btn--outline { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: rgba(253, 251, 249, 0.98);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 0.4rem 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); justify-self: stretch;
    animation: nav-drop 0.3s var(--ease) both;
  }
  .nav.is-open a {
    opacity: 0; padding: 0.95rem 24px; font-size: 1.05rem; color: var(--ink);
    border-bottom: 1px solid rgba(43, 38, 34, 0.06);
    transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.25s var(--ease);
    animation: nav-item 0.35s var(--ease) forwards;
  }
  .nav.is-open a:last-child { border-bottom: none; }
  .nav.is-open a::after { display: none; }
  .nav.is-open a:hover, .nav.is-open a:focus { background: var(--bg-alt); color: var(--rose-deep); padding-left: 30px; }
  .nav.is-open a:nth-child(1) { animation-delay: 0.04s; }
  .nav.is-open a:nth-child(2) { animation-delay: 0.09s; }
  .nav.is-open a:nth-child(3) { animation-delay: 0.14s; }
  .nav.is-open a:nth-child(4) { animation-delay: 0.19s; }
  .nav.is-open a:nth-child(5) { animation-delay: 0.24s; }
  /* hamburger morphs into an ✕ when open */
  .nav.is-open ~ .header__actions .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open ~ .header__actions .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open ~ .header__actions .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .collections, .journal, .reviews { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .proof__shot--lg { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { width: 100%; }
  .inquiry__form { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  /* shrink hero callout pills so they don't crowd the smaller image */
  /* mobile: text-only labels, a bit smaller (desktop keeps the pill fill) */
  .hero__tag {
    background: none; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0; font-size: 0.66rem; font-weight: 600; gap: 0.3rem;
    text-shadow: 0 1px 7px rgba(255, 255, 255, 0.85), 0 0 2px rgba(255, 255, 255, 0.9);
    /* no floating on mobile so labels stay joined to their connector lines */
    animation: tag-in 0.6s var(--ease) forwards;
  }
  .hero__tag::before { width: 5px; height: 5px; }
  /* keep the trust badges on a single line on small screens */
  .hero__badges { flex-wrap: nowrap; gap: 0.6rem; }
  .hero__badges li { white-space: nowrap; font-size: 0.62rem; padding-left: 0.78rem; letter-spacing: 0.01em; }
  .hero__since { padding: 0.4rem 0.9rem; left: 5%; bottom: 5%; }
  .hero__since strong { font-size: 0.82rem; letter-spacing: 0.05em; }
  /* tighten the announcement bar so it reads cleanly on small screens */
  .announce { font-size: 0.66rem; letter-spacing: 0.03em; padding: 0.5rem 0.9rem; line-height: 1.45; }
}
@media (max-width: 460px) {
  .products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .nav a, .logo, .header__actions { opacity: 1; }
}
