:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0c0b09;
  --panel: #11100d;
  --panel-2: #17130d;
  --gold: #d8ab55;
  --gold-2: #f0ce83;
  --gold-dark: #8f6425;
  --ivory: #f8edcf;
  --muted: #b9ad93;
  --line: rgba(216, 171, 85, 0.28);
  --line-strong: rgba(216, 171, 85, 0.58);
  --jade: #0f2d2d;
  --cinnabar: #8f3028;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
  --serif: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --kai: "BiauKai", "DFKai-SB", "Kaiti TC", STKaiti, "Kaiti SC", KaiTi, "標楷體", "楷體", "Songti TC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

:where(#ritual, #ingredients, #reviews, #box, #faq) {
  scroll-margin-top: 78px;
}

#home {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(17, 13, 7, 0.38), rgba(5, 5, 5, 0) 460px),
    var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
}

body.nav-open,
body.cart-open {
  overflow: hidden;
}

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

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

button,
select,
input {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shipping-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 32px;
  overflow: hidden;
  background: linear-gradient(90deg, #b98634, #f0d28a 52%, #a8732e);
  color: #120c04;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.top-offer-ticker {
  position: relative;
  overflow: hidden;
  min-height: 32px;
}

.top-offer-ticker::before,
.top-offer-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 42px;
  pointer-events: none;
}

.top-offer-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(185, 134, 52, 1), rgba(185, 134, 52, 0));
}

.top-offer-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(168, 115, 46, 1), rgba(168, 115, 46, 0));
}

.top-offer-track {
  display: flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  animation: topOfferTicker 24s linear infinite;
}

.top-offer-track span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 38px;
}

@keyframes topOfferTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.site-header {
  position: sticky;
  top: 32px;
  z-index: 35;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(4, 4, 4, 0.82);
  border-bottom: 1px solid rgba(216, 171, 85, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold-2);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(248, 237, 207, 0.84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-2);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header-cta {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(216, 171, 85, 0.48);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(216, 171, 85, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.currency-pill {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(216, 171, 85, 0.2);
  border-radius: 999px;
  background: rgba(216, 171, 85, 0.055);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.icon-button,
.cart-button,
.review-arrow {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.56);
  cursor: pointer;
}

.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  color: var(--gold-2);
  font-size: 25px;
}

.cart-button strong {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #130c04;
  font-size: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--gold-2);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding: 64px clamp(18px, 4vw, 72px) 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050403;
  isolation: isolate;
}

.hero::before,
.hero::after,
.hero-motion {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: -9%;
  z-index: 0;
  background-image: var(--hero-image, url("assets/hero-ritual-box.webp"));
  background-size: cover;
  background-position: center right;
  filter: brightness(0.78) contrast(1.08) saturate(1.02);
  transform: scale(1.06) translate3d(0, 0, 0);
  transform-origin: 70% 45%;
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 27%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.03) 48%),
    repeating-linear-gradient(135deg, rgba(216, 171, 85, 0.034) 0 1px, transparent 1px 16px);
  opacity: 0.92;
}

.hero-motion {
  inset: -18%;
  z-index: 2;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.78;
  background:
    radial-gradient(ellipse at 73% 35%, rgba(255, 192, 68, 0.34), transparent 15%),
    radial-gradient(ellipse at 60% 58%, rgba(255, 132, 18, 0.26), transparent 18%),
    radial-gradient(ellipse at 84% 18%, rgba(216, 171, 85, 0.24), transparent 22%),
    radial-gradient(ellipse at 49% 8%, rgba(255, 246, 214, 0.18), transparent 25%),
    linear-gradient(105deg, transparent 0%, rgba(255, 246, 214, 0.12) 38%, transparent 54%),
    linear-gradient(118deg, transparent 14%, rgba(216, 171, 85, 0.1) 46%, transparent 68%);
  filter: blur(20px);
  transform: translate3d(0, 0, 0) scale(1.02);
  animation: heroSmokeGlow 7.5s ease-in-out infinite alternate;
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 650px;
  padding: 22px 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

h3 {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
}

.lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(248, 237, 207, 0.82);
  font-size: 18px;
}

.hero-intents {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  gap: clamp(16px, 2.6vw, 38px);
  max-width: 650px;
  margin: 0 0 33px;
}

.hero-intents a {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: rgba(248, 237, 207, 0.96);
  text-align: center;
  transition: transform 180ms ease;
}

.hero-intents a:hover,
.hero-intents a:focus-visible {
  transform: translateY(-3px);
}

.intent-orb {
  position: relative;
  width: clamp(58px, 4.8vw, 74px);
  height: clamp(58px, 4.8vw, 74px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 206, 131, 0.16), rgba(0, 0, 0, 0.06) 54%, rgba(0, 0, 0, 0.38) 100%);
  color: var(--gold-2);
  font-family: var(--kai);
  font-weight: 500;
  line-height: 1;
  font-style: normal;
  box-shadow: 0 0 0 5px rgba(216, 171, 85, 0.04), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.intent-orb::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 9px;
  width: 5px;
  height: 14px;
  border-radius: 999px;
  background: #a52722;
  transform: rotate(-16deg);
  box-shadow: 0 0 10px rgba(165, 39, 34, 0.6);
}

.intent-orb svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(218, 166, 54, 0.38));
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-intents a:hover .intent-orb svg,
.hero-intents a:focus-visible .intent-orb svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 23px rgba(244, 196, 82, 0.72));
}

.intent-orb .halo {
  fill: none;
  stroke: #d7a739;
  stroke-width: 1.15;
  stroke-dasharray: 2 5;
  opacity: 0.95;
  transform-box: fill-box;
  transform-origin: center;
  animation: intentRotate 18s linear infinite;
}

.intent-orb .inner {
  fill: rgba(214, 164, 52, 0.035);
  stroke: #f0c85a;
  stroke-width: 1;
  opacity: 0.84;
}

.intent-orb .sigil,
.intent-orb .accent {
  fill: none;
  stroke: #f2c95b;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intent-orb .sigil {
  stroke-width: 2;
}

.intent-orb .accent {
  stroke-width: 1.35;
  opacity: 0.82;
}

.intent-orb .symbol {
  fill: #f8d978;
  font-family: var(--kai);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
    background-position: center right;
  }
  50% {
    transform: scale(1.115) translate3d(-2.6%, -1.6%, 0);
    background-position: 58% 48%;
  }
  100% {
    transform: scale(1.15) translate3d(-4.4%, -2.8%, 0);
    background-position: 54% center;
  }
}

@keyframes heroSmokeGlow {
  0% {
    opacity: 0.34;
    transform: translate3d(-2%, 1.8%, 0) scale(1);
    background-position: 72% 36%, 62% 64%, 82% 20%, 54% 8%, 0 0, 0 0;
  }
  45% {
    opacity: 0.72;
    transform: translate3d(1.6%, -1.2%, 0) scale(1.06);
    background-position: 69% 31%, 66% 59%, 78% 24%, 58% 12%, 16px -24px, -18px 20px;
  }
  100% {
    opacity: 0.5;
    transform: translate3d(3.4%, -2.8%, 0) scale(1.1);
    background-position: 76% 28%, 60% 56%, 84% 18%, 50% 15%, 34px -48px, -34px 42px;
  }
}

@keyframes intentRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.intent-name {
  display: block;
  margin-top: 3px;
  color: #d9a340;
  font-family: var(--kai);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0.1em;
  font-style: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
}

.hero-intents strong {
  color: rgba(255, 249, 232, 0.96);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 58px);
  margin-bottom: 14px;
}

.gold-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 360px);
  padding: 0 34px;
  border: 1px solid rgba(255, 231, 174, 0.42);
  border-radius: 4px;
  background: linear-gradient(180deg, #f2d489 0%, #d4a44d 52%, #b68132 100%);
  color: #140c03;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 34px rgba(176, 123, 42, 0.22);
  transition: transform 160ms ease, filter 160ms ease;
}

.gold-button:hover,
.gold-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.gold-button.wide {
  width: 100%;
}

.hero-shipping-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(248, 237, 207, 0.94);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-shipping-note .gift-mark {
  width: 30px;
  height: 30px;
}

.gift-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.gift-mark svg,
.badge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gift-mark svg {
  color: var(--gold-2);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 20px 28px;
  max-width: 900px;
  margin-top: 42px;
}

.trust-badges div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-width: 0;
}

.badge-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.trust-badges strong,
.service-strip strong {
  color: var(--gold-2);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-badges small,
.service-strip span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero-product {
  display: none;
}

.product-stage {
  position: relative;
  width: min(980px, 100%);
  margin-left: auto;
  aspect-ratio: 1537 / 1023;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 85, 0.22);
  border-radius: 4px;
  background: #0b0907;
  box-shadow: var(--shadow);
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 50%, rgba(216, 171, 85, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 38%);
  pointer-events: none;
}

.box-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.08) brightness(0.82);
}

.powers,
.ingredients,
.reviews,
.faq {
  padding: 78px 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(216, 171, 85, 0.055), transparent 180px),
    var(--bg-soft);
}

.powers {
  padding-top: 52px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 120px),
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.08), transparent 42%),
    #0a0a09;
}

.section-title {
  width: min(1080px, 100%);
  margin: 0 auto 30px;
}

.section-title.centered {
  text-align: center;
}

.section-title p {
  color: var(--muted);
}

.powers .section-title h2 {
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1;
  letter-spacing: 0.035em;
}

.powers .section-title p {
  color: rgba(248, 237, 207, 0.78);
  font-size: 16px;
}

.power-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.power-card {
  min-width: 0;
  min-height: 468px;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(216, 171, 85, 0.42);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 171, 85, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
    rgba(7, 7, 7, 0.9);
  cursor: pointer;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.power-card:hover,
.power-card:focus-visible,
.power-card.active {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 171, 85, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(216, 171, 85, 0.07), rgba(143, 48, 40, 0.025)),
    rgba(10, 10, 10, 0.96);
}

.power-card img {
  width: min(220px, 92%);
  aspect-ratio: 1.035;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hanzi {
  position: relative;
  color: #d9a340;
  font-family: var(--kai);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.11em;
  font-style: normal;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.hanzi::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 21px;
  margin-left: 7px;
  border-radius: 2px;
  background:
    linear-gradient(
      180deg,
      #a82320 0 8px,
      transparent 8px 11px,
      #a82320 11px 19px,
      transparent 19px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 208, 156, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.36);
  transform: translateY(4px);
}

.power-card strong {
  margin-top: 4px;
  color: rgba(255, 249, 232, 0.95);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.power-card strong em {
  color: var(--gold);
  font-style: normal;
}

.power-card small {
  max-width: 235px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.power-seal {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-top: 6px;
  border: 0;
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--kai);
  font-style: normal;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 206, 131, 0.14), rgba(0, 0, 0, 0.06) 56%, rgba(0, 0, 0, 0.34) 100%);
  box-shadow: 0 0 0 4px rgba(216, 171, 85, 0.035), 0 10px 24px rgba(0, 0, 0, 0.34);
}

.power-seal::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 8px;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #a52722;
  transform: rotate(-16deg);
  box-shadow: 0 0 8px rgba(165, 39, 34, 0.58);
}

.power-seal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(218, 166, 54, 0.32));
  transition: transform 180ms ease, filter 180ms ease;
}

.power-card:hover .power-seal svg,
.power-card:focus-visible .power-seal svg,
.power-card.active .power-seal svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(244, 196, 82, 0.62));
}

.power-seal .halo {
  fill: none;
  stroke: #d7a739;
  stroke-width: 1.15;
  stroke-dasharray: 2 5;
  opacity: 0.95;
  transform-box: fill-box;
  transform-origin: center;
  animation: intentRotate 18s linear infinite;
}

.power-seal .inner {
  fill: rgba(214, 164, 52, 0.035);
  stroke: #f0c85a;
  stroke-width: 1;
  opacity: 0.84;
}

.power-seal .sigil,
.power-seal .accent {
  fill: none;
  stroke: #f2c95b;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.power-seal .sigil {
  stroke-width: 2;
}

.power-seal .accent {
  stroke-width: 1.35;
  opacity: 0.82;
}

.power-seal .symbol {
  fill: #f8d978;
  font-family: var(--kai);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.intent-panel {
  width: min(1060px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(15, 45, 45, 0.42), rgba(23, 19, 13, 0.86));
}

.intent-panel img {
  width: 100%;
  aspect-ratio: 1.035;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  border: 1px solid rgba(216, 171, 85, 0.38);
}

.intent-panel > img {
  width: 260px;
}

.intent-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.intent-bottom {
  display: grid;
  gap: 10px;
  margin: 0;
}

.intent-bottom img {
  aspect-ratio: 0.79;
  filter: saturate(0.96) contrast(1.04) brightness(0.92);
}

.intent-bottom figcaption {
  color: rgba(248, 237, 207, 0.72);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.box-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  border-bottom: 1px solid var(--line);
  background: #070706;
}

.gallery {
  min-width: 0;
  padding: 48px;
  border-right: 1px solid var(--line);
}

.gallery-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0b08;
}

.gallery-main img {
  width: 100%;
  height: clamp(420px, 46vw, 640px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.95) brightness(0.78);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb {
  overflow: hidden;
  min-height: 96px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  cursor: pointer;
}

.thumb.active {
  border-color: var(--gold-2);
}

.thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.purchase-panel {
  align-self: center;
  width: min(560px, calc(100% - 64px));
  margin: 0 auto;
  padding: 52px 0;
}

.purchase-panel h2 {
  font-size: clamp(34px, 4.6vw, 50px);
}

.limited-note {
  margin: -6px 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 171, 85, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 171, 85, 0.14), transparent 42%),
    rgba(14, 13, 11, 0.78);
  color: rgba(248, 237, 207, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.limited-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(248, 237, 207, 0.88);
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

.option-stack {
  display: grid;
  gap: 11px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.option-stack legend {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.radio-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(14, 13, 11, 0.82);
  cursor: pointer;
}

.radio-card.selected {
  border-color: var(--gold-2);
  background: rgba(216, 171, 85, 0.08);
}

.radio-card input {
  accent-color: var(--gold);
}

.radio-card span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.radio-card em {
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--gold-2);
  color: #160d04;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.radio-card strong {
  color: var(--gold-2);
}

.order-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.order-summary {
  display: grid;
  gap: 9px;
  margin: 22px 0 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.order-summary strong {
  color: var(--ivory);
}

.total-row {
  color: var(--gold-2);
  font-size: 19px;
}

.total-row strong {
  color: var(--gold-2);
}

.secure-note {
  margin: 15px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.order-contact {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 171, 85, 0.22);
  border-radius: 8px;
  background: rgba(216, 171, 85, 0.05);
  text-align: center;
}

.order-contact p {
  margin: 0;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
}

.order-contact div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.order-contact a,
.order-contact span {
  color: rgba(248, 237, 207, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.order-contact a:hover {
  color: var(--gold-2);
}

.ingredients {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 14, 10, 0.92), rgba(6, 6, 5, 1)),
    var(--bg);
}

.ingredient-ledger {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ingredient-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(216, 171, 85, 0.3);
}

.ingredient-heading .eyebrow {
  margin: 0 0 8px;
}

.ingredient-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
}

.ingredient-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(12, 11, 9, 0.84);
}

.ingredient-object {
  position: relative;
  margin: 0;
  min-height: 540px;
  border-right: 1px solid var(--line);
  background: #080706;
}

.ingredient-object img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) brightness(0.74);
}

.ingredient-object figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 171, 85, 0.36);
  color: rgba(248, 237, 207, 0.78);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ingredient-list article {
  min-height: 270px;
  display: grid;
  align-content: end;
  padding: 30px;
  border-right: 1px solid rgba(216, 171, 85, 0.22);
  border-bottom: 1px solid rgba(216, 171, 85, 0.22);
  background: linear-gradient(180deg, rgba(216, 171, 85, 0.05), rgba(255, 255, 255, 0.012));
}

.ingredient-list article:nth-child(2n) {
  border-right: 0;
}

.ingredient-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ingredient-list span {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ingredient-list h3 {
  margin: 0 0 8px;
  color: rgba(255, 249, 232, 0.96);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.ingredient-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ingredient-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  border: 1px solid rgba(216, 171, 85, 0.28);
  background: rgba(216, 171, 85, 0.045);
}

.ingredient-process div {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(216, 171, 85, 0.22);
}

.ingredient-process div:last-child {
  border-right: 0;
}

.ingredient-process b {
  color: var(--cinnabar);
  font-family: var(--serif);
  font-size: 20px;
}

.ingredient-process span {
  color: rgba(248, 237, 207, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quality-proof {
  background:
    linear-gradient(180deg, rgba(10, 27, 26, 0.38), rgba(7, 7, 6, 0.98) 48%),
    #080807;
}

.quality-proof-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.quality-proof-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.quality-proof-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.96;
}

.quality-proof-head > p:last-child {
  margin: 0;
  color: rgba(248, 237, 207, 0.72);
  line-height: 1.72;
}

.quality-proof-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.quality-proof-main {
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: rgba(12, 11, 9, 0.86);
}

.quality-proof-main img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.74);
}

.quality-proof-main div {
  padding: 28px;
  border-top: 1px solid rgba(216, 171, 85, 0.28);
}

.quality-proof-main span,
.quality-proof-list b {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quality-proof-main h3,
.quality-proof-list h3 {
  margin: 10px 0 8px;
  color: rgba(255, 249, 232, 0.96);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.02;
}

.quality-proof-main p,
.quality-proof-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.quality-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quality-proof-list article {
  min-height: 300px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(216, 171, 85, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(13, 12, 10, 0.78);
}

.quality-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid rgba(216, 171, 85, 0.28);
  background: rgba(216, 171, 85, 0.04);
}

.quality-proof-metrics div {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 18px;
  border-right: 1px solid rgba(216, 171, 85, 0.22);
  text-align: center;
}

.quality-proof-metrics div:last-child {
  border-right: 0;
}

.quality-proof-metrics strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
}

.quality-proof-metrics span {
  color: rgba(248, 237, 207, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ritual-standard {
  background:
    linear-gradient(180deg, rgba(17, 14, 10, 0.9), rgba(7, 7, 6, 1)),
    #080807;
}

.standard-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.standard-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 171, 85, 0.3);
}

.standard-heading h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.94;
}

.standard-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  margin-top: 30px;
  align-items: stretch;
}

.standard-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(13, 12, 10, 0.78);
}

.standard-copy p {
  margin: 0;
  color: rgba(248, 237, 207, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.standard-actions {
  display: grid;
  gap: 14px;
}

.standard-actions .gold-button {
  width: fit-content;
}

.standard-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(12, 11, 9, 0.82);
}

.standard-checks article {
  min-height: 310px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-right: 1px solid rgba(216, 171, 85, 0.24);
  background: linear-gradient(180deg, rgba(216, 171, 85, 0.045), rgba(255, 255, 255, 0.01));
}

.standard-checks article:last-child {
  border-right: 0;
}

.standard-checks span {
  margin-bottom: 70px;
  color: var(--cinnabar);
  font-family: var(--serif);
  font-size: 28px;
}

.standard-checks h3 {
  margin: 0 0 10px;
  color: rgba(255, 249, 232, 0.96);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.02;
}

.standard-checks p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.standard-visuals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.standard-visuals img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(216, 171, 85, 0.28);
  filter: saturate(0.9) contrast(1.06) brightness(0.82);
}

.ingredient-editorial {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.ingredient-editorial .ingredient-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin: 0;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(216, 171, 85, 0.38);
}

.ingredient-editorial .ingredient-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.ingredient-editorial .ingredient-heading h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: 0;
}

.ingredient-editorial .ingredient-heading p:not(.eyebrow) {
  margin: 0 0 8px;
  color: rgba(248, 237, 207, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.ingredient-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(216, 171, 85, 0.38);
}

.ingredient-line article {
  min-height: 212px;
  display: grid;
  align-content: end;
  padding: 38px 28px 42px;
  border-right: 1px solid rgba(216, 171, 85, 0.26);
}

.ingredient-line article:first-child {
  padding-left: 28px;
}

.ingredient-line article:last-child {
  border-right: 0;
}

.ingredient-line span {
  margin-bottom: 42px;
  color: var(--cinnabar);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ingredient-line h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.05;
}

.ingredient-line p {
  margin: 0;
  color: rgba(248, 237, 207, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.ingredient-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 72px;
}

.ingredient-caption span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ingredient-caption p {
  margin: 0;
  color: rgba(248, 237, 207, 0.7);
  font-size: 16px;
  font-weight: 700;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 26px 48px;
  border-bottom: 1px solid var(--line);
  background: #080807;
}

.service-strip div {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.reviews {
  text-align: center;
}

.review-heading h2 {
  width: min(760px, 100%);
  margin-inline: auto;
  color: var(--ivory);
  font-size: clamp(30px, 4vw, 48px);
}

.review-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 18px;
  align-items: center;
}

.review-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--gold-2);
  padding: 0;
}

.review-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 24px;
  border: 1px solid rgba(216, 171, 85, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 171, 85, 0.14), transparent 34%),
    rgba(11, 10, 8, 0.78);
  text-align: left;
}

.review-stars {
  height: 24px;
  margin: 0 0 18px;
  color: #ffbd2d;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

blockquote {
  margin: 0;
  color: rgba(248, 237, 207, 0.86);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.18;
}

.review-copy {
  margin: 16px 0 0;
  color: rgba(248, 237, 207, 0.78);
  font-size: 15px;
  line-height: 1.62;
}

.review-name {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-verified {
  margin-top: 5px;
  color: rgba(248, 237, 207, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-community {
  width: min(880px, 100%);
  margin: 34px auto 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.28;
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 13, 11, 0.82);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: var(--gold-2);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

details p + p {
  padding-top: 0;
}

details ul {
  display: grid;
  gap: 7px;
  margin: -8px 0 18px;
  padding: 0 22px 0 46px;
  color: rgba(248, 237, 207, 0.82);
}

details li::marker {
  color: var(--gold);
}

.zh-text {
  font-family: var(--kai);
  color: var(--gold-2);
}

.faq-trust {
  width: min(880px, 100%);
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(216, 171, 85, 0.34);
  border-radius: 8px;
  background: rgba(216, 171, 85, 0.07);
  color: var(--gold-2);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(5, minmax(118px, 0.52fr)) auto;
  gap: 28px;
  padding: 46px 48px;
  background: #050505;
  color: var(--muted);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 280px;
  margin-bottom: 0;
}

.site-footer div:not(:first-child):not(.seal-mark) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.site-footer a {
  font-size: 14px;
}

.footer-connect span {
  color: rgba(248, 237, 207, 0.58);
  font-size: 14px;
}

.seal-mark {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
}

.logo-seal {
  width: 116px;
  height: 116px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.logo-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.subpage-main {
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 171, 85, 0.12), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(143, 48, 40, 0.09), transparent 32%),
    var(--bg);
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 110px 48px 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.74) 46%, rgba(0, 0, 0, 0.32)),
    url("assets/hero-ritual-box.webp");
  background-size: cover;
  background-position: center right;
}

.subpage-hero::before,
.subpage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(216, 171, 85, 0.014) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.subpage-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 7vw, 96px);
}

.subpage-hero p:not(.eyebrow) {
  color: rgba(248, 237, 207, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.subpage-section {
  position: relative;
  padding: 76px 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(216, 171, 85, 0.045), transparent 190px),
    #070706;
}

.subpage-section.alt {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.09), transparent 42%),
    #050505;
}

.subpage-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.subpage-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.subpage-copy h2 {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: clamp(30px, 3.5vw, 48px);
}

.subpage-copy p {
  color: rgba(248, 237, 207, 0.76);
  font-size: 17px;
}

.subpage-copy p:last-child {
  margin-bottom: 0;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.direction-card {
  min-height: 180px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px 18px;
  border: 1px solid rgba(216, 171, 85, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.12), transparent 48%),
    rgba(12, 11, 9, 0.84);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.direction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 203, 91, 0.52);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42), 0 0 28px rgba(212, 156, 43, 0.12);
}

.direction-icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 206, 131, 0.16), rgba(0, 0, 0, 0.06) 54%, rgba(0, 0, 0, 0.38) 100%);
  box-shadow: 0 0 0 5px rgba(216, 171, 85, 0.04), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.direction-icon::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 11px;
  width: 5px;
  height: 14px;
  border-radius: 999px;
  background: #a52722;
  transform: rotate(-16deg);
  box-shadow: 0 0 10px rgba(165, 39, 34, 0.6);
}

.direction-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(218, 166, 54, 0.36));
  transition: transform 180ms ease, filter 180ms ease;
}

.direction-card:hover .direction-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 22px rgba(244, 196, 82, 0.7));
}

.direction-icon .halo {
  fill: none;
  stroke: #d7a739;
  stroke-width: 1.15;
  stroke-dasharray: 2 5;
  opacity: 0.95;
  transform-box: fill-box;
  transform-origin: center;
  animation: intentRotate 18s linear infinite;
}

.direction-icon .inner {
  fill: rgba(214, 164, 52, 0.035);
  stroke: #f0c85a;
  stroke-width: 1;
  opacity: 0.84;
}

.direction-icon .sigil,
.direction-icon .accent {
  fill: none;
  stroke: #f2c95b;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direction-icon .sigil {
  stroke-width: 2;
}

.direction-icon .accent {
  stroke-width: 1.35;
  opacity: 0.82;
}

.direction-icon .symbol {
  fill: #f8d978;
  font-family: var(--kai);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.direction-card .hanzi {
  display: block;
  margin-bottom: 0;
  font-size: 26px;
}

.direction-card strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.18;
}

.line-feature {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px 24px;
  border: 1px solid rgba(216, 171, 85, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.16), transparent 52%),
    rgba(9, 8, 7, 0.88);
  text-align: center;
}

.line-feature h2 {
  margin-bottom: 0;
  color: var(--gold-2);
  font-size: clamp(34px, 5vw, 62px);
}

.subpage-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.subpage-cta h2 {
  margin-bottom: 0;
  color: var(--ivory);
  font-size: clamp(38px, 5vw, 68px);
}

.policy-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 12, 10, 0.86);
}

.policy-card h2 {
  color: var(--gold-2);
  font-size: clamp(28px, 3vw, 42px);
}

.policy-card p {
  color: rgba(248, 237, 207, 0.76);
}

.member-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 171, 85, 0.12), transparent 34%),
    rgba(12, 11, 9, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.member-card h2,
.member-card h3 {
  margin: 0 0 12px;
  color: var(--ivory);
}

.member-profile,
.member-order-head,
.member-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.member-muted,
.member-status {
  color: rgba(248, 237, 207, 0.72);
}

.member-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.member-form label {
  display: grid;
  gap: 8px;
}

.member-form label > span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 4px;
  outline: 0;
  background: rgba(4, 4, 4, 0.56);
  color: var(--ivory);
}

.outline-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.35);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.member-orders {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.member-order {
  padding: 18px;
  border: 1px solid rgba(216, 171, 85, 0.22);
  border-radius: 6px;
  background: rgba(4, 4, 4, 0.34);
}

.member-order-head {
  margin-bottom: 10px;
}

.member-order-head strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 22px;
}

.member-order-head span {
  padding: 6px 10px;
  border: 1px solid rgba(216, 171, 85, 0.28);
  border-radius: 999px;
  color: rgba(248, 237, 207, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.member-facts span,
.member-items p {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(216, 171, 85, 0.16);
  border-radius: 4px;
  color: rgba(248, 237, 207, 0.68);
}

.member-facts b,
.member-items span {
  color: var(--ivory);
}

.member-items {
  display: grid;
  gap: 8px;
}

.member-items p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
}

.member-timeline {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.member-timeline li {
  padding-left: 16px;
  border-left: 2px solid rgba(216, 171, 85, 0.36);
  color: rgba(248, 237, 207, 0.72);
}

.member-timeline b,
.member-timeline span {
  display: block;
}

.member-timeline b {
  color: var(--gold-2);
}

.checkout-main {
  background:
    radial-gradient(circle at 70% 0%, rgba(216, 171, 85, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(216, 171, 85, 0.035) 0 1px, transparent 1px 18px),
    var(--bg);
}

.checkout-hero {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 82px clamp(18px, 4vw, 56px) 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.88)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(5, 5, 5, 0.62)),
    url("assets/hero-ritual-box.webp") center / cover;
}

.checkout-hero-copy {
  width: min(760px, 100%);
}

.checkout-hero h1 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.94;
}

.checkout-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(248, 237, 207, 0.84);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
}

.checkout-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.checkout-form,
.checkout-summary,
.checkout-panel {
  min-width: 0;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 171, 85, 0.12), transparent 34%),
    rgba(12, 11, 9, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.checkout-panel {
  padding: clamp(22px, 3vw, 34px);
}

.checkout-panel-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.checkout-panel-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.checkout-panel h2,
.checkout-summary h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(26px, 3vw, 38px);
}

.checkout-grid {
  display: grid;
  gap: 14px;
}

.checkout-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-grid.three {
  grid-template-columns: 1fr 1fr 150px;
}

.checkout-grid.compact {
  max-width: 420px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.checkout-form label > span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select {
  min-width: 0;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 4px;
  outline: 0;
  background: rgba(4, 4, 4, 0.56);
  color: var(--ivory);
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(216, 171, 85, 0.13);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.payment-card {
  position: relative;
  min-height: 84px;
  padding: 16px 16px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 4, 4, 0.45);
}

.payment-card.active,
.payment-card:focus-within {
  border-color: var(--line-strong);
  background: rgba(216, 171, 85, 0.08);
}

.payment-card input {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 16px;
  min-height: 16px;
}

.payment-card strong,
.payment-card small {
  display: block;
}

.payment-card small {
  color: var(--muted);
}

.checkout-summary {
  position: sticky;
  top: 126px;
  padding: 20px;
}

.summary-image {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #090806;
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-option,
.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 171, 85, 0.18);
  color: rgba(248, 237, 207, 0.78);
}

.summary-option strong,
.summary-line strong {
  color: var(--ivory);
}

.summary-total {
  border-bottom: 0;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 900;
}

.summary-badges {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.summary-badges span {
  padding: 10px 12px;
  border: 1px solid rgba(216, 171, 85, 0.2);
  border-radius: 4px;
  color: rgba(248, 237, 207, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-submit {
  margin-top: 4px;
}

.checkout-submit:disabled {
  cursor: wait;
  filter: saturate(0.75) brightness(0.9);
  transform: none;
}

.checkout-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.cart-drawer.open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  padding: 34px 28px;
  border-left: 1px solid var(--line);
  background: #0b0a08;
  box-shadow: var(--shadow);
  transform: translateX(0);
}

.close-cart {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
  font-size: 24px;
}

.cart-panel h2 {
  padding-right: 42px;
  font-size: 42px;
}

.cart-items {
  display: grid;
  gap: 14px;
  min-height: 210px;
  margin: 24px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-line strong {
  color: var(--ivory);
}

.cart-line small {
  color: var(--muted);
}

.empty-cart {
  color: var(--muted);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 22px;
}

.purchase-pop {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 78;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(360px, calc(100vw - 56px));
  padding: 14px 16px;
  border: 1px solid rgba(216, 171, 85, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 171, 85, 0.15), transparent 42%),
    rgba(8, 7, 5, 0.96);
  color: var(--ivory);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.58);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.purchase-pop.show {
  transform: translateY(0);
  opacity: 1;
}

.purchase-pop-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.purchase-pop strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purchase-pop small {
  color: rgba(248, 237, 207, 0.72);
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 79;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 171, 85, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.2), transparent 58%),
    rgba(8, 7, 5, 0.94);
  color: var(--gold-2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--gold-2);
  outline: 0;
}

.back-to-top span {
  font-size: 22px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  min-width: 220px;
  padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(14, 12, 9, 0.96);
  color: var(--gold-2);
  text-align: center;
  box-shadow: var(--shadow);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 24px;
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 54px 28px 42px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 48%),
      var(--hero-image, url("assets/hero-ritual-box.webp"));
    background-size: cover;
    background-position: 58% center;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-intents {
    max-width: 660px;
  }

  .product-stage {
    margin: 0;
    width: 100%;
    aspect-ratio: 1537 / 1023;
  }

  .power-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-heading,
  .ingredient-board {
    grid-template-columns: 1fr;
  }

  .ingredient-object {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ingredient-object img {
    min-height: 420px;
  }

  .quality-proof-head,
  .quality-proof-grid {
    grid-template-columns: 1fr;
  }

  .quality-proof-main {
    min-height: 0;
  }

  .quality-proof-main img {
    min-height: 360px;
  }

  .standard-heading,
  .standard-layout {
    grid-template-columns: 1fr;
  }

  .standard-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standard-checks article:nth-child(2n) {
    border-right: 0;
  }

  .standard-checks article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(216, 171, 85, 0.24);
  }

  .ingredient-editorial .ingredient-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 34px;
  }

  .ingredient-editorial .ingredient-heading h2 {
    max-width: 760px;
    font-size: clamp(48px, 8vw, 76px);
  }

  .ingredient-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-line article:nth-child(2n) {
    border-right: 0;
  }

  .ingredient-line article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(216, 171, 85, 0.26);
  }

  .box-section {
    grid-template-columns: 1fr;
  }

  .gallery {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-main img {
    height: min(62vw, 620px);
    min-height: 420px;
  }

  .purchase-panel {
    width: min(680px, calc(100% - 56px));
  }

  .site-footer {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 0.5fr));
  }

  .subpage-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card:nth-child(3) {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  :where(#ritual, #ingredients, #reviews, #box, #faq) {
    scroll-margin-top: 98px;
  }

  #home {
    scroll-margin-top: 0;
  }

  .shipping-bar {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
    text-align: center;
  }

  .site-header {
    top: 30px;
    grid-template-columns: auto auto auto;
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    top: 94px;
    left: 0;
    right: 0;
    display: none;
    grid-auto-rows: minmax(54px, auto);
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.16);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .currency-pill {
    min-height: 34px;
    padding: 0 9px;
    font-size: 12px;
  }

  .cart-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 34px;
  }

  .hero::before {
    inset: -12%;
    background-position: 60% center;
    transform-origin: 62% 42%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%),
      repeating-linear-gradient(135deg, rgba(216, 171, 85, 0.034) 0 1px, transparent 1px 16px);
  }

  .hero-motion {
    inset: -24%;
    opacity: 0.5;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-intents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    max-width: 420px;
    margin-bottom: 28px;
  }

  .intent-orb {
    width: 64px;
    height: 64px;
  }

  .intent-name {
    font-size: 25px;
  }

  .hero-intents strong {
    font-size: 10px;
  }

  .gold-button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 34px;
  }

  .product-stage {
    aspect-ratio: 1.18;
  }

  .powers,
  .ingredients,
  .reviews,
  .faq {
    padding: 54px 18px;
  }

  .power-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .ingredient-heading,
  .ingredient-list,
  .ingredient-process {
    grid-template-columns: 1fr;
  }

  .ingredient-heading {
    gap: 8px;
  }

  .ingredient-object,
  .ingredient-object img {
    min-height: 340px;
  }

  .ingredient-list article,
  .ingredient-list article:nth-child(2n),
  .ingredient-list article:nth-last-child(-n + 2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.22);
  }

  .ingredient-list article:last-child {
    border-bottom: 0;
  }

  .ingredient-process div {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.22);
  }

  .ingredient-process div:last-child {
    border-bottom: 0;
  }

  .quality-proof-head,
  .quality-proof-list,
  .quality-proof-metrics {
    grid-template-columns: 1fr;
  }

  .quality-proof-list article {
    min-height: 220px;
  }

  .quality-proof-main img {
    min-height: 300px;
  }

  .quality-proof-metrics div,
  .quality-proof-metrics div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.22);
  }

  .quality-proof-metrics div:last-child {
    border-bottom: 0;
  }

  .standard-heading,
  .standard-checks,
  .standard-visuals {
    grid-template-columns: 1fr;
  }

  .standard-copy {
    padding: 22px;
  }

  .standard-checks article,
  .standard-checks article:nth-child(2n),
  .standard-checks article:nth-child(-n + 2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.24);
  }

  .standard-checks article:last-child {
    border-bottom: 0;
  }

  .standard-checks span {
    margin-bottom: 34px;
  }

  .ingredient-editorial .ingredient-heading {
    gap: 18px;
    padding-bottom: 28px;
  }

  .ingredient-editorial .ingredient-heading h2 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .ingredient-editorial .ingredient-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .ingredient-line {
    grid-template-columns: 1fr;
  }

  .ingredient-line article,
  .ingredient-line article:first-child,
  .ingredient-line article:nth-child(2n),
  .ingredient-line article:nth-child(-n + 2) {
    min-height: 170px;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 171, 85, 0.26);
  }

  .ingredient-line article:last-child {
    border-bottom: 0;
  }

  .ingredient-line span {
    margin-bottom: 26px;
  }

  .ingredient-caption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0 0;
  }

  .power-card {
    min-height: 470px;
  }

  .intent-panel {
    grid-template-columns: 1fr;
  }

  .intent-panel > img,
  .intent-bottom img {
    width: 100%;
    max-height: 360px;
  }

  .gallery {
    padding: 18px;
  }

  .gallery-main img {
    min-height: 360px;
    height: 82vw;
  }

  .thumb-row {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .thumb {
    min-height: 68px;
  }

  .purchase-panel {
    width: calc(100% - 36px);
    padding: 38px 0;
  }

  .radio-card {
    grid-template-columns: auto 1fr auto;
    grid-auto-rows: auto;
    padding: 10px 16px;
  }

  .radio-card strong {
    grid-column: 3;
    grid-row: 1;
  }

  .radio-card em {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
  }

  .service-strip {
    padding: 8px 18px;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }

  .review-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .review-track {
    grid-template-columns: 1fr;
  }

  .review-card:nth-child(n+2) {
    display: none;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
  }

  .review-arrow svg {
    width: 20px;
    height: 20px;
  }

  .review-card {
    min-height: 330px;
    padding: 22px 18px;
  }

  .review-stars {
    font-size: 14px;
  }

  .review-copy {
    font-size: 15px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 18px;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .subpage-hero {
    min-height: 430px;
    padding: 76px 18px 54px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.62)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.52)),
      url("assets/hero-ritual-box.webp");
    background-size: cover;
    background-position: 62% center;
  }

  .subpage-section {
    padding: 54px 18px;
  }

  .direction-grid {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 24px 18px;
  }

  .member-grid,
  .member-facts {
    grid-template-columns: 1fr;
  }

  .member-profile,
  .member-order-head,
  .member-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seal-mark {
    width: 78px;
    height: 78px;
    font-size: 40px;
  }

  .logo-seal {
    width: 94px;
    height: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-motion {
    animation: none;
  }
}



/* Rebuilt About page */
.about-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(216, 171, 85, 0.12), transparent 32%),
    radial-gradient(circle at 14% 24%, rgba(124, 25, 19, 0.12), transparent 34%),
    #050504;
}

.about-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 128px 48px 92px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.74) 0%, rgba(4, 3, 2, 0.56) 42%, rgba(3, 3, 2, 0.24) 100%),
    var(--about-hero-image, url("assets/about-plaque.webp"));
  background-size: cover;
  background-position: center 34%;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(224, 172, 64, 0.06), transparent 34%),
    repeating-linear-gradient(135deg, rgba(216, 171, 85, 0.012) 0 1px, transparent 1px 24px);
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.about-hero h1 {
  margin-bottom: 24px;
  color: var(--gold-2);
  font-size: clamp(50px, 7vw, 92px);
}

.about-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(248, 237, 207, 0.86);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.75;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: 54px;
  align-items: center;
  padding: 74px 0 66px;
}

.about-intro-copy h2,
.about-section-heading h2,
.about-story-panel h2,
.about-translation h2,
.about-philosophy h2 {
  color: var(--gold-2);
  font-size: clamp(32px, 4.6vw, 58px);
}

.about-intro-copy p,
.about-section-heading p,
.about-story-panel p,
.about-steps p {
  color: rgba(248, 237, 207, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(216, 171, 85, 0.64);
}

.about-intro-visual {
  height: 420px;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #0b0907;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.about-intro-visual img,
.temple-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 4px;
}

.about-principles article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.principle-seal,
.direction-kanji {
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: var(--kai);
}

.principle-seal {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 171, 85, 0.64);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 171, 85, 0.14), rgba(0, 0, 0, 0.36));
  font-size: 24px;
  box-shadow: 0 0 24px rgba(216, 171, 85, 0.12);
}

.about-principles strong {
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.about-temple {
  padding: 82px 0;
}

.about-section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.temple-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 22px;
}

.temple-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 8px;
  background: #0b0907;
}

.temple-feature {
  grid-row: span 2;
  min-height: 620px;
}

.temple-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(3, 2, 1, 0.82) 100%),
    radial-gradient(circle at 60% 70%, rgba(165, 38, 31, 0.18), transparent 38%);
}

.temple-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 24px;
}

.temple-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.temple-caption h3 {
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: clamp(24px, 3vw, 36px);
}

.temple-caption p {
  max-width: 640px;
  color: rgba(248, 237, 207, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-story-panel {
  min-height: 540px;
  display: grid;
  align-content: center;
  padding: 72px 54px;
  background:
    radial-gradient(circle at 16% 20%, rgba(216, 171, 85, 0.1), transparent 38%),
    #070605;
}

.about-story-panel.image-panel {
  height: 540px;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.about-story-panel.image-panel img {
  object-position: center top;
}

.about-translation {
  padding: 86px 0;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-steps article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 85, 0.1), transparent 48%),
    rgba(12, 10, 8, 0.9);
}

.about-steps span {
  display: block;
  margin-bottom: 30px;
  color: rgba(216, 171, 85, 0.72);
  font-family: var(--serif);
  font-size: 28px;
}

.about-steps h3 {
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: 28px;
}

.about-directions-section .direction-icon {
  width: 74px;
  height: 74px;
}

.direction-kanji {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(216, 171, 85, 0.58);
  border-radius: 50%;
  font-size: 31px;
}

.about-philosophy {
  min-height: 360px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  padding: 84px 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62)),
    url("assets/about-statues.webp");
  background-size: cover;
  background-position: center;
}

.about-philosophy h2 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--ivory);
}

@media (max-width: 980px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  .checkout-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .temple-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .temple-feature {
    grid-row: auto;
    min-height: 520px;
  }

  .about-story-panel.image-panel {
    min-height: 480px;
    height: 480px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .checkout-hero {
    min-height: 360px;
    padding: 118px 18px 44px;
  }

  .checkout-shell {
    width: min(100% - 28px, 1180px);
    padding: 42px 0 62px;
  }

  .checkout-grid.two,
  .checkout-grid.three,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    padding: 22px;
  }

  .checkout-panel-head {
    gap: 12px;
  }

  .checkout-panel-head > span {
    width: 36px;
    height: 36px;
  }

  .about-hero {
    min-height: 560px;
    padding: 118px 24px 70px;
    background-position: center;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .about-intro,
  .about-temple,
  .about-translation {
    padding: 58px 0;
  }

  .about-intro-visual,
  .temple-feature,
  .temple-card,
  .about-story-panel.image-panel {
    min-height: 390px;
  }

  .about-story-panel.image-panel {
    height: 390px;
  }

  .about-intro-visual {
    height: 390px;
  }

  .about-principles {
    gap: 18px 10px;
  }

  .temple-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .about-story-panel {
    min-height: auto;
    padding: 58px 24px;
  }
}

/* Hero trust badge refinement */
.hero .trust-badges {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 20px 28px;
  max-width: 900px;
}

.hero .trust-badges div {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
}

.hero .trust-badges strong {
  max-width: 140px;
  color: var(--gold-2);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .trust-badges small {
  color: rgba(248, 237, 207, 0.72);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .hero .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .hero .trust-badges div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hero .trust-badges strong {
    font-size: 10px;
  }

  .hero .trust-badges small {
    font-size: 14px;
  }
}
/* End rebuilt About page */

/* Frontend typography normalization */
body {
  font-size: 16px;
  line-height: 1.6;
}

.brand {
  font-size: 28px;
}

.main-nav,
.header-cta,
.currency-pill,
.cart-button,
.gold-button,
.option-stack legend,
.limited-note span,
.secure-note,
.review-verified,
.ingredient-caption span,
.standard-actions span,
.quality-proof-metrics span {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.13em;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 680px;
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.08;
}

.lead {
  max-width: 570px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.58;
}

.powers .section-title h2,
.review-heading h2,
.faq .section-title h2,
.purchase-panel h2 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
}

.powers .section-title p,
.section-title p,
.ingredient-editorial .ingredient-heading p:not(.eyebrow),
.standard-copy p,
.quality-proof-head > p:last-child,
.limited-note,
.intent-panel p,
.faq-list p,
details p {
  font-size: 16px;
  line-height: 1.65;
}

.ingredient-editorial .ingredient-heading h2 {
  max-width: 780px;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 0.9;
}

.ingredient-line h3,
.power-card strong,
.review-card blockquote,
.quality-proof-main h3,
.quality-proof-list h3,
.standard-checks h3 {
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
}

.ingredient-line p,
.power-card small,
.review-copy,
.service-strip span,
.trust-badges small,
.radio-card span,
.check-list,
.member-muted,
.limited-note {
  font-size: 15px;
  line-height: 1.6;
}

.hanzi {
  font-size: clamp(28px, 2.2vw, 36px);
}

summary {
  font-size: 17px;
  line-height: 1.35;
}

.review-community {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.28;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .ingredient-editorial .ingredient-heading h2 {
    font-size: clamp(46px, 8vw, 70px);
  }

  .powers .section-title h2,
  .review-heading h2,
  .faq .section-title h2,
  .purchase-panel h2 {
    font-size: clamp(32px, 5vw, 44px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 24px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
  }

  h2,
  .powers .section-title h2,
  .review-heading h2,
  .faq .section-title h2,
  .purchase-panel h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.04;
  }

  h3,
  .ingredient-line h3,
  .power-card strong,
  .review-card blockquote,
  .quality-proof-main h3,
  .quality-proof-list h3,
  .standard-checks h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .ingredient-editorial .ingredient-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.94;
  }

  .lead,
  .powers .section-title p,
  .section-title p,
  .ingredient-editorial .ingredient-heading p:not(.eyebrow),
  .standard-copy p,
  .quality-proof-head > p:last-child,
  .limited-note,
  .intent-panel p,
  .faq-list p,
  details p {
    font-size: 15px;
    line-height: 1.6;
  }

  .eyebrow,
  .main-nav,
  .header-cta,
  .currency-pill,
  .cart-button,
  .gold-button,
  .option-stack legend,
  .limited-note span,
  .secure-note,
  .review-verified,
  .ingredient-caption span {
    font-size: 11px;
  }
}

/* Final override: hero trust badge refinement */
.hero .trust-badges {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 20px 28px;
  max-width: 900px;
}

.hero .trust-badges div {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
}

.hero .trust-badges strong {
  max-width: 140px;
  color: var(--gold-2);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .trust-badges small {
  color: rgba(248, 237, 207, 0.72);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .hero .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .hero .trust-badges div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hero .trust-badges strong {
    font-size: 10px;
  }

  .hero .trust-badges small {
    font-size: 14px;
  }
}

.discount-code-panel {
  display: grid;
  gap: 14px;
  margin: 8px 0 20px;
  padding: 18px;
  border: 1px solid rgba(240, 206, 131, 0.62);
  border-radius: 8px;
  background: radial-gradient(circle at 10% 0%, rgba(240, 206, 131, 0.2), transparent 42%), rgba(216, 171, 85, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.discount-code-panel strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
}

.discount-code-panel label,
.checkout-discount-panel label {
  display: grid;
  gap: 8px;
}

.discount-code-panel label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discount-code-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.discount-code-control input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(216, 171, 85, 0.4);
  border-radius: 4px;
  background: rgba(4, 4, 4, 0.58);
  color: var(--ivory);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discount-code-control button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(240, 206, 131, 0.72);
  border-radius: 4px;
  background: linear-gradient(180deg, #f5d681, #bd8432);
  color: #120c04;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.discount-code-panel p[data-discount-message],
.checkout-discount-message {
  margin: 0;
  color: rgba(248, 237, 207, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-row strong {
  color: var(--gold-2);
}

.checkout-discount-panel {
  border-color: rgba(240, 206, 131, 0.62);
  background: radial-gradient(circle at 100% 0%, rgba(240, 206, 131, 0.16), transparent 36%), rgba(12, 11, 9, 0.94);
}

@media (max-width: 640px) {
  .top-offer-track { animation-duration: 18s; }
  .top-offer-track span { padding: 0 24px; }
  .discount-code-control { grid-template-columns: 1fr; }
}


.quantity-control {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.quantity-control button,
.quantity-control span {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 171, 85, 0.36);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.52);
  color: var(--gold-2);
  font-weight: 900;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.quantity-control .text-remove,
.text-remove {
  min-width: auto;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(248, 237, 207, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-line-with-controls {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: start;
}

.cart-line-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.checkout-item-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 171, 85, 0.18);
  color: rgba(248, 237, 207, 0.78);
}

.checkout-item-control > div:first-child {
  display: grid;
  gap: 4px;
}

.checkout-item-control span:first-child {
  color: var(--muted);
}

.checkout-item-control strong {
  color: var(--ivory);
}

.checkout-item-control.removed {
  opacity: 0.45;
}

.checkout-empty-message {
  margin: 14px 0 0;
  color: var(--gold-2);
  font-weight: 800;
}

.discount-row-empty {
  display: none !important;
}

@media (max-width: 560px) {
  .cart-line-with-controls,
  .cart-line {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .cart-line > strong:last-child {
    grid-column: 2;
  }

  .checkout-item-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-control {
    grid-auto-flow: column;
    max-width: 100%;
  }
}


.seo-page {
  background: #050608;
  color: var(--ivory);
}

.seo-main {
  padding: calc(var(--header-height) + var(--topbar-height) + 28px) clamp(18px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 36, 26, 0.16), transparent 24%),
    radial-gradient(circle at 10% 18%, rgba(216, 171, 85, 0.12), transparent 28%),
    linear-gradient(135deg, #050608 0%, #08111c 44%, #050504 100%);
}

.seo-breadcrumb {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(248, 237, 207, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-breadcrumb a {
  color: var(--gold-2);
}

.seo-hero,
.seo-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.seo-hero {
  padding: clamp(54px, 8vw, 110px) 0 clamp(34px, 5vw, 62px);
  border-bottom: 1px solid rgba(216, 171, 85, 0.24);
}

.seo-hero h1 {
  max-width: 900px;
  margin: 12px 0 20px;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.9;
  color: var(--ivory);
}

.seo-definition,
.seo-context-line {
  max-width: 760px;
  color: rgba(248, 237, 207, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.seo-context-line {
  margin-top: 16px;
  max-width: 620px;
  font-size: clamp(14px, 1.4vw, 17px);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(34px, 5vw, 62px);
}

.seo-article {
  display: grid;
  gap: 32px;
}

.seo-article section,
.seo-side-card,
.limited-production-note {
  border: 1px solid rgba(216, 171, 85, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 171, 85, 0.08), transparent 34%),
    rgba(5, 6, 8, 0.72);
}

.seo-article section {
  padding: clamp(22px, 4vw, 38px);
}

.seo-article h2,
.seo-side-card h2 {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: clamp(28px, 4vw, 46px);
}

.seo-article h3 {
  margin: 20px 0 8px;
  color: var(--ivory);
  font-size: clamp(20px, 2.4vw, 28px);
}

.seo-article p,
.seo-article li,
.seo-side-card li {
  color: rgba(248, 237, 207, 0.78);
  line-height: 1.72;
}

.seo-article ul,
.seo-article ol,
.seo-side-card ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.seo-intention-list strong {
  color: var(--ivory);
  letter-spacing: 0.06em;
}

.seo-steps {
  display: grid;
  gap: 14px;
  padding-left: 0 !important;
  list-style: none;
  counter-reset: seo-step;
}

.seo-steps li {
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid rgba(216, 171, 85, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  counter-increment: seo-step;
}

.seo-steps li::before {
  content: counter(seo-step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 20px;
  color: #c83a2f;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-link-grid a,
.seo-side-card a {
  border: 1px solid rgba(216, 171, 85, 0.32);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-side-card {
  position: sticky;
  top: calc(var(--header-height) + var(--topbar-height) + 24px);
  padding: 24px;
}

.seo-final-cta {
  text-align: center;
}

.limited-production-note {
  padding: 18px;
  margin: 0 0 18px;
}

.limited-production-note p:last-child,
.second-box-note {
  margin: 0;
  color: rgba(248, 237, 207, 0.78);
  line-height: 1.6;
}

.second-box-note {
  margin-top: 12px;
  text-align: center;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .seo-side-card {
    position: static;
  }

  .seo-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 2026-05-08 Mobile density pass: keep the luxury feel while reducing long scrolling. */
@media (max-width: 760px) {
  :root {
    --topbar-height: 28px;
    --header-height: 58px;
  }

  .shipping-bar {
    min-height: 28px;
    font-size: 9px;
  }

  .site-header {
    top: 28px;
    min-height: 58px;
    padding: 0 14px;
  }

  .main-nav {
    top: 86px;
    grid-auto-rows: minmax(46px, auto);
    padding: 8px 18px 14px;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .hero {
    padding: 28px 16px 24px;
  }

  .hero-copy {
    gap: 0;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 0.98;
  }

  .lead,
  .seo-context-line {
    max-width: 33rem;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-intents {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin: 18px 0;
  }

  .hero-intents a {
    gap: 5px;
  }

  .intent-orb {
    width: 48px;
    height: 48px;
  }

  .intent-name {
    font-size: 17px;
    line-height: 0.92;
  }

  .hero-intents strong {
    font-size: 8px;
    line-height: 1.1;
  }

  .gold-button {
    min-height: 48px;
  }

  .hero-shipping-note {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero .trust-badges div {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 2px 9px;
  }

  .badge-icon {
    width: 30px;
    height: 30px;
  }

  .hero .trust-badges strong {
    font-size: 9px;
    line-height: 1.25;
  }

  .hero .trust-badges small {
    font-size: 12px;
    line-height: 1.25;
  }

  .powers,
  .ingredients,
  .reviews,
  .faq {
    padding: 36px 16px;
  }

  .section-title,
  .section-title.centered,
  .review-heading {
    margin-bottom: 24px;
  }

  .powers .section-title h2,
  .review-heading h2,
  .faq .section-title h2,
  .purchase-panel h2,
  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .powers .section-title p,
  .section-title p {
    font-size: 14px;
    line-height: 1.45;
  }

  .power-grid {
    gap: 12px;
  }

  .power-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .power-card img {
    width: min(220px, 70vw);
    height: auto;
    aspect-ratio: 1;
    margin: 10px auto 14px;
  }

  .hanzi {
    font-size: 24px;
  }

  .power-card strong {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .power-card small {
    max-width: 240px;
    margin: 8px auto 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .power-seal {
    width: 54px;
    height: 54px;
    margin-top: 12px;
  }

  .ingredient-editorial .ingredient-heading {
    gap: 12px;
    padding-bottom: 18px;
  }

  .ingredient-editorial .ingredient-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .ingredient-editorial .ingredient-heading p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.48;
  }

  .ingredient-line article,
  .ingredient-line article:first-child,
  .ingredient-line article:nth-child(2n),
  .ingredient-line article:nth-child(-n + 2) {
    min-height: 0;
    padding: 18px 0;
  }

  .ingredient-line span {
    margin-bottom: 14px;
  }

  .ingredient-line h3 {
    font-size: 22px;
  }

  .ingredient-line p {
    font-size: 14px;
  }

  .ingredient-caption {
    padding-top: 16px;
  }

  .box-section {
    padding-top: 0;
  }

  .gallery {
    padding: 12px;
  }

  .gallery-main img {
    min-height: 240px;
    height: 62vw;
  }

  .thumb-row {
    gap: 8px;
  }

  .thumb {
    min-height: 52px;
  }

  .purchase-panel {
    width: calc(100% - 28px);
    padding: 28px 0;
  }

  .limited-note,
  .price-proof,
  .offer-proof {
    margin-bottom: 16px;
    padding: 13px 14px;
  }

  .check-list {
    gap: 9px;
    margin-bottom: 18px;
  }

  .radio-card {
    min-height: 54px;
    padding: 8px 12px;
  }

  .order-summary {
    margin: 16px 0;
    padding: 14px 0;
  }

  .order-contact {
    margin-top: 14px;
    padding: 12px;
  }

  .secure-note {
    margin-top: 10px;
    font-size: 11px;
  }

  .review-shell {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .review-arrow {
    width: 34px;
    height: 34px;
  }

  .review-card {
    min-height: 260px;
    padding: 18px 16px;
  }

  .review-copy {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-community {
    font-size: 20px;
  }

  .faq-list {
    gap: 10px;
  }

  details {
    padding: 0 16px;
  }

  summary {
    min-height: 54px;
    font-size: 15px;
  }

  .faq-list p,
  details p {
    font-size: 14px;
    line-height: 1.5;
  }

  .site-footer {
    gap: 18px;
    padding: 28px 16px;
  }

  .site-footer p {
    max-width: none;
    font-size: 14px;
  }

  .site-footer div:not(:first-child):not(.seal-mark) {
    gap: 7px;
  }

  .logo-seal {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 420px) {
  .hero-intents {
    gap: 7px 5px;
  }

  .intent-orb {
    width: 42px;
    height: 42px;
  }

  .intent-name {
    font-size: 15px;
  }

  .hero-intents strong {
    font-size: 7px;
  }

  .power-card img {
    width: min(190px, 68vw);
  }

  .gallery-main img {
    min-height: 220px;
  }
}

.mobile-member-link {
  display: none;
}

.hosted-payment-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(216, 171, 85, 0.34);
  border-radius: 8px;
  background: rgba(216, 171, 85, 0.07);
}

.hosted-payment-note strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.hosted-payment-note p {
  margin: 8px 0 0;
  color: rgba(248, 237, 207, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.member-order,
.member-order *,
.member-facts span,
.member-facts b,
.member-items p,
.member-items span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 760px) {
  .mobile-member-link {
    display: block;
  }

  .member-orders {
    width: 100%;
    overflow: hidden;
  }

  .member-order {
    padding: 16px 14px;
  }

  .member-order-head strong {
    font-size: 19px;
    line-height: 1.15;
  }

  .member-order-head span {
    align-self: flex-start;
  }

  .member-facts {
    gap: 8px;
  }
}
