/* =============================================================
   FRUTO ROJO MI CAFÉ — styles.css
   Archetype: Editorial Light Cream (adaptado a la marca)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6f0e5;   /* crema cálida */
  --bg-2:      #ece0cd;   /* arena */
  --paper:     #fffdf8;
  --ink:       #241a14;   /* casi negro cálido */
  --ink-soft:  #3c2e24;
  --ink-mute:  #7c6a5a;
  --accent:    #9c1f1a;   /* rojo Fruto Rojo */
  --accent-deep:#7a1512;
  --gold:      #c1912f;   /* dorado del empaque */
  --gold-soft: #e6c778;
  --moss:      #4b5a37;   /* verde hoja de café */
  --cream:     #fbf6ec;
  --line:      rgba(36, 26, 20, 0.14);
  --line-soft: rgba(36, 26, 20, 0.08);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

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

  --wrap: 1180px;
  --pad: clamp(1.15rem, 5vw, 4rem);
  --radius: 14px;
}

/* =============================================================
   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;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
em { font-style: italic; }
::selection { background: var(--accent); color: var(--cream); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section { padding-block: clamp(3.5rem, 9vw, 7.5rem); position: relative; }

.kicker {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.4rem;
}
.kicker .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: none;
}
.kicker-light { color: var(--gold-soft); }
.kicker-light .num { color: var(--cream); }

.section-head { max-width: 46ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.section-lead, .section-head .section-lead {
  margin-top: 1rem; color: var(--ink-mute); font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Grain + botanical motif
   ============================================================= */
.grain {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease-out), background-color .3s var(--ease-out),
              color .3s var(--ease-out), border-color .3s var(--ease-out),
              box-shadow .3s var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--cream); box-shadow: 0 12px 26px -14px rgba(156, 31, 26, .8); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 18px 34px -14px rgba(156, 31, 26, .9); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.btn-ghost-light { border-color: rgba(251, 246, 236, .6); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(251, 246, 236, .12); border-color: var(--cream); }
.btn-block { width: 100%; }

.wa-ico {
  width: 1.05em; height: 1.05em; flex: none;
  background: currentColor;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2c-5.5 0-9.96 4.46-9.96 9.96 0 1.76.46 3.48 1.34 5L2 22l5.2-1.36a9.9 9.9 0 0 0 4.84 1.24h.01c5.5 0 9.96-4.46 9.96-9.96S17.54 2 12.04 2Zm5.8 14.06c-.24.68-1.4 1.3-1.94 1.34-.5.04-1.12.24-3.66-.76-3.08-1.22-5.04-4.34-5.2-4.54-.14-.2-1.24-1.66-1.24-3.16 0-1.5.78-2.24 1.06-2.54.28-.3.62-.38.82-.38.2 0 .4 0 .58.02.2 0 .46-.08.72.54.26.64.9 2.2.98 2.36.08.16.14.36.02.56-.1.2-.16.32-.32.5-.16.18-.34.4-.48.54-.16.16-.32.34-.14.66.18.32.82 1.34 1.76 2.18 1.2 1.08 2.22 1.42 2.54 1.58.32.16.5.14.68-.08.18-.22.78-.9.98-1.22.2-.32.4-.26.68-.16.28.1 1.78.84 2.08.99.3.16.5.24.58.36.08.14.08.78-.16 1.46Z'/%3E%3C/svg%3E");
  mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2c-5.5 0-9.96 4.46-9.96 9.96 0 1.76.46 3.48 1.34 5L2 22l5.2-1.36a9.9 9.9 0 0 0 4.84 1.24h.01c5.5 0 9.96-4.46 9.96-9.96S17.54 2 12.04 2Zm5.8 14.06c-.24.68-1.4 1.3-1.94 1.34-.5.04-1.12.24-3.66-.76-3.08-1.22-5.04-4.34-5.2-4.54-.14-.2-1.24-1.66-1.24-3.16 0-1.5.78-2.24 1.06-2.54.28-.3.62-.38.82-.38.2 0 .4 0 .58.02.2 0 .46-.08.72.54.26.64.9 2.2.98 2.36.08.16.14.36.02.56-.1.2-.16.32-.32.5-.16.18-.34.4-.48.54-.16.16-.32.34-.14.66.18.32.82 1.34 1.76 2.18 1.2 1.08 2.22 1.42 2.54 1.58.32.16.5.14.68-.08.18-.22.78-.9.98-1.22.2-.32.4-.26.68-.16.28.1 1.78.84 2.08.99.3.16.5.24.58.36.08.14.08.78-.16 1.46Z'/%3E%3C/svg%3E");
}
.wa-ico--lg { width: 1.6rem; height: 1.6rem; }

.link-arrow {
  font-weight: 600; color: var(--accent);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  transition: opacity .25s var(--ease-out);
}
.link-arrow:hover { opacity: .7; }

/* =============================================================
   6. Brand mark
   ============================================================= */
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-cherry {
  width: 20px; height: 20px; flex: none; border-radius: 50% 50% 50% 0;
  background: radial-gradient(circle at 32% 32%, var(--gold-soft), var(--accent) 62%, var(--accent-deep));
  transform: rotate(-8deg);
  box-shadow: inset -2px -2px 4px rgba(0,0,0,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--serif); font-weight: 600; font-size: 1.16rem;
  letter-spacing: -.01em;
}
.brand-text em {
  font-family: var(--sans); font-style: normal;
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 3px;
}

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: background-color .35s var(--ease-out), box-shadow .35s var(--ease-out),
              border-color .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 160%;
  background: linear-gradient(180deg, rgba(12, 14, 8, .55) 0%, rgba(12, 14, 8, .18) 55%, transparent 100%);
  pointer-events: none; opacity: 1; transition: opacity .35s var(--ease-out);
}
.nav[data-scrolled]::before { opacity: 0; }
.nav-inner {
  position: relative; z-index: 1;
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.05rem;
}
.nav[data-scrolled] {
  background: rgba(251, 246, 236, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--line-soft);
  box-shadow: 0 8px 30px -20px rgba(36, 26, 20, .5);
}
.nav[data-scrolled] .brand-text strong { color: var(--ink); }
.nav-links { display: none; gap: 1.7rem; margin-left: auto; }
.nav-links a {
  font-size: .86rem; font-weight: 500; letter-spacing: .02em;
  color: var(--ink-soft); position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; padding: .7rem 1.25rem; font-size: .82rem; }

/* hero sits under transparent nav → light text there */
.nav:not([data-scrolled]) .brand-text strong { color: var(--cream); }
.nav:not([data-scrolled]) .brand-text em { color: rgba(251,246,236,.7); }
.nav:not([data-scrolled]) .nav-links a { color: rgba(251, 246, 236, .9); }

.nav-toggle {
  margin-left: auto; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out), background-color .3s;
}
.nav[data-scrolled] .nav-toggle span { background: var(--ink); }
.nav[data-open] .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open] .nav-toggle span:nth-child(2) { opacity: 0; }
.nav[data-open] .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem var(--pad) 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer a {
  padding: .9rem .2rem; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.nav-drawer a.btn { margin-top: 1rem; border: 0; justify-content: center; }

/* =============================================================
   8. Splash + cursor
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-content: center;
  background: var(--accent);
  animation: splashSafety .01s 4.4s forwards;
}
.splash-mark {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 8vw, 4rem); color: var(--cream);
  letter-spacing: -.02em;
  opacity: 0; transform: translateY(12px);
  animation: splashIn .8s .1s var(--ease-out) forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashIn { to { opacity: 1; transform: none; } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }

.cursor { position: fixed; inset: 0; z-index: 2500; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid var(--accent);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background-color .25s;
}
.cursor.is-hover .cursor-ring { width: 52px; height: 52px; background: rgba(156, 31, 26, .1); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 7rem var(--pad) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 42%; }
.hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(96deg, rgba(18, 24, 14, .9) 0%, rgba(18, 22, 13, .74) 30%, rgba(18, 22, 13, .4) 56%, rgba(18, 22, 13, .16) 82%, rgba(18, 22, 13, .1) 100%),
    linear-gradient(180deg, rgba(16, 20, 12, .55) 0%, rgba(16, 20, 12, .08) 30%, rgba(14, 12, 8, .74) 100%),
    radial-gradient(130% 100% at 4% 90%, rgba(122, 21, 18, .5), transparent 56%);
}
.hero-inner { position: relative; max-width: 42rem; color: var(--cream); }
.hero-inner::before {
  content: ""; position: absolute; inset: -14% -24% -20% -32%;
  background: radial-gradient(58% 58% at 32% 55%, rgba(12, 14, 8, .58), transparent 74%);
  filter: blur(34px); z-index: -1;
}
.hero-title {
  font-size: clamp(2.35rem, 6.4vw, 5rem);
  line-height: 1.02;
  text-wrap: balance;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.hero-title em { color: var(--gold-soft); display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 40ch; color: rgba(251, 246, 236, .9);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-scroll {
  position: absolute; right: var(--pad); bottom: clamp(3rem, 8vw, 6rem);
  display: none; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(251, 246, 236, .8);
  writing-mode: vertical-rl;
}
.hero-scroll span {
  width: 1px; height: 46px; background: linear-gradient(rgba(251,246,236,.9), transparent);
  animation: scrollCue 2s var(--ease-soft) infinite;
}
@keyframes scrollCue { 0% { transform: scaleY(.2); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(.2); transform-origin: bottom; } }

/* =============================================================
   10. Marquee
   ============================================================= */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding-block: .9rem;
  border-block: 1px solid rgba(251, 246, 236, .12);
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  white-space: nowrap; color: rgba(251, 246, 236, .82);
}
.marquee-track .sep { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   11. Reseña / Nosotros
   ============================================================= */
.reseña { background: var(--bg); }
.reseña-grid { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); }
.reseña-text h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 1.4rem; }
.reseña-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 60ch; }
.reseña-text strong { font-weight: 600; color: var(--ink); }
.reseña-figure { position: relative; border-radius: var(--radius); overflow: hidden; align-self: start; }
.reseña-figure img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.reseña-figure figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 1.5rem 1.2rem .9rem;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(24, 14, 10, .78));
}
.stats {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem; margin-top: 2.4rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stats b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--accent); line-height: 1;
}
.stats span { font-size: .82rem; color: var(--ink-mute); letter-spacing: .02em; }

/* =============================================================
   12. Propósito (misión / visión)
   ============================================================= */
.proposito { color: var(--cream); isolation: isolate; }
.proposito-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.proposito-bg img { width: 100%; height: 100%; object-fit: cover; }
.proposito-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74, 42, 32, .92), rgba(40, 22, 16, .92)),
              radial-gradient(80% 60% at 80% 0%, rgba(156, 31, 26, .45), transparent 70%);
}
.proposito-grid { display: grid; gap: 1.4rem; }
.panel {
  background: rgba(156, 31, 26, .78);
  border: 1px solid rgba(251, 246, 236, .18);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  backdrop-filter: blur(2px);
}
.panel p { color: rgba(251, 246, 236, .94); font-size: 1.02rem; }

/* =============================================================
   13. Líneas
   ============================================================= */
.lineas { background: var(--bg-2); }
.section-head h2 { color: var(--ink); }
.lineas-lineup {
  border-radius: 18px; overflow: hidden; margin-bottom: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 40px 70px -50px rgba(74, 20, 14, .5);
}
.lineas-lineup img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; object-position: center 62%; }
.linea-cards { display: grid; gap: 1.8rem; }
.linea-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  will-change: transform;
}
.linea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -40px rgba(74, 20, 14, .55);
}
.linea-media { position: relative; overflow: hidden; }
.linea-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease-out); }
.linea-card:hover .linea-media img { transform: scale(1.05); }
.linea-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); color: var(--cream);
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .45rem .8rem; border-radius: 999px;
}
.linea-badge--gold { background: var(--gold); color: var(--ink); }
.linea-body { padding: clamp(1.6rem, 3.5vw, 2.4rem); display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.linea-body h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.linea-body h3 span {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: .4rem;
}
.linea-claim { font-family: var(--serif); font-style: italic; font-size: 1.16rem; color: var(--accent); }
.linea-card--express .linea-claim { color: var(--gold); }
.linea-body > p { color: var(--ink-soft); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  font-size: .76rem; font-weight: 500;
  padding: .35rem .75rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-mute);
}
.linea-sizes { font-size: .92rem; color: var(--ink); margin-top: .3rem; }
.linea-sizes span {
  display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: .25rem;
}
.linea-body .btn { margin-top: auto; align-self: flex-start; }

/* =============================================================
   14. Proceso
   ============================================================= */
.proceso { background: var(--bg); }
.proceso-cols { display: grid; gap: 2rem; }
.proceso-cols article { border-top: 2px solid var(--accent); padding-top: 1.4rem; }
.proceso-num {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem;
  color: var(--gold); display: block; margin-bottom: .6rem;
}
.proceso-cols h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.proceso-cols p { color: var(--ink-mute); font-size: .96rem; }

/* =============================================================
   15. Valores
   ============================================================= */
.valores { background: var(--ink); color: var(--cream); }
.valores .kicker { color: var(--gold-soft); }
.valores .kicker .num { color: var(--cream); }
.valores-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); }
.valores-figure { border-radius: var(--radius); overflow: hidden; align-self: start; }
.valores-figure img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.valores-list h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 1.8rem; }
.valores-list dl { display: grid; gap: 1.4rem; }
.valores-list dt {
  font-family: var(--serif); font-size: 1.22rem; color: var(--gold-soft);
  margin-bottom: .3rem;
}
.valores-list dd { color: rgba(251, 246, 236, .8); max-width: 52ch; }
.valores-list dl > div { padding-bottom: 1.4rem; border-bottom: 1px solid rgba(251, 246, 236, .14); }
.valores-list dl > div:last-child { border-bottom: 0; }

/* =============================================================
   16. Comprar
   ============================================================= */
.comprar { background: var(--bg); }
.comprar-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.comprar-text h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 1rem; }
.comprar-text > p { color: var(--ink-soft); max-width: 54ch; }
.comprar-cards { display: grid; gap: 1.2rem; margin-top: 2rem; }
.comprar-cards article {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
}
.comprar-cards h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.comprar-cards p { color: var(--ink-soft); font-size: .95rem; }
.comprar-cards .muted { color: var(--ink-mute); font-size: .85rem; margin-top: .4rem; }
.comprar-cards .link-arrow { margin-top: .8rem; display: inline-block; }
.mini-cta {
  background: var(--accent); color: var(--cream);
  border-radius: 18px; padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  position: sticky; top: 6rem;
}
.mini-cta p { font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; }
.mini-cta .btn { align-self: stretch; }
.mini-cta .btn-outline { border-color: rgba(251, 246, 236, .5); color: var(--cream); }
.mini-cta .btn-outline:hover { background: rgba(251, 246, 236, .12); }

/* =============================================================
   17. Contacto
   ============================================================= */
.contacto { background: var(--ink); color: var(--cream); overflow: hidden; }
.contacto-mesh {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 20% 20%, rgba(156, 31, 26, .55), transparent 70%),
    radial-gradient(45% 45% at 85% 30%, rgba(193, 145, 47, .35), transparent 70%),
    radial-gradient(50% 50% at 60% 90%, rgba(75, 90, 55, .4), transparent 70%);
  filter: blur(70px);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.15) translate(2%, -2%); }
}
.contacto-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 4rem); }
.contacto-intro h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.contacto-intro > p { color: rgba(251, 246, 236, .82); max-width: 44ch; }
.contacto-data { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; }
.contacto-data li { display: grid; gap: .2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(251, 246, 236, .14); }
.contacto-data span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.contacto-data a { border-bottom: 1px solid transparent; transition: border-color .25s; width: max-content; }
.contacto-data a:hover { border-color: currentColor; }
.contacto-social { flex-direction: row; display: flex; gap: 1.2rem; }

.contacto-form {
  background: rgba(251, 246, 236, .06);
  border: 1px solid rgba(251, 246, 236, .18);
  border-radius: 18px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid; gap: 1.1rem;
  backdrop-filter: blur(6px);
}
.field { display: grid; gap: .4rem; }
.field label { font-size: .8rem; letter-spacing: .04em; color: rgba(251, 246, 236, .8); }
.field input, .field textarea {
  font: inherit; color: var(--cream);
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(251, 246, 236, .22);
  border-radius: 10px; padding: .8rem .9rem;
  transition: border-color .25s var(--ease-out), background-color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-soft); background: rgba(0, 0, 0, .28); }
.field textarea { resize: vertical; }
.form-note { font-size: .82rem; color: var(--gold-soft); }
.field.invalid input, .field.invalid textarea { border-color: #e88; }

/* =============================================================
   18. Footer
   ============================================================= */
.footer { background: #1a120d; color: rgba(251, 246, 236, .78); padding-top: clamp(3rem, 7vw, 5rem); }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-name { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); margin: .8rem 0 .5rem; }
.footer-name em { color: var(--gold-soft); }
.footer-tag { font-family: var(--serif); font-style: italic; max-width: 34ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-content: start; }
.footer-nav a { font-size: .9rem; }
.footer-nav a:hover { color: var(--cream); }
.footer-meta p { font-size: .9rem; margin-bottom: .6rem; }
.footer-meta a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .6rem; margin-top: .8rem; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-content: center;
  border: 1px solid rgba(251, 246, 236, .24); border-radius: 50%;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  transition: background-color .25s, color .25s;
}
.footer-social a:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.footer-bar {
  border-top: 1px solid rgba(251, 246, 236, .12);
  padding: 1.4rem var(--pad);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .8rem;
}
.to-top:hover { color: var(--cream); }

/* =============================================================
   19. FAB
   ============================================================= */
.fab {
  position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 2rem);
  z-index: 850;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-content: center;
  background: var(--accent); color: var(--cream);
  box-shadow: 0 16px 34px -12px rgba(74, 20, 14, .7);
  transform: translateY(0);
  transition: transform .3s var(--ease-out), background-color .3s;
}
.fab:hover { transform: translateY(-3px) scale(1.05); background: var(--accent-deep); }
.fab[data-hide] { transform: translateY(140%); }

/* =============================================================
   20. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .proposito-grid { grid-template-columns: 1fr 1fr; }
  .proceso-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 720px) {
  .comprar-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
  .hero-scroll { display: flex; }
  .reseña-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .linea-cards { grid-template-columns: 1fr 1fr; }
  .valores-grid { grid-template-columns: .9fr 1.1fr; }
  .comprar-grid { grid-template-columns: 1.4fr .9fr; align-items: start; }
  .contacto-grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1280px) {
  .valores-figure img { aspect-ratio: 4 / 5; }
}

/* =============================================================
   21. Reduced motion — sólo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .contacto-mesh { animation: none; }
  .hero-scroll span { animation: none; }
  .splash-mark { animation: none; opacity: 1; transform: none; }
}
