:root {
  --ink: #211f16;
  --olive-900: #333d17;
  --olive-700: #4c5a21;
  --olive-600: #66772c;
  --olive-400: #8a9a45;
  --olive-100: #eef0e2;
  --paper: #f2e9d8;
  --cream: #faf8f2;
  --clay-600: #a8562e;
  --clay-700: #8a4523;
  --text: #2c2b1f;
  --text-muted: #6b6b5c;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 10px 28px rgba(33, 31, 22, 0.12);
  --max-width: 1160px;
  --font-head: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(33, 31, 22, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--clay-600);
  transition: right 0.25s ease;
}

.nav a:hover {
  color: var(--olive-700);
}

.nav a:hover::after {
  right: 0;
}

.nav a.active {
  color: var(--olive-900);
  font-weight: 700;
}

.nav a.active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--olive-900);
}

/* Hummingbird signature element */
.hummingbird {
  position: fixed;
  top: 22vh;
  left: 5%;
  width: 56px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.hummingbird.is-visible {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hummingbird {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hummingbird {
    display: none;
  }
}

/* Eyebrow (etiqueta chica mono, mayúsculas) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-700);
  margin-bottom: 18px;
}

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(33, 31, 22, 0.32) 0%, rgba(33, 31, 22, 0.62) 65%, rgba(33, 31, 22, 0.82) 100%),
    var(--hero-img) center/cover no-repeat;
  padding: 150px 0 112px;
  text-align: center;
}

.hero .eyebrow {
  color: var(--paper);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 22px;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(33, 31, 22, 0.35);
}

.hero p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(250, 248, 242, 0.92);
  font-size: 1.1rem;
}

.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--olive-900);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn .icon-wa {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--clay-600);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(168, 86, 46, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(168, 86, 46, 0.38);
}

.btn-outline {
  border: 2px solid var(--olive-700);
  color: var(--olive-700);
}

.btn-outline:hover {
  background: var(--olive-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(51, 61, 23, 0.22);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1fb959;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
}

/* WhatsApp floating action button */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.6s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  display: block;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: scale(1.08);
}

.wa-fab-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-fab:hover .wa-fab-tooltip,
.wa-fab:focus-visible .wa-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab {
    animation: none;
  }
}

@media (max-width: 640px) {
  .wa-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--olive-100);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--olive-900);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 52px;
  font-size: 1.02rem;
}

/* Grid / Tag cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--olive-400);
  box-shadow: var(--shadow);
}

/* CTA cruzado al pie de página (nosotros, servicios, galería) */
.cross-cta-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

.contact-list a {
  color: var(--clay-700);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-list a:hover {
  border-color: var(--clay-700);
}

.wa-cta-card {
  background: var(--white);
  padding: 40px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wa-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wa-cta-icon svg {
  width: 34px;
  height: 34px;
}

.wa-cta-card h2,
.wa-cta-card h3 {
  color: var(--olive-900);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.wa-cta-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 320px;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--olive-100);
  opacity: 0.85;
}

.social-links a:hover {
  opacity: 1;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay-600);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-img {
    order: -1;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    border-bottom: 1px solid rgba(33, 31, 22, 0.08);
  }
  .nav.open {
    display: flex;
  }
  .grid-5,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .cross-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cross-cta-inner .btn {
    justify-content: center;
  }
}

/* ==========================================================================
   Rediseño 2026: títulos grandes, mosaico de inicio, servicios en zigzag,
   catálogo tipo tienda y reels.
   ========================================================================== */

:root {
  --line: rgba(33, 31, 22, 0.12);
  --sage: #c9d59a;
  --forest: #2b3413;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.no-scroll {
  overflow: hidden;
}

.display-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-title em {
  font-style: italic;
  color: var(--olive-700);
}

/* Íconos de línea reutilizados */
.bento-arrow svg,
.round-btn svg,
.rl-close svg,
.rl-nav svg,
.shop-search svg,
.shop-cat svg,
.pcard-icon svg,
.svc-includes svg,
.reel-badge svg,
.btn-dark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.btn-light {
  background: var(--cream);
  color: var(--olive-900);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.btn-light .icon-wa {
  fill: #1fa855;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-dark:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost[hidden] {
  display: none;
}

/* ---------- Inicio: Explorá Colibrí (mosaico) ---------- */
.explore-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 44px;
}

.explore-head p {
  max-width: 300px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 310px);
  gap: 20px;
}

.bento-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 40px -24px rgba(33, 31, 22, 0.5);
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.9s var(--ease-out);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 19, 13, 0.28) 0%, rgba(20, 19, 13, 0) 30%, rgba(20, 19, 13, 0.18) 55%, rgba(20, 19, 13, 0.82) 100%);
}

.bento-card:hover img,
.bento-card:focus-visible img {
  transform: scale(1.06);
}

.bento-servicios {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.bento-catalogo {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bento-nosotros {
  grid-column: 4;
  grid-row: 1;
}

.bento-contacto {
  grid-column: 4;
  grid-row: 2;
  background: var(--clay-600);
}

.bento-contacto::after {
  background: radial-gradient(120% 90% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.bento-tag {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.92;
}

.bento-body {
  position: absolute;
  left: 24px;
  right: 84px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.015em;
}

.bento-servicios .bento-title {
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
}

.bento-servicios .bento-body {
  bottom: 28px;
  left: 28px;
}

.bento-desc {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.bento-contacto .bento-body {
  right: 24px;
}

.bento-contacto .bento-desc {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.bento-contacto .bento-title {
  padding-right: 58px;
}

.bento-nosotros img {
  object-position: 72% 60%;
}

.bento-servicios img {
  object-position: 62% center;
}

/* Catálogo: foto con fondo crema, texto oscuro */
.bento-catalogo {
  background: #fbf8ef;
  color: var(--ink);
}

.bento-catalogo img {
  object-position: center top;
}

.bento-catalogo::after {
  background: linear-gradient(180deg, transparent 55%, rgba(251, 248, 239, 0.9) 78%);
}

.bento-catalogo .bento-tag {
  color: var(--clay-700);
}

.bento-catalogo .bento-desc {
  color: var(--text-muted);
}

.bento-catalogo .bento-arrow {
  background: var(--olive-700);
  color: var(--white);
}

.bento-contacto img {
  object-position: center top;
}

.bento-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.bento-chips span {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bento-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.bento-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.bento-card:hover .bento-arrow svg,
.bento-card:focus-visible .bento-arrow svg {
  transform: translate(2px, -2px);
}

.bento-card:hover .bento-arrow {
  transform: scale(1.06);
}

@media (max-width: 980px) {
  .explore-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 240px 240px;
  }
  .bento-servicios {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .bento-catalogo {
    grid-column: 1;
    grid-row: 2 / 4;
  }
  .bento-nosotros {
    grid-column: 2;
    grid-row: 2;
  }
  .bento-contacto {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: 560px 540px 260px 220px;
    gap: 14px;
  }
  .bento-servicios,
  .bento-catalogo,
  .bento-nosotros,
  .bento-contacto {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-servicios .bento-body {
    left: 22px;
    right: 78px;
    bottom: 24px;
  }
  .bento-card {
    border-radius: 24px;
  }
}

/* ---------- Servicios ---------- */
.svc-hero {
  padding: 88px 0 56px;
}

.svc-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.svc-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.svc-hero-side p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.svc-chip span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--clay-600);
}

.svc-chip:hover {
  background: var(--olive-700);
  border-color: var(--olive-700);
  color: var(--white);
}

.svc-chip:hover span {
  color: var(--sage);
}

.svc {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: center;
  padding: 72px 0;
  scroll-margin-top: 80px;
}

.svc + .svc {
  border-top: 1px solid var(--line);
}

.svc:nth-child(even) {
  grid-template-columns: 1fr 360px;
}

.svc:nth-child(even) .svc-media {
  order: 2;
}

.svc-media {
  width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 34px 60px -28px rgba(33, 31, 22, 0.55), 0 2px 6px rgba(33, 31, 22, 0.08);
}

.svc-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-body {
  max-width: 540px;
}

.svc-num {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}

.svc-num span {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--clay-600);
}

.svc-num::after {
  content: "";
  flex: 1;
  max-width: 240px;
  height: 1px;
  background: rgba(168, 86, 46, 0.35);
}

.svc-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  color: var(--ink);
  margin: 10px 0 14px;
}

.svc-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 46ch;
  margin-bottom: 26px;
}

.svc-includes {
  background: var(--paper);
  border-radius: 20px;
  padding: 20px 24px 22px;
}

.svc-includes-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.svc-includes ul {
  display: grid;
  gap: 9px;
}

.svc-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
}

.svc-includes svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--olive-700);
  color: var(--white);
  stroke-width: 3;
}

/* Servicio sin video: solo texto, en dos columnas */
.svc--text,
.svc--text:nth-child(even) {
  grid-template-columns: 1fr;
}

.svc--text .svc-body {
  max-width: none;
  padding: 52px 56px;
  border-radius: 30px;
  background: var(--olive-100);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  column-gap: 88px;
  align-items: center;
}

.svc--text .svc-num,
.svc--text .svc-title,
.svc--text .svc-desc {
  grid-column: 1;
}

.svc--text .svc-includes {
  background: var(--cream);
  grid-column: 2;
  grid-row: 1 / span 3;
}

.svc--text .svc-desc {
  margin-bottom: 0;
}

.svc-close-wrap {
  padding: 24px 0 104px;
  scroll-margin-top: 80px;
}

.svc-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 64px;
  border-radius: 32px;
  color: var(--cream);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201, 213, 154, 0.16), transparent 55%),
    var(--forest);
}

.svc-close-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.svc-close h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-close h2 em {
  font-style: italic;
  color: var(--sage);
}

.svc-close p {
  color: rgba(250, 248, 242, 0.78);
  max-width: 52ch;
}

.svc-close .btn {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .svc-hero {
    padding: 56px 0 24px;
  }
  .svc-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
  .svc,
  .svc:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 0;
  }
  .svc:nth-child(even) .svc-media {
    order: 0;
  }
  .svc-media {
    width: min(100%, 340px);
    justify-self: center;
  }
  .svc-body {
    max-width: 600px;
    justify-self: center;
    width: 100%;
  }
  .svc--text .svc-body {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .svc--text .svc-includes {
    grid-column: 1;
    grid-row: auto;
    margin-top: 22px;
  }
  .svc-close {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  .svc-num span {
    font-size: 2.6rem;
  }
  .svc-close .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Catálogo: tienda ---------- */
.shop-hero {
  margin: 16px 16px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 13, 0.78) 0%, rgba(20, 19, 13, 0.45) 55%, rgba(20, 19, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 19, 13, 0.45), transparent 60%),
    var(--shop-img) center 58% / cover no-repeat;
}

.shop-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.shop-hero .eyebrow {
  color: var(--sage);
  margin-bottom: 10px;
}

.shop-hero h1 {
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.shop-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.shop-search {
  flex: 0 1 440px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 20px;
  border-radius: 100px;
  background: var(--white);
  color: var(--text-muted);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.5);
}

.shop-search svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.shop-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 0;
  -webkit-appearance: none;
  appearance: none;
}

.shop-search input:focus-visible {
  outline: none;
}

.shop-search:focus-within {
  box-shadow: 0 0 0 3px rgba(201, 213, 154, 0.7), 0 18px 40px -18px rgba(0, 0, 0, 0.5);
}

.shop-search button {
  border: none;
  border-radius: 100px;
  padding: 11px 22px;
  background: var(--olive-700);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.shop-search button:hover {
  background: var(--olive-900);
}

.shop {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  padding-top: 52px;
  padding-bottom: 72px;
  scroll-margin-top: 90px;
}

.shop-side {
  position: sticky;
  top: 100px;
  align-self: start;
}

.shop-side-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px 12px;
}

.shop-cats {
  display: grid;
  gap: 4px;
}

.shop-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 12px;
  background: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.shop-cat svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--olive-600);
}

.shop-cat-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.shop-cat:hover {
  background: var(--olive-100);
}

.shop-cat.is-active {
  background: var(--olive-700);
  color: var(--white);
  box-shadow: 0 10px 22px -12px rgba(51, 61, 23, 0.7);
}

.shop-cat.is-active svg,
.shop-cat.is-active .shop-cat-count {
  color: rgba(255, 255, 255, 0.85);
}

.shop-help {
  margin-top: 28px;
  padding: 26px 24px;
  border-radius: 22px;
  color: var(--cream);
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(201, 213, 154, 0.18), transparent 60%),
    var(--forest);
}

.shop-help h2 {
  font-size: 1.4rem;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 10px;
}

.shop-help h2 em {
  font-style: italic;
  color: var(--sage);
}

.shop-help p {
  font-size: 0.85rem;
  color: rgba(250, 248, 242, 0.78);
  margin-bottom: 18px;
}

.shop-help .btn {
  width: 100%;
  justify-content: center;
}

.shop-crumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.shop-crumb span:last-child {
  color: var(--ink);
}

.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.shop-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.05;
  color: var(--ink);
}

.shop-head small {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
  white-space: nowrap;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shop-sort select {
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23211f16' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 12px center / 14px no-repeat;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 22px;
}

.pcard {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pcard-media {
  position: relative;
  aspect-ratio: 6 / 7;
  border-radius: 20px;
  overflow: hidden;
  background: var(--tone, var(--olive-100));
}

.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.pcard:hover .pcard-media img {
  transform: scale(1.05);
}

.pcard-icon {
  display: none;
}

.pcard-media.is-empty .pcard-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-600);
  opacity: 0.75;
}

.pcard-media.is-empty .pcard-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.3;
}

.pcard-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
}

.pcard-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a988c;
}

.pcard-stock.is-ok::before {
  background: #4e9a2c;
}

.pcard-stock.is-low::before {
  background: #d9951b;
}

.pcard-name {
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 14px;
}

.pcard-size {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: auto;
  padding-top: 12px;
}

.pcard-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--olive-700);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive-700);
  transition: background 0.2s ease, color 0.2s ease;
}

.pcard-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pcard-btn:hover {
  background: var(--olive-700);
  color: var(--white);
}

.pcard--skeleton .pcard-media,
.pcard--skeleton span {
  background: linear-gradient(90deg, #ece8dc 0%, #f5f2ea 50%, #ece8dc 100%) 0 0 / 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.pcard--skeleton span {
  display: block;
  height: 14px;
  border-radius: 6px;
  margin-top: 14px;
  width: 70%;
}

.pcard--skeleton span + span {
  width: 40%;
  margin-top: 8px;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.shop-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
}

.shop-empty a {
  color: var(--clay-700);
  font-weight: 600;
  text-decoration: underline;
}

.shop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.shop-foot p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.promo-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 96px;
}

.promo-strip-text {
  padding: 44px 52px;
}

.promo-strip-text .eyebrow {
  margin-bottom: 12px;
}

.promo-strip h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.12;
  color: var(--ink);
  max-width: 20ch;
  margin-bottom: 24px;
}

.promo-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  contain: size;
}

@media (max-width: 980px) {
  .shop-hero-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 72px 22px 28px;
    gap: 24px;
  }
  .shop-search {
    flex-basis: auto;
  }
  .shop {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }
  .shop-side {
    position: static;
    min-width: 0;
  }
  .shop-side-label,
  .shop-help {
    display: none;
  }
  .shop-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 -24px;
    padding: 2px 24px 6px;
    scrollbar-width: none;
  }
  .shop-cats::-webkit-scrollbar {
    display: none;
  }
  .shop-cat {
    width: auto;
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
  }
  .shop-cat.is-active {
    border-color: var(--olive-700);
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 14px;
  }
  .promo-strip {
    grid-template-columns: 1fr;
  }
  .promo-strip-text {
    padding: 32px 28px;
  }
  .promo-strip img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .shop-hero {
    margin: 10px 10px 0;
    border-radius: 22px;
  }
  .shop-search {
    padding-left: 16px;
  }
  .shop-search button {
    padding: 10px 16px;
  }
  .shop-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .pcard-media {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }
  .pcard-name {
    font-size: 0.98rem;
  }
  .pcard-stock {
    top: 8px;
    left: 8px;
    font-size: 0.66rem;
    padding: 3px 8px;
  }
  .pcard-btn {
    width: 100%;
    justify-content: center;
  }
  .shop-foot {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: center;
  }
}

/* ---------- Nosotros: reels ---------- */
.reels {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 76px;
  scroll-margin-top: 76px;
}

.reels .eyebrow {
  color: var(--sage);
}

.reels .display-title {
  color: var(--cream);
}

.reels .display-title em {
  color: var(--sage);
}

.reels-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.reels-arrows {
  display: flex;
  gap: 10px;
}

.round-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 242, 0.4);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.round-btn svg {
  width: 18px;
  height: 18px;
}

.round-btn--solid,
.round-btn:hover:not(:disabled) {
  background: var(--cream);
  color: var(--ink);
}

.round-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.reels-track {
  --edge: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--edge);
  padding: 8px var(--edge) 16px;
  scrollbar-width: none;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

.reel {
  position: relative;
  flex: 0 0 216px;
  aspect-ratio: 9 / 16;
  border: none;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #2f2c22;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.35s var(--ease-out);
}

.reel:first-child {
  flex-basis: 268px;
}

.reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, transparent 22%, transparent 60%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.reel:hover {
  transform: translateY(-4px);
}

.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-badge svg {
  width: 15px;
  height: 15px;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  background: rgba(250, 248, 242, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease-out);
}

.reel-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  fill: currentColor;
}

.reel:hover .reel-play,
.reel:focus-visible .reel-play {
  transform: scale(1.1);
}

.reel-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
}

.reels-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.reels-dots span {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: rgba(250, 248, 242, 0.3);
  transition: width 0.3s var(--ease-out), background 0.3s ease;
}

.reels-dots span.is-active {
  width: 22px;
  background: var(--cream);
}

.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 13, 9, 0.95);
}

.reel-lightbox[hidden] {
  display: none;
}

.rl-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.rl-stage video {
  display: block;
  height: min(84vh, 880px);
  max-width: 92vw;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 18px;
  background: #000;
}

.rl-stage figcaption {
  color: rgba(250, 248, 242, 0.85);
  font-size: 0.92rem;
}

.rl-close,
.rl-nav {
  position: absolute;
  z-index: 1;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rl-close:hover,
.rl-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.rl-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
}

.rl-close svg,
.rl-nav svg {
  width: 22px;
  height: 22px;
}

.rl-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  margin-top: -27px;
}

.rl-prev {
  left: 24px;
}

.rl-next {
  right: 24px;
}

@media (max-width: 640px) {
  .reels {
    padding: 72px 0 60px;
  }
  .reels-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .reels-arrows {
    display: none;
  }
  .reel {
    flex-basis: 184px;
  }
  .reel:first-child {
    flex-basis: 220px;
  }
  .rl-nav {
    display: none;
  }
  .rl-stage video {
    height: auto;
    width: 100vw;
    max-width: 100vw;
    max-height: 82vh;
    border-radius: 0;
  }
  .rl-close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-card img,
  .pcard-media img,
  .reel,
  .bento-arrow,
  .bento-arrow svg {
    transition: none;
  }
  .pcard--skeleton .pcard-media,
  .pcard--skeleton span {
    animation: none;
  }
}
