/* =============================================================
   LUMÉA — Premium Digital Brand
   Archetype: Glassmorphism Modern × Editorial Cream
   Palette: Ivory · Nude · Rose · Champagne Gold
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Palette */
  --ivory:      #faf7f2;
  --ivory-2:    #f4ede4;
  --ivory-3:    #ede4d8;
  --nude:       #d4c4b4;
  --rose:       #f2e4e4;
  --rose-mid:   #d4a4a4;
  --rose-deep:  #b87878;
  --gold:       #c9a96e;
  --gold-light: #e8d4a8;
  --gold-dark:  #9a7a42;
  --ink:        #1a1614;
  --ink-soft:   #3a3028;
  --ink-mute:   #7a6858;
  --lavender:   #c4b8d4;
  --mint:       #b8d4c4;
  --peach:      #d4b8a8;

  /* Glass */
  --glass:      rgba(255,255,255,0.55);
  --glass-2:    rgba(255,255,255,0.35);
  --glass-border: rgba(255,255,255,0.6);

  /* Background */
  --bg: var(--ivory);
  --bg-2: var(--ivory-2);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 10vw, 8rem);

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--serif); font-weight: 400; }
ul { list-style: none; }

::selection { background: var(--rose-mid); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--ivory);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-family: var(--sans);
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Mesh Gradient Utility
   ============================================================= */
.mesh-gradient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212,164,164,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,169,110,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(196,184,212,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(184,212,196,0.15) 0%, transparent 50%);
  filter: blur(40px);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50%  { transform: scale(1.1) rotate(5deg); opacity: 1; }
  100% { transform: scale(0.95) rotate(-3deg); opacity: 0.85; }
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.section-eyebrow-light { color: rgba(250,247,242,0.7); }

.eyebrow-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }

/* =============================================================
   5. Reveal Animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safety — prevent stuck hidden elements */
.reveal[data-split] { opacity: 1; transform: none; }

/* Stagger via data-delay */
.reveal[data-delay="0.1"] { transition-delay: 0.1s; }
.reveal[data-delay="0.15"] { transition-delay: 0.15s; }
.reveal[data-delay="0.2"] { transition-delay: 0.2s; }
.reveal[data-delay="0.25"] { transition-delay: 0.25s; }
.reveal[data-delay="0.3"] { transition-delay: 0.3s; }
.reveal[data-delay="0.35"] { transition-delay: 0.35s; }
.reveal[data-delay="0.4"] { transition-delay: 0.4s; }
.reveal[data-delay="0.5"] { transition-delay: 0.5s; }
.reveal[data-delay="0.6"] { transition-delay: 0.6s; }

/* =============================================================
   6. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 4px 20px rgba(26,22,20,0.2);
}
.btn-primary:hover { background: var(--ink-soft); box-shadow: 0 8px 32px rgba(26,22,20,0.28); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 32px rgba(201,169,110,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,22,20,0.25);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(26,22,20,0.04); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--ivory);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover { background: rgba(255,255,255,0.7); }

.btn-hero { padding: 0.9rem 2rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-xl { padding: 1.1rem 2.75rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(26,22,20,0.08), 0 4px 24px rgba(26,22,20,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-star {
  color: var(--gold);
  font-size: 0.75rem;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.cart-btn {
  position: relative;
  padding: 0.5rem;
  color: var(--ink);
  transition: color 0.2s, transform 0.2s;
}
.cart-btn:hover { color: var(--gold); transform: scale(1.1); }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-bounce);
}
.cart-count.has-items { transform: scale(1); }

.nav-cta { display: none; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(26,22,20,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.nav-mobile.is-open { max-height: 400px; }
.nav-mobile-link {
  padding: 1rem var(--gutter);
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(26,22,20,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-link:hover { color: var(--ink); padding-left: calc(var(--gutter) + 0.5rem); }

/* =============================================================
   8. CART DRAWER
   ============================================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,22,20,0.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--ivory);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -8px 0 40px rgba(26,22,20,0.12);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(26,22,20,0.08);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.cart-close {
  font-size: 1.1rem;
  color: var(--ink-mute);
  padding: 0.3rem;
  transition: color 0.2s, transform 0.2s;
}
.cart-close:hover { color: var(--ink); transform: rotate(90deg); }

.cart-items { flex: 1; padding: 1.5rem; }
.cart-empty { color: var(--ink-mute); font-size: 0.9rem; line-height: 1.7; text-align: center; margin-top: 2rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,22,20,0.06);
  animation: fadeInUp 0.3s var(--ease-out);
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.cart-item-name { font-family: var(--serif); font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); font-weight: 500; }
.cart-item-remove { margin-left: auto; color: var(--ink-mute); font-size: 1rem; padding: 0.2rem; transition: color 0.2s; flex-shrink: 0; }
.cart-item-remove:hover { color: var(--rose-deep); }

.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(26,22,20,0.08); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 1rem; }
.cart-checkout-btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.cart-note { font-size: 0.75rem; color: var(--ink-mute); text-align: center; }

/* =============================================================
   9. HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(212,164,164,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(201,169,110,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 10%, rgba(196,184,212,0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 5% 90%, rgba(184,212,196,0.2) 0%, transparent 45%),
    var(--ivory);
  filter: blur(0px);
  animation: heroMeshDrift 15s ease-in-out infinite alternate;
}
@keyframes heroMeshDrift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 2% 3%; }
}

.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-layout {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero-title-italic em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.hero-title-line {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-avatars { display: flex; }
.avatar-bubble {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-left: -8px;
}
.hero-avatars .avatar-bubble:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.82rem; color: var(--ink-mute); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26,22,20,0.15), 0 8px 24px rgba(26,22,20,0.08);
  aspect-ratio: 4/5;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-img:hover { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(212,164,164,0.08) 0%, rgba(201,169,110,0.05) 100%);
}

/* Floating cards */
.hero-float {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(26,22,20,0.08);
  white-space: nowrap;
}
.hero-float-1 { top: 10%; left: -10%; animation: floatA 4s ease-in-out infinite; }
.hero-float-2 { bottom: 20%; left: -12%; animation: floatB 5s ease-in-out infinite; }
.hero-float-3 { top: 30%; right: -12%; animation: floatC 4.5s ease-in-out infinite; }

@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes floatC { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }

.float-icon { color: var(--gold); font-size: 0.9rem; }
.float-stars { color: var(--gold); }
.float-emoji { font-size: 1rem; }
.float-label { color: var(--ink-soft); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* =============================================================
   10. STATS BAR
   ============================================================= */
.stats-bar {
  background: var(--ink);
  padding: 2.5rem var(--gutter);
  overflow: hidden;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.stat-item {
  text-align: center;
  color: var(--ivory);
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.06em;
}
.stat-divider {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.5;
}

/* =============================================================
   11. ABOUT / EMOTIONAL
   ============================================================= */
.about {
  padding: var(--section-pad) var(--gutter);
  background: var(--ivory-2);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.about-title em { font-style: italic; color: var(--rose-deep); }
.about-body p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.about-body strong { color: var(--ink); font-weight: 600; }
.about-body { margin-bottom: 2rem; }

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(26,22,20,0.14);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(26,22,20,0.25);
}
.badge-quote { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.badge-text { font-size: 0.8rem; line-height: 1.5; }

/* =============================================================
   12. QUIZ
   ============================================================= */
.quiz-section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}
.quiz-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,164,164,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.2) 0%, transparent 50%),
    var(--ivory);
  filter: blur(40px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
.quiz-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quiz-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.quiz-title em { font-style: italic; color: var(--rose-deep); }
.quiz-sub { color: var(--ink-mute); margin-bottom: 2.5rem; }

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  border-radius: 16px;
  text-align: left;
  font-size: 0.95rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
  width: 100%;
}
.quiz-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,22,20,0.1);
  background: rgba(255,255,255,0.75);
  color: var(--ink);
}
.quiz-option.is-selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,22,20,0.2);
}
.quiz-option-icon { font-size: 1.4rem; flex-shrink: 0; }
.quiz-option-text { flex: 1; font-weight: 400; }
.quiz-option-badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.quiz-option--star {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.quiz-option--star:hover {
  background: rgba(201,169,110,0.15);
}
.quiz-option--star.is-selected {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.quiz-option--star.is-selected .quiz-option-arrow { color: var(--ink); }
.quiz-option-arrow { color: var(--gold); font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.quiz-option:hover .quiz-option-arrow,
.quiz-option.is-selected .quiz-option-arrow { transform: translateX(4px); }

.quiz-question {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ── Quiz result panel ─────────────────────────────── */
.quiz-result {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  color: var(--ivory);
  text-align: left;
  animation: fadeInUp 0.45s var(--ease-out);
  margin-top: 1.5rem;
}
.quiz-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(250,247,242,0.08);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.quiz-result-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.quiz-result-badge {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,169,110,0.18);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}
.quiz-result-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
}
.quiz-result-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.quiz-result-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.2;
}
.quiz-result-message {
  color: rgba(250,247,242,0.65);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.quiz-result-bundle-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-bottom: 0.6rem;
}
.quiz-result-bundle {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.quiz-result-bundle li {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quiz-result-bundle li::before {
  content: "✅";
  font-size: 0.75rem;
  flex-shrink: 0;
}
.quiz-result-urgency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212,100,80,0.12);
  border: 1px solid rgba(212,100,80,0.25);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.8);
  margin-bottom: 1.25rem;
}
.urgency-dot {
  width: 7px; height: 7px;
  background: #e07060;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.quiz-result-cta { align-self: flex-start; }

/* product image stack on the right */
.quiz-result-images {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(250,247,242,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  min-height: 260px;
}
.quiz-result-images img {
  position: absolute;
  width: 130px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: cover;
  transition: transform 0.3s;
}
.quiz-result-images img:nth-child(1) { transform: rotate(-4deg) translateX(-20px); z-index: 1; }
.quiz-result-images img:nth-child(2) { transform: rotate(2deg) translateX(10px) translateY(-10px); z-index: 2; }
.quiz-result-images img:nth-child(3) { transform: rotate(5deg) translateX(30px) translateY(10px); z-index: 3; }
.quiz-result-images:hover img:nth-child(1) { transform: rotate(-6deg) translateX(-30px); }
.quiz-result-images:hover img:nth-child(2) { transform: rotate(0deg) translateX(0px) translateY(-15px); }
.quiz-result-images:hover img:nth-child(3) { transform: rotate(6deg) translateX(30px) translateY(15px); }

/* ── Quiz upsell bar ───────────────────────────────── */
.quiz-upsell {
  border-top: 1px solid rgba(250,247,242,0.08);
  background: rgba(201,169,110,0.06);
  animation: fadeInUp 0.4s var(--ease-out);
}
.quiz-upsell-inner {
  padding: 1.25rem 2rem;
}
.quiz-upsell-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.quiz-upsell-text {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.55);
  margin-bottom: 1rem;
  font-style: italic;
}
.quiz-upsell-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.quiz-upsell-product {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.quiz-upsell-spots {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.5);
}
.quiz-upsell-btn {
  flex-shrink: 0;
  border-color: rgba(250,247,242,0.3);
  color: var(--ivory);
  font-size: 0.82rem;
  padding: 0.6rem 1.25rem;
}
.quiz-upsell-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ivory {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-ivory:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .quiz-result-body { grid-template-columns: 1fr; }
  .quiz-result-images { display: none; }
  .quiz-result-text { padding: 1.5rem; }
  .quiz-result-header { padding: 1rem 1.5rem; }
  .quiz-upsell-inner { padding: 1rem 1.5rem; }
  .quiz-upsell-cta-row { flex-direction: column; align-items: flex-start; }
  .quiz-result-cta { align-self: stretch; text-align: center; }
}

/* =============================================================
   13. PRODUCT STAR
   ============================================================= */
.product-star {
  padding: var(--section-pad) var(--gutter);
  background: var(--ivory-3);
}
.product-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Product gallery */
.product-visual { position: relative; }

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26,22,20,0.18);
  background: var(--cream);
  aspect-ratio: 4/3;
}

.product-gallery-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.product-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s, transform 0.2s;
  opacity: 0.65;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.product-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.product-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.product-badge-bestseller {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(201,169,110,0.45);
  z-index: 2;
}

/* Product info */
.product-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.product-title em { font-style: italic; color: var(--rose-deep); }
.product-tagline { font-size: 1.05rem; color: var(--ink-mute); margin-bottom: 1.5rem; }

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.feature-tag {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(26,22,20,0.1);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.feature-tag:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

.product-desc { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; font-size: 0.95rem; }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
}
.product-access {
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
}

.product-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.product-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-item { font-size: 0.8rem; color: var(--ink-mute); display: flex; align-items: center; gap: 0.3rem; }

/* =============================================================
   14. RESET SECTION
   ============================================================= */
.reset-section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  overflow: hidden;
}
.reset-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(201,169,110,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(212,164,164,0.12) 0%, transparent 50%);
  filter: blur(60px);
}
.reset-inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.reset-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.reset-title em { font-style: italic; color: var(--gold-light); }
.reset-sub { color: rgba(250,247,242,0.7); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 55ch; }

.reset-includes-title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.reset-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.reset-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(250,247,242,0.85);
}
.reset-check { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.2rem; }
.reset-list-item strong { display: block; color: var(--ivory); margin-bottom: 0.15rem; font-weight: 500; }
.reset-list-item p { font-size: 0.85rem; color: rgba(250,247,242,0.55); line-height: 1.5; margin: 0; }

/* Urgency bar */
.reset-urgency { margin-bottom: 2rem; }
.urgency-label { font-size: 0.9rem; color: rgba(250,247,242,0.75); margin-bottom: 0.75rem; }
.urgency-label strong { color: var(--ivory); }
.urgency-bar-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.urgency-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.urgency-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose-mid));
  border-radius: 4px;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.urgency-count { font-size: 0.78rem; color: rgba(250,247,242,0.5); }

.reset-price-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.reset-price { font-family: var(--serif); font-size: 2rem; color: var(--ivory); font-weight: 400; }
.reset-spots-badge {
  background: rgba(212,164,164,0.2);
  color: var(--rose-mid);
  border: 1px solid rgba(212,164,164,0.3);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.reset-ctas { display: flex; flex-direction: column; gap: 0.75rem; }

/* Reset visuals */
.reset-image-stack { position: relative; }
.reset-img { border-radius: 16px; }
.reset-img-main {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.reset-img-back {
  display: none;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.75;
}
.reset-testimonial-float {
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.reset-float-quote { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(250,247,242,0.9); line-height: 1.6; margin-bottom: 0.5rem; }
.reset-float-name { font-size: 0.8rem; color: var(--gold); font-weight: 500; }

/* =============================================================
   15. BOUTIQUE
   ============================================================= */
.boutique {
  padding: var(--section-pad) var(--gutter);
  background: var(--ivory);
}
.boutique-inner { max-width: 1280px; margin: 0 auto; }
.boutique-header { text-align: center; margin-bottom: 2rem; }
.boutique-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.boutique-title em { font-style: italic; color: var(--rose-deep); }
.boutique-sub { color: var(--ink-mute); }

/* ── Filtros ────────────────────────────────────────── */
.boutique-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--glass-border);
  background: transparent;
  font-size: 0.8rem;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.filter-btn:hover {
  background: rgba(26,22,20,0.06);
  color: var(--ink);
  transform: translateY(-1px);
}
.filter-btn.is-active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* ── Grid ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ── Cards ──────────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,22,20,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, opacity 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,22,20,0.12);
}
.product-card.is-hidden {
  display: none;
}

/* Featured card spans 2 columns on desktop */
.product-card--featured {
  border: 2px solid rgba(201,169,110,0.35);
}

.product-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,22,20,0.1));
}
.product-card-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--rose-mid);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.product-card-badge-dark { background: var(--ink); }
.product-card-badge-green { background: #5a8a6a; }
.product-card-badge-gold { background: var(--gold); color: #fff; }

.product-card-body { padding: 1.25rem; }
.product-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.product-card-tagline { font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 1rem; line-height: 1.5; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-card-price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); font-weight: 500; }

/* =============================================================
   16. GALLERY
   ============================================================= */
.gallery {
  padding: var(--section-pad) var(--gutter);
  background: var(--ivory-2);
}
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-title em { font-style: italic; color: var(--rose-deep); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.gallery-item-wide img { aspect-ratio: 16/7; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,20,0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,22,20,0.4); }
.gallery-item-overlay span {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: none; }

/* =============================================================
   17. TESTIMONIALS
   ============================================================= */
.testimonials {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}
.testimonials-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,164,164,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.15) 0%, transparent 60%),
    var(--ivory-3);
  filter: blur(50px);
}
.testimonials-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.testimonials-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-title em { font-style: italic; color: var(--rose-deep); }

.testimonials-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
@supports not (backdrop-filter: blur(20px)) {
  .testimonial-card { background: rgba(255,255,255,0.85); }
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,22,20,0.1); }

.tc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.tc-quote {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.tc-author { display: flex; align-items: center; gap: 0.75rem; }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.tc-meta strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.tc-meta span { font-size: 0.78rem; color: var(--ink-mute); }

/* =============================================================
   18. COMMUNITY
   ============================================================= */
.community {
  padding: var(--section-pad) var(--gutter);
  background: var(--ivory-2);
}
.community-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.community-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.community-title em { font-style: italic; color: var(--rose-deep); }
.community-text { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; }
.community-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.community-list li { font-size: 0.9rem; color: var(--ink-mute); }

.community-collage { position: relative; }
.collage-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(26,22,20,0.12);
}
.collage-side {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--ivory-2);
  box-shadow: 0 12px 32px rgba(26,22,20,0.15);
}
.community-bubble {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(26,22,20,0.08);
  animation: floatA 4s ease-in-out infinite;
}
.community-bubble-1 { top: 12%; left: -5%; animation-delay: 0s; }
.community-bubble-2 { top: 40%; right: -5%; animation-delay: 1.5s; }
.community-bubble-3 { bottom: 28%; left: 8%; animation-delay: 0.8s; }

/* =============================================================
   19. FINAL CTA
   ============================================================= */
.final-cta {
  position: relative;
  padding: calc(var(--section-pad) * 1.5) var(--gutter);
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
.final-cta-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,164,164,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201,169,110,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(196,184,212,0.12) 0%, transparent 50%);
  filter: blur(60px);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
.final-cta-grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.final-cta-title em { font-style: italic; color: var(--gold-light); }
.final-cta-sub { color: rgba(250,247,242,0.65); line-height: 1.75; margin-bottom: 2.5rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.final-cta-note { font-size: 0.78rem; color: rgba(250,247,242,0.4); letter-spacing: 0.06em; }

/* =============================================================
   20. FOOTER
   ============================================================= */
.footer {
  background: #0e0b09;
  color: rgba(250,247,242,0.6);
  padding: 4rem var(--gutter) 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; margin-bottom: 1rem; font-style: italic; }
.footer-email { font-size: 0.85rem; color: var(--gold); transition: color 0.2s; }
.footer-email:hover { color: var(--gold-light); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,242,0.4); margin-bottom: 1rem; font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: rgba(250,247,242,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.06);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.3);
}

/* =============================================================
   21. QUICK VIEW MODAL
   ============================================================= */
.quick-view-modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.quick-view-modal[hidden] { display: none; }
.qv-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,22,20,0.5);
  backdrop-filter: blur(4px);
}
.qv-content {
  position: relative;
  z-index: 1;
  background: var(--ivory);
  border-radius: 24px 24px 0 0;
  padding: 2rem var(--gutter);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp 0.4s var(--ease-out);
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: none; } }
.qv-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 1.1rem; color: var(--ink-mute);
  padding: 0.3rem;
  transition: color 0.2s, transform 0.2s;
}
.qv-close:hover { color: var(--ink); transform: rotate(90deg); }

/* =============================================================
   22. TOAST
   ============================================================= */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--ivory);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3000;
  transition: transform 0.4s var(--ease-bounce);
  box-shadow: 0 8px 32px rgba(26,22,20,0.25);
  white-space: nowrap;
  pointer-events: none;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--gold); }

/* =============================================================
   23. RESPONSIVE
   ============================================================= */
@media (min-width: 540px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .hero-float-1 { left: -14%; }
  .hero-float-2 { left: -16%; }
  .hero-float-3 { right: -14%; }
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }

  .hero-layout { grid-template-columns: 1fr 1fr; }
  .hero-float-1 { left: -8%; }
  .hero-float-2 { left: -10%; }
  .hero-float-3 { right: -8%; }

  .about-inner { grid-template-columns: 1fr 1fr; }
  .about-visual { order: 2; }

  .product-inner { grid-template-columns: 1fr 1fr; }

  .reset-inner { grid-template-columns: 1fr 1fr; }
  .reset-img-back { display: block; }

  .community-inner { grid-template-columns: 1fr 1fr; }
  .community-collage { order: 1; }
  .community-content { order: 2; }

  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 2fr; }
}

@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card--featured { grid-column: span 1; }
  .testimonials-track { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-wide { grid-column: span 2; }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .stats-inner { gap: 3rem 4rem; }
  .hero-float-1 { left: -5%; }
  .hero-float-2 { left: -7%; }
  .hero-float-3 { right: -5%; }
}

/* =============================================================
   24. Reduced motion — INTRUSIVE only
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .quiz-mesh, .testimonials-mesh, .reset-mesh, .final-cta-mesh { animation: none; }
  html { scroll-behavior: auto; }
  .hero-float-1, .hero-float-2, .hero-float-3 { animation: none; }
  .community-bubble { animation: none; }
  .eyebrow-dot { animation: none; }
  .urgency-fill { animation: none; }
  .scroll-line { animation: none; }
  /* Do NOT disable: reveals, hovers, tilts, buttons, card transforms */
}
