/* ====================================================
   SOHO 素皓  ·  marketing site
   ==================================================== */

:root {
  --void:        #0a0807;
  --black:       #14110d;
  --char:        #1c1814;
  --char-2:      #221d18;
  --line:        rgba(244, 237, 224, 0.10);
  --line-2:      rgba(244, 237, 224, 0.18);

  --bone:        #f4ede0;
  --bone-dim:    #cfc6b6;
  --pearl:       #e8dfd1;
  --mute:        #8a8276;

  --gold:        #c9a35a;
  --gold-deep:   #a37e3a;
  --gold-glow:   #e9c87a;

  --sage:        #8a9678;
  --rose:        #d4a591;
  --plum:        #4f3a3f;

  --serif:       "Fraunces", "Source Han Serif TC", "Noto Serif CJK TC", serif;
  --sans:        "Geist", "Helvetica Neue", "PingFang TC", "Noto Sans CJK TC", sans-serif;
  --mono:        "JetBrains Mono", ui-monospace, monospace;

  --maxw:        1440px;
  --pad:         clamp(20px, 4vw, 64px);

  --ease:        cubic-bezier(.2, .8, .2, 1);
  --ease-soft:   cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--void); color: var(--bone); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 380;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  background: transparent;
  color: var(--bone);
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
sup { font-size: 0.5em; vertical-align: super; }
em { font-style: italic; }

::selection { background: var(--gold); color: var(--void); }

/* ============= TEXT UTILITIES ============= */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 290;
  font-style: normal;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bone);
  font-feature-settings: "ss01", "liga", "calt";
}
h2 em, h1 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

p { color: var(--bone-dim); font-weight: 350; }

/* ============= GRAIN OVERLAY ============= */

.grain {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -2%); }
  60%  { transform: translate(-1%, 1%); }
  80%  { transform: translate(2%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ============= CURSOR HALO ============= */

.cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 240px; height: 240px;
  margin-left: -120px; margin-top: -120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201,163,90, 0.25), rgba(201,163,90, 0.04) 40%, transparent 60%);
  pointer-events: none;
  z-index: 150;
  mix-blend-mode: screen;
  transition: transform 0.7s var(--ease-soft), opacity 0.4s;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 0;
}
.cursor-halo.is-active { opacity: 1; }
.cursor-halo.is-link { transform: translate3d(0,0,0) scale(0.55); }

/* ============= LOADER ============= */

.loader {
  position: fixed; inset: 0;
  z-index: 300;
  background: var(--void);
  display: grid; place-items: center;
  pointer-events: none;
  transition: opacity .6s var(--ease) .3s, visibility 0s 1s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  display: block;
}
.loader__bar {
  display: block;
  width: 180px; height: 1px;
  background: var(--line);
  margin: 18px auto 0;
  overflow: hidden;
}
.loader__bar i {
  display: block;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderbar 1.6s var(--ease) forwards;
}
@keyframes loaderbar {
  0%  { transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

/* ============= NAV ============= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad) 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled {
  padding-top: 12px;
  background: linear-gradient(180deg, rgba(10,8,7,0.92), rgba(10,8,7,0.55) 80%, transparent);
  backdrop-filter: blur(12px);
}
.nav__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav__left {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__left a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--bone);
  position: relative;
}
.nav__left a em {
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-left: 4px;
  vertical-align: middle;
}
.nav__left a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__left a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__brand {
  display: flex; flex-direction: column;
  align-items: center;
  line-height: 0.92;
}
.nav__brand-cn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bone);
}
.nav__brand-en {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 4px;
}

.nav__right {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 16px;
}
.nav__lang {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--bone);
  font-family: var(--mono);
}
.nav__lang [aria-current="true"] { color: var(--gold); }
.nav__lang .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mute); display: inline-block; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--bone);
  color: var(--void);
  border-color: var(--bone);
}
.nav__cta svg { transition: transform 0.3s var(--ease); }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__ticker {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 28px;
  display: flex; align-items: center;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.nav__ticker span,
.nav__ticker em {
  flex-shrink: 0;
  padding: 0 18px;
  animation: ticker 36s linear infinite;
}
.nav__ticker em { color: var(--gold); font-style: normal; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============= HERO ============= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 168px var(--pad) 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero__aurora {
  position: absolute; inset: -10% -10% 0 -10%;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}
.aurora {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: drift 18s var(--ease) infinite alternate;
}
.aurora--gold {
  width: 700px; height: 700px;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(201,163,90,0.45), transparent 60%);
}
.aurora--sage {
  width: 600px; height: 600px;
  bottom: 10%; left: -10%;
  background: radial-gradient(circle, rgba(138,150,120,0.30), transparent 60%);
  animation-duration: 22s;
  animation-delay: -6s;
}
.aurora--rose {
  width: 480px; height: 480px;
  top: 35%; left: 38%;
  background: radial-gradient(circle, rgba(212,165,145,0.20), transparent 60%);
  animation-duration: 26s;
  animation-delay: -10s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero__content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.kicker--right .kicker__num {
  margin-left: 6px;
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: clamp(64px, 12.5vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 280;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
  z-index: 2;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--en {
  font-size: clamp(28px, 5.6vw, 96px);
  margin-top: 6px;
  color: var(--bone-dim);
}
.hero__line--en .hero__word--em { color: var(--gold); }
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease-soft) forwards;
}
.hero__line:nth-child(2) .hero__word { animation-delay: 0.12s; }
.hero__line:nth-child(3) .hero__word { animation-delay: 0.40s; }
.hero__line:nth-child(4) .hero__word { animation-delay: 0.50s; }

.hero__word--em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--gold);
  margin-right: 0.06em;
}

@keyframes rise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero__sub {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; align-items: end;
  gap: 60px;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-soft) 0.9s forwards;
}
.hero__sub p {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone);
}
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--bone);
  color: var(--void);
}
.btn--gold::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold), var(--gold-deep));
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.btn--gold span, .btn--gold svg { position: relative; z-index: 1; }
.btn--gold:hover::before { transform: translateY(0); }
.btn--gold:hover { color: var(--void); }
.btn--gold svg { transition: transform 0.3s var(--ease); }
.btn--gold:hover svg { transform: translateX(4px); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--bone);
  padding-left: 16px;
}
.btn--ghost:hover { border-color: var(--bone); background: rgba(244, 237, 224, 0.04); }
.btn--lg { padding: 20px 30px; font-size: 14px; }

.btn__play {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-grid; place-items: center;
  margin-right: 4px;
}
.btn__play i {
  width: 0; height: 0;
  border: 5px solid transparent;
  border-left-color: var(--void);
  margin-left: 2px;
}

.hero__product {
  position: absolute;
  top: -20px;
  right: -40px;
  width: clamp(280px, 32vw, 480px);
  height: clamp(380px, 44vw, 640px);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-soft) 0.5s forwards;
}
.hero__halo {
  position: absolute; inset: -10% -20% -10% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(233, 200, 122, 0.55), rgba(233, 200, 122, 0.06) 40%, transparent 65%);
  filter: blur(20px);
  animation: float 8s var(--ease) infinite alternate;
}
@keyframes float {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.04); }
}
.hero__bottle {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05) brightness(0.95);
  animation: bottleFloat 10s var(--ease) infinite alternate;
}
@keyframes bottleFloat {
  0%   { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-18px) rotate(-1.5deg); }
}

.hero__tag {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(28, 24, 20, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
}
.hero__tag i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__tag b {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 360;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__tag em { color: var(--mute); font-style: normal; }
.hero__tag--top { top: 8%; left: -90px; }
.hero__tag--bot { bottom: 18%; right: -50px; }

.hero__footer {
  margin-top: 90px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 4;
}
.hero__stat {
  display: flex; align-items: end; gap: 14px;
}
.hero__stat b {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 320;
  font-style: italic;
  line-height: 0.9;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__stat span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.hero__scroll {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-dim);
}
.hero__scroll i {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--bone);
  animation: scrollDot 2.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(330%); opacity: 0; }
}

/* ============= MANIFESTO ============= */

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  padding: 40px 0;
}
.manifesto__track {
  display: flex; align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 120px);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.03em;
  animation: marquee 40s linear infinite;
}
.manifesto__track .ital {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.manifesto__track em {
  font-style: normal;
  color: var(--mute);
  font-size: 0.4em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= ORIGIN ============= */

.origin {
  padding: 140px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.origin__index {
  position: absolute;
  top: 60px; right: var(--pad);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.origin__index span { color: var(--bone); font-family: var(--serif); font-style: italic; font-size: 18px; margin-right: 6px; }
.origin__index em { font-style: normal; }

.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.origin__copy { position: sticky; top: 120px; }
.origin__title {
  margin-top: 28px;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.origin__num {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-feature-settings: "lnum";
  letter-spacing: -0.02em;
}
.origin__lede {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 460px;
  color: var(--bone);
}
.origin__lede strong {
  color: var(--gold);
  font-weight: 500;
}

.origin__list {
  margin-top: 48px;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.origin__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.origin__item .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 4px;
}
.origin__item h4 {
  font-size: 22px;
  font-weight: 360;
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.origin__item h4 em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
}
.origin__item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--bone-dim);
}

.origin__visual {
  position: relative;
  display: grid;
  gap: 32px;
}
.origin__shot {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.origin__shot img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 8s var(--ease);
}
.origin__shot:hover img { transform: scale(1.04); }
.origin__shot--main { aspect-ratio: 4 / 5; }
.origin__shot--sub  { aspect-ratio: 3 / 2; margin-left: 20%; }
.origin__shot figcaption {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.origin__shot figcaption span {
  color: var(--gold);
  margin-right: 8px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 13px;
}
.origin__badge {
  position: absolute;
  top: 32%; left: -40px;
  width: 120px; height: 120px;
  color: var(--gold);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============= PRODUCTS ============= */

.products {
  padding: 140px var(--pad);
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(212, 165, 145, 0.06), transparent 60%),
    var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head h2 {
  margin-top: 24px;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.section-head p {
  margin-top: 24px;
  font-size: 16px;
  color: var(--bone-dim);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.card {
  position: relative;
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease-soft), border-color 0.4s, background 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--char-2); }
.card--feature {
  background: linear-gradient(180deg, rgba(201, 163, 90, 0.06), transparent 50%), var(--char);
  border-color: rgba(201, 163, 90, 0.22);
}
.card__index {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  z-index: 3;
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
}
.card__halo {
  position: absolute;
  inset: 10% 10% 0 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.45), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: float 8s var(--ease) infinite alternate;
}
.card__halo--rose { background: radial-gradient(circle, rgba(212, 165, 145, 0.45), transparent 60%); }
.card__halo--sage { background: radial-gradient(circle, rgba(138, 150, 120, 0.40), transparent 60%); }
.card__media img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 1.2s var(--ease);
  z-index: 1;
}
.card:hover .card__media img { transform: scale(1.06); }
.card__chip {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 8, 7, 0.75);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
}
.card__chip--gold { color: var(--gold); border-color: rgba(201, 163, 90, 0.4); }

.card__body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}
.card__body h3 {
  font-size: 26px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.card__body h3 em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.card__body > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-dim);
}
.card__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: auto;
}
.card__specs li {
  background: var(--char);
  padding: 12px 8px;
  text-align: center;
}
.card--feature .card__specs li { background: rgba(28, 24, 20, 0.7); }
.card__specs span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.card__specs b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 380;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.card__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.card__add {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap 0.3s var(--ease);
}
.card__add:hover { gap: 14px; }

.products__foot {
  margin-top: 56px;
  text-align: center;
}

/* ============= RITUAL ============= */

.ritual {
  padding: 140px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.ritual__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}
.ritual__head h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 800px;
}

.ritual__stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.ritual__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ritual__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.95);
  transition: opacity 0.6s var(--ease), transform 1.2s var(--ease);
}
.ritual__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10, 8, 7, 0.75) 100%);
  pointer-events: none;
}
.ritual__caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  display: flex; justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: uppercase;
}
.ritual__time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.ritual__steps {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.ritual__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  cursor: none;
  position: relative;
  opacity: 0.45;
  transition: opacity 0.5s var(--ease);
}
.ritual__step.is-active { opacity: 1; }
.ritual__step:hover { opacity: 1; }
.ritual__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.ritual__step h4 {
  font-size: 22px;
  display: flex; align-items: baseline; gap: 12px;
}
.ritual__step h4 em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.ritual__step p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--bone-dim);
}
.ritual__bar {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: transparent;
  overflow: hidden;
}
.ritual__bar i {
  display: block;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.ritual__step.is-active .ritual__bar i { transform: translateX(0); }

/* ============= SCIENCE ============= */

.science {
  padding: 0 var(--pad) 140px;
}
.science__panel {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px clamp(40px, 7vw, 100px);
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(201,163,90,0.10), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(138,150,120,0.08), transparent 60%),
    var(--black);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.science__copy { max-width: 580px; }
.science__copy h2 {
  margin-top: 24px;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.science__lede {
  margin-top: 24px;
  font-size: 16px;
  color: var(--bone-dim);
}

.science__metrics {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.science__metrics article {
  background: var(--black);
  padding: 36px 24px;
  text-align: left;
}
.science__metrics b {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 320;
  line-height: 0.95;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  display: inline-flex; align-items: baseline;
}
.science__metrics b sup {
  font-size: 0.4em;
  color: var(--gold);
  margin-left: 2px;
}
.science__metrics h5 {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 380;
}
.science__metrics p {
  margin-top: 6px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--mute);
}
.science__sig {
  margin-top: 50px;
  display: flex; align-items: center; gap: 24px;
  color: var(--bone-dim);
}
.science__sig svg { color: var(--gold); flex-shrink: 0; }
.science__sig div span {
  display: block;
  font-size: 14px;
  color: var(--bone);
}
.science__sig div em {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-top: 4px;
  font-style: normal;
  text-transform: uppercase;
}

/* ============= PRESS ============= */

.press {
  padding: 140px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.press__head {
  margin-bottom: 60px;
}
.press__head h2 {
  margin-top: 24px;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 28px;
}
.quote {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--char);
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.4s, background 0.4s;
}
.quote:hover { border-color: var(--line-2); background: var(--char-2); }
.quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--bone);
  font-weight: 320;
}
.quote p em { font-style: italic; color: var(--gold); }
.quote footer {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
}
.quote footer img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.4);
}
.quote footer b {
  display: block;
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 380;
  letter-spacing: -0.01em;
}
.quote footer span {
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}
.quote--big {
  grid-column: span 7;
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(201,163,90,0.08), transparent 50%), var(--char);
  border-color: rgba(201, 163, 90, 0.22);
  padding: 56px 48px;
}
.quote--big p {
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.2;
  font-style: italic;
}
.quote--big .quote__mark {
  position: absolute;
  top: 20px; left: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.quote--big footer img { width: 56px; height: 56px; }

.press__grid > .quote:nth-child(2) { grid-column: span 5; }
.press__grid > .quote:nth-child(3) { grid-column: span 5; }
.press__grid > .quote--portrait    {
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.quote--portrait img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.quote--portrait p {
  padding: 28px 28px 0;
  font-size: 18px;
}
.quote--portrait footer { padding: 16px 28px 28px; }
.press__grid > .quote:nth-child(5) { grid-column: span 8; }

.press__logos {
  margin-top: 80px;
  display: flex; align-items: center;
  gap: 32px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.01em;
  color: var(--bone-dim);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.press__logos span,
.press__logos em {
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
}
.press__logos em { color: var(--gold); font-style: normal; }

/* ============= CTA ============= */

.cta {
  position: relative;
  padding: 140px var(--pad);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 50% 30%, rgba(10,8,7, 0.4), rgba(10,8,7, 0.95) 70%);
}
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.5) saturate(0.9);
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta__inner h2 {
  margin-top: 24px;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.cta__inner > p {
  margin-top: 24px;
  font-size: 16px;
  color: var(--bone-dim);
}
.cta__form {
  margin-top: 40px;
  display: flex;
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  transition: border-color 0.4s;
}
.cta__form:focus-within { border-color: var(--gold); }
.cta__form input {
  flex: 1;
  background: none;
  border: 0;
  padding: 12px 22px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.cta__form input::placeholder { color: var(--mute); }
.cta__form button {
  position: relative;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--void);
  font-size: 13px;
  letter-spacing: 0.05em;
  overflow: hidden;
  transition: background 0.3s;
}
.cta__form button:hover { background: var(--gold-glow); }
.cta__sent {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--void);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cta__form.is-sent .cta__sent { transform: translateY(0); }
.cta__form.is-sent .cta__txt { opacity: 0; }
.cta__inner small {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}

/* ============= FOOT ============= */

.foot {
  padding: 80px var(--pad) 40px;
  border-top: 1px solid var(--line);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.foot__brand {
  display: flex; flex-direction: column; gap: 6px;
}
.foot__brand .cn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bone);
  line-height: 1;
}
.foot__brand .en {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.foot__cols div { display: flex; flex-direction: column; gap: 12px; }
.foot__cols h6 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.foot__cols a {
  font-size: 14px;
  color: var(--bone-dim);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.foot__cols a:hover { color: var(--bone); transform: translateX(3px); }

.foot__giant {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 32vw, 540px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 237, 224, 0.18);
  text-align: center;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  user-select: none;
  margin: 40px 0 -30px;
  pointer-events: none;
}

.foot__bot {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
}

/* ============= REVEAL ANIMATIONS ============= */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============= RESPONSIVE ============= */

@media (max-width: 1100px) {
  .hero__product { right: -10px; opacity: 0.5; }
  .origin__grid { grid-template-columns: 1fr; gap: 60px; }
  .origin__copy { position: static; }
  .ritual__stage { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .card--feature { grid-column: span 2; }
  .card--feature .card__media { aspect-ratio: 16 / 9; }
  .science__metrics { grid-template-columns: repeat(2, 1fr); }
  .press__grid { grid-template-columns: repeat(6, 1fr); }
  .quote--big { grid-column: span 6; }
  .press__grid > .quote:nth-child(2),
  .press__grid > .quote:nth-child(3) { grid-column: span 3; }
  .press__grid > .quote--portrait { grid-column: span 6; grid-row: span 1; }
  .press__grid > .quote:nth-child(5) { grid-column: span 6; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { cursor: auto; font-size: 15px; }
  .cursor-halo { display: none; }
  button, a { cursor: pointer; }
  .nav__left { display: none; }
  .nav__row { grid-template-columns: 1fr auto 1fr; }
  .hero { padding: 140px var(--pad) 60px; min-height: auto; }
  .hero__product {
    position: relative;
    width: 80%;
    height: 380px;
    margin: 40px auto 0;
    right: 0; top: 0;
  }
  .hero__tag--top { left: -20px; }
  .hero__tag--bot { right: -10px; }
  .hero__sub { gap: 30px; flex-direction: column; align-items: start; }
  .hero__footer { flex-direction: column; align-items: start; }
  .products__grid { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
  .science__metrics { grid-template-columns: 1fr 1fr; }
  .science__panel { padding: 56px 28px; }
  .press__grid { grid-template-columns: 1fr; }
  .quote--big,
  .press__grid > .quote:nth-child(2),
  .press__grid > .quote:nth-child(3),
  .press__grid > .quote--portrait,
  .press__grid > .quote:nth-child(5) { grid-column: span 1; }
  .quote--big { padding: 36px 28px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .ritual__head { flex-direction: column; align-items: start; }
  .cta__form { flex-direction: column; border-radius: 18px; padding: 10px; gap: 8px; }
  .cta__form button { width: 100%; }
}

/* ============= SCROLL PROGRESS BAR ============= */

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(244, 237, 224, 0.06);
  z-index: 110;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-glow));
  box-shadow: 0 0 12px var(--gold);
  transition: width 0.1s linear;
}

/* ============= AMBIENT AURORA (page-wide) ============= */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  will-change: transform;
}
.ambient__blob--1 {
  width: 60vw; height: 60vw;
  top: -20vw; right: -10vw;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.45), transparent 60%);
  animation: ambientDrift1 24s ease-in-out infinite alternate;
}
.ambient__blob--2 {
  width: 50vw; height: 50vw;
  bottom: -15vw; left: -10vw;
  background: radial-gradient(circle, rgba(138, 150, 120, 0.30), transparent 60%);
  animation: ambientDrift2 30s ease-in-out infinite alternate;
}
.ambient__blob--3 {
  width: 40vw; height: 40vw;
  top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(212, 165, 145, 0.20), transparent 60%);
  animation: ambientDrift3 36s ease-in-out infinite alternate;
}
.ambient__blob--4 {
  width: 35vw; height: 35vw;
  top: 75%; right: 30%;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.18), transparent 60%);
  animation: ambientDrift4 40s ease-in-out infinite alternate;
}
@keyframes ambientDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-12vw, 8vw) scale(1.15); }
  100% { transform: translate(6vw, -4vw) scale(0.95); }
}
@keyframes ambientDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(15vw, -10vw) scale(1.1); }
  100% { transform: translate(-8vw, 6vw) scale(0.95); }
}
@keyframes ambientDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-20vw, 15vw) scale(1.2); }
  100% { transform: translate(10vw, -8vw) scale(0.9); }
}
@keyframes ambientDrift4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(8vw, -12vw) scale(1.1); }
  100% { transform: translate(-12vw, 4vw) scale(0.95); }
}

/* ============= FLOATING PARTICLES ============= */

.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow), 0 0 14px rgba(201, 163, 90, 0.4);
  opacity: 0;
  animation: particleFloat var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: 110%;
  --tx: 0px;
}
.particle--lg { width: 4px; height: 4px; }
.particle--sm { width: 2px; height: 2px; opacity: 0.6; }
.particle--bone { background: var(--bone); box-shadow: 0 0 8px var(--bone), 0 0 14px rgba(244, 237, 224, 0.4); }
.particle--rose { background: var(--rose); box-shadow: 0 0 8px var(--rose); }
@keyframes particleFloat {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate3d(var(--tx), -60vh, 0); }
  90%  { opacity: 0.9; }
  100% { transform: translate3d(calc(var(--tx) * 2), -120vh, 0); opacity: 0; }
}

/* ============= CURSOR SPOTLIGHT ============= */

.spotlight {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 163, 90, 0.10),
    transparent 50%
  );
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.spotlight.is-active { opacity: 1; }

/* ============= GRADIENT TEXT SHIMMER ============= */

.hero__word--shimmer {
  background: linear-gradient(
    100deg,
    var(--bone-dim) 0%,
    var(--bone) 30%,
    var(--gold-glow) 50%,
    var(--bone) 70%,
    var(--bone-dim) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

/* ============= SPLIT TEXT (letter reveal) ============= */

.split-char {
  display: inline-block;
  transform: translateY(110%) rotate(8deg);
  opacity: 0;
  transition:
    transform 0.9s var(--ease-soft),
    opacity 0.9s var(--ease-soft);
  transition-delay: calc(var(--i, 0) * 30ms);
  will-change: transform, opacity;
}
.split-char.is-in {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* ============= SHOWCASE (Huly-style 3D scroll) ============= */

.showcase {
  position: relative;
  height: 320vh;                 /* tall section so scroll drives long animation */
  background: var(--void);
}
.showcase__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px var(--pad);
  perspective: 2000px;
}
.showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.showcase__beam {
  position: absolute;
  width: 1200px; height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,90,0.35), transparent 60%);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: beamPulse 6s ease-in-out infinite;
}
.showcase__beam--2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212, 165, 145, 0.18), transparent 60%);
  animation-duration: 8s;
  animation-delay: -3s;
}
@keyframes beamPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 237, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 237, 224, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  opacity: 0.5;
}

.showcase__head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin-bottom: 40px;
}
.showcase__title {
  margin-top: 24px;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.showcase__title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}
.showcase__lede {
  margin-top: 24px;
  font-size: 16px;
  color: var(--bone-dim);
  line-height: 1.7;
}

.showcase__stage {
  position: relative;
  width: min(1100px, 90vw);
  height: clamp(320px, 50vh, 520px);
  z-index: 2;
  transform-style: preserve-3d;
}

.float {
  position: absolute;
  width: clamp(180px, 22vw, 280px);
  border-radius: 12px;
  overflow: visible;
  background: var(--char);
  border: 1px solid var(--line-2);
  padding: 14px;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease-soft), opacity 0.8s var(--ease-soft);
  will-change: transform, opacity;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 8px 30px rgba(201, 163, 90, 0.18);
  backdrop-filter: blur(12px);
}
.float img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  filter: contrast(1.05);
}
.float__halo {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.45), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: floatGlow 5s ease-in-out infinite;
}
.float__halo--rose { background: radial-gradient(circle, rgba(212, 165, 145, 0.45), transparent 60%); }
.float__halo--sage { background: radial-gradient(circle, rgba(138, 150, 120, 0.40), transparent 60%); }
@keyframes floatGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.float__meta {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.float__meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.float__meta h5 {
  font-size: 18px;
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.01em;
}
.float__meta em {
  flex-basis: 100%;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 2px;
}
.float__pill {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10, 8, 7, 0.92);
  border: 1px solid rgba(201, 163, 90, 0.4);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.float__pill i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

/* default positioning — JS will animate transforms based on scroll */
.float--1 {
  top: 10%; left: 5%;
  transform: translate3d(0, 0, -200px) rotateY(20deg) rotateX(8deg);
}
.float--2 {
  top: 0; left: 50%;
  margin-left: -140px;
  transform: translate3d(0, 0, 0) rotateY(0) rotateX(0);
  z-index: 3;
}
.float--3 {
  top: 15%; right: 5%;
  transform: translate3d(0, 0, -200px) rotateY(-20deg) rotateX(8deg);
}

.showcase__connector {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.showcase__legend {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 var(--pad);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  z-index: 5;
}
.showcase__legend i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.showcase__count b {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bone);
  font-size: 14px;
  margin-right: 6px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* card glow pulse (for product cards) */
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(201, 163, 90, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }

/* hero subtle continuous breathing */
.hero__title { animation: textBreath 8s ease-in-out infinite alternate; }
@keyframes textBreath {
  0%   { filter: drop-shadow(0 0 0 transparent); }
  100% { filter: drop-shadow(0 0 30px rgba(201, 163, 90, 0.18)); }
}

/* responsive showcase */
@media (max-width: 1100px) {
  .showcase { height: 260vh; }
  .float--1 { left: 0; top: 5%; transform: translate3d(0, 0, -150px) rotateY(15deg); }
  .float--3 { right: 0; top: 8%; transform: translate3d(0, 0, -150px) rotateY(-15deg); }
}
@media (max-width: 720px) {
  .showcase { height: 100vh; }
  .showcase__sticky { position: relative; height: auto; padding-bottom: 40px; }
  .showcase__stage {
    position: relative; height: auto; display: flex; flex-direction: column; gap: 60px;
    width: 90vw; align-items: center;
  }
  .float--1, .float--2, .float--3 {
    position: relative; top: 0; left: 0; right: 0; margin: 0;
    transform: none !important;
  }
  .showcase__connector { display: none; }
  .ambient__blob { filter: blur(60px); }
}

/* ============= REDUCED MOTION ============= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
