/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0A;
  color: #EDEAE4;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ============ TOKENS ============ */
:root {
  --gold-bright: #FBC609;       /* logo brand yellow */
  --gold: #C8A352;              /* luxury muted gold (accents) */
  --gold-deep: #9A7F4F;
  --black: #0A0A0A;
  --black-2: #141414;
  --black-3: #1A1A1A;
  --cream: #F4F0E6;
  --cream-2: #E8E2D2;
  --text-on-dark: #EDEAE4;
  --text-on-cream: #1A1A1A;
  --muted-on-dark: #9A9388;
  --muted-on-cream: #555;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --display: 'Anton', 'Archivo Black', 'Inter', sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ LOADING SCREEN ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__logo {
  font-family: var(--display);
  color: var(--gold-bright);
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 90vw;
}
.loader__logo span:not(.loader__break) {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLetter 0.5s var(--ease-spring) forwards;
  animation-delay: calc(var(--i) * 0.05s);
}
.loader__break { flex-basis: 100%; height: 6px; }
@keyframes loaderLetter {
  to { opacity: 1; transform: translateY(0); }
}
.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(251, 198, 9, 0.15);
  overflow: hidden;
  border-radius: 2px;
}
.loader__bar span {
  display: block;
  height: 100%;
  background: var(--gold-bright);
  transform: translateX(-100%);
  animation: loaderBar 1.4s var(--ease-out) forwards;
  animation-delay: 0.6s;
}
@keyframes loaderBar {
  to { transform: translateX(0); }
}

body.is-loading { overflow: hidden; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--scroll-w, 0%);
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  z-index: 200;
  pointer-events: none;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(251, 198, 9, 0.4);
}

/* ============ CUSTOM CURSOR (desktop only) ============ */
.cursor, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  transition: transform 0.15s var(--ease-out), opacity 0.2s, width 0.2s, height 0.2s;
  will-change: transform;
  display: none;
}
.cursor {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(251, 198, 9, 0.5);
  transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.is-hover { width: 14px; height: 14px; }
.cursor-ring.is-hover { width: 64px; height: 64px; border-color: var(--gold-bright); }
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-ring { display: block; }
  body, body * { cursor: none !important; }
  body input, body textarea { cursor: text !important; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(200, 163, 82, 0.1);
  transform: translateY(-100%);
  animation: navSlide 0.6s var(--ease) 1.8s forwards;
}
@keyframes navSlide { to { transform: translateY(0); } }
.nav__logo {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  font-weight: 400;
  transition: color 0.2s, transform 0.3s var(--ease-spring);
}
.nav__logo:hover { transform: scale(1.04); }
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-on-dark);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  border: 1.5px solid var(--gold-bright);
  padding: 10px 18px;
  color: var(--gold-bright) !important;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--gold-bright);
  color: var(--black) !important;
  box-shadow: 0 0 24px rgba(251, 198, 9, 0.4);
}
@media (max-width: 720px) {
  .nav { padding: 14px 16px; }
  .nav__logo { font-size: 14px; letter-spacing: 0.08em; }
  .nav__links { gap: 14px; }
  .nav__links li:not(:last-child) { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 11px; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 120px 24px 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.hero__bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251, 198, 9, 0.15), transparent 70%);
  top: -10%; left: -15%;
  animation: orbFloat1 18s ease-in-out infinite;
}
.hero__bg-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 163, 82, 0.12), transparent 70%);
  bottom: -15%; right: -10%;
  animation: orbFloat2 22s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.15); }
}

.hero__inner { max-width: 920px; position: relative; z-index: 2; }

/* HERO LOGO — CSS rendered, exact brand match */
.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  font-family: var(--display);
  color: var(--gold-bright);
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-shadow: 0 0 60px rgba(251, 198, 9, 0.3);
}
.hero__logo-row {
  display: flex;
  font-size: clamp(58px, 12vw, 130px);
  letter-spacing: 0.01em;
}
.hero__logo-row span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  animation: heroLetter 0.7s var(--ease-spring) forwards;
  animation-delay: calc(1.85s + var(--d, 0s));
}
@keyframes heroLetter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* HERO HEADLINE — word reveal mask */
.hero__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 6.5vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  display: block;
}
.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin: 0 0.18em 0 0;
}
.hero__headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 0.8s var(--ease) forwards;
}
.hero__headline .word:nth-of-type(1) > span { animation-delay: 2.4s; }
.hero__headline .word:nth-of-type(2) > span { animation-delay: 2.5s; }
.hero__headline .word:nth-of-type(3) > span { animation-delay: 2.6s; }
.hero__headline .word:nth-of-type(4) > span { animation-delay: 2.7s; }
.hero__headline .word:nth-of-type(5) > span { animation-delay: 2.8s; }
.hero__headline .word:nth-of-type(6) > span { animation-delay: 2.9s; }
@keyframes wordRise { to { transform: translateY(0); } }

.hero__sub, .hero__btn, .hero__hint {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 3.5s);
}
.hero__sub { animation-delay: 3.4s; }
.hero__btn { animation-delay: 3.6s; }
.hero__hint { animation-delay: 3.9s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted-on-dark);
  letter-spacing: 0.02em;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.hero__hint {
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--muted-on-dark);
  opacity: 0.6;
}
.hero__hint::before {
  content: '↓';
  display: block;
  margin-bottom: 6px;
  animation: bounce 2.5s ease-in-out infinite;
  animation-delay: 4.5s;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

.gold { color: var(--gold); }

/* HERO CTA ROW — direct + transitional CTA (StoryBrand) */
.hero__cta-row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease) forwards;
  animation-delay: 3.6s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }

.btn--gold {
  background: var(--gold-bright);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(251, 198, 9, 0);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(251, 198, 9, 0.35);
}
.btn--dark {
  background: var(--black);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn--dark::before { background: var(--gold-bright); }
.btn--dark:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(251, 198, 9, 0.25);
}

/* GHOST BUTTON — transitional CTA (less commitment) */
.btn--ghost {
  background: transparent;
  color: var(--gold-bright);
  border-color: rgba(251, 198, 9, 0.4);
}
.btn--ghost::before { background: rgba(251, 198, 9, 0.12); }
.btn--ghost:hover {
  border-color: var(--gold-bright);
  transform: translateY(-3px);
}

/* ============ EYEBROW ============ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }

/* ============ MARQUEE STRIP ============ */
.marquee {
  background: var(--black);
  border-top: 1px solid rgba(200, 163, 82, 0.18);
  border-bottom: 1px solid rgba(200, 163, 82, 0.18);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: marquee 30s linear infinite;
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.16em;
}
.marquee__track em {
  color: var(--gold-bright);
  font-style: normal;
  font-size: 18px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in-view [data-stagger] {
  animation: cardRise 0.8s var(--ease) forwards;
  animation-delay: calc(0.15s * var(--s, 0));
}
[data-stagger] { opacity: 0; transform: translateY(30px); }
@keyframes cardRise {
  to { opacity: 1; transform: translateY(0); }
}

/* SPLIT-TEXT brand title */
.split-text {
  display: inline-block;
}
.reveal.in-view .split-text span {
  animation: splitLetter 0.8s var(--ease-spring) forwards;
  animation-delay: calc(0.04s * var(--i, 0));
}
.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%) rotate(8deg);
}
@keyframes splitLetter {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--black);
  padding: 110px 24px;
  border-bottom: 1px solid rgba(200, 163, 82, 0.1);
}
.manifesto__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.1;
  margin-bottom: 36px;
  max-width: 800px;
}
.manifesto__body {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted-on-dark);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 22px;
}
.manifesto__body strong { color: var(--gold-bright); font-weight: 700; }
.manifesto__body em { color: var(--text-on-dark); font-style: italic; }
.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(200, 163, 82, 0.15);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.stat__small { font-size: 0.4em; color: var(--gold); margin-left: 4px; }
.stat__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-on-dark);
  font-weight: 700;
  text-transform: uppercase;
}

/* ============ COLLECTION ============ */
.collection {
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.collection--cream { background: var(--cream); color: var(--text-on-cream); }
.collection--dark { background: var(--black); color: var(--text-on-dark); }
.collection__head {
  max-width: 880px;
  margin: 0 auto 70px;
  text-align: center;
}
.collection__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 110px);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin: 12px 0 22px;
}
.collection--cream .collection__brand { color: var(--text-on-cream); }
.collection--dark .collection__brand { color: var(--text-on-dark); }
.collection__tagline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  font-style: italic;
  margin-bottom: 22px;
  color: var(--gold);
}
.collection__desc {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.collection--cream .collection__desc { color: var(--muted-on-cream); }
.collection--dark .collection__desc { color: var(--muted-on-dark); }

/* Products grid */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
@media (max-width: 960px) {
  .products { grid-template-columns: 1fr; gap: 40px; max-width: 460px; }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.5s var(--ease);
  --s: 0;
}
.product[data-stagger="0"] { --s: 0; }
.product[data-stagger="1"] { --s: 1; }
.product[data-stagger="2"] { --s: 2; }
.collection--cream .product {
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
}
.collection--dark .product {
  background: linear-gradient(180deg, rgba(200,163,82,0.04) 0%, transparent 100%);
  border: 1px solid rgba(200, 163, 82, 0.12);
  border-radius: 4px;
}
.product:hover { transform: translateY(-8px); }
.product:hover .product__img-wrap img { transform: scale(1.06) rotate(-2deg); }

.product__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.collection--cream .product__img-wrap {
  background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
}
.collection--dark .product__img-wrap {
  background: linear-gradient(180deg, #1F1A12 0%, #0F0D08 100%);
}
.product__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(251, 198, 9, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.product:hover .product__img-wrap::after { opacity: 1; }
.product__img-wrap img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
  animation: bottleFloat 5s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.product__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.product__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 20px;
}
.product__notes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
  width: 100%;
  max-width: 320px;
}
.product__notes li {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 163, 82, 0.18);
  text-align: center;
}
.product__notes li:last-child { border-bottom: none; }
.product__notes strong {
  display: inline-block;
  width: 56px;
  color: var(--gold);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: left;
}
.product__use {
  font-size: 12px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.collection--cream .product__use { color: var(--muted-on-cream); }
.collection--dark .product__use { color: var(--muted-on-dark); }

/* Collection CTA */
.collection__cta { text-align: center; margin-top: 40px; }
.collection__cta-hint {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.collection--cream .collection__cta-hint { color: var(--muted-on-cream); }
.collection--dark .collection__cta-hint { color: var(--muted-on-dark); }

/* ============ WHY ============ */
.why {
  background: var(--black-2);
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 198, 9, 0.06), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}
.why__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.1;
  margin-bottom: 70px;
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
@media (max-width: 960px) { .why__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }
.why__item {
  padding: 30px 24px;
  border: 1px solid rgba(200, 163, 82, 0.18);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(200,163,82,0.04) 0%, transparent 100%);
  transition: all 0.4s var(--ease);
  --s: var(--stagger, 0);
}
.why__item[data-stagger="0"] { --s: 0; }
.why__item[data-stagger="1"] { --s: 1; }
.why__item[data-stagger="2"] { --s: 2; }
.why__item[data-stagger="3"] { --s: 3; }
.why__item:hover {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(251,198,9,0.08) 0%, rgba(200,163,82,0.02) 100%);
  transform: translateY(-4px);
}
.why__num {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  color: var(--gold-bright);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.why__t {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.why__b {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-on-dark);
}

/* ============ FINAL CTA ============ */
.cta-final {
  padding: 130px 24px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 198, 9, 0.1), transparent 60%);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.cta-final__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-final__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted-on-dark);
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 800px) { .cta-final__grid { grid-template-columns: 1fr; } }
.cta-card {
  display: block;
  padding: 36px 30px;
  border: 1px solid rgba(200, 163, 82, 0.25);
  border-radius: 4px;
  background: var(--black-2);
  text-align: left;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  --s: var(--stagger, 0);
}
.cta-card[data-stagger="0"] { --s: 0; }
.cta-card[data-stagger="1"] { --s: 1; }
.cta-card[data-stagger="2"] { --s: 2; }
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 35%, rgba(251, 198, 9, 0.15) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.cta-card:hover::before { transform: translateX(50%); }
.cta-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(251, 198, 9, 0.18);
  background: linear-gradient(180deg, #1A1610 0%, var(--black-2) 100%);
}
.cta-card__num {
  font-family: var(--display);
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.cta-card__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  margin: 14px 0 8px;
  transition: color 0.3s;
}
.cta-card:hover .cta-card__brand { color: var(--gold-bright); }
.cta-card__desc {
  font-size: 13px;
  color: var(--muted-on-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.cta-card__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-bright);
  padding-bottom: 4px;
  transition: letter-spacing 0.3s;
}
.cta-card:hover .cta-card__link { letter-spacing: 0.3em; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 60px 24px 36px;
  border-top: 1px solid rgba(200, 163, 82, 0.15);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__logo {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.footer__tag {
  font-size: 14px;
  color: var(--muted-on-dark);
  font-style: italic;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  transition: color 0.2s, transform 0.3s;
}
.footer__links a:hover { color: var(--gold-bright); transform: translateX(-4px); }
@media (max-width: 540px) { .footer__links { align-items: flex-start; } }
.footer__copy {
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 163, 82, 0.1);
}

/* ============ PROBLEM SECTION (SB7: Has a Problem — 3 layers) ============ */
.problem {
  background: var(--black);
  padding: 110px 24px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(200, 163, 82, 0.1);
}
.problem__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.15;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.problem__card {
  padding: 36px 28px;
  border: 1px solid rgba(200, 163, 82, 0.18);
  background: linear-gradient(180deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.3) 100%);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  --s: var(--stagger, 0);
}
.problem__card[data-stagger="0"] { --s: 0; }
.problem__card[data-stagger="1"] { --s: 1; }
.problem__card[data-stagger="2"] { --s: 2; }
.problem__card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(251,198,9,0.04) 0%, rgba(20,20,20,0.4) 100%);
}
.problem__num {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.problem__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.problem__t {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-on-dark);
}
.problem__b {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-on-dark);
}

/* ============ GUIDE SECTION (SB7: Meets a Guide — empathy + authority) ============ */
.guide {
  background: var(--black-2);
  padding: 110px 24px;
  border-bottom: 1px solid rgba(200, 163, 82, 0.1);
}
.guide__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 5.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
}
.guide__body {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted-on-dark);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 22px;
}
.guide__body strong { color: var(--gold-bright); font-weight: 700; }
.guide__body em { color: var(--text-on-dark); font-style: italic; }
.guide__body--accent {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-on-dark);
  border-left: 3px solid var(--gold-bright);
  padding-left: 22px;
  margin-top: 36px;
  line-height: 1.45;
}
.guide__body--accent em {
  color: var(--gold-bright);
  font-style: italic;
}
.guide__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(200, 163, 82, 0.15);
}

/* ============ PLAN SECTION (SB7: Gives Them a Plan — 3 steps) ============ */
.plan {
  background: var(--black);
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plan::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 198, 9, 0.05), transparent 70%);
  top: 50%; right: -150px;
  transform: translateY(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.plan__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.15;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1140px;
  margin: 0 auto 50px;
  text-align: left;
  position: relative;
}
.plan__step {
  padding: 40px 30px;
  background: linear-gradient(180deg, rgba(200,163,82,0.05) 0%, rgba(10,10,10,0) 100%);
  border: 1px solid rgba(200, 163, 82, 0.18);
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease);
  --s: var(--stagger, 0);
}
.plan__step[data-stagger="0"] { --s: 0; }
.plan__step[data-stagger="1"] { --s: 1; }
.plan__step[data-stagger="2"] { --s: 2; }
.plan__step:hover {
  border-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(251, 198, 9, 0.12);
}
.plan__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold-bright);
  background: rgba(251, 198, 9, 0.08);
  border: 1px solid rgba(251, 198, 9, 0.3);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.3em;
  margin-bottom: 22px;
}
.plan__t {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--text-on-dark);
}
.plan__b {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-on-dark);
}
.plan__b em {
  color: var(--gold-bright);
  font-style: italic;
}
.plan__hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted-on-dark);
  position: relative;
}
.plan__hint em {
  color: var(--gold-bright);
  font-style: italic;
}

/* ============ STAKES SECTION (SB7: Avoid Failure + Success) ============ */
.stakes {
  background: var(--black-2);
  padding: 130px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stakes__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stakes__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
  text-align: left;
}
.stakes__col {
  padding: 40px 36px;
  border-radius: 4px;
  --s: var(--stagger, 0);
}
.stakes__col[data-stagger="0"] { --s: 0; }
.stakes__col[data-stagger="1"] { --s: 1; }
.stakes__col--fail {
  background: linear-gradient(180deg, rgba(80, 30, 30, 0.18) 0%, rgba(20,20,20,0.3) 100%);
  border: 1px solid rgba(180, 60, 60, 0.18);
}
.stakes__col--win {
  background: linear-gradient(180deg, rgba(251, 198, 9, 0.06) 0%, rgba(20,20,20,0.3) 100%);
  border: 1px solid rgba(251, 198, 9, 0.25);
  box-shadow: 0 0 60px rgba(251, 198, 9, 0.05);
}
.stakes__divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,163,82,0.3), transparent);
  margin: 20px 32px;
}
.stakes__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.stakes__col--fail .stakes__label { color: #d97a7a; }
.stakes__col--win .stakes__label { color: var(--gold-bright); }
.stakes__sub {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  margin-bottom: 26px;
}
.stakes__col--fail .stakes__sub { color: #e8a5a5; }
.stakes__col--win .stakes__sub { color: var(--gold-bright); }
.stakes__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stakes__list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-on-dark);
  padding-left: 22px;
  position: relative;
}
.stakes__col--fail .stakes__list li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0;
  color: #d97a7a;
  font-weight: 700;
}
.stakes__col--win .stakes__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

/* ============ CTA-FINAL CLOSE LINE ============ */
.cta-final__close {
  margin-top: 60px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--text-on-dark);
  position: relative;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ============ FOOTER HANDLE ============ */
.footer__handle {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ============ MOBILE OVERRIDES ============ */
@media (max-width: 960px) {
  .problem__grid { grid-template-columns: 1fr; gap: 20px; max-width: 540px; }
  .plan__grid { grid-template-columns: 1fr; gap: 20px; max-width: 540px; }
  .stakes__grid { grid-template-columns: 1fr; gap: 20px; }
  .stakes__divider { display: none; }
}
@media (max-width: 720px) {
  .hero { padding: 110px 18px 50px; }
  .hero__logo { margin-bottom: 36px; }
  .hero__sub { margin-bottom: 32px; }
  .hero__hint { margin-top: 50px; font-size: 10px; letter-spacing: 0.4em; }
  .hero__cta-row { gap: 12px; }
  .manifesto, .collection, .why, .cta-final,
  .problem, .guide, .plan, .stakes { padding: 70px 18px; }
  .manifesto__stats, .guide__stats { gap: 14px; padding-top: 36px; margin-top: 40px; }
  .stat__label { font-size: 9px; letter-spacing: 0.16em; }
  .collection__head { margin-bottom: 50px; }
  .collection__cta { margin-top: 16px; }
  .why { padding: 80px 18px; }
  .why__h { margin-bottom: 50px; }
  .cta-final { padding: 90px 18px; }
  .cta-final__sub { margin-bottom: 40px; }
  .btn { padding: 16px 28px; font-size: 12px; letter-spacing: 0.18em; }
  .product__name { font-size: 22px; }
  .product__tagline { font-size: 16px; }
  .problem__card, .plan__step, .stakes__col { padding: 28px 22px; }
  .problem__h, .plan__h, .stakes__h { margin-bottom: 44px; }
  .stakes { padding: 80px 18px; }
  .guide__body--accent { padding-left: 16px; margin-top: 28px; }
  .cta-final__close { margin-top: 44px; }
}
@media (max-width: 400px) {
  .hero__logo-row { font-size: clamp(48px, 14vw, 70px); }
  .nav { padding: 12px 14px; }
  .container { padding: 0 18px; }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  [data-stagger] { opacity: 1; transform: none; }
  .hero__logo-row span,
  .hero__headline .word > span { opacity: 1; transform: none; }
  .hero__sub, .hero__btn, .hero__hint { opacity: 1; transform: none; }
}
