/* =============================================================
   BRUMA — Tostaduría de microlotes
   Archetype: Editorial Dark Warm
   1. Tokens · 2. Reset · 3. Utilidades · 4. Tipografía
   5. Componentes · 6. Secciones · 7. Efectos · 8. Responsive
   9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Fondo cálido casi negro — nunca #000 */
  --bg:        #0C0908;
  --bg-2:      #120E0B;
  --bg-3:      #1A1310;   /* card */
  --bg-4:      #241A14;   /* card elevada */

  /* Crema — nunca #fff */
  --cream:     #F2E9D8;
  --cream-2:   #D8C8B0;
  --cream-3:   #8B7C67;   /* metadatos */

  /* Acento terracota + secundario cálido */
  --accent:    #C4653C;
  --accent-2:  #9C4526;
  --accent-3:  #E0855C;
  --gold:      #C9A76A;

  --line:      rgba(242, 233, 216, 0.12);
  --line-soft: rgba(242, 233, 216, 0.06);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(1.15rem, 5vw, 4.5rem);
  --maxw: 1320px;
  --header-h: 76px;

  --radius: 4px;
  --radius-lg: 10px;
}

@property --sheen-x { syntax: "<percentage>"; inherits: false; initial-value: -60%; }

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.02em; font-weight: 400; }
dl, dd { margin: 0; }
::selection { background: var(--accent); color: #fff; }

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

/* =============================================================
   3. UTILIDADES
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 6px; font-weight: 500; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.section {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vw, 10.5rem);
}

.section-head { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-head--split {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
}
.section-aside {
  color: var(--cream-3);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 46ch;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}

/* =============================================================
   4. TIPOGRAFÍA
   ============================================================= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1.5rem;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(196, 101, 60, .55);
  animation: pulseDot 2.8s var(--ease-soft) infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(196,101,60,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(196,101,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,101,60,0); }
}

.section-title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.4vw, 4.35rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 30;
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 19ch;
}
.section-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--accent-3);
}

.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
  line-height: 1.62;
  color: var(--cream-2);
  font-weight: 300;
}

/* =============================================================
   5. COMPONENTES
   ============================================================= */

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .5s var(--ease-out), color .4s var(--ease-out),
              border-color .4s var(--ease-out), box-shadow .5s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .55s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }

.btn--solid {
  background: var(--cream);
  color: var(--bg);
  box-shadow: 0 14px 34px -18px rgba(242, 233, 216, .5);
}
.btn--solid:hover { color: #fff; box-shadow: 0 20px 44px -18px rgba(196, 101, 60, .7); }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream-2);
}
.btn--ghost:hover { color: #fff; border-color: transparent; }

.btn--sm { padding: .62rem 1.15rem; font-size: .72rem; }

.btn--wa {
  background: var(--accent);
  color: #fff;
  padding: 1.1rem 2.2rem;
  font-size: .88rem;
  box-shadow: 0 22px 50px -22px rgba(196, 101, 60, .9);
}
.btn--wa::before { background: var(--cream); }
.btn--wa:hover { color: var(--bg); }
.btn--wa svg { width: 19px; height: 19px; }

/* ---------- Placeholders con gradiente ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-3);
  isolation: isolate;
  /* Borde interior + viñeta: el hueco de foto se lee como una decisión,
     no como una imagen que no cargó */
  box-shadow:
    inset 0 0 0 1px rgba(242, 233, 216, .07),
    inset 0 -60px 90px -50px rgba(12, 9, 8, .9);
}
/* Para poner una foto real: meté un <img> dentro del div .ph.
   Se acomoda sola y conserva el grano y la viñeta. Ver IMAGENES.md */
.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 190px 190px;
}

.ph--hero {
  position: absolute; inset: 0;
  box-shadow: none;
  background-image:
    radial-gradient(120% 85% at 72% 18%, rgba(196, 101, 60, .55) 0%, transparent 58%),
    radial-gradient(90% 70% at 18% 82%, rgba(156, 69, 38, .42) 0%, transparent 62%),
    radial-gradient(60% 50% at 50% 45%, rgba(201, 167, 106, .18) 0%, transparent 70%),
    linear-gradient(168deg, #1E1610 0%, #120D0A 45%, #0A0706 100%);
}
.ph--hero::before {
  content: "";
  position: absolute; inset: -10%;
  background:
    repeating-linear-gradient(101deg,
      rgba(242, 233, 216, .035) 0px,
      rgba(242, 233, 216, .035) 1px,
      transparent 1px,
      transparent 9px);
  mask-image: radial-gradient(80% 60% at 60% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 60% 40%, #000 0%, transparent 75%);
}

.ph--retrato {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-image:
    radial-gradient(85% 60% at 30% 22%, rgba(224, 133, 92, .5) 0%, transparent 60%),
    radial-gradient(70% 65% at 78% 85%, rgba(201, 167, 106, .28) 0%, transparent 65%),
    linear-gradient(200deg, #241A14 0%, #150F0C 55%, #0D0908 100%);
}

.ph--origen {
  aspect-ratio: 4 / 3;
  width: 100%;
  transition: transform 1.1s var(--ease-soft), filter .7s var(--ease-out);
}
.ph--co {
  background-image:
    radial-gradient(80% 70% at 25% 25%, rgba(196, 101, 60, .58) 0%, transparent 62%),
    radial-gradient(70% 60% at 85% 80%, rgba(94, 106, 61, .38) 0%, transparent 65%),
    linear-gradient(160deg, #22180F 0%, #14100C 60%, #0B0807 100%);
}
.ph--et {
  background-image:
    radial-gradient(75% 70% at 70% 22%, rgba(201, 167, 106, .55) 0%, transparent 60%),
    radial-gradient(70% 65% at 20% 85%, rgba(196, 101, 60, .34) 0%, transparent 66%),
    linear-gradient(200deg, #251C12 0%, #16110C 58%, #0B0807 100%);
}
.ph--pe {
  background-image:
    radial-gradient(85% 70% at 45% 80%, rgba(156, 69, 38, .55) 0%, transparent 62%),
    radial-gradient(60% 55% at 78% 20%, rgba(224, 133, 92, .3) 0%, transparent 65%),
    linear-gradient(140deg, #1F150F 0%, #130E0B 58%, #0A0706 100%);
}

.ph--paso {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  transition: transform .9s var(--ease-soft);
}
.ph--p1 { background-image: radial-gradient(75% 70% at 30% 25%, rgba(196,101,60,.5) 0%, transparent 62%), linear-gradient(155deg, #1F1710 0%, #0D0908 100%); }
.ph--p2 { background-image: radial-gradient(75% 70% at 70% 30%, rgba(201,167,106,.45) 0%, transparent 62%), linear-gradient(155deg, #201810 0%, #0D0908 100%); }
.ph--p3 { background-image: radial-gradient(80% 70% at 35% 75%, rgba(120, 116, 128, .38) 0%, transparent 62%), linear-gradient(155deg, #16141A 0%, #0B0908 100%); }
.ph--p4 { background-image: radial-gradient(70% 70% at 60% 45%, rgba(224,133,92,.55) 0%, transparent 60%), linear-gradient(155deg, #251710 0%, #0D0807 100%); }
.ph--p5 { background-image: radial-gradient(75% 65% at 45% 65%, rgba(139, 124, 103, .4) 0%, transparent 62%), linear-gradient(155deg, #1A1512 0%, #0C0908 100%); }

/* Bolsa de café dibujada en CSS (placeholder de producto) */
.ph-bolsa {
  position: relative;
  width: min(74%, 230px);
  aspect-ratio: 0.72;
  margin-inline: auto;
  border-radius: 6px 6px 3px 3px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 60px -34px rgba(0, 0, 0, .95),
    inset -14px 0 26px -18px rgba(0, 0, 0, .85),
    inset 14px 0 22px -18px rgba(255, 255, 255, .07);
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out);
}
.ph-bolsa::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .26; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
.ph-bolsa--co { background: linear-gradient(115deg, #34211A 0%, #55301F 42%, #2A1912 100%); }
.ph-bolsa--et { background: linear-gradient(115deg, #33291A 0%, #5C4726 42%, #241C11 100%); }
.ph-bolsa--pe { background: linear-gradient(115deg, #2B1D18 0%, #4A2618 42%, #1F1310 100%); }
.ph-bolsa--tr { background: linear-gradient(115deg, #22201F 0%, #3B3532 42%, #171514 100%); }

.ph-bolsa-crimp {
  position: absolute; top: 0; left: 0; right: 0;
  height: 13%;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.36) 0 2px, rgba(255,255,255,.05) 2px 5px),
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.15));
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.ph-bolsa-label {
  position: absolute;
  left: 11%; right: 11%; top: 34%;
  padding: .85rem .6rem;
  display: block;
  text-align: center;
  background: rgba(242, 233, 216, .93);
  color: #17110E;
  border-radius: 2px;
  box-shadow: 0 8px 18px -12px rgba(0,0,0,.9);
}
.ph-bolsa-label b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(.85rem, 1.5vw, 1.02rem);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.1;
}
.ph-bolsa-label i {
  display: block;
  margin-top: .3rem;
  font-style: normal;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6C5B4C;
}

/* =============================================================
   6. SECCIONES
   ============================================================= */

/* ---------- Splash ---------- */
.splash { display: none; }
.js .splash {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--bg);
  display: grid; place-items: center;
  /* Red de seguridad CSS: se va sola a los 4,5 s aunque el JS falle */
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
.splash.is-out {
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .9s var(--ease-out), visibility 0s .9s;
}
.splash-inner { text-align: center; }
.splash-word {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  letter-spacing: .28em;
  text-indent: .28em;
  color: var(--cream);
  opacity: 0;
  animation: splashIn 1.3s .15s var(--ease-out) forwards;
}
.splash-sub {
  display: block;
  margin-top: 1rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-3);
  opacity: 0;
  animation: splashIn 1.3s .45s var(--ease-out) forwards;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--cream); border-radius: 50%;
}
.cursor-ring {
  width: 30px; height: 30px; margin: -15px;
  border: 1px solid rgba(242, 233, 216, .7); border-radius: 50%;
  transition: width .4s var(--ease-out), height .4s var(--ease-out),
              margin .4s var(--ease-out), border-color .4s var(--ease-out);
}
.cursor.is-interactive .cursor-ring {
  width: 58px; height: 58px; margin: -29px;
  border-color: rgba(242, 233, 216, .95);
}
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor [data-cursor] { cursor: none; }

/* ---------- Niebla (efecto firma) ---------- */
.mist {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mist-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform;
}
.mist-blob--1 {
  width: 62vw; height: 62vw; left: -14vw; top: -12vw;
  background: radial-gradient(circle, rgba(196, 101, 60, .34) 0%, transparent 68%);
  animation: mistDrift1 46s var(--ease-soft) infinite;
}
.mist-blob--2 {
  width: 54vw; height: 54vw; right: -16vw; top: 34vh;
  background: radial-gradient(circle, rgba(156, 69, 38, .3) 0%, transparent 68%);
  animation: mistDrift2 58s var(--ease-soft) infinite;
}
.mist-blob--3 {
  width: 46vw; height: 46vw; left: 28vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(201, 167, 106, .16) 0%, transparent 70%);
  animation: mistDrift3 64s var(--ease-soft) infinite;
}
@keyframes mistDrift1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(9vw, 7vh, 0) scale(1.18); }
}
@keyframes mistDrift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.1); }
  50%      { transform: translate3d(-11vw, -9vh, 0) scale(1); }
}
@keyframes mistDrift3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(6vw, -11vh, 0) scale(1.24); }
}
.mist-band {
  position: absolute;
  left: -30%; width: 160%;
  height: 34vh;
  background: linear-gradient(180deg, transparent, rgba(242, 233, 216, .035), transparent);
  filter: blur(28px);
  will-change: transform;
}
.mist-band--1 { top: 22vh; animation: bandDrift 38s linear infinite; }
.mist-band--2 { top: 68vh; animation: bandDrift 52s linear infinite reverse; }
@keyframes bandDrift {
  from { transform: translate3d(-12%, 0, 0) skewY(-1.4deg); }
  to   { transform: translate3d(12%, 0, 0) skewY(-1.4deg); }
}

.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transform: translateY(0);
  transition: transform .55s var(--ease-out), background-color .45s var(--ease-out),
              backdrop-filter .45s var(--ease-out);
}
.header.is-hidden { transform: translateY(-102%); }
.header.is-scrolled {
  background: rgba(12, 9, 8, .82);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.header-inner {
  height: var(--header-h);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-line {
  display: block;
  height: 1px;
  background: var(--line-soft);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
}
.header.is-scrolled .header-line { opacity: 1; }

.brand { display: inline-flex; align-items: center; gap: .62rem; }
.brand-mark { color: var(--accent-3); display: block; }
.brand-mark svg { width: 22px; height: 22px; }
.brand-word {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--cream);
}

.nav { display: none; gap: 2rem; }
.nav a {
  position: relative;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  padding-block: .4rem;
  transition: color .35s var(--ease-out);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: var(--cream); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.header-actions .btn--ghost { display: none; }

.burger {
  width: 40px; height: 40px;
  display: grid; place-content: center; gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.burger span {
  display: block; width: 15px; height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease-out), opacity .3s;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Menú móvil ---------- */
.menu-movil {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg-2);
  display: flex; flex-direction: column;
  justify-content: center; gap: 2rem;
  padding: 6rem var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-soft);
}
.menu-movil[aria-hidden="false"] { clip-path: inset(0 0 0 0); }
.menu-movil nav { display: flex; flex-direction: column; gap: .3rem; }
.menu-movil a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  padding-block: .45rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
}
.menu-movil a i {
  font-style: normal;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--accent-3);
}
.menu-movil-foot { font-size: .78rem; color: var(--cream-3); letter-spacing: .04em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + clamp(1rem, 4vh, 3rem)) clamp(2.2rem, 7vh, 5rem);
  overflow: hidden;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,8,.86) 0%, rgba(12,9,8,.35) 32%, rgba(12,9,8,.72) 72%, var(--bg) 100%),
    radial-gradient(80% 60% at 20% 70%, rgba(12,9,8,.6) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-kicker { color: var(--cream-2); }

.hero-title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  /* El vh en el término medio evita que el hero desborde en pantallas bajas */
  font-size: clamp(2.7rem, min(9.6vw, 14vh), 7.8rem);
  font-weight: 300;
  font-variation-settings: "SOFT" 26;
  line-height: .95;
  letter-spacing: -0.035em;
  max-width: 15ch;
  margin-bottom: clamp(1rem, 2.4vh, 1.9rem);
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent-3);
}

.hero-sub {
  max-width: 46ch;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.66;
  color: var(--cream-2);
  margin-bottom: clamp(1.6rem, 4.5vh, 3rem);
}

/* Columna flex, no grid: una pista `auto` de grid se dimensiona por
   max-content y desbordaba el hero en móvil */
.hero-foot {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3.2vh, 2.4rem);
}
.hero-foot > * { min-width: 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem 2rem;
  max-width: 760px;
  padding-top: clamp(1rem, 2.6vh, 1.8rem);
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; gap: .25rem; }
.hero-stats b {
  font-family: var(--serif);
  font-size: clamp(1.5rem, min(3.2vw, 4.6vh), 2.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.hero-stats span {
  font-size: .75rem;
  letter-spacing: .07em;
  color: var(--cream-3);
  text-transform: uppercase;
  max-width: 22ch;
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-scroll {
  position: absolute;
  right: var(--gutter); bottom: clamp(3rem, 8vh, 6rem);
  z-index: 3;
  display: none;
  flex-direction: column; align-items: center; gap: .9rem;
  font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--cream-3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 68px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  background-size: 100% 200%;
  animation: scrollLine 2.6s var(--ease-soft) infinite;
}
@keyframes scrollLine {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: clamp(1.5rem, 3vw, 2.3rem);
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  white-space: nowrap;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(50px, 10vw, 150px);
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 2.2rem;
  flex: 0 0 auto;
  padding-right: 2.2rem;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "SOFT" 80;
  color: var(--cream-2);
  letter-spacing: -0.01em;
}
.marquee-track i {
  font-style: normal;
  font-size: .5rem;
  color: var(--accent);
  transform: translateY(-.35em);
}

/* ---------- Manifiesto ---------- */
.manifiesto-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.manifiesto-body { display: grid; gap: 1.4rem; }
.manifiesto-body p:not(.lead) { color: var(--cream-3); max-width: 58ch; }

.manifiesto-figura { position: relative; }
.manifiesto-figura figcaption {
  margin-top: 1rem;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.pilares {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pilares li {
  background: var(--bg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  transition: background-color .6s var(--ease-out);
}
.pilares li:hover { background: var(--bg-3); }
.pilar-num {
  display: block;
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.pilares h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: .7rem;
}
.pilares p { font-size: .93rem; color: var(--cream-3); max-width: 34ch; }

/* ---------- Orígenes ---------- */
.origen-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.2rem);
}
.origen {
  --rx: 0deg; --ry: 0deg;
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-soft), box-shadow .7s var(--ease-out),
              border-color .7s var(--ease-out);
}
.origen:hover {
  transition-duration: .2s, .7s, .7s;
  border-color: rgba(196, 101, 60, .35);
  box-shadow:
    0 60px 90px -50px rgba(0, 0, 0, .95),
    0 30px 70px -40px rgba(196, 101, 60, .5);
}

.origen-media { position: relative; overflow: hidden; }
.origen-mist {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,8,.15) 0%, rgba(12,9,8,.75) 78%, var(--bg-3) 100%),
    radial-gradient(70% 55% at 50% 45%, rgba(242, 233, 216, .16) 0%, transparent 72%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity .8s var(--ease-out), backdrop-filter .8s var(--ease-out);
}
.origen:hover .origen-mist { backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
.origen:hover .ph--origen { transform: scale(1.07); filter: saturate(1.22) brightness(1.1); }

.origen-flag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: .35rem .8rem;
  border-radius: 100px;
  background: rgba(12, 9, 8, .6);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-2);
}

.origen-body {
  position: relative; z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transform: translateZ(30px);
}
.origen-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-variation-settings: "SOFT" 40;
  margin-bottom: .35rem;
}
.origen-place {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 1.5rem;
}

.origen-datos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  padding-block: 1.1rem;
  border-block: 1px solid var(--line-soft);
}
.origen-datos dt {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .35rem;
}
.origen-datos dd {
  font-size: .84rem;
  color: var(--cream);
  line-height: 1.3;
}

.origen-perfil { padding-top: 1.3rem; }
.origen-perfil-label {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: .6rem;
}
.origen-notas {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 1rem;
}
.origen-cuento {
  font-size: .86rem;
  line-height: 1.65;
  color: var(--cream-3);
  /* Se revela al pasar el cursor: la niebla que se corre */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.origen:hover .origen-cuento,
.origen:focus-within .origen-cuento { opacity: 1; transform: none; }

/* ---------- Proceso ---------- */
.pasos { position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.pasos-rail {
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(242, 233, 216, .16);
}
.pasos-rail i {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  display: block;
}
.paso {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-left: 3.4rem;
  align-items: start;
}
.paso-num {
  position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: .6rem; font-weight: 500; letter-spacing: .04em;
  color: var(--cream-3);
  transition: color .5s var(--ease-out), border-color .5s var(--ease-out),
              background-color .5s var(--ease-out);
}
.paso.is-revealed .paso-num {
  color: var(--bg); background: var(--accent); border-color: var(--accent);
}
.paso-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-variation-settings: "SOFT" 40;
  margin-bottom: .4rem;
}
.paso-meta {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1rem;
}
.paso-body p:not(.paso-meta) {
  color: var(--cream-3);
  max-width: 58ch;
  font-size: .97rem;
}
.paso-tile { max-width: 180px; }
.paso:hover .ph--paso { transform: scale(1.05) rotate(-1deg); }

/* ---------- Carta ---------- */
.producto-grid {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2rem);
}
.producto {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(178deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .7s var(--ease-out), border-color .6s var(--ease-out),
              box-shadow .7s var(--ease-out);
}
.producto:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 101, 60, .32);
  box-shadow:
    0 70px 80px -55px rgba(0, 0, 0, 1),
    0 24px 60px -34px rgba(196, 101, 60, .45);
}

.producto-media {
  position: relative;
  padding: clamp(2.2rem, 4vw, 3rem) 1rem clamp(1.6rem, 3vw, 2.2rem);
  overflow: hidden;
  background:
    radial-gradient(75% 60% at 50% 15%, rgba(196, 101, 60, .16) 0%, transparent 70%);
}
.producto:hover .ph-bolsa {
  transform: translateY(-10px) rotate(-2.2deg) scale(1.04);
  box-shadow:
    0 60px 70px -38px rgba(0, 0, 0, 1),
    inset -14px 0 26px -18px rgba(0, 0, 0, .85),
    inset 14px 0 22px -18px rgba(255, 255, 255, .1);
}
.producto-sheen {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg,
    transparent 38%,
    rgba(242, 233, 216, .13) 48%,
    rgba(242, 233, 216, .04) 56%,
    transparent 64%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease-out);
}
.producto:hover .producto-sheen { transform: translateX(120%); }

.producto-tag {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  padding: .32rem .7rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 101, 60, .4);
  background: rgba(12, 9, 8, .55);
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-3);
}

.producto-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  border-top: 1px solid var(--line-soft);
  flex: 1;
}
.producto-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.producto-top h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-variation-settings: "SOFT" 40;
}
.producto-precio {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  white-space: nowrap;
  text-align: right;
  line-height: 1.15;
}
.producto-precio small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-3);
}
.producto-origen {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream-3);
  margin-top: -.4rem;
}
.producto-notas {
  font-size: .93rem;
  color: var(--cream-2);
  line-height: 1.55;
}

.tueste {
  display: flex; align-items: center; gap: .6rem;
  padding-block: .5rem;
}
.tueste-label {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-3);
}
.tueste-dots { display: inline-flex; gap: 4px; }
.tueste-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid rgba(196, 101, 60, .45);
  transition: background-color .4s var(--ease-out);
}
.tueste-dots i.on { background: var(--accent); border-color: var(--accent); }
.tueste-word { font-size: .72rem; color: var(--cream-2); margin-left: auto; }

.molienda { display: flex; flex-wrap: wrap; gap: .35rem; }
.molienda li {
  padding: .28rem .62rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .62rem; letter-spacing: .08em;
  color: var(--cream-3);
  transition: color .4s var(--ease-out), border-color .4s var(--ease-out);
}
.producto:hover .molienda li { color: var(--cream-2); border-color: rgba(196, 101, 60, .28); }

.producto-cta {
  margin-top: auto;
  padding-top: 1.1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-3);
}
.producto-cta span { position: relative; }
.producto-cta span::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.producto-cta:hover span::after { transform: scaleX(1); transform-origin: left; }
.producto-cta svg { width: 14px; height: 14px; transition: transform .5s var(--ease-out); }
.producto-cta:hover svg { transform: translateX(5px); }

.carta-nota {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: .92rem;
  color: var(--cream-3);
  max-width: 62ch;
}

/* ---------- Voces ---------- */
.voz-grid { display: grid; gap: clamp(1.4rem, 2.5vw, 2rem); }
.voz {
  position: relative;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1.6rem;
  transition: background-color .6s var(--ease-out), border-color .6s var(--ease-out),
              transform .6s var(--ease-out);
}
.voz:hover {
  background: var(--bg-3);
  border-color: rgba(196, 101, 60, .25);
  transform: translateY(-5px);
}
.voz-comilla {
  position: absolute; top: .4rem; right: 1.4rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .16;
  transition: opacity .6s var(--ease-out);
}
.voz:hover .voz-comilla { opacity: .3; }
.voz blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 300;
  font-variation-settings: "SOFT" 60;
  line-height: 1.5;
  color: var(--cream);
  position: relative; z-index: 1;
}
.voz figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.voz-avatar {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: .68rem; font-weight: 500; letter-spacing: .05em;
}
.voz figcaption b { display: block; font-size: .88rem; font-weight: 500; color: var(--cream); }
.voz figcaption i {
  display: block; font-style: normal;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-3);
}

/* ---------- Contacto ---------- */
.contacto { padding-bottom: clamp(4rem, 9vw, 7rem); }
.contacto-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 5.5rem);
  border-radius: clamp(10px, 2vw, 18px);
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, var(--bg-4) 0%, var(--bg-2) 55%, var(--bg) 100%);
  text-align: center;
}
.contacto-glow {
  position: absolute;
  left: 50%; top: -40%;
  width: 90%; aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, rgba(196, 101, 60, .38) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.contacto .kicker { position: relative; }
.contacto-title {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  line-height: 1.06;
  letter-spacing: -0.028em;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1.4rem;
}
.contacto-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent-3);
}
.contacto-sub {
  position: relative;
  max-width: 52ch;
  margin-inline: auto;
  color: var(--cream-3);
  margin-bottom: 2.4rem;
}
.contacto-datos {
  position: relative;
  display: grid;
  gap: 1.6rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
  text-align: left;
}
.contacto-datos li { display: grid; gap: .25rem; }
.contacto-datos span {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-3);
}
.contacto-datos b {
  font-family: var(--serif);
  font-size: 1.06rem; font-weight: 400;
  color: var(--cream);
}
.contacto-datos i {
  font-style: normal;
  font-size: .8rem;
  color: var(--cream-3);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
}
.footer-word { font-size: 1.25rem; display: inline-block; margin-bottom: .9rem; }
.footer-brand p { font-size: .88rem; color: var(--cream-3); line-height: 1.65; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; align-content: start; }
.footer-nav a {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-3);
  transition: color .35s var(--ease-out);
}
.footer-nav a:hover { color: var(--accent-3); }
.footer-meta { font-size: .82rem; color: var(--cream-3); display: grid; gap: .3rem; }
.footer-fake {
  margin-top: .8rem;
  font-size: .72rem;
  color: rgba(139, 124, 103, .7);
  max-width: 34ch;
  line-height: 1.55;
}

/* =============================================================
   7. EFECTOS
   ============================================================= */

/* Reveal on scroll — el estado oculto sólo existe si hay JS para revelarlo */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* Defensa: un elemento con reveal + split nunca puede quedar invisible */
.js [data-reveal][data-split],
.js .reveal[data-split] { opacity: 1; transform: none; }

/* Split text */
.split-word, .split-char { display: inline-block; will-change: transform, opacity; }

/* Escalonado de reveals dentro de una grilla */
.pilares li:nth-child(2), .paso:nth-child(2n) { transition-delay: .08s; }
.pilares li:nth-child(3), .paso:nth-child(3n) { transition-delay: .16s; }
.voz:nth-child(2) { transition-delay: .1s; }
.voz:nth-child(3) { transition-delay: .2s; }

/* =============================================================
   8. RESPONSIVE
   ============================================================= */
@media (min-width: 540px) {
  .contacto-datos { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .origen-grid { grid-template-columns: repeat(2, 1fr); }
  .producto-grid { grid-template-columns: repeat(2, 1fr); }
  .voz-grid { grid-template-columns: repeat(2, 1fr); }
  .pilares { grid-template-columns: repeat(3, 1fr); }
  .paso {
    grid-template-columns: 1fr 180px;
    gap: 2.5rem;
    align-items: center;
  }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 960px) {
  :root { --header-h: 88px; }
  .nav { display: flex; }
  .burger { display: none; }
  .header-actions .btn--ghost { display: inline-flex; }
  .hero-scroll { display: flex; }

  .section-head--split { grid-template-columns: 1.35fr 1fr; }
  .manifiesto-grid { grid-template-columns: 1.5fr 1fr; }
  .origen-grid { grid-template-columns: repeat(3, 1fr); }
  .voz-grid { grid-template-columns: repeat(3, 1fr); }
  .contacto-datos { grid-template-columns: repeat(3, 1fr); }
  .paso { grid-template-columns: 1fr 220px; padding-left: 4.5rem; }
  .paso-tile { max-width: 220px; }
  .pasos-rail { left: 17px; }
  .paso-num { width: 36px; height: 36px; font-size: .68rem; }
}

/* Las cuatro variedades entran en fila desde un portátil de 1280 px
   (el viewport real ronda los 1265 con la barra de scroll) */
@media (min-width: 1180px) {
  .producto-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .hero-title { max-width: 13ch; }
}

/* Sin hover fino: mostrar siempre el contenido que se revela al pasar el cursor */
@media (hover: none) {
  .origen-cuento { opacity: 1; transform: none; }
  .origen-mist { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* Fallback si no hay backdrop-filter */
@supports not (backdrop-filter: blur(4px)) {
  .header.is-scrolled { background: rgba(12, 9, 8, .96); }
  .origen-flag { background: rgba(12, 9, 8, .85); }
}

/* =============================================================
   9. REDUCED-MOTION — solo lo intrusivo
   (Windows suele traerlo activado: no apagamos hovers, reveals,
    marquee, niebla ni contadores)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kicker-dot { animation: none; }
  .hero-scroll-line { animation: none; }
  .mist-band { animation: none; }
}
