/* === LAFAM × SANTIAGO RAFAEL — SAGE HERBAL + GOLD === */

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay sutil */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.21 0 0 0 0 0.16 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--accent); }

em, .em-drama, .font-drama {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

::selection { background: var(--accent); color: var(--bg-dark); }

/* === SKIP LINK === */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: top 200ms var(--ease-spring);
}
.skip-link:focus { top: 1rem; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-on-dark);
  margin-top: 68px;
  position: sticky;
  top: 68px;
  z-index: 98;
  overflow: hidden;
}

.trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.6rem var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
  opacity: 0.85;
  white-space: nowrap;
}

.trust-bar__item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.trust-bar__divider {
  color: var(--accent);
  opacity: 0.4;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .trust-bar__inner {
    gap: 0.5rem var(--space-2);
    padding: 0.5rem var(--space-2);
  }
  .trust-bar__divider { display: none; }
  .trust-bar__item { font-size: 1rem; }
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(31, 53, 40, 0.95);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.6rem var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-3);
  position: relative;
}
.header__nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.trust-bar {
  margin-top: var(--header-h);
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #f3e1b3);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: calc(var(--z-sticky) + 50);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.55);
}

/* === HERO ORBS === */
.hero { position: relative; }
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(243, 225, 179, 0.5), rgba(201, 169, 110, 0.15) 45%, transparent 75%);
  filter: blur(40px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.hero-orb--1 { width: 380px; height: 380px; top: 8%; left: 6%;  animation: orb-drift 24s ease-in-out infinite; }
.hero-orb--2 { width: 280px; height: 280px; top: 50%; right: 10%; animation: orb-drift 30s ease-in-out infinite reverse; }
.hero-orb--3 { width: 220px; height: 220px; bottom: 12%; left: 30%; animation: orb-drift 36s ease-in-out infinite; animation-delay: -8s; }
.hero-orb--4 { width: 320px; height: 320px; top: 20%; right: 35%; animation: orb-drift 28s ease-in-out infinite reverse; animation-delay: -14s; }
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.1); }
  66%      { transform: translate(-25px, 35px) scale(0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; }
}
@media (max-width: 768px) {
  .hero-orb--3, .hero-orb--4 { display: none; }
}

/* === EYEBROW ANIMATED LINE === */
.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.section-header__eyebrow::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-header__eyebrow.eyebrow-in::before { width: 44px; }

/* === SPLIT-TEXT H2 === */
.section-header h2 .split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
}
.section-header h2 .split-word__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.6s ease;
}
.section-header h2.split-in .split-word__inner {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .section-header h2 .split-word__inner { transform: none; opacity: 1; }
}

/* === GOLD MARK / HIGHLIGHT === */
.gold-mark, mark.gold-mark {
  background: linear-gradient(120deg, transparent 0%, transparent 100%);
  background-size: 0% 60%;
  background-position: 0 88%;
  background-repeat: no-repeat;
  color: inherit;
  padding: 0 0.15em;
  transition: background-size 1.2s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.gold-mark--in {
  background-image: linear-gradient(120deg, rgba(201, 169, 110, 0.45) 0%, rgba(243, 225, 179, 0.45) 100%);
  background-size: 100% 60%;
}

/* === UNDERLINE DRAW LINKS === */
.about-santi a:not(.btn),
.footer a,
.header__nav a,
.mobile-nav a:not(.btn),
.faq-item__a a {
  position: relative;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 calc(100% - 2px);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
  padding-bottom: 2px;
}
.about-santi a:not(.btn):hover,
.footer a:hover,
.header__nav a:hover,
.mobile-nav a:not(.btn):hover,
.faq-item__a a:hover {
  background-size: 100% 1px;
}

/* === TOAST === */
#toast-host {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: rgba(31, 53, 40, 0.96);
  color: var(--text-inverse);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
  min-width: 220px;
  max-width: 320px;
}
.toast--in { transform: translateY(0); opacity: 1; }
.toast--out { transform: translateY(-10px); opacity: 0; }
@media (max-width: 600px) {
  #toast-host { bottom: 80px; right: 12px; left: 12px; }
  .toast { max-width: none; }
}

/* === FLY TO CART === */
.fly-to-cart {
  position: fixed;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: calc(var(--z-toast) - 100);
  transition: transform 0.85s cubic-bezier(0.5, -0.2, 0.5, 1), opacity 0.85s ease;
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
}

/* === CONFETTI === */
.confetti-host {
  position: fixed;
  width: 0; height: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
}
.confetti-piece {
  position: absolute;
  width: 9px; height: 14px;
  border-radius: 2px;
  top: 0; left: 0;
  opacity: 1;
  transform: translate(0, 0) rotate(0);
  animation: confetti-fly var(--dur, 1100ms) cubic-bezier(0.18, 0.7, 0.4, 1) forwards;
}
@keyframes confetti-fly {
  0%   { transform: translate(0, 0) rotate(0); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rz)); opacity: 0; }
}

/* === SECTION CURVE DIVIDERS === */
.curve-to-canvas, .curve-to-dark, .curve-to-surface {
  position: relative;
  z-index: 1;
}
.curve-to-canvas::after,
.curve-to-dark::after,
.curve-to-surface::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 60px;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
  z-index: 2;
}
.curve-to-canvas::after  { background: var(--bg-canvas); }
.curve-to-dark::after    { background: var(--bg-dark); }
.curve-to-surface::after { background: var(--bg-surface); }
@media (max-width: 768px) {
  .curve-to-canvas::after,
  .curve-to-dark::after,
  .curve-to-surface::after { height: 36px; }
}

/* === COUNTRIES MARQUEE === */
.countries-marquee::before,
.countries-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.countries-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.countries-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.countries-marquee {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-on-dark);
  padding: 0.7rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}
.countries-marquee__label {
  flex-shrink: 0;
  padding: 0 var(--space-3) 0 var(--space-4);
  margin-right: var(--space-2);
  border-right: 1px solid rgba(201, 169, 110, 0.35);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0.9;
}
.countries-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  flex-shrink: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.countries-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 228, 216, 0.85);
  white-space: nowrap;
}
.countries-marquee__group .dot {
  color: var(--accent);
  font-size: 0.55rem;
  opacity: 0.5;
  vertical-align: middle;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 600px) {
  .countries-marquee { gap: 0.8rem; padding: 0.55rem 0; }
  .countries-marquee__label { padding-left: var(--space-2); font-size: 0.85rem; letter-spacing: 0.12em; }
  .countries-marquee__group { gap: 0.9rem; padding-right: 0.9rem; font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .countries-marquee__track { animation: none; }
}

/* ── KICKER UNDERLINE ANIMATION ────────────────────── */
.kicker-underline {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.kicker-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: kicker-underline-draw 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes kicker-underline-draw {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .kicker-underline::after { transform: scaleX(1); animation: none; }
}

/* ── TEXT MARQUEE ──────────────────────────────────── */
.text-marquee {
  margin-top: 110px;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 0.65rem 0;
  position: relative;
  white-space: nowrap;
}
.text-marquee::before,
.text-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.text-marquee::before { left: 0; background: linear-gradient(to right, var(--bg-dark) 20%, transparent); }
.text-marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg-dark) 20%, transparent); }
.text-marquee__track {
  display: inline-flex;
  will-change: transform;
  animation: text-marquee-scroll 80s linear infinite;
}
.text-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding-right: 1.8rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--accent-readable);
  opacity: 0.9;
}
.text-marquee__sep {
  color: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
}
@keyframes text-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .text-marquee__track { animation: none; }
}
@media (max-width: 768px) {
  .text-marquee__group { font-size: 0.82rem; gap: 1.2rem; padding-right: 1.2rem; }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.header__logo-img {
  height: 88px;
  width: auto;
  display: block;
}
.header__logo-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.header__nav {
  display: flex;
  gap: var(--space-7);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse);
}
.header__nav a:hover { color: var(--accent); }
/* === HAMBURGER MOBILE NAV === */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-inverse);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.25s var(--ease-smooth);
  transform-origin: center;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .header__hamburger { display: flex; }
}
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(31, 53, 40, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border-on-dark);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth), visibility 0s linear 0.22s;
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth), visibility 0s linear 0s;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-on-dark);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

.header__cart {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0.4rem;
  color: var(--text-inverse);
  transition: color var(--transition-base);
}
.header__cart:hover { color: var(--accent); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-count[data-count="0"] { display: none; }
.cart-count.bump { animation: cart-bump 0.55s cubic-bezier(0.25, 1.5, 0.5, 1); }
@keyframes cart-bump {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.45) rotate(-6deg); }
  60%  { transform: scale(0.9) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__logo-sub { display: none; }
  .header__logo-img { height: 68px; }
}

/* === HERO === */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.4;
  filter: grayscale(0.35) contrast(1.05) brightness(0.8);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.14), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(45, 74, 62, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(31, 53, 40, 0.55) 0%, rgba(31, 53, 40, 0.72) 60%, rgba(31, 53, 40, 0.92) 100%);
}
.hero__mobile-logo {
  display: none;
  position: relative;
  z-index: 2;
  padding: var(--space-4) var(--space-3) 0;
  text-align: center;
  width: 100%;
}
.hero__mobile-logo img {
  height: 96px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}
@media (max-width: 768px) {
  .hero__mobile-logo { display: block; }
}
.hero__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.hero__copy { max-width: 860px; margin: 0 auto; }
.hero__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.68rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-inverse);
  margin-bottom: var(--space-4);
  text-wrap: balance;
  word-spacing: 0.05em;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, var(--accent) 30%, #f3e1b3 45%, var(--accent) 60%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 5.5s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%, 70%, 100% { background-position: 100% 0; }
  85% { background-position: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 em { animation: none; background: none; -webkit-text-fill-color: var(--accent); color: var(--accent); }
}
  display: inline-block;
}
.hero__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: clamp(1.2rem, 1vw + 1rem, 1.45rem);
  color: rgba(245, 240, 225, 0.95);
  line-height: 1.65;
  margin: 0 auto var(--space-5);
  max-width: 60ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}
.hero__vsl { width: 100%; max-width: 700px; margin: var(--space-4) auto var(--space-3); position: relative; isolation: isolate; }
.hero__vsl::before {
  content: '';
  position: absolute;
  inset: -22%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.55) 0%, rgba(201,169,110,0.18) 35%, transparent 65%);
  filter: blur(40px);
  animation: hero-vsl-spotlight 5.5s ease-in-out infinite;
  pointer-events: none;
}
.hero__vsl .vsl-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  padding: 3px;
  box-sizing: border-box;
  background: conic-gradient(from var(--vsl-angle, 0deg), rgba(201,169,110,0.85), rgba(243,225,179,1), rgba(201,169,110,0.4), rgba(243,225,179,0.95), rgba(201,169,110,0.85));
  animation: hero-vsl-rotate 6s linear infinite;
}
.hero__vsl .vsl-embed iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: calc(var(--radius-lg) - 3px);
  display: block;
}
@property --vsl-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes hero-vsl-rotate {
  to { --vsl-angle: 360deg; }
}
@keyframes hero-vsl-spotlight {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__vsl::before { animation: none; }
  .hero__vsl .vsl-embed { animation: none; }
}
.hero__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
@media (max-width: 768px) {
  .hero { align-items: flex-start; padding-top: 0; }
  .hero__inner { padding: var(--space-3) var(--space-3) var(--space-6); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  min-height: 48px;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  position: relative;
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg-dark); box-shadow: 0 10px 30px -8px rgba(201, 169, 110, 0.55); }
.hero .btn--primary,
.checkout-form__submit,
.cart-drawer__checkout {
  animation: btn-breathe 3.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.45);
}
.hero .btn--primary:hover,
.checkout-form__submit:hover,
.cart-drawer__checkout:hover { animation-play-state: paused; }
@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.45), 0 4px 14px -6px rgba(201, 169, 110, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 110, 0), 0 8px 22px -8px rgba(201, 169, 110, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn--primary,
  .checkout-form__submit,
  .cart-drawer__checkout { animation: none; }
}
.btn--ghost {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--border-on-dark);
}
.btn--ghost:hover { background: rgba(232, 228, 216, 0.08); border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; justify-content: center; }

/* Variantes de tamaño */
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  min-height: 36px;
}
.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  min-height: 56px;
}

/* En contextos claros (fuera del hero), el ghost se invierte */
.products .btn--ghost,
.cart-drawer .btn--ghost {
  color: var(--text-primary);
  border-color: var(--border-medium);
}
.products .btn--ghost:hover,
.cart-drawer .btn--ghost:hover { background: var(--bg-card); border-color: var(--accent); color: var(--accent); }

/* === BRAND CAROUSEL === */
.carousel-section {
  overflow: hidden;
  padding: var(--space-6) 0;
  background: var(--bg-canvas);
}
.carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel.dragging { cursor: grabbing; }
.carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.carousel__track.no-transition { transition: none !important; }
.carousel__item {
  flex-shrink: 0;
  width: 420px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  draggable: false;
}
@media (max-width: 768px) {
  .carousel__item { width: 280px; height: 200px; }
}

/* === HEALTHY RESONANCE SECTION === */
.rs-section {
  background: var(--bg-canvas);
  padding: var(--section-py-curve) var(--space-4);
}
.rs-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: var(--space-6);
  align-items: start;
}
.rs-inner > .section-header { text-align: left; padding-top: 0; }
.rs-inner > .section-header .section-header__eyebrow { justify-content: flex-start; }
.rs-inner > .section-header h2 { text-align: left; }
.rs-lead {
  max-width: 700px;
  margin: var(--space-3) auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
  text-align: center;
  line-height: 1.75;
}
.rs-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}
.rs-copy p {
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 0.7vw + 0.95rem, 1.2rem);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.rs-copy p:last-child { margin-bottom: 0; }
.rs-copy strong { color: var(--text-primary); }
.rs-quote { grid-column: 1 / -1; }
@media (max-width: 860px) {
  .rs-inner { grid-template-columns: 1fr; gap: var(--space-3); }
  .rs-inner > .section-header { text-align: center; padding-top: 0; }
  .rs-inner > .section-header .section-header__eyebrow { justify-content: center; }
  .rs-inner > .section-header h2 { text-align: center; }
  .rs-copy { text-align: center; }
}
.rs-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
}
.rs-principle {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.rs-principle__num {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.rs-principle h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.rs-principle p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.rs-quote {
  margin-top: var(--space-7);
  text-align: center;
}
.rs-quote p {
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.65rem);
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .rs-principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rs-principles { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* === SECTION TITLES === */
.section-header {
  text-align: center;
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);
}
#productos { padding: var(--space-5) 0 0; }
.section-header__eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: var(--text-primary);
  text-wrap: balance;
}

/* === FILTER CHIPS === */
.filters {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.filters::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-medium);
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--fs-tag);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip--active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--accent);
}

/* === PRODUCT BENTO GRID === */
.products {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-5);
}
.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.products__grid { perspective: 1400px; }
.empty-state {
  grid-column: 1 / -1;
  padding: var(--space-6) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-medium);
}
.empty-state p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  font-style: italic;
  font-family: var(--font-serif);
}
.product-card {
  background: var(--bg-surface);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  transition: background var(--transition-base), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
}
@media (hover: hover) {
  .product-card:hover {
    background: var(--bg-card);
    transform: translateY(-6px) rotateX(4deg) rotateY(-2deg);
    box-shadow: 0 28px 48px -20px rgba(31, 53, 40, 0.35);
    will-change: transform;
  }
  .product-card:hover .product-card__img img { transform: scale(1.08); }
}
.product-card__img img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:first-child {
  grid-row: span 1;
}
.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-canvas);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-small);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-tag);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  width: fit-content;
  border: 1px solid var(--border-subtle);
}
.product-card__tag--entrada,
.product-card__tag--bestseller,
.product-card__tag--medio,
.product-card__tag--kit { background: var(--accent-green-bg); color: var(--accent-green-text); border-color: var(--accent-green-text); }
.product-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: var(--space-3);
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-subtle);
}
.product-card__apply { width: 100%; text-align: center; text-decoration: none; }
.product-card__price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .products__grid { grid-template-columns: 1fr 1fr; }
  .product-card:first-child { grid-row: span 1; }
}
@media (max-width: 600px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* === ABOUT SANTIAGO === */
.about-santi {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--section-py-curve) var(--space-4);
}

.about-santi__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-6);
  align-items: center;
}

.about-santi__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-accent);
  background: var(--bg-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-santi__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.about-santi__eyebrow {
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-readable);
  margin-bottom: var(--space-1);
}

.about-santi__name {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: var(--letter-tight);
  margin-bottom: var(--space-1);
  color: var(--text-inverse);
}
.about-santi__role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.about-santi__bio {
  font-size: var(--fs-body);
  color: rgba(232, 228, 216, 0.75);
  line-height: var(--lh-body);
  margin-bottom: var(--space-2);
}

.about-santi__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: var(--space-1);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--transition-base);
}
.about-santi__link:hover { opacity: 0.75; }

@media (max-width: 640px) {
  .about-santi__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-santi__avatar {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }
}

/* === MI STACK === */
.mi-stack {
  background: var(--bg-canvas);
  padding: var(--section-py-curve) var(--space-4) var(--space-5);
}

.mi-stack__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.mi-stack__lead {
  font-size: clamp(1.32rem, 1.8vw, 1.56rem);
  color: var(--text-secondary);
  margin-top: var(--space-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mi-stack .section-header {
  text-align: center;
}

.mi-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.stack-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: border-color var(--transition-base);
}

.stack-item:hover {
  border-color: var(--border-accent);
}

.stack-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  background: var(--accent-yellow-bg);
  color: var(--accent-yellow-text);
  border-radius: var(--radius-pill);
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.stack-item__quote {
  margin-top: var(--space-3);
  padding-left: var(--space-3);
  border-left: 2px solid var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  opacity: 1;
}
.stack-item h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: var(--letter-tight);
  line-height: 1.3;
}

.stack-item p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.stack-item p strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 640px) {
  .mi-stack__grid { grid-template-columns: 1fr; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-surface);
  padding: var(--space-5) var(--space-4) var(--section-py-curve);
}

.testimonials__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.testimonials__grid > .testi-card:first-child {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-5);
}
.testimonials__grid > .testi-card:first-child .testi-card__text {
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.55;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.testi-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testi-card__text {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  font-style: italic;
  flex: 1;
}

.testi-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-subtle);
}

.testi-card__name {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text-primary);
}

.testi-card__product {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .testimonials__grid > .testi-card:first-child { grid-row: auto; padding: var(--space-4); }
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--section-py-curve) var(--space-4) var(--space-5);
}

.how-it-works__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.how-it-works .section-header h2 {
  color: var(--text-inverse);
}

.how-it-works .section-header__eyebrow {
  color: var(--accent-readable);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.how-step {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.how-step__num {
  font-family: var(--font-body);
  font-size: var(--fs-tag);
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.how-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.how-step h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: var(--letter-tight);
}

.how-step p {
  font-size: var(--fs-small);
  color: rgba(232, 228, 216, 0.65);
  line-height: var(--lh-body);
}

.how-step__arrow {
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.4;
  margin-top: 52px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
  }
  .how-step__arrow {
    transform: rotate(90deg);
    margin: 0;
  }
}

/* === FAQ === */
.faq-section {
  background: var(--bg-canvas);
  padding: var(--space-5) var(--space-4);
}

.faq-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-list {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-medium);
}

.faq-item {
  border-bottom: 1px solid var(--border-medium);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: var(--space-3);
  transition: color var(--transition-base);
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  line-height: 1;
}

.faq-item[open] .faq-item__q {
  color: var(--accent-deep);
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding-bottom: var(--space-3);
}

.faq-item__a p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* === HUNTER SECTION === */
.hunter-section {
  background: var(--bg-dark);
  padding: var(--space-8) var(--space-4);
}
.hunter-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.hunter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.hunter-card__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-dark-surface);
}
.hunter-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hunter-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}
.hunter-card__eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-2);
}
.hunter-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.hunter-card__subtitle {
  font-size: 1.43rem;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.hunter-card__desc {
  font-size: 1rem;
  color: rgba(232, 228, 216, 0.75);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}
.hunter-card__features {
  list-style: none;
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hunter-card__features li {
  font-size: 1rem;
  color: rgba(232, 228, 216, 0.85);
  padding-left: 1.25rem;
  position: relative;
}
.hunter-card__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.hunter-card__cta {
  margin-bottom: var(--space-3);
  display: inline-block;
}
.hunter-card__disclaimer {
  font-size: 1rem;
  color: rgba(232, 228, 216, 0.5);
  line-height: 1.6;
  border-top: 1px solid var(--border-on-dark);
  padding-top: var(--space-3);
}
.hunter-card__disclaimer strong {
  color: rgba(232, 228, 216, 0.75);
}
@media (max-width: 768px) {
  .hunter-card { grid-template-columns: 1fr; }
}

/* === CART DRAWER === */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(31, 53, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}
.cart-overlay--open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 151;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-medium);
  transform: translateX(100%);
  transition: transform 350ms var(--ease-spring);
  display: flex;
  flex-direction: column;
}
.cart-drawer--open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}
.cart-drawer__header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-secondary);
  padding: 0.25rem;
  line-height: 1;
}
.cart-drawer__close:hover { color: var(--accent); }
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-3);
}
.cart-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-canvas);
  flex-shrink: 0;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: var(--fs-small); }
.cart-item__price { font-family: var(--font-body); font-size: var(--fs-mono); color: var(--text-secondary); margin-top: 0.25rem; }
.cart-item__qty { display: flex; align-items: center; gap: var(--space-2); margin-top: var(--space-2); }
.cart-item__qty button {
  width: 30px; height: 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-medium);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}
.cart-item__qty button:hover { background: var(--bg-canvas); border-color: var(--accent); color: var(--accent); }
.cart-item__qty span { font-family: var(--font-body); font-size: var(--fs-small); min-width: 1.5rem; text-align: center; }
.cart-drawer__footer {
  padding: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-3);
}

/* === FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* === AMBIENT BLOBS — sutil sobre sage === */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  animation: drift 30s ease-in-out infinite alternate;
}
.ambient__blob--1 {
  top: -200px;
  right: -200px;
  background: var(--accent);
  animation-duration: 35s;
}
.ambient__blob--2 {
  bottom: -300px;
  left: -200px;
  background: var(--bg-dark-surface);
  animation-duration: 40s;
  animation-delay: -10s;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-6) var(--space-4) var(--space-4);
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.6vw + 0.5rem, 1.75rem);
  color: var(--text-secondary);
}
.footer__social {
  margin-top: var(--space-3);
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-tag);
  color: var(--text-muted);
  transition: color var(--transition-base);
}
.footer__social-link:hover { color: var(--accent); }

/* ============================================
   RESPONSIVE — MOBILE FIRST OVERHAUL
   ============================================ */

@media (max-width: 768px) {

  /* HEADER */
  .cart-drawer   { width: 100vw; }

  /* TRUST BAR */
  .trust-bar__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.45rem var(--space-3);
    overflow-x: hidden;
  }
  .trust-bar__divider { display: none; }
  .trust-bar__item { font-size: 0.9rem; white-space: normal; text-align: center; justify-content: center; }

  /* HERO — fix flex-direction so logo stacks above copy */
  .hero          { flex-direction: column; align-items: stretch; padding-top: 0; }
  .hero__mobile-logo {
    display: flex;
    justify-content: center;
    padding: var(--space-4) var(--space-3) 0;
  }
  .hero__mobile-logo img { height: 70px; }
  .hero__inner   { padding: 0 var(--space-3) var(--space-5); flex: 1; display: flex; align-items: center; }
  .hero__copy    { max-width: 100%; width: 100%; }
  .hero__copy    { max-width: 100%; }
  .hero h1       { font-size: clamp(2.13rem, 8.05vw, 2.88rem); }
  .hero__eyebrow { font-size: 1.32rem; letter-spacing: 0; }
  .hero__kicker  { line-height: 1.4; }
  .hero__sub     { font-size: 1.05rem; line-height: 1.6; max-width: 100%; }
  .hero__ctas    { flex-direction: column; align-items: stretch; gap: var(--space-2); }
  .hero__ctas .btn { width: 100%; }

  /* Ghost button — borde más visible sobre fondo oscuro */
  .hero .btn--ghost { border-color: rgba(232, 228, 216, 0.4); color: var(--text-inverse); }

  /* SECTION HEADERS — reducir padding brutal */
  .section-header { padding: var(--space-4) var(--space-3) var(--space-3); }
  .section-header__eyebrow { font-size: 0.8rem; letter-spacing: 0.1em; }
  .hero__eyebrow { font-size: 1.15rem; }

  /* CAROUSEL */
  .carousel__item { width: 240px; height: 170px; }

  /* RS SECTION */
  .rs-section    { padding: var(--space-3) var(--space-3) var(--space-5); }
  .rs-lead       { font-size: 1rem; margin-top: var(--space-2); }
  .rs-principles {
    grid-template-columns: 1fr;
    margin-top: var(--space-4);  /* era 6rem → ahora 2rem */
    gap: var(--space-2);
  }
  .rs-principle  { padding: var(--space-3); }
  .rs-quote      { margin-top: var(--space-5); } /* era 6rem → 3rem */
  .rs-quote p    { font-size: 1.1rem; }

  /* PRODUCTS */
  .products      { padding: 0 var(--space-2) var(--space-5); }
  .product-card  { padding: var(--space-3); }
  .product-card__img { aspect-ratio: 4/3; }
  .product-card__footer {
    margin-top: auto;
    padding-top: var(--space-2);
  }

  /* HUNTER */
  .hunter-section    { padding: var(--space-5) var(--space-3); }
  .hunter-card       { grid-template-columns: 1fr; gap: var(--space-4); }
  .hunter-card__title    { font-size: 1.6rem; }
  .hunter-card__subtitle { font-size: 1.05rem; }
  .hunter-card__cta  {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* FLOATING BUTTONS */
  .whatsapp-float { bottom: 4.5rem; right: 1rem; width: 46px; height: 46px; }
  .back-to-top    { bottom: 1rem;   right: 1rem; width: 40px; height: 40px; }

  /* ABOUT SANTIAGO */
  .about-santi { padding: var(--space-5) var(--space-3); }
  .about-santi__inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-3); }
  .about-santi__avatar { margin: 0 auto; width: 120px; height: 120px; }
  .about-santi__name { font-size: 1.75rem; }

  /* MI STACK */
  .mi-stack { padding: var(--space-5) var(--space-3); }
  .mi-stack .section-header__eyebrow { font-size: 0.78rem; letter-spacing: 0.1em; }
  .mi-stack__lead { font-size: 1.1rem; }
  .mi-stack__grid { grid-template-columns: 1fr; gap: var(--space-2); margin-top: var(--space-4); }
  .stack-item { padding: var(--space-3); }

  /* HOW IT WORKS */
  .how-it-works { padding: var(--space-5) var(--space-3); }
  .how-steps { flex-direction: column; align-items: center; gap: var(--space-2); margin-top: var(--space-4); }
  .how-step { max-width: 100%; width: 100%; flex-direction: row; text-align: left; gap: var(--space-2); }
  .how-step__icon { width: 48px; height: 48px; flex-shrink: 0; }
  .how-step__num { display: none; }
  .how-step__arrow { transform: rotate(90deg); margin: 0; font-size: 1.2rem; align-self: center; }
  .how-step h3 { font-size: 1rem; }
  .how-step p { font-size: 1rem; }

  /* TESTIMONIALS */
  .testimonials { padding: var(--space-5) var(--space-3); }
  .testimonials__grid { margin-top: var(--space-4); gap: var(--space-2); }

  /* FAQ */
  .faq-section { padding: var(--space-5) var(--space-3); }
  .faq-list { margin-top: var(--space-4); }
  .faq-item__q { font-size: 1rem; padding: var(--space-2) 0; }
  .faq-item__a p { font-size: 1rem; }
}

/* 600px — chips en fila scrolleable */
@media (max-width: 600px) {
  .filters {
    justify-content: flex-start;
    padding-left: var(--space-3);
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    margin: 0 var(--space-3) var(--space-3);
    padding: var(--space-2);
    box-shadow: inset 0 0 0 1px rgba(201,169,110,0.18);
  }
  .filter-chip {
    background: var(--bg-canvas);
    border-color: var(--bg-canvas);
    color: var(--bg-dark);
    font-weight: 700;
  }
  .filter-chip--active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
  }
}

/* === FOCUS VISIBLE === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible, .filter-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 120;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-smooth);
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 120;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--bg-dark-surface); color: var(--accent); }

/* === RESULTS COUNTER === */
.results-count {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

/* === CHECKOUT MODAL === */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 14, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth);
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 201;
  width: min(520px, calc(100vw - 2rem));
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.checkout-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 1;
}
.checkout-modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
#checkout-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
}
#checkout-close:hover { color: var(--accent); }

/* Summary */
#checkout-summary {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-canvas);
}
.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
}
.checkout-summary__item span:last-child {
  font-family: var(--font-body);
  font-size: var(--fs-mono);
  color: var(--text-primary);
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-2);
  margin-top: var(--space-2);
  border-top: 1px solid var(--border-medium);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.checkout-summary__total span:last-child {
  font-family: var(--font-body);
  color: var(--accent-deep);
  font-size: 1rem;
}

/* Form */
#checkout-form {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checkout-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.checkout-form__field > label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.checkout-form__field input:not([type="radio"]),
.checkout-form__field textarea {
  width: 100%;
  padding: 0.65rem var(--space-3);
  background: var(--bg-canvas);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-primary);
  transition: border-color var(--transition-base);
  outline: none;
  resize: none;
}
.checkout-form__field input::placeholder,
.checkout-form__field textarea::placeholder { color: var(--text-muted); }
.checkout-form__field input:focus,
.checkout-form__field textarea:focus { border-color: var(--accent); }

/* Radio group */
.checkout-form__radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem var(--space-3);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base);
}
.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.06);
}
.radio-option input[type="radio"] { accent-color: var(--accent); }
.radio-option span {
  font-size: var(--fs-body);
  color: var(--text-primary);
}

/* Submit */
.checkout-form__submit {
  margin-top: var(--space-1);
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.checkout-form__disclaimer {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  padding: 0 var(--space-2);
}

@media (max-width: 540px) {
  .checkout-modal {
    width: 100vw;
    max-height: 92dvh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(20px);
  }
  .checkout-modal.open { transform: translateY(0); }
}

/* === PRODUCT SEARCH === */
.product-search-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
}
.product-search {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  padding: 0.6rem var(--space-3) 0.6rem 2.4rem;
  background: var(--bg-canvas) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238a9a90' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 0.8rem center;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-base);
}
.product-search:focus { border-color: var(--accent); }
.product-search::placeholder { color: var(--text-muted); }
.product-search::-webkit-search-cancel-button { cursor: pointer; }
@media (max-width: 600px) {
  .product-search-wrap { padding: 0 var(--space-3) var(--space-2); }
  .product-search { max-width: 100%; }
}

/* === STICKY FILTERS === */
.filters {
  position: sticky;
  top: 112px;
  z-index: 89;
  background: var(--bg-canvas);
  padding-top: var(--space-2);
}
@media (max-width: 768px) {
  .filters { top: 126px; }
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 20, 14, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth);
}
.lightbox.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: min(90vw, 700px);
  max-height: 85dvh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-spring);
}
.lightbox.lightbox--open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(232, 228, 216, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-base);
  z-index: 1;
}
.lightbox__close:hover { color: var(--accent); }

/* === CHECKOUT SUCCESS === */
.checkout-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-5);
  gap: var(--space-4);
}
.checkout-success.visible { display: flex; }
.checkout-success__icon { color: var(--accent); }
.checkout-success h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}
.checkout-success > p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
}
.checkout-success__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  text-align: left;
  counter-reset: steps;
}
.checkout-success__steps li {
  counter-increment: steps;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.55;
}
.checkout-success__steps li::before {
  content: counter(steps);
  min-width: 28px;
  height: 28px;
  background: var(--accent-yellow-bg);
  color: var(--accent-yellow-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.checkout-success__steps li strong { color: var(--text-primary); }

/* === MOBILE — CTA más grande en cards === */
@media (max-width: 600px) {
  .product-card .btn--sm {
    min-height: 44px;
    padding: 0.65rem 1.4rem;
    font-size: 1rem;
  }
}

/* === VSL === */
.vsl-section {
  padding: var(--section-py) var(--space-4);
  background: var(--bg-dark);
  overflow: hidden;
}
.vsl-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-6);
  align-items: center;
}
.vsl-copy__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.vsl-copy__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-inverse);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}
.vsl-copy__title em {
  color: var(--accent);
  font-style: normal;
}
.vsl-copy__lead {
  color: rgba(232,228,216,0.7);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-4);
}
.vsl-copy__cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.vsl-copy__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  animation: vsl-pulse 2s ease-in-out infinite;
}
.vsl-arrow {
  color: var(--accent);
  width: 60px;
  flex-shrink: 0;
  animation: vsl-bounce 1.4s ease-in-out infinite;
}
.vsl-arrow svg { width: 100%; }
.vsl-copy__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vsl-copy__bullets li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(232,228,216,0.65);
}
.vsl-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  outline: 1px solid rgba(201,169,110,0.2);
}
.vsl-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@keyframes vsl-bounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}
@keyframes vsl-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@media (max-width: 768px) {
  .vsl-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .vsl-copy__title { font-size: 1.5rem; }
  .vsl-copy__cta { justify-content: center; }
  .vsl-copy { text-align: center; }
  .vsl-copy__bullets { display: none; }
}

/* === IDEAS / DATE UNA IDEA === */
.ideas-section {
  padding: var(--section-py) 0;
  background: var(--bg-canvas);
  overflow: hidden;
}
.ideas-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.ideas-section__lead {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  margin-top: var(--space-2);
  text-align: center;
}
.ideas-reel {
  margin-top: var(--space-5);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ideas-reel { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(0,0,0,0.08); padding-bottom: var(--space-2); cursor: grab; user-select: none; }
.ideas-reel:active { cursor: grabbing; }
.ideas-reel::-webkit-scrollbar { height: 8px; }
.ideas-reel::-webkit-scrollbar-track { background: rgba(0,0,0,0.08); border-radius: 4px; }
.ideas-reel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.ideas-reel__track {
  display: flex;
  gap: var(--space-3);
  padding-bottom: var(--space-2);
  /* center when few videos, scroll when many */
  justify-content: safe center;
}
.idea-card {
  flex-shrink: 0;
  position: relative;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 8px 40px rgba(31,53,40,0.18);
  cursor: pointer;
  aspect-ratio: 9/16;
}
.idea-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
iframe.idea-card__video { border: 0; display: block; }
.idea-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,53,40,0.35);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: opacity var(--transition-base);
}
.idea-card__play:hover { background: rgba(31,53,40,0.2); }
.idea-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  width: 52px;
  height: 52px;
}
.idea-card--playing .idea-card__play {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .idea-card { width: 220px; }
  .ideas-reel__track { justify-content: flex-start; padding: 0 var(--space-4) var(--space-2); }
}
