/* =============================================================
   MAWA Chocolate — styles.css
   Archetype: Editorial Dark Warm, paleta dorado/ámbar propia
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg: #150e08;
  --bg-2: #1c130b;
  --bg-3: #241a10;
  --bg-4: #2d2013;
  --cream: #f4ebda;
  --cream-2: #dfceac;
  --cream-3: #9c8a67;
  --gold: #d4af37;
  --gold-2: #f2d488;
  --gold-3: #b3892f;
  --forest: #4a6b4d;
  --forest-soft: rgba(74, 107, 77, 0.18);
  --line: rgba(244, 235, 218, 0.12);
  --line-strong: rgba(244, 235, 218, 0.22);

  --serif: "Fraunces", "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);

  --container: 1240px;
  --nav-h: 84px;
}

/* =============================================================
   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;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -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; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; color: var(--cream); font-family: var(--serif); font-weight: 500; }
::selection { background: var(--gold); color: var(--bg); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--gold); color: var(--bg);
  border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600;
}
.eyebrow::before, .kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}

.section { position: relative; padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p.lead { color: var(--cream-3); font-size: 1.05rem; margin-top: .9rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 235, 218, 0.04);
  font-size: .78rem; letter-spacing: .04em; color: var(--cream-2);
  white-space: nowrap;
}
.badge::before { content: "●"; font-size: .5rem; color: var(--gold); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3));
  color: #201406;
  box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgba(212, 175, 55, 0.65); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.btn-sm { padding: .7rem 1.25rem; font-size: .82rem; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  animation: splashPulse 1.8s var(--ease-soft) infinite;
}
.splash-mark span {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(21, 14, 8, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.nav-logo img { width: auto; height: 44px; object-fit: contain; }
.nav-logo strong { letter-spacing: .04em; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .88rem; color: var(--cream-2); padding-block: .3rem; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn-primary { display: none; }
@media (min-width: 720px) { .nav-actions .btn-primary { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line-strong);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger .bars { position: relative; width: 18px; height: 12px; }
.nav-burger .bars span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-burger .bars span:nth-child(1) { top: 0; }
.nav-burger .bars span:nth-child(2) { top: 50%; margin-top: -.75px; }
.nav-burger .bars span:nth-child(3) { bottom: 0; }
.nav-burger[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg-2);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-inner { display: flex; flex-direction: column; align-items: center; gap: 1.7rem; }
.nav-mobile-inner a.nav-link { font-family: var(--serif); font-size: 1.7rem; font-style: italic; }
.nav-mobile-inner .btn { margin-top: 1rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(.62);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,14,8,.55) 0%, rgba(21,14,8,.35) 35%, rgba(21,14,8,.92) 100%),
    linear-gradient(90deg, rgba(21,14,8,.85) 0%, rgba(21,14,8,.35) 45%, rgba(21,14,8,.65) 100%);
}
.hero-mesh { position: absolute; inset: -10%; z-index: -2; pointer-events: none; }
.hero-mesh::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(38% 42% at var(--mesh-x) var(--mesh-y), rgba(212,175,55,.38), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(242,212,136,.16), rgba(74,107,77,.08), rgba(212,175,55,.2), rgba(242,212,136,.16));
  filter: blur(90px) saturate(120%);
  opacity: .85;
  animation: meshShift 24s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 22%; --mesh-y: 30%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 74%; --mesh-y: 62%; }
  100% { --mesh-angle: 360deg; --mesh-x: 22%; --mesh-y: 30%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .15; 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.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-content { position: relative; max-width: 42rem; }
.hero-content .kicker { margin-bottom: 1.3rem; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  max-width: 16ch;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin-top: 1.5rem; font-size: 1.08rem; color: var(--cream-2); max-width: 38ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-badges { margin-top: 2.6rem; }

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee { overflow: hidden; position: relative; padding-block: 1.1rem; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; 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; gap: 3rem; white-space: nowrap; will-change: transform; }
.marquee-track span.item {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--cream-3);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span.item::after { content: "✦"; color: var(--gold); font-size: .7rem; margin-left: 3rem; }
.marquee.has-css-marquee .marquee-track { animation: marqueeCss 26s linear infinite; }
@keyframes marqueeCss { to { transform: translateX(calc(-1 * var(--mq-distance, 100%))); } }

/* =============================================================
   9. Reveal
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   9b. Beneficios del cacao
   ============================================================= */
.benefits { background: var(--bg-2); }
.benefits-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-media {
  aspect-ratio: 1/1; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); margin-bottom: 1.2rem; position: relative; isolation: isolate;
}
.benefit-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .8s var(--ease-soft);
}
.benefit-card:hover .benefit-media img { transform: scale(1.06); }
.benefit-card h3 { font-size: 1.15rem; font-style: italic; margin-bottom: .5rem; }
.benefit-card p { font-size: .9rem; color: var(--cream-3); }

/* =============================================================
   10. Finca section
   ============================================================= */
.finca { background: var(--bg); }
.finca-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .finca-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; } }
.finca-figure {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4 / 5; isolation: isolate;
}
.finca-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03); }
.finca-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21,14,8,.7) 100%);
}
.finca-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-style: italic; margin-bottom: 1.3rem; }
.finca-text p { margin-bottom: 1.1rem; color: var(--cream-2); }
.finca-text p:last-of-type { margin-bottom: 0; }

.owl-card {
  margin-top: 2rem; display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.3rem; border-radius: 14px; border: 1px solid var(--line);
  background: var(--bg-3);
}
.owl-card img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.owl-card h3 { font-size: 1rem; font-family: var(--sans); font-weight: 600; color: var(--gold-2); margin-bottom: .3rem; }
.owl-card p { font-size: .92rem; color: var(--cream-3); margin: 0; }
.owl-card em { color: var(--cream-2); font-style: italic; }

.finca-pillars { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 600px) { .finca-pillars { grid-template-columns: repeat(2, 1fr); } }
.finca-pillar { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.finca-pillar strong { display: block; color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: .35rem; }
.finca-pillar span { font-size: .88rem; color: var(--cream-3); }

.finca-strip {
  margin-top: 3.5rem; border-radius: 18px; overflow: hidden;
  aspect-ratio: 21/8; border: 1px solid var(--line); position: relative;
}
.finca-strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03); }
.finca-strip figcaption {
  position: absolute; left: 1.2rem; bottom: 1rem;
  font-size: .78rem; letter-spacing: .08em; color: var(--cream-2);
  background: rgba(21,14,8,.55); padding: .4rem .9rem; border-radius: 999px;
  backdrop-filter: blur(6px); border: 1px solid var(--line);
}

/* =============================================================
   11. Process — vertical timeline
   ============================================================= */
.process { background: var(--bg-2); position: relative; }
.process-list { position: relative; }
.process-list::before {
  content: ""; position: absolute; left: 27px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 8%, var(--line-strong) 92%, transparent);
}
@media (min-width: 720px) { .process-list::before { left: 50%; margin-left: -.5px; } }

.process-step {
  position: relative; display: grid; gap: 1.2rem;
  padding-left: 4.2rem; padding-block: 1.8rem;
}
@media (min-width: 720px) {
  .process-step {
    grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem;
    padding-left: 0; padding-block: 2.6rem;
  }
  .process-step:nth-child(odd) .process-copy { order: 1; text-align: right; }
  .process-step:nth-child(odd) .process-media { order: 2; }
  .process-step:nth-child(even) .process-copy { order: 2; }
  .process-step:nth-child(even) .process-media { order: 1; }
}
.process-num {
  position: absolute; left: 0; top: 1.9rem;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--bg-3);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.05rem;
  z-index: 2;
}
@media (min-width: 720px) { .process-num { left: 50%; margin-left: -28px; top: 50%; margin-top: -28px; } }
.process-copy h3 { font-size: 1.4rem; font-style: italic; margin-bottom: .6rem; }
.process-copy p { color: var(--cream-3); font-size: .95rem; max-width: 34ch; }
@media (min-width: 720px) { .process-step:nth-child(odd) .process-copy p { margin-left: auto; } }
.process-media {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.process-media { position: relative; isolation: isolate; }
.process-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .8s var(--ease-soft);
}
.process-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(21,14,8,0), rgba(21,14,8,.22));
  mix-blend-mode: multiply;
}
.process-media:hover img { transform: scale(1.06); }

/* =============================================================
   12. Maltitol section
   ============================================================= */
.maltitol { background: var(--bg); }
.maltitol-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .maltitol-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; } }
.maltitol-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-style: italic; margin-bottom: 1.2rem; }
.maltitol-copy p { margin-bottom: 1.05rem; color: var(--cream-2); }
.maltitol-note {
  margin-top: 1.6rem; padding: 1.2rem 1.3rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg-3);
  font-size: .88rem; color: var(--cream-3); display: flex; gap: .8rem;
}
.maltitol-note svg { flex: none; width: 20px; height: 20px; color: var(--gold-2); margin-top: 2px; }
.maltitol-facts { display: grid; gap: 1rem; }
.maltitol-fact {
  padding: 1.4rem 1.5rem; border-radius: 14px; border: 1px solid var(--line);
  background: var(--bg-3);
}
.maltitol-fact strong { display: block; font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.15rem; margin-bottom: .4rem; }
.maltitol-fact span { font-size: .9rem; color: var(--cream-3); }
.maltitol-badges { margin-top: 2.2rem; }

/* =============================================================
   13. Products
   ============================================================= */
.products { background: var(--bg-2); }
.products-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  position: relative; isolation: isolate;
  border-radius: 18px; border: 1px solid var(--line);
  background: var(--bg-3);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .4s;
  display: flex; flex-direction: column;
}
.card:hover { transition-duration: .15s; border-color: var(--line-strong); }
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(212,175,55,.28), transparent 62%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  box-shadow: 0 40px 80px -24px rgba(212,175,55,.35), 0 20px 45px -20px rgba(0,0,0,.55);
}
.card-media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
.card:hover .card-media img { transform: scale(1.1); filter: saturate(1.15) brightness(1.04); }
.card-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 1;
  padding: .3rem .65rem; border-radius: 999px; font-size: .68rem; letter-spacing: .08em;
  background: rgba(21,14,8,.72); border: 1px solid var(--line-strong); color: var(--gold-2);
  backdrop-filter: blur(6px);
}
.card-body { position: relative; padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; transform: translateZ(30px); }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.card-body h3 { font-size: 1.12rem; font-style: italic; line-height: 1.2; }
.card-price { font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.05rem; white-space: nowrap; }
.card-meta { font-size: .76rem; color: var(--cream-3); letter-spacing: .02em; }
.card-desc { font-size: .87rem; color: var(--cream-3); flex: 1; }
.card .btn { margin-top: .5rem; width: 100%; }

.products-note {
  margin-top: 2rem; padding: 1.1rem 1.3rem; border-radius: 12px;
  border: 1px dashed var(--line-strong); color: var(--cream-3); font-size: .88rem;
  display: flex; gap: .7rem; align-items: flex-start;
}
.products-note svg { flex: none; width: 18px; height: 18px; color: var(--gold-2); margin-top: 2px; }

/* =============================================================
   14. Wholesale banner
   ============================================================= */
.wholesale {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 22px; margin-inline: auto;
  border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, var(--bg-3), var(--bg-2));
  padding: clamp(2rem, 5vw, 3.5rem);
}
.wholesale::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -1;
  background: radial-gradient(45% 60% at 85% 20%, rgba(212,175,55,.22), transparent 70%);
  filter: blur(60px);
}
.wholesale-bg { position: absolute; inset: 0; z-index: -2; }
.wholesale-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.wholesale-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(21,14,8,.94), rgba(28,19,11,.8));
}
.wholesale-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .wholesale-grid { grid-template-columns: 1.2fr auto; gap: 3rem; } }
.wholesale-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-style: italic; margin-bottom: .7rem; }
.wholesale-copy p { color: var(--cream-3); max-width: 40ch; }
.wholesale-prices { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.wholesale-price {
  padding: .9rem 1.3rem; border-radius: 12px; border: 1px solid var(--line-strong);
  background: rgba(21,14,8,.4);
}
.wholesale-price strong { display: block; font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.3rem; }
.wholesale-price span { font-size: .78rem; color: var(--cream-3); letter-spacing: .04em; }

/* =============================================================
   15. Visítanos
   ============================================================= */
.visit { background: var(--bg); }
.visit-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .visit-grid { grid-template-columns: .95fr 1.05fr; gap: 4rem; } }
.visit-list { display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.visit-item { display: flex; gap: 1rem; align-items: flex-start; }
.visit-item svg { flex: none; width: 22px; height: 22px; color: var(--gold-2); margin-top: 2px; }
.visit-item strong { display: block; color: var(--cream); font-size: .95rem; margin-bottom: .2rem; }
.visit-item span, .visit-item a { font-size: .9rem; color: var(--cream-3); }
.visit-item a:hover { color: var(--gold-2); }
.visit-item .soon {
  display: inline-flex; margin-left: .5rem; padding: .15rem .55rem; border-radius: 999px;
  font-size: .68rem; letter-spacing: .06em; border: 1px solid var(--line-strong); color: var(--cream-3);
}
.visit-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3.4; min-height: 340px; }
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) sepia(.15) saturate(1.1); }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin-bottom: .9rem; }
.footer-brand img { width: auto; height: 48px; object-fit: contain; }
.footer p.desc { color: var(--cream-3); font-size: .9rem; max-width: 32ch; }
.footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 1rem; }
.footer ul { display: grid; gap: .65rem; }
.footer a { font-size: .9rem; color: var(--cream-3); }
.footer a:hover { color: var(--gold-2); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .78rem; color: var(--cream-3);
}

/* =============================================================
   17. Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 400;
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, var(--gold-3));
  color: #201406; font-weight: 700; font-size: .86rem;
  box-shadow: 0 14px 34px -8px rgba(212,175,55,.55);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 44px -8px rgba(212,175,55,.65); }
.wa-float svg { width: 20px; height: 20px; flex: none; }
.wa-float span { display: none; }
@media (min-width: 640px) { .wa-float span { display: inline; } }

/* =============================================================
   18. Responsive polish
   ============================================================= */
@media (max-width: 719px) {
  .process-step:nth-child(odd) .process-copy,
  .process-step:nth-child(even) .process-copy { text-align: left; }
  .process-step:nth-child(odd) .process-copy p,
  .process-step:nth-child(even) .process-copy p { margin-left: 0; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh::before { animation: none; }
  .splash-mark { animation: none; }
}
