/* ============================================================
   HISORA — styles.css | v=20260529
   CSS compartido para todas las páginas
============================================================ */

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

:root {
  --pine:       #2C3E31;
  --pine-dk:    #203228;
  --pine-mid:   #3B5245;
  --parchment:  #F4F1EA;
  --parchment-d:#ece8df;
  --khaki:      #A89E91;
  --gold:       #D4AF37;
  --gold-lt:    #e2c55a;
  --white:      #ffffff;
  --text:       #1c2b24;
  --font-h:  'Unbounded', sans-serif;
  --font-b:  'Inter', sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --pad:     clamp(1.5rem, 5vw, 4rem);
  --max:     1200px;
  --r:       4px;
  --rlg:     14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--parchment);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section   { padding-block: clamp(5rem, 9vw, 8rem); }
.sr-only   { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0; }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .85s var(--ease),transform .85s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
.reveal[data-split] { opacity:1; transform:none; }
.d1{transition-delay:.1s} .d2{transition-delay:.22s} .d3{transition-delay:.34s}
.d4{transition-delay:.48s} .d5{transition-delay:.64s}

/* ── SPLASH (home only) ─────────────────────────────────── */
#splash {
  position:fixed; inset:0; z-index:9999;
  background:var(--pine);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.4rem;
  animation:splashOut .55s var(--ease) 3.2s forwards;
  pointer-events:none;
}
#splash svg   { width:48px; opacity:0; animation:fadeUp .7s var(--ease) .25s forwards; }
#splash .s-name { font-family:var(--font-h);font-size:clamp(1.5rem,4vw,2.2rem);font-weight:500;color:var(--white);letter-spacing:.12em;opacity:0;animation:fadeUp .7s var(--ease) .55s forwards; }
#splash .s-bar  { width:0;height:1px;background:var(--gold);animation:barGrow 1s var(--ease) 1s forwards; }
#splash .s-sub  { font-size:.65rem;font-weight:500;letter-spacing:.26em;text-transform:uppercase;color:var(--khaki);opacity:0;animation:fadeUp .7s var(--ease) 1.5s forwards; }
@keyframes fadeUp  { to{opacity:1;transform:none} from{opacity:0;transform:translateY(10px)} }
@keyframes barGrow { to{width:72px} }
@keyframes splashOut { to{opacity:0;visibility:hidden} }

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position:fixed; inset-block-start:0; inset-inline:0; z-index:100;
  padding:1.3rem var(--pad);
  display:flex; align-items:center; justify-content:space-between;
  transition:background .4s, box-shadow .4s, backdrop-filter .4s;
}
#nav.scrolled {
  background:rgba(244,241,234,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(44,62,49,.08);
}
body.inner #nav { background:rgba(244,241,234,.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); box-shadow:0 1px 0 rgba(44,62,49,.08); }
.nav-logo {
  font-family:var(--font-h); font-size:1.15rem; font-weight:600;
  letter-spacing:.1em; color:var(--pine); text-decoration:none;
  display:flex; align-items:center; gap:.55rem;
}
.nav-logo svg { width:26px; }
.nav-links { list-style:none; display:flex; align-items:center; gap:2rem; }
.nav-links a {
  font-size:.75rem; font-weight:500; letter-spacing:.12em; text-transform:uppercase;
  color:var(--pine); text-decoration:none; opacity:.65; transition:opacity .2s;
}
.nav-links a:hover, .nav-links a.nav-active { opacity:1; }
.btn-nav {
  font-size:.75rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--parchment); background:var(--pine); padding:.6rem 1.4rem;
  text-decoration:none; border-radius:var(--r); border:2px solid var(--pine);
  transition:background .25s, transform .2s;
}
.btn-nav:hover { background:var(--pine-mid); transform:translateY(-1px); }
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.burger span { display:block; width:22px; height:2px; background:var(--pine); transition:transform .3s,opacity .3s; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display:none; position:fixed; inset:0; z-index:99;
  background:var(--parchment);
  flex-direction:column; align-items:center; justify-content:center; gap:2.2rem;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  font-family:var(--font-h); font-size:clamp(1.4rem,5vw,2rem); font-weight:400;
  color:var(--pine); text-decoration:none; letter-spacing:.05em; transition:opacity .2s;
}
.nav-mobile a:hover { opacity:.55; }
.nav-mobile .mob-cta {
  font-size:.8rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--parchment); background:var(--pine); padding:.85rem 2.2rem;
  border-radius:var(--r); margin-top:.8rem;
}

/* ── REUSABLE ────────────────────────────────────────────── */
.tag {
  display:inline-block; font-size:.62rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--khaki); border:1px solid currentColor;
  padding:.28rem .75rem; border-radius:999px; margin-bottom:1.3rem;
}
.tag-gold { color:var(--gold); border-color:var(--gold); }
.section-header { text-align:center; margin-bottom:clamp(2.8rem,5.5vw,4.5rem); }
.section-title { font-family:var(--font-h); font-size:clamp(1.7rem,3.2vw,2.8rem); font-weight:300; color:var(--pine); line-height:1.15; letter-spacing:-.02em; margin-bottom:.9rem; }
.section-sub { font-size:.98rem; color:var(--khaki); max-width:52ch; margin-inline:auto; line-height:1.75; font-weight:300; }
.btn-primary {
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.8rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--parchment); background:var(--pine); padding:.88rem 2rem;
  text-decoration:none; border-radius:var(--r); border:2px solid var(--pine);
  transition:background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background:var(--pine-mid); border-color:var(--pine-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(44,62,49,.2); }
.btn-ghost {
  display:inline-flex; align-items:center;
  font-size:.8rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--pine); background:transparent; padding:.88rem 2rem;
  text-decoration:none; border-radius:var(--r); border:2px solid rgba(44,62,49,.28);
  transition:border-color .25s, transform .2s;
}
.btn-ghost:hover { border-color:var(--pine); transform:translateY(-2px); }

/* ── PAGE HERO (páginas interiores) ─────────────────────── */
.page-hero {
  background:var(--pine); position:relative; overflow:hidden;
  padding:clamp(7rem,13vw,10rem) var(--pad) clamp(3.5rem,6vw,5rem);
  text-align:center;
}
.page-hero::before {
  content:''; position:absolute; top:-30%; right:-10%;
  width:60%; padding-top:60%;
  background:radial-gradient(circle,rgba(212,175,55,.07) 0%,transparent 65%);
  border-radius:50%; pointer-events:none;
}
.page-hero-eyebrow { font-size:.62rem; font-weight:600; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:1.1rem; display:block; }
.page-hero-title { font-family:var(--font-h); font-size:clamp(1.9rem,4.2vw,3.8rem); font-weight:300; color:var(--white); line-height:1.1; letter-spacing:-.022em; margin-bottom:.9rem; }
.page-hero-sub { font-size:clamp(.9rem,1.4vw,1.05rem); color:rgba(244,241,234,.55); max-width:52ch; margin-inline:auto; line-height:1.8; font-weight:300; }
.breadcrumb { display:flex; align-items:center; gap:.45rem; font-size:.68rem; color:rgba(244,241,234,.35); justify-content:center; margin-bottom:1.4rem; }
.breadcrumb a { color:rgba(244,241,234,.45); text-decoration:none; transition:color .2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:rgba(244,241,234,.2); }

/* ── HOME HERO ───────────────────────────────────────────── */
#hero {
  min-height:100svh; background:var(--parchment);
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; padding-top:5.5rem; overflow:hidden; position:relative;
}
#hero::after { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse 55% 70% at 80% 50%,rgba(44,62,49,.035) 0%,transparent 70%); }
.hero-copy { padding:clamp(2rem,5vw,4.5rem) var(--pad); }
.hero-eyebrow { font-size:.62rem; font-weight:600; letter-spacing:.28em; text-transform:uppercase; color:var(--khaki); margin-bottom:1.5rem; display:flex; align-items:center; gap:.8rem; }
.hero-eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
.hero-h1 { font-family:var(--font-h); font-size:clamp(2.4rem,5vw,4.6rem); font-weight:400; color:var(--pine); line-height:1.06; letter-spacing:-.025em; margin-bottom:.5rem; }
.hero-h1 .dot { color:var(--gold); }
.hero-h2 { font-family:var(--font-h); font-size:clamp(1rem,2vw,1.7rem); font-weight:300; color:var(--khaki); letter-spacing:-.01em; line-height:1.2; margin-bottom:1.8rem; }
.hero-sub { font-size:clamp(.9rem,1.4vw,1.05rem); color:var(--khaki); line-height:1.75; font-weight:300; max-width:40ch; margin-bottom:2.6rem; }
.hero-ctas { display:flex; gap:.9rem; flex-wrap:wrap; }
.hero-img-wrap { position:relative; height:100svh; overflow:hidden; }
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.hero-img-wrap::before { content:''; position:absolute; inset:0; background:linear-gradient(to right,var(--parchment) 0%,rgba(244,241,234,0) 18%),linear-gradient(to top,var(--parchment) 0%,rgba(244,241,234,0) 12%); z-index:1; pointer-events:none; }
.scroll-cue { position:absolute; bottom:2rem; left:var(--pad); display:flex; align-items:center; gap:.6rem; opacity:.38; }
.scroll-cue span { font-size:.58rem; letter-spacing:.2em; text-transform:uppercase; color:var(--pine); font-weight:500; }
.scroll-cue-line { width:1px; height:36px; background:linear-gradient(to bottom,var(--pine),transparent); animation:pulseH 2s ease-in-out infinite; }
@keyframes pulseH { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── STATS BAR ───────────────────────────────────────────── */
#stats { background:var(--pine); padding-block:2rem; }
.stats-row { display:flex; align-items:center; justify-content:space-around; gap:1.5rem; flex-wrap:wrap; }
.stat { text-align:center; }
.stat-n { font-family:var(--font-h); font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:300; color:var(--white); letter-spacing:-.02em; line-height:1; }
.stat-n em { color:var(--gold); font-style:normal; }
.stat-l { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(244,241,234,.45); margin-top:.35rem; font-weight:500; }
.stat-div { width:1px; height:36px; background:rgba(255,255,255,.1); }

/* ── PHILOSOPHY ──────────────────────────────────────────── */
#philosophy { background:var(--pine); position:relative; overflow:hidden; }
#philosophy::before { content:''; position:absolute; top:-20%; right:-8%; width:55%; padding-top:55%; background:radial-gradient(circle,rgba(212,175,55,.07) 0%,transparent 65%); border-radius:50%; pointer-events:none; }
.phi-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,6vw,5.5rem); align-items:start; }
.phi-stmt { font-family:var(--font-h); font-size:clamp(1.9rem,3.8vw,3.4rem); font-weight:300; color:var(--white); line-height:1.1; letter-spacing:-.022em; }
.phi-stmt strong { font-weight:600; color:var(--gold); }
.phi-body { font-size:clamp(.9rem,1.3vw,1.05rem); color:rgba(244,241,234,.6); line-height:1.8; font-weight:300; margin-bottom:2.8rem; }
.pillars { display:flex; flex-direction:column; gap:1.4rem; }
.pillar { display:flex; align-items:flex-start; gap:1.1rem; padding:1.3rem; border:1px solid rgba(255,255,255,.07); border-radius:var(--rlg); background:rgba(255,255,255,.025); transition:border-color .3s,background .3s; }
.pillar:hover { border-color:rgba(212,175,55,.22); background:rgba(212,175,55,.04); }
.pillar-icon { width:38px; height:38px; flex-shrink:0; background:rgba(212,175,55,.1); border-radius:9px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1rem; }
.pillar strong { display:block; font-size:.83rem; font-weight:600; color:var(--white); margin-bottom:.22rem; }
.pillar span   { font-size:.78rem; color:rgba(244,241,234,.48); line-height:1.5; }

/* ── LIFESTYLE ───────────────────────────────────────────── */
#lifestyle { position:relative; isolation:isolate; height:clamp(420px,52vw,640px); overflow:hidden; background:var(--pine-dk); }
/* fondo: la propia foto, ampliada y desenfocada, para rellenar sin recortar nada */
#lifestyle::before { content:''; position:absolute; inset:-6%; z-index:0; background:url("/assets/img/lifestyle.webp?v=20260615") center/cover; filter:blur(34px) brightness(.62) saturate(1.05); transform:scale(1.06); }
#lifestyle picture, #lifestyle img { position:relative; z-index:1; }
#lifestyle img { width:100%; height:100%; object-fit:contain; object-position:center; display:block; }
#lifestyle::after { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(to bottom,rgba(32,50,40,.55) 0%,rgba(44,62,49,0) 22%),linear-gradient(to top,rgba(32,50,40,.45) 0%,rgba(44,62,49,0) 22%); pointer-events:none; }
.lifestyle-caption { position:absolute; bottom:0; left:0; right:0; z-index:2; padding:3rem var(--pad) 2.5rem; background:linear-gradient(to top,rgba(44,62,49,.72) 0%,transparent 100%); display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.lifestyle-caption p { font-family:var(--font-h); font-size:clamp(.75rem,1.8vw,1.15rem); font-weight:300; color:var(--white); letter-spacing:.06em; text-transform:uppercase; opacity:.9; }
.lifestyle-caption p strong { font-weight:600; color:var(--gold); }

/* ── PRODUCTS (home) ─────────────────────────────────────── */
#productos { background:var(--parchment); }
.products-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.4rem,2.8vw,2.2rem); }
.p-card { background:var(--white); border-radius:var(--rlg); overflow:hidden; border:1px solid rgba(44,62,49,.07); transition:transform .4s var(--ease),box-shadow .4s var(--ease); }
.p-card:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(44,62,49,.11); }
.p-photo { position:relative; overflow:hidden; height:clamp(220px,26vw,340px); }
.p-photo img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; transition:transform .6s var(--ease); }
.p-card:hover .p-photo img { transform:scale(1.04); }
.p-photo::after { content:''; position:absolute; bottom:0; left:0; right:0; height:40%; background:linear-gradient(to top,rgba(44,62,49,.18) 0%,transparent 100%); pointer-events:none; }
.p-info { padding:clamp(1.4rem,2.8vw,2.2rem); }
.p-name { font-family:var(--font-h); font-size:clamp(1rem,1.9vw,1.45rem); font-weight:500; color:var(--pine); line-height:1.2; margin-bottom:.65rem; }
.p-tagline { font-size:.88rem; color:var(--khaki); line-height:1.65; font-weight:300; margin-bottom:1.7rem; }
.formula-list { list-style:none; display:flex; flex-direction:column; gap:.65rem; margin-bottom:1.7rem; padding:1.3rem; background:var(--parchment); border-radius:10px; border:1px solid rgba(44,62,49,.06); }
.fi { display:flex; align-items:flex-start; gap:.65rem; font-size:.8rem; line-height:1.4; }
.fi-dot { flex-shrink:0; margin-top:.38rem; width:5px; height:5px; background:var(--pine); border-radius:50%; opacity:.45; }
.fi strong { color:var(--pine); font-weight:600; }
.fi span   { color:var(--khaki); }
.badge { display:inline-flex; align-items:center; gap:.35rem; font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--pine-dk); background:linear-gradient(135deg,var(--gold-lt),var(--gold)); padding:.32rem .75rem; border-radius:999px; margin-bottom:1.5rem; }
.badge::before { content:'✦'; font-size:.48rem; }
.p-foot { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; padding-top:1.3rem; border-top:1px solid rgba(44,62,49,.07); }
.p-price { font-family:var(--font-h); font-size:1.45rem; font-weight:500; color:var(--pine); letter-spacing:-.02em; }
.p-price span { font-family:var(--font-b); font-size:.7rem; font-weight:400; color:var(--khaki); display:block; }
.p-actions { display:flex; flex-direction:column; gap:.45rem; align-items:flex-end; }
.btn-add, .btn-amazon-sm {
  font-size:.76rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--parchment); background:var(--pine); padding:.72rem 1.5rem;
  border-radius:var(--r); text-decoration:none; border:2px solid var(--pine);
  cursor:pointer; transition:background .25s,transform .2s,box-shadow .25s; display:inline-block;
}
.btn-add:hover, .btn-amazon-sm:hover { background:var(--pine-mid); border-color:var(--pine-mid); transform:translateY(-1px); box-shadow:0 6px 18px rgba(44,62,49,.18); }
.btn-link { font-size:.7rem; font-weight:500; letter-spacing:.06em; text-transform:uppercase; color:var(--khaki); text-decoration:none; transition:color .2s; }
.btn-link:hover { color:var(--pine); }

/* ── WHY ─────────────────────────────────────────────────── */
#por-que { background:var(--parchment-d); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.3rem,2.8vw,2.2rem); margin-bottom:clamp(2.5rem,5vw,3.8rem); }
.why-card { background:var(--white); padding:clamp(1.6rem,2.8vw,2.2rem); border-radius:var(--rlg); border:1px solid rgba(44,62,49,.07); transition:transform .35s var(--ease),box-shadow .35s var(--ease); }
.why-card:hover { transform:translateY(-4px); box-shadow:0 14px 44px rgba(44,62,49,.09); }
.why-icon { width:44px; height:44px; background:rgba(44,62,49,.07); border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:1.1rem; font-size:1.2rem; }
.why-title { font-family:var(--font-h); font-size:.88rem; font-weight:600; color:var(--pine); margin-bottom:.55rem; }
.why-body  { font-size:.83rem; color:var(--khaki); line-height:1.7; font-weight:300; }
.why-stmt  { text-align:center; font-family:var(--font-h); font-size:clamp(1.1rem,2.4vw,1.85rem); font-weight:300; color:var(--pine); letter-spacing:.07em; padding:clamp(1.8rem,3.5vw,2.8rem); border-top:1px solid rgba(44,62,49,.1); }
.why-stmt strong { font-weight:600; color:var(--khaki); }

/* ── COMPARE TABLE ───────────────────────────────────────── */
#ingredientes { background:var(--parchment); }
table.cmp { width:100%; border-collapse:collapse; border-radius:var(--rlg); overflow:hidden; box-shadow:0 2px 28px rgba(44,62,49,.07); }
.cmp thead { background:var(--pine); }
.cmp th { padding:1.1rem 1.5rem; font-family:var(--font-h); font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; text-align:left; }
.cmp th:first-child { color:rgba(255,255,255,.45); }
.cmp .th-h { color:var(--gold); }
.cmp .th-g { color:rgba(255,255,255,.28); }
.cmp tbody tr { border-bottom:1px solid rgba(44,62,49,.055); transition:background .2s; }
.cmp tbody tr:last-child { border-bottom:none; }
.cmp tbody tr:nth-child(odd)  { background:var(--white); }
.cmp tbody tr:nth-child(even) { background:var(--parchment); }
.cmp tbody tr:hover { background:rgba(44,62,49,.03); }
.cmp td { padding:1.05rem 1.5rem; font-size:.83rem; vertical-align:middle; }
.cmp td:first-child { font-weight:600; color:var(--pine); font-size:.78rem; letter-spacing:.03em; }
.cmp .td-h { color:var(--pine); font-weight:500; }
.cmp .td-h::before { content:'✓ '; color:var(--pine); font-weight:700; background:rgba(44,62,49,.1); border-radius:50%; width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; font-size:.65rem; margin-right:.4rem; vertical-align:middle; }
.cmp .td-g { color:var(--khaki); font-style:italic; }
.cmp .td-g::before { content:'✗ '; color:rgba(168,158,145,.55); }
.cmp .th-why { color:rgba(255,255,255,.5); }
.cmp .td-why { color:var(--khaki); }

/* ── REVIEWS ─────────────────────────────────────────────── */
#opiniones { background:var(--parchment-d); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.1rem,2.4vw,1.9rem); }
.r-card { background:var(--white); padding:clamp(1.4rem,2.4vw,1.9rem); border-radius:var(--rlg); border:1px solid rgba(44,62,49,.07); display:flex; flex-direction:column; gap:.9rem; transition:transform .3s var(--ease),box-shadow .3s var(--ease); }
.r-card:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(44,62,49,.08); }
.r-stars { display:flex; gap:2px; }
.r-stars span { color:var(--gold); font-size:.88rem; }
.r-text { font-size:.86rem; color:var(--pine); line-height:1.7; font-weight:300; flex-grow:1; }
.r-text::before { content:'"'; font-family:Georgia,serif; font-size:1.9rem; color:var(--gold); line-height:0; vertical-align:-.48rem; margin-right:1px; }
.r-author { display:flex; align-items:center; gap:.75rem; padding-top:.75rem; border-top:1px solid rgba(44,62,49,.06); }
.r-av { width:34px; height:34px; border-radius:50%; background:var(--parchment-d); display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:.65rem; font-weight:600; color:var(--pine); flex-shrink:0; }
.r-name { font-size:.76rem; font-weight:600; color:var(--pine); }
.r-loc  { font-size:.68rem; color:var(--khaki); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
#newsletter { background:var(--pine); position:relative; overflow:hidden; }
#newsletter::before { content:''; position:absolute; bottom:-35%; left:-4%; width:46%; padding-top:46%; background:radial-gradient(circle,rgba(212,175,55,.08) 0%,transparent 65%); border-radius:50%; pointer-events:none; }
.nl-inner { text-align:center; max-width:600px; margin-inline:auto; position:relative; z-index:1; }
.nl-title  { font-family:var(--font-h); font-size:clamp(1.5rem,3.2vw,2.6rem); font-weight:300; color:var(--white); line-height:1.2; margin-bottom:.9rem; }
.nl-sub    { font-size:.93rem; color:rgba(244,241,234,.55); margin-bottom:2.4rem; line-height:1.7; font-weight:300; }
.nl-form   { display:flex; gap:.75rem; max-width:460px; margin-inline:auto; }
.nl-input  { flex:1; padding:.88rem 1.15rem; border-radius:var(--r); border:1.5px solid rgba(255,255,255,.11); background:rgba(255,255,255,.06); color:var(--white); font-family:var(--font-b); font-size:.86rem; outline:none; transition:border-color .25s; }
.nl-input::placeholder { color:rgba(255,255,255,.28); }
.nl-input:focus { border-color:var(--gold); }
.btn-nl { padding:.88rem 1.7rem; background:var(--gold); color:var(--pine-dk); font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; border:none; border-radius:var(--r); cursor:pointer; white-space:nowrap; transition:background .25s,transform .2s; }
.btn-nl:hover { background:var(--gold-lt); transform:translateY(-1px); }
.nl-privacy { margin-top:.9rem; font-size:.68rem; color:rgba(244,241,234,.3); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background:var(--pine-dk); padding-block:clamp(3rem,5.5vw,4.5rem) 1.8rem; }
.foot-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:clamp(1.8rem,4vw,3.8rem); margin-bottom:clamp(2.5rem,4.5vw,3.5rem); padding-bottom:clamp(2rem,4vw,3rem); border-bottom:1px solid rgba(255,255,255,.065); }
.foot-brand-logo { font-family:var(--font-h); font-size:1.2rem; font-weight:600; color:var(--white); letter-spacing:.1em; text-decoration:none; display:flex; align-items:center; gap:.5rem; margin-bottom:.9rem; }
.foot-brand-logo svg { width:24px; }
.foot-tag { font-size:.76rem; color:rgba(244,241,234,.38); line-height:1.7; max-width:26ch; font-weight:300; }
.foot-col h4 { font-family:var(--font-h); font-size:.64rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(244,241,234,.3); margin-bottom:1.1rem; }
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.foot-col a { font-size:.8rem; color:rgba(244,241,234,.52); text-decoration:none; transition:color .2s; }
.foot-col a:hover { color:var(--white); }
.foot-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.8rem; }
.foot-copy   { font-size:.7rem; color:rgba(244,241,234,.28); }
.foot-social { display:flex; gap:.9rem; }
.foot-social a { font-size:.7rem; color:rgba(244,241,234,.32); text-decoration:none; letter-spacing:.05em; transition:color .2s; }
.foot-social a:hover { color:var(--white); }

/* ── TIENDA ──────────────────────────────────────────────── */
.shop-header { text-align:center; padding-block:clamp(7rem,12vw,9rem) clamp(2rem,4vw,3rem); }
.shop-header h1 { font-family:var(--font-h); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:300; color:var(--pine); line-height:1.1; letter-spacing:-.02em; margin-bottom:.65rem; }
.shop-header p { font-size:.95rem; color:var(--khaki); max-width:48ch; margin-inline:auto; line-height:1.8; font-weight:300; }
.shop-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1.4rem,2.8vw,2.2rem); }
.shop-stmt { text-align:center; padding:clamp(3rem,5.5vw,4.5rem) var(--pad); background:var(--pine); }
.shop-stmt p { font-family:var(--font-h); font-size:clamp(1.1rem,2.2vw,1.6rem); font-weight:300; color:var(--white); letter-spacing:.04em; }
.shop-stmt strong { color:var(--gold); font-weight:500; }

/* ── PRODUCT DETAIL ──────────────────────────────────────── */
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,5vw,5rem); align-items:start; padding-block:clamp(3rem,6vw,5rem); }
.product-img-sticky { position:sticky; top:6rem; border-radius:var(--rlg); overflow:hidden; }
.product-img-sticky img { width:100%; display:block; border-radius:var(--rlg); }
.product-detail-info .tag { margin-bottom:1rem; }
.product-detail-info h1 { font-family:var(--font-h); font-size:clamp(1.4rem,2.8vw,2.2rem); font-weight:400; color:var(--pine); line-height:1.15; letter-spacing:-.02em; margin-bottom:.4rem; }
.product-tagline-d { font-family:var(--font-h); font-size:clamp(.9rem,1.4vw,1.1rem); font-weight:300; color:var(--khaki); margin-bottom:1.5rem; }
.product-price-d { font-family:var(--font-h); font-size:2rem; font-weight:500; color:var(--pine); letter-spacing:-.03em; margin-bottom:.3rem; }
.product-price-d span { font-family:var(--font-b); font-size:.78rem; font-weight:300; color:var(--khaki); display:block; margin-top:.2rem; }
.product-desc-d { font-size:.95rem; color:var(--khaki); line-height:1.85; font-weight:300; margin:1.5rem 0; }
.btn-amazon {
  display:flex; align-items:center; justify-content:center; gap:.55rem; width:100%;
  font-size:.85rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--parchment); background:var(--pine); padding:1.05rem 2rem;
  text-decoration:none; border-radius:var(--r); border:2px solid var(--pine);
  transition:background .25s,transform .2s,box-shadow .25s; margin-bottom:.65rem;
}
.btn-amazon:hover { background:var(--pine-mid); transform:translateY(-2px); box-shadow:0 10px 28px rgba(44,62,49,.2); }
.product-trust { display:flex; align-items:center; justify-content:center; gap:1.5rem; flex-wrap:wrap; margin-top:1rem; padding:.9rem; background:var(--parchment); border-radius:8px; }
.trust-item { font-size:.68rem; font-weight:500; letter-spacing:.08em; color:var(--khaki); text-transform:uppercase; display:flex; align-items:center; gap:.35rem; }
.product-tabs { margin-top:2.5rem; }
.tab-nav { display:flex; border-bottom:2px solid rgba(44,62,49,.1); margin-bottom:2rem; }
.tab-btn { padding:.75rem 1.5rem; font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--khaki); background:none; border:none; cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-2px; transition:color .2s,border-color .2s; }
.tab-btn.active { color:var(--pine); border-bottom-color:var(--pine); }
.tab-pane { display:none; }
.tab-pane.active { display:block; }
.formula-table { width:100%; border-collapse:collapse; }
.formula-table th { background:var(--pine); color:var(--white); font-family:var(--font-h); font-size:.68rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; padding:.85rem 1.1rem; text-align:left; }
.formula-table td { padding:.85rem 1.1rem; font-size:.85rem; border-bottom:1px solid rgba(44,62,49,.06); vertical-align:middle; }
.formula-table tr:nth-child(odd) td { background:var(--parchment); }
.formula-table tr:nth-child(even) td { background:var(--white); }
.formula-table td:first-child { font-weight:500; color:var(--pine); }
.uso-steps { display:flex; flex-direction:column; gap:1rem; }
.uso-step { display:flex; gap:1rem; align-items:flex-start; }
.uso-step-n { width:28px; height:28px; border-radius:50%; background:var(--pine); color:var(--white); font-family:var(--font-h); font-size:.7rem; font-weight:600; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:.2rem; }
.uso-step p { font-size:.9rem; color:var(--text); line-height:1.75; }
.aviso-box { background:rgba(168,158,145,.1); border-radius:8px; padding:1rem 1.3rem; font-size:.8rem; color:var(--khaki); line-height:1.7; margin-top:1.5rem; }
.cross-sell-box { background:var(--parchment-d); border-radius:var(--rlg); padding:clamp(1.5rem,2.8vw,2.2rem); margin-top:2rem; display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; border:1px solid rgba(44,62,49,.07); }
.cross-sell-box-text strong { color:var(--pine); display:block; font-size:.95rem; margin-bottom:.25rem; }
.cross-sell-box-text span { font-size:.85rem; color:var(--khaki); }
.product-bullets { display:flex; flex-direction:column; gap:.7rem; margin:1.5rem 0; padding:1.3rem; background:var(--parchment); border-radius:10px; border:1px solid rgba(44,62,49,.06); }
.product-bullet { display:flex; align-items:flex-start; gap:.65rem; font-size:.83rem; line-height:1.45; }
.product-bullet::before { content:''; flex-shrink:0; margin-top:.45rem; width:5px; height:5px; background:var(--gold); border-radius:50%; }
.product-bullet strong { color:var(--pine); font-weight:600; }
.product-bullet span { color:var(--khaki); }

/* ── FILOSOF ÍA / INGREDIENTES ───────────────────────────── */
.phi-full-section { padding-block:clamp(4rem,8vw,7rem); }
.phi-full-section.bg-pine { background:var(--pine); }
.phi-full-section.bg-alt { background:var(--parchment-d); }
.phi-text-block { max-width:720px; margin-inline:auto; }
.phi-text-block h2 { font-family:var(--font-h); font-size:clamp(1.3rem,2.5vw,2rem); font-weight:300; color:var(--pine); line-height:1.15; letter-spacing:-.018em; margin-bottom:1.1rem; }
.phi-text-block h2.white { color:var(--white); }
.phi-text-block p { font-size:.96rem; color:var(--text); line-height:1.9; font-weight:300; margin-bottom:1rem; }
.phi-text-block p.muted { color:rgba(244,241,234,.6); }
.phi-text-block ul { padding-left:1.4rem; margin-top:.8rem; }
.phi-text-block li { font-size:.92rem; color:var(--text); line-height:1.85; margin-bottom:.4rem; }
.phi-text-block li.muted { color:rgba(244,241,234,.55); }
.phi-text-block li::marker { color:var(--gold); }
.phi-two-col { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:start; max-width:900px; margin-inline:auto; }
.phi-divider { width:48px; height:2px; background:var(--gold); margin:2rem 0; }
.phi-cta-row { text-align:center; margin-top:3rem; }

/* ── INGREDIENTE CARD ────────────────────────────────────── */
.ing-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:1.8rem; }
.ing-card { background:var(--white); border-radius:var(--rlg); padding:clamp(1.5rem,2.5vw,2rem); border:1px solid rgba(44,62,49,.07); }
.ing-card-product { font-size:.62rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:.7rem; }
.ing-card h3 { font-family:var(--font-h); font-size:.95rem; font-weight:500; color:var(--pine); margin-bottom:.8rem; line-height:1.3; }
.ing-card p { font-size:.85rem; color:var(--khaki); line-height:1.75; font-weight:300; }
.ing-card .ing-dose { margin-top:.9rem; font-size:.75rem; font-weight:600; color:var(--pine); letter-spacing:.06em; background:var(--parchment); padding:.4rem .7rem; border-radius:6px; display:inline-block; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width:760px; margin-inline:auto; }
.faq-cat-title { font-family:var(--font-h); font-size:.7rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; margin-top:3.5rem; padding-bottom:.6rem; border-bottom:1px solid rgba(212,175,55,.3); }
.faq-cat-title:first-of-type { margin-top:0; }
.faq-item { border-bottom:1px solid rgba(44,62,49,.1); }
.faq-q { width:100%; text-align:left; background:none; border:none; padding:1.3rem 0; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:1rem; font-family:var(--font-b); font-size:.96rem; font-weight:500; color:var(--pine); line-height:1.5; transition:color .2s; }
.faq-q:hover { color:var(--pine-mid); }
.faq-q .faq-icon { flex-shrink:0; width:20px; height:20px; border-radius:50%; border:1.5px solid rgba(44,62,49,.25); display:flex; align-items:center; justify-content:center; transition:transform .3s,background .2s,border-color .2s; }
.faq-q .faq-icon::after { content:'+'; font-size:.9rem; color:var(--pine); line-height:1; }
.faq-item.open .faq-q .faq-icon { transform:rotate(45deg); background:var(--pine); border-color:var(--pine); }
.faq-item.open .faq-q .faq-icon::after { color:var(--white); }
.faq-a { overflow:hidden; max-height:0; transition:max-height .4s var(--ease),padding .3s; }
.faq-item.open .faq-a { max-height:400px; }
.faq-a-inner { padding-bottom:1.4rem; font-size:.9rem; color:var(--khaki); line-height:1.85; font-weight:300; max-width:60ch; }

/* ── CONTACTO ────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:clamp(2rem,5vw,4rem); align-items:start; }
.contact-info-card { background:var(--pine); border-radius:var(--rlg); padding:clamp(1.8rem,3vw,2.5rem); }
.contact-info-card h3 { font-family:var(--font-h); font-size:.88rem; font-weight:500; color:var(--white); margin-bottom:1.8rem; letter-spacing:.04em; }
.contact-info-item { margin-bottom:1.4rem; }
.contact-info-item .ci-label { font-size:.62rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:.3rem; }
.contact-info-item .ci-val { font-size:.88rem; color:rgba(244,241,234,.7); line-height:1.55; }
.contact-form-card { background:var(--white); border-radius:var(--rlg); padding:clamp(1.8rem,3.5vw,2.8rem); border:1px solid rgba(44,62,49,.07); }
.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--pine); margin-bottom:.4rem; }
.form-input, .form-select, .form-textarea { width:100%; padding:.82rem 1rem; border:1.5px solid rgba(44,62,49,.14); border-radius:var(--r); background:var(--parchment); font-family:var(--font-b); font-size:.9rem; color:var(--text); outline:none; transition:border-color .25s,box-shadow .25s; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--pine); box-shadow:0 0 0 3px rgba(44,62,49,.08); }
.form-textarea { resize:vertical; min-height:130px; line-height:1.6; }
.form-check { display:flex; align-items:flex-start; gap:.65rem; margin-top:1.3rem; }
.form-check input[type=checkbox] { margin-top:.2rem; accent-color:var(--pine); flex-shrink:0; }
.form-check label { font-size:.8rem; color:var(--khaki); line-height:1.55; }
.form-check a { color:var(--pine); }
.btn-submit { width:100%; padding:.95rem; margin-top:1.3rem; background:var(--pine); color:var(--parchment); font-family:var(--font-b); font-size:.82rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; border:none; border-radius:var(--r); cursor:pointer; transition:background .25s,transform .2s; }
.btn-submit:hover { background:var(--pine-mid); transform:translateY(-1px); }
.form-success { display:none; text-align:center; padding:2rem; font-size:.95rem; color:var(--pine); font-weight:500; }

/* ── LEGAL ───────────────────────────────────────────────── */
.legal-content { max-width:760px; margin-inline:auto; padding-block:clamp(3rem,6vw,5rem); }
.legal-alert { background:rgba(212,175,55,.1); border:1px solid rgba(212,175,55,.3); border-radius:8px; padding:1rem 1.3rem; margin-bottom:2rem; font-size:.85rem; color:var(--pine); line-height:1.7; }
.legal-content h2 { font-family:var(--font-h); font-size:1.05rem; font-weight:500; color:var(--pine); margin:2.5rem 0 .8rem; padding-top:2rem; border-top:1px solid rgba(44,62,49,.1); }
.legal-content h2:first-of-type { border-top:none; margin-top:0; padding-top:0; }
.legal-content p { font-size:.92rem; color:var(--text); line-height:1.9; margin-bottom:.9rem; }
.legal-content ul { padding-left:1.5rem; margin-bottom:1rem; }
.legal-content li { font-size:.9rem; color:var(--text); line-height:1.85; margin-bottom:.4rem; }
.legal-content strong { color:var(--pine); font-weight:600; }
.pending { background:rgba(168,158,145,.12); border-radius:4px; padding:.1rem .5rem; font-style:italic; color:var(--khaki); font-size:.88em; }
.legal-table { width:100%; border-collapse:collapse; margin:1rem 0; font-size:.85rem; }
.legal-table th { background:var(--parchment-d); padding:.7rem 1rem; font-weight:600; color:var(--pine); text-align:left; border-bottom:1px solid rgba(44,62,49,.1); }
.legal-table td { padding:.7rem 1rem; border-bottom:1px solid rgba(44,62,49,.06); color:var(--text); }

/* ── 404 ─────────────────────────────────────────────────── */
.not-found { min-height:100svh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:var(--pad); }
.not-found .nf-num { font-family:var(--font-h); font-size:clamp(5rem,18vw,12rem); font-weight:300; color:var(--pine); line-height:1; letter-spacing:-.04em; opacity:.15; }
.not-found h1 { font-family:var(--font-h); font-size:clamp(1.2rem,2.5vw,1.8rem); font-weight:300; color:var(--pine); margin-bottom:.8rem; margin-top:-1rem; }
.not-found p { font-size:.93rem; color:var(--khaki); max-width:38ch; margin-inline:auto; margin-bottom:2.5rem; line-height:1.75; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1024px) {
  .foot-grid { grid-template-columns:1fr 1fr; }
  .foot-brand { grid-column:1/-1; }
  .contact-grid { grid-template-columns:1fr; }
  .phi-two-col { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  #hero { grid-template-columns:1fr; padding-top:5rem; }
  .hero-copy { order:2; padding:2rem var(--pad) 3rem; text-align:center; }
  .hero-eyebrow { justify-content:center; }
  .hero-sub { margin-inline:auto; }
  .hero-ctas { justify-content:center; }
  .hero-img-wrap { order:1; height:55svh; }
  .hero-img-wrap::before { background:linear-gradient(to bottom,var(--parchment) 0%,rgba(244,241,234,0) 20%),linear-gradient(to top,var(--parchment) 0%,rgba(244,241,234,0) 20%); }
  .phi-grid { grid-template-columns:1fr; gap:2.2rem; }
  .products-grid,.shop-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .nl-form { flex-direction:column; }
  .btn-nl { width:100%; padding-block:.95rem; }
  .nav-links,.btn-nav { display:none; }
  .burger { display:flex; }
  .stat-div { display:none; }
  .stats-row { gap:1.4rem; justify-content:center; }
  .scroll-cue { display:none; }
  #lifestyle { height:clamp(280px,65vw,420px); }
  .product-detail-grid { grid-template-columns:1fr; }
  .product-img-sticky { position:static; }
  .tab-btn { padding:.7rem .9rem; font-size:.65rem; }
  .ing-grid { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .foot-grid { grid-template-columns:1fr; }
  .cmp th:last-child,.cmp td:last-child { display:none; }
}
@media (prefers-reduced-motion:reduce) {
  #splash { animation:none; opacity:0; visibility:hidden; }
  .scroll-cue-line { animation:none; }
}

/* ── PATRÓN CHLADNI (marca de agua) ─────────────────────── */
.section--pattern { position: relative; }
.section--pattern > * { position: relative; z-index: 1; }
.section--pattern::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("/assets/img/chladni-pattern.svg") repeat;
  background-size: 320px; opacity: .05;
}
.section--pattern-dark::before {
  background: url("/assets/img/chladni-pattern-cream.svg") repeat;
  background-size: 320px; opacity: .06;
}

/* ── IMÁGENES DE SECCIÓN (variantes derivadas, armonizadas) ── */
.section-img-band {
  max-width: 560px; margin: 0 auto clamp(2rem,4vw,3rem);
  border-radius: var(--rlg); overflow: hidden;
  box-shadow: 0 12px 44px rgba(44,62,49,.12);
  aspect-ratio: 2 / 1;
}
.section-img-band img { width:100%; height:100%; object-fit:cover; display:block; }
.section-img-band.portrait { max-width:340px; aspect-ratio:4/5; }
.section-img-band.slim { max-width:760px; aspect-ratio:5/1; margin-top:.5rem; }
/* Stats: textura de musgo de fondo (no compite con las cifras) */
#stats { position: relative; overflow: hidden; }
#stats::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: url("/assets/img/moss-texture.webp?v=20260615") center/cover;
  opacity: .15;
}
#stats .container { position: relative; z-index: 1; }
/* Newsletter: los dos frascos como fondo tenue */
#newsletter::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: url("/assets/img/hero-products.webp?v=20260615") center/cover;
  opacity: .18;
}

/* ── CHLADNI STATEMENT (filosofia.html) ─────────────────── */
.chladni-statement {
  position: relative;
  height: clamp(320px, 50vw, 580px);
  overflow: hidden;
  background: var(--pine-dk);
  display: flex; align-items: flex-end;
}
.chladni-statement img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  display: block;
  mix-blend-mode: luminosity;
}
.chladni-caption {
  position: relative; z-index: 2;
  padding: clamp(2rem,4vw,3.5rem) var(--pad);
  max-width: 640px;
}
.chladni-caption span {
  display: block;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.chladni-caption p {
  font-family: var(--font-h);
  font-size: clamp(.85rem, 1.6vw, 1.15rem);
  font-weight: 300; color: rgba(244,241,234,.75);
  line-height: 1.55; letter-spacing: -.01em;
}

/* ============================================================
   EFECTOS V2 — Fotografía de marca + movimiento Chladni
   (v=20260615)
============================================================ */

/* Zoom suave al pasar por las bandas de sección */
.section-img-band { position: relative; }
.section-img-band img { transition: transform 1.1s var(--ease); }
.section-img-band:hover img { transform: scale(1.06); }
.section-img-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(32,50,40,.18), transparent 48%);
}

/* Ken Burns lento en el strip lifestyle */
@keyframes hisora-kenburns { from { transform: scale(1.06); } to { transform: scale(1.16); } }
#lifestyle::before { animation: hisora-kenburns 26s var(--ease) infinite alternate; }

/* Acento decorativo: mandala de Chladni girando muy lento */
@keyframes hisora-spin { to { transform: rotate(360deg); } }
.chladni-accent {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(52vw, 600px); aspect-ratio: 1; opacity: .12;
  background: url("/assets/img/chladni-figure.webp?v=20260615") center/contain no-repeat;
  mix-blend-mode: screen; filter: grayscale(1) brightness(1.7);
  animation: hisora-spin 120s linear infinite;
}

/* Banda full-bleed con parallax (foto editorial) */
.parallax-band {
  position: relative; overflow: hidden;
  height: clamp(360px, 56vw, 680px);
  background: var(--pine-dk);
}
.parallax-band img {
  position: absolute; left: 0; right: 0; top: -12%;
  width: 100%; height: 124%; object-fit: cover; object-position: center;
  will-change: transform;
}
.parallax-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(32,50,40,.82), rgba(32,50,40,.16) 42%, transparent 68%),
    linear-gradient(100deg, rgba(32,50,40,.52), rgba(32,50,40,.10) 50%, transparent 64%);
}
.parallax-band .band-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(2rem,5vw,3.4rem) var(--pad);
  color: var(--white);
}
.parallax-band .band-cap .tag-gold { margin-bottom: 1rem; }
.parallax-band .band-cap h3 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(1.3rem, 3.6vw, 2.6rem); line-height: 1.12;
  letter-spacing: -.01em; max-width: 16ch;
}
.parallax-band .band-cap h3 strong { color: var(--gold); font-weight: 500; }

/* Galería "Rituales" — fotografía lifestyle */
.life-gallery {
  display: grid; gap: clamp(.55rem, 1.1vw, 1rem);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 16vw, 220px);
  grid-auto-flow: dense;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}
.life-cell {
  position: relative; overflow: hidden; border-radius: var(--rlg);
  box-shadow: 0 12px 40px rgba(44,62,49,.12);
}
.life-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease);
}
.life-cell:hover img { transform: scale(1.08); }
.life-cell::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(32,50,40,.62), transparent 55%);
  opacity: .35; transition: opacity .5s var(--ease);
}
.life-cell:hover::after { opacity: .85; }
.life-cell span {
  position: absolute; left: 1.1rem; bottom: .95rem; z-index: 2;
  color: var(--white); font-family: var(--font-h); font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase; font-size: .6rem;
  opacity: 0; transform: translateY(10px); transition: .5s var(--ease);
}
.life-cell:hover span { opacity: .95; transform: none; }
.life-cell.wide { grid-column: span 2; }
.life-cell.tall { grid-row: span 2; }
@media (max-width: 760px) {
  .life-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(130px, 36vw, 180px); }
  .life-cell.tall { grid-row: span 1; }
  .life-cell.wide { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  #lifestyle img, .chladni-accent { animation: none; }
  .parallax-band img { transform: none !important; }
  .section-img-band:hover img, .life-cell:hover img, .p-card:hover .p-photo img { transform: none; }
}

/* Textura macro "ciencia" de fondo en la comparativa de ingredientes */
#ingredientes { position: relative; overflow: hidden; }
#ingredientes::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: url("/assets/img/texture-cells.webp?v=20260615") center/cover;
  opacity: .06;
}
#ingredientes .container { position: relative; z-index: 1; }

/* Banda parallax contenida (fichas de producto) */
.parallax-band.contained {
  border-radius: var(--rlg);
  height: clamp(280px, 42vw, 460px);
  margin: clamp(2.4rem, 5vw, 3.6rem) 0;
  box-shadow: 0 16px 50px rgba(44,62,49,.16);
}

/* ============================================================
   ANIMACIONES 3D (Three.js) — capas de lienzo + tilt
   Orden que emerge del caos · v=20260606
============================================================ */

/* MOMENTO 1 — lienzo del hero (cápsulas) */
.hero-img-wrap picture { position: relative; z-index: 0; display: block; width: 100%; height: 100%; }
.hero-img-wrap picture img { transform-origin: 50% 50%; will-change: transform; }
.hero-fx {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2;            /* cápsulas DELANTE del bote (foto opaca) */
  pointer-events: none;
}
.hero-fx--behind { z-index: -1; }   /* CONFIG.hero.canvasInFront = false (bote recortado) */

/* MOMENTO 2 — lienzo de partículas Chladni en #philosophy */
#philosophy .fx-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0;            /* el copy (.container) va a z-index:1 → siempre legible */
  pointer-events: none;
}

/* MOMENTO 3 — tilt 3D + marca de agua Chladni */
.fx-tilt { perspective: 1100px; }
.fx-tilt > picture { will-change: transform; backface-visibility: hidden; transform-style: preserve-3d; }
.fx-tilt-wm {
  position: absolute; inset: -10%; z-index: 1; pointer-events: none;
  background: url("/assets/img/chladni-pattern.svg") center / 300px repeat;
  opacity: .07; mix-blend-mode: overlay; will-change: transform;
}
#lifestyle.fx-tilt .fx-tilt-wm { mix-blend-mode: soft-light; opacity: .10; }

/* Degradación: sin movimiento → todo estático, sin lienzos */
@media (prefers-reduced-motion: reduce) {
  .hero-fx, #philosophy .fx-canvas, .fx-tilt-wm { display: none !important; }
  .fx-tilt > picture, .hero-img-wrap picture img { transform: none !important; }
}

/* ============================================================
   BANDA DE VÍDEO — clip del bote en ingravidez
============================================================ */
.video-band {
  position: relative; width: 100%; overflow: hidden;
  aspect-ratio: 1280 / 660;           /* recorta la franja inferior (marca de agua) */
  /* el póster como fondo: fallback si el vídeo no carga o reduced-motion */
  background: #dfe3df url("/assets/img/video-poster.webp?v=20260615") center / cover no-repeat;
}
.video-band-media {
  position: absolute; top: 0; left: 0;
  width: 100%; height: auto; display: block;  /* vídeo 16:9 anclado arriba → corta abajo */
}
.video-band::after {                  /* viñeta para legibilidad del texto */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(32,50,40,.78), rgba(32,50,40,.12) 38%, transparent 62%),
    linear-gradient(100deg, rgba(32,50,40,.48), transparent 52%);
}
.video-band .band-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(2rem,5vw,3.4rem) var(--pad); color: var(--white);
}
.video-band .band-cap .tag-gold { margin-bottom: 1rem; }
.video-band .band-cap h3 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(1.3rem,3.6vw,2.6rem); line-height: 1.12; letter-spacing: -.01em;
}
.video-band .band-cap h3 strong { color: var(--gold); font-weight: 500; }
@media (max-width: 600px) { .video-band { aspect-ratio: 1280 / 800; } }
@media (prefers-reduced-motion: reduce) { .video-band-media { display: none; } }

/* ============================================================
   VÍDEO EN LÍNEA (contenido) — sección "El estándar HISORA"
============================================================ */
.video-inline {
  position: relative; max-width: 640px;
  margin: 0 auto clamp(2rem,4vw,3rem);
  border-radius: var(--rlg); overflow: hidden;
  box-shadow: 0 14px 46px rgba(44,62,49,.16);
  aspect-ratio: 1280 / 660;          /* recorta la franja inferior (marca de agua) */
  background: #dfe3df url("/assets/img/video-poster.webp?v=20260615") center / cover no-repeat;
}
.video-inline-media {
  position: absolute; top: 0; left: 0;
  width: 100%; height: auto; display: block;
}
@media (prefers-reduced-motion: reduce) {
  .video-inline-media { display: none; }
  #lifestyle::before { animation: none; }
}

/* ============================================================
   FOTO A SANGRE COMPLETA (full-bleed) sin recortar el sujeto
   — relleno con la propia foto ampliada y desenfocada
============================================================ */
.fullbleed-photo {
  position: relative; isolation: isolate;
  width: 100%; height: clamp(380px, 46vw, 600px);
  overflow: hidden; background: var(--pine);
}
.fullbleed-photo::before {
  content: ""; position: absolute; inset: -6%; z-index: 0;
  background-size: cover; background-position: center;
  filter: blur(42px) brightness(.74) saturate(1.05);
  transform: scale(1.08);
}
.fullbleed-photo picture { position: absolute; inset: 0; z-index: 1; display: block; }
.fullbleed-photo img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
/* la foto del escritorio (16:9): la banda adopta su proporción → se ve entera, sin recorte */
.fullbleed-photo--desk { height: auto; aspect-ratio: 1280 / 727; }
/* viñeta suave para asentar el sujeto sobre el fondo */
.fullbleed-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, transparent 55%, rgba(32,50,40,.28) 100%);
}
.fullbleed-photo--stone::before { background-image: url("/assets/img/editorial-stone.webp?v=20260615"); }
.fullbleed-photo--desk::before  { background-image: url("/assets/img/editorial-desk.webp?v=20260615"); }
@media (prefers-reduced-motion: reduce) { .fullbleed-photo::before { transform: none; } }

/* ============================================================
   CABECERA — etiqueta Chladni iluminada (capsules.png)
   Calibración en % RELATIVOS A LA IMAGEN (no tocar salvo ajuste fino)
============================================================ */
.hero-img-wrap { display:flex; align-items:center; justify-content:center; padding:clamp(0.3rem,1vw,1rem); }
.hero-img-wrap::before { content:none; }   /* sin velo: la foto ya trae mármol */

.bottle-fx {
  position:relative; width:100%; aspect-ratio:1171/784;
  border-radius:8px; overflow:hidden;
  box-shadow:0 26px 70px rgba(44,62,49,.18);
  /* --- variables de calibración EXACTAS --- */
  --label-x:51.4%; --label-y:57%; --label-size:30%;
  --cap-x:51%; --cap-y:21.5%; --cap-w:22%; --cap-h:13%;
}
.bottle-fx picture { position:absolute; inset:0; display:block; }
.bottle-fx .shot { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

.chladni-label {
  position:absolute; left:var(--label-x); top:var(--label-y);
  width:var(--label-size); aspect-ratio:1/1; transform:translate(-50%,-50%);
  pointer-events:none; mix-blend-mode:screen;
  -webkit-mask:radial-gradient(circle at 50% 50%,#000 62%,transparent 96%);
          mask:radial-gradient(circle at 50% 50%,#000 62%,transparent 96%);
}

.cap-glint {
  position:absolute; left:var(--cap-x); top:var(--cap-y);
  width:var(--cap-w); height:var(--cap-h); transform:translate(-50%,-50%);
  pointer-events:none; mix-blend-mode:screen; border-radius:50% / 55%;
  background:linear-gradient(100deg, transparent 38%, rgba(255,243,205,.92) 50%, transparent 62%);
  background-size:280% 100%; background-position:130% 0; opacity:0;
  animation:hisora-capglint 7.5s var(--ease) infinite;
}
@keyframes hisora-capglint {
  0%,100% { background-position:130% 0; opacity:0; }
  46%     { opacity:0; }
  55%     { opacity:1; }
  70%     { background-position:-30% 0; opacity:0; }
}

.motes { position:absolute; inset:0; pointer-events:none; mix-blend-mode:screen; }
.mote {
  position:absolute; width:1.1%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(255,246,214,.95), rgba(212,175,55,.30) 45%, transparent 70%);
  opacity:0; animation:hisora-mote 8s ease-in-out infinite;
}
.mote:nth-child(1){ left:38%; top:46%; animation-delay:0s; }
.mote:nth-child(2){ left:61%; top:40%; animation-delay:1.5s; }
.mote:nth-child(3){ left:56%; top:63%; animation-delay:3s; }
.mote:nth-child(4){ left:45%; top:33%; animation-delay:4.5s; }
.mote:nth-child(5){ left:50%; top:56%; animation-delay:6s; }
@keyframes hisora-mote {
  0%   { opacity:0; transform:translateY(8%) scale(.7); }
  25%  { opacity:.85; }
  55%  { opacity:.4; transform:translateY(-10%) scale(1); }
  80%,100% { opacity:0; }
}

@media (prefers-reduced-motion:reduce) {
  .chladni-label, .cap-glint, .motes { display:none; }
}
