/* =============================================================
   Grecia Avilez — Directora Independiente Yanbal
   1. Tokens
   ============================================================= */
:root {
  --bg: #faf6f0;
  --bg-2: #f1e7db;
  --bg-3: #e9dccb;
  --paper: #ffffff;
  --ink: #1d1613;
  --ink-soft: #33272200;
  --ink-70: #4a3a33;
  --ink-mute: #7a6a62;
  --accent: #ee5223;
  --accent-deep: #c73c12;
  --accent-soft: #ffe7dd;
  --gold: #b98a4b;
  --line: rgba(29, 22, 19, 0.12);
  --line-soft: rgba(29, 22, 19, 0.07);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-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);

  --gutter: clamp(1.15rem, 5vw, 4rem);
  --maxw: 1240px;
  --radius: 18px;
  --nav-h: 66px;
  --bar-h: 46px;

  --shadow-sm: 0 2px 10px rgba(29, 22, 19, 0.06);
  --shadow-md: 0 18px 44px -22px rgba(29, 22, 19, 0.35);
  --shadow-accent: 0 26px 60px -26px rgba(238, 82, 35, 0.55);
}

/* =============================================================
   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(--nav-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.02em; font-weight: 400; }
::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 9999;
  padding: 0.6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--bg-2); }

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); flex: none;
}
.kicker--center { justify-content: center; }

.h-display {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  max-width: 20ch;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.h-display em { font-style: italic; color: var(--accent); }
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-70);
  max-width: 58ch;
}

.section-head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { justify-items: center; text-align: center; }
.section-head--center .h-display { margin-inline: auto; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.94rem; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
              background-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 30px -14px rgba(238, 82, 35, 0.85);
}
.btn--primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-accent); }

.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { box-shadow: 0 22px 44px -22px rgba(29, 22, 19, 0.75); }

.btn--ghost {
  border: 1px solid var(--line);
  background: transparent; color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(29, 22, 19, 0.04); }

.btn--wa { background: #1fa855; color: #fff; }
.btn--wa:hover { background: #17904a; box-shadow: 0 22px 44px -22px rgba(31, 168, 85, 0.8); }

.btn--lg { padding: 1.08rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* =============================================================
   5. Top bar (la frase + botón protagonista)
   ============================================================= */
.topbar {
  background: linear-gradient(100deg, var(--ink) 0%, #2e211b 60%, #3a251b 100%);
  color: #f6ece4;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.6rem 1.2rem;
  padding-block: 0.6rem;
  text-align: center;
}
.topbar__text { font-size: 0.86rem; color: #e5d5cb; max-width: 62ch; }
.topbar__text strong { color: #fff; font-weight: 600; }
.topbar .btn { padding: 0.55rem 1.15rem; font-size: 0.82rem; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0);
  transition: background-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              backdrop-filter 0.45s var(--ease-out);
}
.nav.is-solid {
  background: rgba(250, 246, 240, 0.92);
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 30px -30px rgba(29, 22, 19, 0.8);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-solid { background: rgba(250, 246, 240, 0.78); backdrop-filter: blur(14px) saturate(150%); }
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: grid; gap: 1px; flex: none; }
.brand__name {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1; white-space: nowrap;
}
.brand__role {
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; white-space: nowrap; display: none;
}
.nav__links { display: none; gap: 1.1rem; align-items: center; }
.nav__link { font-size: 0.84rem; color: var(--ink-70); position: relative; padding-block: 4px; white-space: nowrap; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: none; }

.burger {
  width: 42px; height: 42px; display: grid; place-content: center; gap: 5px;
  border-radius: 50%; border: 1px solid var(--line);
}
.burger span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--bg);
  display: grid; align-content: center; gap: 0.4rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.menu a {
  font-family: var(--serif); font-size: clamp(1.7rem, 8vw, 2.4rem);
  padding-block: 0.35rem; border-bottom: 1px solid var(--line-soft);
}
.menu .btn { margin-top: 1.4rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__halo {
  position: absolute; inset: -40% -20% 20% -20%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(38% 34% at 22% 34%, rgba(238, 82, 35, 0.22), transparent 70%),
    radial-gradient(34% 30% at 82% 18%, rgba(185, 138, 75, 0.22), transparent 72%);
  filter: blur(70px);
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2.2rem, 5vw, 3.5rem); align-items: center; }
.hero__id { display: grid; gap: 0.25rem; margin-bottom: 0.9rem; }
.hero__id-role {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__id-role::before { content: ""; width: 26px; height: 1px; background: var(--accent); flex: none; }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7.4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 15ch;
  font-variation-settings: "SOFT" 40;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__tagline {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  max-width: 24ch;
}
.hero__tagline em { font-style: italic; color: var(--accent); }
.hero__sub { margin-top: 1.1rem; font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--ink-70); max-width: 46ch; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--ink-mute); display: flex; align-items: center; gap: 0.5rem; }
.hero__note .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #1fa855; flex: none;
  box-shadow: 0 0 0 4px rgba(31, 168, 85, 0.18);
  animation: pulseDot 2.6s var(--ease-soft) infinite;
}
@keyframes pulseDot { 50% { box-shadow: 0 0 0 9px rgba(31, 168, 85, 0); } }

.hero__figure { position: relative; }
.hero__photo {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out);
}
.hero__photo:hover img { transform: scale(1.09); }

.hero__badge {
  position: absolute; left: -6px; bottom: 20px;
  background: var(--paper); border-radius: 16px; padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow-md); display: grid; gap: 2px; max-width: 210px;
}
.hero__badge b { font-family: var(--serif); font-size: 1.55rem; color: var(--accent); line-height: 1; }
.hero__badge span { font-size: 0.72rem; color: var(--ink-mute); line-height: 1.35; }

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden; padding-block: 0.85rem;
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; }
.marquee span {
  font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--ink-70); white-space: nowrap; font-style: italic;
}
.marquee i { color: var(--accent); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   9. Historia / Sobre mí
   ============================================================= */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: start; }
.about__text p + p { margin-top: 1.05rem; }
.about__text p { color: var(--ink-70); }
.about__signature {
  margin-top: 0.9rem; margin-bottom: 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.about__quote {
  margin-top: 1.6rem; padding-left: 1.2rem; border-left: 2px solid var(--accent);
  font-family: var(--serif); font-style: italic; font-size: 1.14rem; color: var(--ink);
}
.about__media { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.about__media figure { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-3); }
.about__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 0.9s var(--ease-out); }
.about__media figure:hover img { transform: scale(1.06); }
.about__media figure:first-child { grid-column: span 2; }
.about__media figure:first-child img { aspect-ratio: 16/10; }

.milestones { display: grid; gap: 0.9rem; margin-top: 1.9rem; }
.milestone {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.95rem 1.1rem; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: 14px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.milestone:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.milestone__icon { font-size: 1.15rem; line-height: 1.4; flex: none; }
.milestone b { display: block; font-size: 0.95rem; }
.milestone span { font-size: 0.86rem; color: var(--ink-mute); }

/* =============================================================
   10. Beneficios (por qué unirte)
   ============================================================= */
.benefits { display: grid; gap: 1rem; }
.benefit {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.5rem 1.4rem 1.6rem;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s;
  will-change: transform;
}
.benefit::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 120px;
  background: radial-gradient(50% 60% at 50% 100%, rgba(238, 82, 35, 0.22), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(238, 82, 35, 0.3); }
.benefit:hover::after { opacity: 1; }
.benefit__num {
  font-family: var(--serif); font-size: 0.82rem; color: var(--accent);
  letter-spacing: 0.12em; display: block; margin-bottom: 0.85rem;
}
.benefit h3 { font-family: var(--serif); font-size: 1.24rem; margin-bottom: 0.5rem; }
.benefit p { font-size: 0.92rem; color: var(--ink-mute); }

.join-cta {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  background: linear-gradient(120deg, #1d1613 0%, #331f16 55%, #4a2415 100%);
  color: #f7ede5; border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.4rem);
  display: grid; gap: 1.4rem; position: relative; overflow: hidden;
}
.join-cta::before {
  content: ""; position: absolute; inset: -50% -20% auto -20%; height: 300px;
  background: radial-gradient(40% 60% at 30% 100%, rgba(238, 82, 35, 0.45), transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.join-cta > * { position: relative; }
.join-cta h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.4rem); max-width: 20ch; }
.join-cta p { color: #d9c8bd; max-width: 52ch; }
.join-cta .btn--ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.join-cta .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.join-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* =============================================================
   11. Números
   ============================================================= */
.stats { display: grid; gap: 1px; background: var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--bg); padding: 1.6rem 1.3rem; text-align: center; }
.stat b {
  display: block; font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--accent); line-height: 1;
}
.stat span { font-size: 0.82rem; color: var(--ink-mute); }

/* =============================================================
   12. Galería / historias
   ============================================================= */
.gallery { display: grid; gap: 1rem; }
.gallery figure {
  margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-3); box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1s var(--ease-out), filter 0.6s; }
.gallery figure:hover img { transform: scale(1.07); filter: saturate(1.12); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(15, 10, 8, 0.82), transparent);
  color: #fff; font-size: 0.86rem; font-weight: 500;
}
.gallery figcaption small { display: block; font-weight: 400; opacity: 0.78; font-size: 0.76rem; }

/* =============================================================
   13. Categorías de producto
   ============================================================= */
.cats { display: grid; gap: 1rem; }
.cat {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 200px; padding: 1.4rem;
  border-radius: var(--radius); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat__thumbs { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); opacity: 0.95; }
.cat__thumbs img {
  width: 100%; height: 100%; object-fit: contain; padding: 12px;
  background: var(--bg-2);
  transition: transform 0.7s var(--ease-out);
}
.cat:hover .cat__thumbs img { transform: scale(1.07); }
.cat__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(250, 246, 240, 0.97) 22%, rgba(250, 246, 240, 0.55) 55%, rgba(250, 246, 240, 0.1));
}
.cat__body { position: relative; }
.cat h3 { font-family: var(--serif); font-size: 1.3rem; }
.cat span { font-size: 0.8rem; color: var(--ink-mute); }
.cat__go {
  margin-top: 0.7rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
}
.cat__go svg { transition: transform 0.4s var(--ease-out); }
.cat:hover .cat__go svg { transform: translateX(4px); }

/* =============================================================
   14. Eventos
   ============================================================= */
.events { display: grid; gap: 0.9rem; }
.event {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.25rem 1.3rem; border-radius: 16px;
  background: var(--paper); border: 1px solid var(--line-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.event:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.event__badge {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-content: center;
  background: var(--accent-soft); font-size: 1.15rem;
}
.event h3 { font-family: var(--serif); font-size: 1.14rem; margin-bottom: 0.25rem; }
.event p { font-size: 0.9rem; color: var(--ink-mute); }

/* =============================================================
   15. Contacto + formulario
   ============================================================= */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
.contact__list { display: grid; gap: 0.7rem; margin-top: 1.7rem; }
.contact__item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem; border-radius: 14px;
  border: 1px solid var(--line-soft); background: var(--paper);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.contact__item:hover { transform: translateY(-2px); border-color: var(--accent); }
.contact__item svg { flex: none; }
.contact__item b { font-size: 0.93rem; display: block; }
.contact__item span { font-size: 0.8rem; color: var(--ink-mute); }

.form {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 22px; padding: clamp(1.4rem, 3.5vw, 2.2rem);
  display: grid; gap: 0.9rem; box-shadow: var(--shadow-sm);
}
.form h3 { font-family: var(--serif); font-size: 1.4rem; }
.form p.form__hint { font-size: 0.85rem; color: var(--ink-mute); margin-top: -0.4rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.94rem; color: var(--ink);
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(238, 82, 35, 0.14);
}
.form__ok {
  display: none; font-size: 0.88rem; color: #1a7a41;
  background: #e8f6ed; border-radius: 12px; padding: 0.75rem 0.9rem;
}
.form.is-sent .form__ok { display: block; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--ink); color: #cbb9ae; padding-block: clamp(2.5rem, 5vw, 3.6rem) 1.6rem; }
.footer__grid { display: grid; gap: 1.8rem; }
.footer__brand { font-family: var(--serif); color: #fff; font-size: 1.4rem; }
.footer p { font-size: 0.88rem; max-width: 42ch; }
.footer__links { display: grid; gap: 0.5rem; font-size: 0.9rem; }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer__legal {
  margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem; color: #9d8a80;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; justify-content: space-between;
}

/* =============================================================
   17. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1fa855; color: #fff;
  display: grid; place-content: center;
  box-shadow: 0 14px 30px -12px rgba(31, 168, 85, 0.8);
  transition: transform 0.4s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* =============================================================
   18. Catálogo
   ============================================================= */
.catalog-hero { padding-block: clamp(2rem, 5vw, 3.4rem) clamp(1.4rem, 3vw, 2rem); }
.catalog-tools {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: rgba(250, 246, 240, 0.94);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 0.85rem;
}
@supports (backdrop-filter: blur(12px)) {
  .catalog-tools { background: rgba(250, 246, 240, 0.8); backdrop-filter: blur(12px) saturate(150%); }
}
.catalog-tools__inner { display: grid; gap: 0.7rem; }
.chips { display: flex; gap: 0.45rem; overflow-x: auto; overflow-y: visible; padding-bottom: 2px; scrollbar-width: thin; }
.chip {
  white-space: nowrap; flex: none;
  padding: 0.5rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line); font-size: 0.84rem; color: var(--ink-70);
  background: var(--paper);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.chip:hover { transform: translateY(-2px); border-color: var(--ink); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip small { opacity: 0.7; margin-left: 0.3rem; }

.search { position: relative; }
.search input {
  width: 100%; font: inherit; font-size: 0.92rem;
  padding: 0.72rem 0.95rem 0.72rem 2.4rem;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
}
.search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(238, 82, 35, 0.14); }
.search svg { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--ink-mute); }

.catalog-count { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 1.2rem; }

.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.product {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(238, 82, 35, 0.28); }
.product__img { position: relative; background: var(--bg-2); aspect-ratio: 1; }
.product__img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 0.7s var(--ease-out); }
.product:hover .product__img img { transform: scale(1.06); }
.product__tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 999px; letter-spacing: 0.04em;
}
.product__body { padding: 0.8rem 0.85rem 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product__name { font-size: 0.86rem; font-weight: 500; line-height: 1.35; }
.product__cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.product__price { display: flex; align-items: baseline; gap: 0.45rem; margin-top: auto; }
.product__price b { font-family: var(--serif); font-size: 1.12rem; }
.product__price s { font-size: 0.78rem; color: var(--ink-mute); }
.product .btn { padding: 0.6rem 0.9rem; font-size: 0.8rem; }

.catalog-more { display: grid; justify-items: center; gap: 0.7rem; margin-top: 2.2rem; }
.catalog-empty { text-align: center; padding-block: 3rem; color: var(--ink-mute); display: none; }
.catalog-empty.is-on { display: block; }

.catalog-note {
  margin-top: 2.5rem; padding: 1.2rem 1.3rem; border-radius: 16px;
  background: var(--bg-2); border: 1px solid var(--line-soft);
  font-size: 0.86rem; color: var(--ink-70);
}

/* =============================================================
   19. Reveals (JS enriquece; sin JS todo se ve igual)
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal[data-split] { opacity: 1; transform: none; }

.split-word { display: inline-block; }
.js .split-word { opacity: 0; transform: translateY(0.5em); }
.js .is-visible .split-word {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 42ms);
}

/* =============================================================
   20. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools__inner { grid-template-columns: 1fr minmax(220px, 300px); align-items: center; }
}

@media (min-width: 720px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .events { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero__badge { left: -22px; }
}

@media (min-width: 960px) {
  .brand__role { display: block; }
  .nav__links { display: flex; }
  .burger { display: none; }
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; }
  .about__grid { grid-template-columns: 1.05fr 0.95fr; }
  .contact__grid { grid-template-columns: 0.95fr 1.05fr; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .join-cta { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .join-cta__actions { justify-content: flex-end; }
  .products { grid-template-columns: repeat(4, 1fr); }
  .topbar__inner { justify-content: space-between; text-align: left; }
}

@media (min-width: 1280px) {
  .products { grid-template-columns: repeat(5, 1fr); }
  .nav__links { gap: 1.5rem; }
  .nav__link { font-size: 0.88rem; }
  .nav__cta { display: inline-flex; }
}

/* =============================================================
   21. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__note .dot { animation: none; }
}
