/* ═══════════════════════════════════════════════════════
   VILLA FLORIDA FLORES · DEMO POR ORIGEN 27
   Paleta derivada del logo actual del cliente:
   - Verde oliva/salvia (script "Villa Florida")
   - Marrón terroso (línea decorativa + "NUESTRA")
   - Rosa polvo/nude (flores del logo)
   ═══════════════════════════════════════════════════════ */

:root {
  /* Brand colors del logo actual, con jerarquía */
  --bg: #FAF7F3;                /* Crema muy sutil */
  --bg-2: #F3EDE4;              /* Crema más cálida (secciones alt) */
  --bg-3: #F7E6DF;              /* Rosa polvo lavado */
  --brand: #5D7A4A;             /* Verde oliva del script (primario) */
  --brand-dark: #3F5A31;        /* Verde oliva oscuro para hover */
  --earth: #8B572A;             /* Marrón terroso del logo (accent) */
  --earth-light: #C69172;       /* Marrón claro */
  --rose: #D89A8F;              /* Rosa polvo de las flores */
  --rose-soft: #E8C6BE;         /* Rosa polvo suave */
  --ink: #2D3925;               /* Texto oscuro (verde-tierra oscuro) */
  --ink-muted: #6B7A5E;         /* Texto secundario */
  --border: #E5DED2;            /* Border/hairline sutil */
  --yellow: #F5A623;            /* Acento amarillo mostaza del brand actual */

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 100px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Focus visible global */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }

/* ═══════════════ TIPOGRAFÍA ═══════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--rose-soft); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vh, 64px); max-width: 620px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); text-wrap: balance; }
.section-sub { margin-top: 12px; color: var(--ink-muted); font-size: 16px; max-width: 55ch; margin-left: auto; margin-right: auto; text-wrap: pretty; }

.link-underline {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 2px;
  transition: color .2s;
}
.link-underline:hover { color: var(--brand-dark); }

/* ═══════════════ BANNER DEMO ═══════════════ */

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  color: #FAF7F3;
  font-size: 13px;
}
.demo-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.demo-banner__label {
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  flex: none;
}
.demo-banner__text { flex: 1; min-width: 200px; opacity: 0.88; }
.demo-banner__text strong { color: #fff; font-weight: 600; }
.demo-banner__cta {
  color: var(--yellow);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  flex: none;
}
.demo-banner__cta:hover { border-color: var(--yellow); }
.demo-banner__close {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  padding: 4px 8px;
  transition: color .2s;
}
.demo-banner__close:hover { color: #fff; }
.demo-banner.hidden { display: none; }

@media (max-width: 640px) {
  .demo-banner__inner { padding: 8px 16px; gap: 10px; font-size: 12px; }
  .demo-banner__text { min-width: 100%; order: 3; text-align: center; padding-top: 4px; }
}

/* ═══════════════ NAV ═══════════════ */

.nav {
  position: sticky;
  top: 42px; /* debajo del banner demo */
  z-index: 50;
  padding: 20px clamp(16px, 5vw, 40px);
  transition: padding .3s ease;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(250, 247, 243, 0.85);
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 6px 24px -12px rgba(45, 57, 37, 0.15);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.nav__logo img {
  height: 38px;
  width: auto;
}
.nav__logo-tag {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--brand);
  border-left: 1px solid var(--border);
  padding-left: 10px;
  line-height: 1;
  align-self: center;
  padding-top: 4px;
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink);
  transition: color .2s;
  padding: 4px 2px;
}
.nav__links a:hover { color: var(--brand); }
.nav__cart {
  position: relative;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.nav__cart:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav__cart-count {
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner { padding: 8px 8px 8px 16px; gap: 12px; }
  .nav__logo img { height: 32px; }
  .nav__logo-tag { font-size: 17px; padding-left: 8px; }
}

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  padding: clamp(64px, 10vh, 120px) 5vw clamp(72px, 12vh, 140px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fade from cream (left) to photo (right) — el texto sigue legible sobre crema */
.hero__bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    var(--bg) 32%,
    rgba(250, 247, 243, 0.85) 44%,
    rgba(250, 247, 243, 0.15) 65%,
    rgba(250, 247, 243, 0.05) 100%
  );
}
@media (max-width: 820px) {
  .hero__bg img { width: 100%; opacity: 0.35; }
  .hero__bg-tint {
    background: linear-gradient(180deg,
      rgba(250, 247, 243, 0.6) 0%,
      rgba(250, 247, 243, 0.9) 100%
    );
  }
}
.hero__content {
  position: relative;
  max-width: 640px;
  z-index: 1;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 34px;
  text-wrap: pretty;
}
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__meta {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 520px;
}
.hero__meta-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__meta-item span {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .hero__bg { display: none; }
  .hero__content { max-width: 100%; }
  .hero__meta { flex-wrap: wrap; }
}

/* ═══════════════ BOTONES ═══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .2s ease, background .2s, box-shadow .2s;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(93, 122, 74, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover {
  background: #e29618;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(245, 166, 35, 0.5);
}
.btn--block { width: 100%; }

/* ═══════════════ CATEGORÍAS ═══════════════ */

.categories { padding: clamp(64px, 10vh, 120px) 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: transform .3s, box-shadow .3s, background .3s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45, 57, 37, 0.2);
  background: #fff;
}
.cat-card--centros { background: var(--bg-3); }
.cat-card__art {
  flex: none;
  width: 120px;
  height: 120px;
  color: var(--brand);
  opacity: 0.85;
}
.cat-card__count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.cat-card h3 {
  font-size: clamp(28px, 2.6vw, 34px);
  margin-bottom: 10px;
}
.cat-card__body p {
  color: var(--ink-muted);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.cat-card__link {
  color: var(--brand);
  font-weight: 600;
  font-size: 14.5px;
}

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { flex-direction: column; text-align: center; }
  .cat-card__art { width: 100px; height: 100px; }
}

/* ═══════════════ PRODUCTOS ═══════════════ */

.products { padding: clamp(64px, 10vh, 120px) 0; }
.products--alt { background: var(--bg-2); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(45, 57, 37, 0.25);
}
.product__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.product--featured .product__badge { background: var(--yellow); color: var(--ink); }

.product__image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.product__image--rose { background: linear-gradient(135deg, #F7E6DF 0%, #E8C6BE 100%); color: #B76F63; }
.product__image--red { background: linear-gradient(135deg, #F5D5CE 0%, #D89A8F 100%); color: #A6524B; }
.product__image--wild { background: linear-gradient(135deg, #EDE9DA 0%, #C9C89C 100%); color: #7A7B4E; }
.product__image--sage { background: linear-gradient(135deg, #E4EAD9 0%, #B4C3A0 100%); color: #556B47; }
.product__image--elegant { background: linear-gradient(135deg, #F0E4D8 0%, #D4B99D 100%); color: #7A5A3D; }
.product__image--mini { background: linear-gradient(135deg, #F4EDE3 0%, #DACDBB 100%); color: #7B6B58; }
.product__image svg { width: 100%; max-width: 200px; height: auto; }
.product:hover .product__image { transform: scale(1.03); }

.product__body { padding: 22px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--ink);
}
.product__desc {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.5;
}
.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--brand);
}
.product__add {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.product__add:hover { background: var(--brand); transform: translateY(-1px); }
.product__add.added {
  background: var(--brand);
  animation: pop .3s ease;
}
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.products__note {
  text-align: center;
  margin-top: 48px;
  color: var(--ink-muted);
  font-size: 15.5px;
}
.products__note a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════ CÓMO FUNCIONA ═══════════════ */

.how { padding: clamp(64px, 10vh, 120px) 0; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.how-step {
  text-align: left;
  padding: 32px 28px;
  background: var(--bg-2);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -18px rgba(45, 57, 37, 0.2);
}
.how-step__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.how-step p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ═══════════════ ABOUT ═══════════════ */

.about {
  padding: clamp(64px, 10vh, 120px) 0;
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__text .eyebrow { text-align: left; }
.about__text h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 20px;
  text-wrap: balance;
}
.about__text p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 55ch;
  text-wrap: pretty;
}
.about__text strong { color: var(--ink); font-weight: 600; }
.about__visual {
  color: var(--brand);
  opacity: 0.75;
  display: flex;
  justify-content: center;
}
.about__visual svg { width: 100%; max-width: 320px; height: auto; }

.about__visual--photo {
  opacity: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}
.about__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 240px; margin: 0 auto; }
}

/* ═══════════════ LOCATION ═══════════════ */

.location { padding: clamp(64px, 10vh, 120px) 0; }
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
}
.loc-item + .loc-item { margin-top: 28px; }
.loc-item__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 8px;
}
.loc-item__value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.loc-item__value a { color: var(--brand); border-bottom: 1px solid transparent; transition: border-color .2s; }
.loc-item__value a:hover { border-color: var(--brand); }

@media (max-width: 820px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ EVENTOS (bloque navy-like con color propio) ═══════════════ */

.events {
  background: linear-gradient(135deg, var(--ink) 0%, #4A5C3D 100%);
  color: var(--bg);
  padding: clamp(64px, 10vh, 100px) 0;
}
.events__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.events h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  text-wrap: balance;
}
.events__lead {
  color: rgba(250, 247, 243, 0.82);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.events .btn--yellow {
  font-size: 15.5px;
  padding: 16px 30px;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: var(--ink);
  color: rgba(250, 247, 243, 0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 48px;
  filter: brightness(0) invert(1) opacity(0.9);
  margin-bottom: 12px;
}
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--rose-soft);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 15px;
  color: rgba(250, 247, 243, 0.7);
  transition: color .2s;
}
.footer a:hover { color: var(--yellow); }
.footer__copy {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(250, 247, 243, 0.4);
  text-align: center;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer > .wrap > div:first-child { grid-column: 1 / -1; }
}

/* ═══════════════ CARRITO DRAWER ═══════════════ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 57, 37, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 90;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(45, 57, 37, 0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__head h2 {
  font-family: var(--font-display);
  font-size: 26px;
}
.cart-drawer__close {
  font-size: 18px;
  color: var(--ink-muted);
  padding: 8px 12px;
  transition: color .2s;
}
.cart-drawer__close:hover { color: var(--ink); }
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-drawer__empty {
  text-align: center;
  color: var(--ink-muted);
  font-size: 15px;
  padding: 60px 0;
  line-height: 1.6;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.cart-item__thumb svg { width: 42px; height: 42px; }
.cart-item__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.cart-item__qty {
  font-size: 13px;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-item__qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--ink);
  font-weight: 700;
  transition: background .2s;
}
.cart-item__qty button:hover { background: var(--rose-soft); }
.cart-item__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
}
.cart-item__remove {
  grid-column: 3;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
  padding: 2px 0;
  transition: color .2s;
}
.cart-item__remove:hover { color: var(--rose); }

.cart-drawer__foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  font-size: 16px;
}
.cart-drawer__total strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand);
  font-weight: 600;
}
.cart-drawer__note {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

/* ═══════════════ CHECKOUT MODAL ═══════════════ */

.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 57, 37, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.checkout-overlay.open { opacity: 1; visibility: visible; }
.checkout-modal {
  background: var(--bg);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: scale(0.95);
  transition: transform .3s;
}
.checkout-overlay.open .checkout-modal { transform: scale(1); }
.checkout-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  font-size: 15px;
  color: var(--ink);
  transition: background .2s;
}
.checkout-close:hover { background: var(--border); }
.checkout-modal h2 {
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 8px;
}
.checkout-sub {
  color: var(--ink-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-row label,
.checkout-fieldset legend {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.checkout-row input,
.checkout-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
  resize: vertical;
}
.checkout-row input:focus,
.checkout-row textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.checkout-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkout-fieldset {
  border: none;
  padding: 0;
}
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.radio-label + .radio-label { margin-top: 8px; }
.radio-label:hover { border-color: var(--brand); background: var(--bg-2); }
.radio-label input { margin-top: 3px; accent-color: var(--brand); }
.radio-label strong { color: var(--brand); font-weight: 600; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 8px;
  border-top: 1px solid var(--border);
  font-size: 16px;
}
.checkout-total strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brand);
  font-weight: 600;
}
.checkout-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  padding-top: 12px;
}

/* ═══════════════ SUCCESS MODAL (post-checkout) ═══════════════ */

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 57, 37, 0.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success-overlay.open { opacity: 1; visibility: visible; }
.success-modal {
  background: var(--bg);
  border-radius: var(--r-xl);
  max-width: 500px;
  width: 100%;
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  transform: scale(0.9);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-overlay.open .success-modal { transform: scale(1); }
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--brand);
}
.success-modal h2 {
  font-family: var(--font-display);
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--ink);
}
.success-lead {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.success-demo-note {
  background: var(--bg-3);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.success-demo-note strong { color: var(--earth); }
.success-demo-note ul {
  margin: 10px 0 12px 20px;
  color: var(--ink-muted);
  font-size: 13.5px;
}
.success-demo-note li { margin-bottom: 4px; }
.success-demo-note p { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(139, 87, 42, 0.15); }
.success-demo-note a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
}

/* ═══════════════════════════════════════════════════════
   PATRONES DE SECCIÓN VARIADOS (rompen la cadencia de cards)
   ═══════════════════════════════════════════════════════ */

/* ─── Categorías: zigzag editorial alternando ─── */
.categories {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg);
}
.zig {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: clamp(40px, 6vh, 72px) 0;
}
.zig + .zig { border-top: 1px solid var(--border); }
.zig--right { grid-template-columns: 1fr 1.05fr; }
.zig--right .zig__text { order: 1; }
.zig--right .zig__visual { order: 2; }

.zig__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zig__stamp {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  background: rgba(250, 247, 243, 0.95);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.zig__art {
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.zig__art svg { width: 100%; height: 100%; max-width: 380px; }
.zig__art--rose { background: linear-gradient(135deg, #F7E6DF 0%, #E8C6BE 100%); color: #B76F63; }
.zig__art--sage { background: linear-gradient(135deg, #E4EAD9 0%, #B4C3A0 100%); color: #556B47; }

/* Foto real ocupa toda la caja, sin padding */
.zig__art--photo {
  padding: 0;
  background: var(--bg-2);
}
.zig__art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.zig:hover .zig__art--photo img { transform: scale(1.03); }

.zig__meta {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 18px;
}
.zig__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}
.zig__title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.zig__lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 24px;
  max-width: 52ch;
  text-wrap: pretty;
}
.zig__inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14.5px;
}
.zig__inline-sep { color: var(--border); }

@media (max-width: 820px) {
  .zig, .zig--right { grid-template-columns: 1fr; gap: 32px; }
  .zig--right .zig__text { order: 2; }
  .zig--right .zig__visual { order: 1; }
  .zig__visual { aspect-ratio: 5 / 4; }
  .zig__art { padding: 20px; }
}

/* ─── Product spotlight editorial ─── */
.spotlight {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-2);
}
.spotlight__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.spotlight__head .eyebrow { display: inline-block; margin-bottom: 14px; }
.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.spotlight__stage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.spot-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.spot-hero__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.spot-hero__art {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}
.spot-hero__art svg { width: 100%; max-width: 340px; height: auto; }

.spot-hero__art--photo {
  padding: 0;
  background: var(--bg-2);
}
.spot-hero__art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.spot-hero:hover .spot-hero__art--photo img { transform: scale(1.03); }
.spot-hero__body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spot-hero__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 14px;
}
.spot-hero__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: balance;
}
.spot-hero__desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.spot-hero__desc em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.spot-hero__specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.spot-hero__specs li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spot-hero__specs b {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
  align-self: center;
}
.spot-hero__specs span { color: var(--ink); }
.spot-hero__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.spot-hero__price {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
}
.spot-hero__add { white-space: nowrap; }

.spot-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spot-side__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 4px;
}
.spot-mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  min-height: 130px;
}
.spot-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -20px rgba(45, 57, 37, 0.2);
}
.spot-mini__art {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.spot-mini__art svg { width: 100%; height: 100%; max-width: 100px; }

.spot-mini__art--photo {
  padding: 0;
  background: var(--bg-3);
}
.spot-mini__art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.spot-mini:hover .spot-mini__art--photo img { transform: scale(1.05); }
.spot-mini__body {
  padding: 14px 18px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spot-mini h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--ink);
}
.spot-mini p {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.spot-mini__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.spot-mini__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
}
.spot-mini__add {
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  transition: background .2s;
}
.spot-mini__add:hover { background: var(--brand); }
.spot-mini__add.added { background: var(--brand); }

@media (max-width: 980px) {
  .spotlight__stage { grid-template-columns: 1fr; }
  .spot-hero { grid-template-columns: 1fr; }
  .spot-hero__art { aspect-ratio: 5/3; padding: 24px; }
}
@media (max-width: 560px) {
  .spot-mini { grid-template-columns: 100px 1fr; }
  .spot-mini__art { padding: 10px; }
}

/* ─── Pull-quote oversized ─── */
.pullquote {
  padding: clamp(80px, 14vh, 160px) 5vw;
  background: var(--bg);
  text-align: center;
  position: relative;
}
.pullquote__mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.5;
  color: var(--rose);
  opacity: 0.55;
  margin-bottom: 16px;
  font-weight: 600;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto clamp(32px, 5vh, 56px);
  text-wrap: balance;
  font-weight: 500;
}
.pullquote__text em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.pullquote__attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pullquote__sig { font-weight: 700; color: var(--earth); }
.pullquote__where { color: var(--ink-muted); font-size: 12px; letter-spacing: 0.08em; }

/* ─── Bento asymmetric grid (centros de mesa) ─── */
.bento {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-2);
}
.bento__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.bento__head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
  text-wrap: balance;
}
.bento__head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.bento__lead {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 44ch;
  padding-bottom: 6px;
  text-wrap: pretty;
}

.bento__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.bento-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -22px rgba(45, 57, 37, 0.22);
}
.bento-cell__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.bento-cell__art svg { width: 100%; height: 100%; max-width: 260px; }

.bento-cell__art--photo {
  padding: 0;
  background: var(--bg-3);
}
.bento-cell__art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-cell:hover .bento-cell__art--photo img { transform: scale(1.04); }
.bento-cell__body {
  padding: 22px clamp(22px, 2.5vw, 32px) 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bento-cell__badge {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.bento-cell h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.bento-cell p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.bento-cell__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.bento-cell__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--brand);
}
.bento-cell__add {
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  transition: background .2s;
}
.bento-cell__add:hover { background: var(--brand); }
.bento-cell__add.added { background: var(--brand); }

/* Hero cell: ocupa 2 filas y hace grid interno */
.bento-cell--hero {
  grid-row: 1 / 3;
  grid-column: 1;
}
.bento-cell--hero .bento-cell__art {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F0E4D8 0%, #D4B99D 100%);
  color: #7A5A3D;
  padding: 30px;
}
.bento-cell--hero h3 { font-size: 32px; }
.bento-cell--hero p { font-size: 15px; margin-bottom: 20px; }
.bento-cell--hero .bento-cell__price { font-size: 30px; }

/* Celdas medianas (top y bottom right) */
.bento-cell--med {
  grid-row: 1;
  grid-column: 2;
  flex-direction: row;
}
.bento-cell--med .bento-cell__art {
  flex: 0 0 44%;
  aspect-ratio: auto;
  background: linear-gradient(135deg, #E4EAD9 0%, #B4C3A0 100%);
  color: #556B47;
}
.bento-cell--med .bento-cell__body { flex: 1; padding: 20px 24px; }
.bento-cell--med h3 { font-size: 22px; }

.bento-cell--sm {
  grid-row: 2;
  grid-column: 2;
  flex-direction: row;
}
.bento-cell--sm .bento-cell__art {
  flex: 0 0 44%;
  aspect-ratio: auto;
  background: linear-gradient(135deg, #F4EDE3 0%, #DACDBB 100%);
  color: #7B6B58;
}
.bento-cell--sm .bento-cell__body { flex: 1; padding: 20px 24px; }
.bento-cell--sm h3 { font-size: 22px; }

/* CTA celda ancha al fondo */
.bento-cell--cta {
  grid-row: 3;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink) 0%, #4A5C3D 100%);
  color: var(--bg);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
}
.bento-cta__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose-soft);
  margin-bottom: 8px;
}
.bento-cell--cta h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}
.bento-cta__link { flex: none; }

@media (max-width: 900px) {
  .bento__head { grid-template-columns: 1fr; }
  .bento__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-cell--hero, .bento-cell--med, .bento-cell--sm, .bento-cell--cta {
    grid-column: 1; grid-row: auto;
  }
  .bento-cell--med, .bento-cell--sm { flex-direction: column; }
  .bento-cell--med .bento-cell__art, .bento-cell--sm .bento-cell__art { flex: 1; aspect-ratio: 5/3; }
}

/* ─── Timeline vertical con illustrations ─── */
.timeline {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg);
}
.timeline__head {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 88px);
}
.timeline__head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 14px;
  text-wrap: balance;
}
.timeline__list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
  /* --tl-progress: 0 → 1 (actualizado por JS con scroll) */
  --tl-progress: 0;
}
/* Línea base gris tenue (siempre visible en toda la altura) */
.timeline__list::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--border);
  border-radius: var(--r-pill);
  z-index: 0;
}
/* Línea activa que se rellena con el scroll */
.timeline__list::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 20px;
  width: 3px;
  height: calc(var(--tl-progress) * (100% - 40px));
  background: linear-gradient(180deg, var(--rose) 0%, var(--brand) 60%, var(--brand-dark) 100%);
  border-radius: var(--r-pill);
  z-index: 1;
  box-shadow: 0 0 8px rgba(93, 122, 74, 0.35);
  transition: height 0.12s linear;
}
@media (prefers-reduced-motion: reduce) {
  .timeline__list::after { transition: none; }
}

.tl-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(28px, 4vh, 44px) 0;
  position: relative;
}
.tl-step + .tl-step { border-top: 1px solid var(--border); }

.tl-step__marker {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color .35s cubic-bezier(0.22, 1, 0.36, 1),
              transform .35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow .35s ease;
}
.tl-step__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: filter .5s ease, transform .5s ease;
  filter: saturate(0.55) brightness(0.95);
}

/* Estado activo — la línea ha pasado por este marker */
.tl-step.is-active .tl-step__marker {
  border-color: var(--brand);
  transform: scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(93, 122, 74, 0.4);
}
.tl-step.is-active .tl-step__photo {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .tl-step__marker, .tl-step__photo { transition: none; }
  .tl-step.is-active .tl-step__marker { transform: none; }
}

.tl-step__content { padding-top: 4px; }
.tl-step__num {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 8px;
}
.tl-step h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
  text-wrap: balance;
}
.tl-step p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 55ch;
  text-wrap: pretty;
}
.tl-step p b { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
  .timeline__list {
    padding-left: 2px;
  }
  /* Círculos y línea centrados correctamente en móvil */
  .timeline__list::before,
  .timeline__list::after {
    left: 34px;
    width: 2.5px;
  }
  .tl-step {
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: clamp(24px, 3vh, 32px) 0;
  }
  .tl-step__marker { width: 70px; height: 70px; border-width: 2.5px; }
  .tl-step h3 { font-size: 22px; }
  .tl-step p { font-size: 15px; }
  .tl-step__num { font-size: 11px; }
  /* En móvil, el trigger de progreso más pronto para que se vea entero */
  .tl-step.is-active .tl-step__marker { transform: scale(1.03); }
}

/* ═══════════════════════════════════════════════════════
   EFECTOS DE SCROLL GLOBALES
   ═══════════════════════════════════════════════════════ */

/* Progress bar global — indica cuánto has recorrido la página.
   Aparece sobre el banner demo cuando el user hace scroll. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 70;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  transform: scaleX(var(--sp-progress, 0));
  transform-origin: left center;
  transition: transform 0.08s linear;
  box-shadow: 0 0 12px rgba(93, 122, 74, 0.4);
}

/* Reveal on scroll: elementos aparecen con fade + translateY al entrar en viewport */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger: hijos del mismo padre entran escalonados */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal--stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal--stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal--stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

/* Reveal con zoom sutil — para el producto hero del spotlight (más presencia) */
.reveal--zoom {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal--zoom.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Parallax sutil para hero image — se mueve más lento que el scroll */
.hero__bg img {
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

/* Ken-burns lento infinito en imágenes destacadas del zigzag y about */
@keyframes kenBurns {
  0%   { transform: scale(1) translateX(0); }
  50%  { transform: scale(1.06) translateX(-1%); }
  100% { transform: scale(1) translateX(0); }
}
.zig__art--photo img,
.about__visual--photo img {
  animation: kenBurns 24s ease-in-out infinite;
}

/* Title reveal por palabras — cada .word aparece con delay progresivo */
.title-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.title-reveal.in-view .word {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ REDUCED MOTION ═══════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Sin animación: revealados desde el inicio */
  .reveal, .reveal.in-view,
  .reveal--stagger > *, .reveal--stagger.in-view > *,
  .title-reveal .word, .title-reveal.in-view .word {
    opacity: 1;
    transform: none;
  }
  .hero__bg img { transform: none; }
}
