/* =============================================================================
   YoMeLoPasoTeta — styles.css
   Archetype 01 · Editorial Light, adaptado a la marca real
   Paleta: blanco cálido + ROSA de marca (extraído del logo real, #d86da8)
   como acento principal, con una variante más profunda para texto/detalle.
   Tipografía: Naira (firma/cursiva, cliente) + Oswald (display, cliente, var) + Inter (cuerpo).
   ============================================================================= */

/* =============================================================
   0. Fuentes de marca (reales del cliente)
   ============================================================= */
@font-face {
  font-family: "Naira";
  src: url("assets/fonts/naira.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald Var";
  src: url("assets/fonts/oswald-variable.ttf") format("truetype-variations"),
       url("assets/fonts/oswald-variable.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* superficie — blanco cálido, tal y como pide el cliente. Nunca gris sucio. */
  --bg:        #ffffff;
  --bg-2:      #fdf3f7;   /* blanco con un toque de rosa — secciones alternas */
  --bg-3:      #ffffff;   /* tarjetas: blanco, se diferencian por borde/sombra */
  --bg-4:      #fdecf3;   /* tarjetas hover / elevadas — rosa muy suave */

  /* texto sobre claro — el gris cálido oscuro real del logo, nunca negro puro */
  --ink:       #2b2926;   /* titulares, texto principal */
  --ink-soft:  #55514c;   /* cuerpo de texto */
  --ink-mute:  #8b857c;   /* metadatos / mute */

  /* acento único: el ROSA real del logo — es el color que acompaña todo el diseño */
  --pink:        #d86da8;   /* rosa de marca — fondos, halos, rellenos */
  --pink-deep:   #a8437a;   /* variante profunda — texto rosa, enlaces, iconos, líneas (AA) */
  --pink-soft:   rgba(216, 109, 168, 0.14);
  --pink-soft-2: rgba(216, 109, 168, 0.28);

  /* accent = alias semántico usado por los componentes (botones, halos) */
  --accent:      var(--pink);
  --accent-2:    var(--pink-deep);
  --accent-soft: var(--pink-soft);

  /* gold = alias histórico, ahora apunta al rosa profundo (detalle, firma, kickers) */
  --gold:      var(--pink-deep);
  --gold-soft: var(--pink-soft);

  /* compatibilidad de nombres antiguos (mismo valor, no se usan ya para texto) */
  --cream:     var(--ink);
  --cream-2:   var(--ink-soft);
  --cream-3:   var(--ink-mute);

  --line:      rgba(43, 41, 38, 0.12);
  --line-soft: rgba(43, 41, 38, 0.07);
  --line-pink: rgba(216, 109, 168, 0.35);

  /* tipografía */
  --font-script: "Naira", "Segoe Script", cursive;
  --font-display: "Oswald Var", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ritmo */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;

  /* easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  color-scheme: light;
}

@property --mesh-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; color: var(--ink); text-transform: none; }
h1 { text-transform: uppercase; letter-spacing: 0.015em; }
h2 { text-transform: uppercase; letter-spacing: 0.02em; }
::selection { background: var(--pink); color: var(--ink); }

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

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { position: relative; padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--bg-2); }
.section-halo {
  position: absolute; inset: -60% -10% -40% -10%;
  background: radial-gradient(45% 40% at 50% 40%, var(--pink-soft), transparent 72%);
  filter: blur(110px); pointer-events: none; z-index: 0;
}
.section-halo--gold {
  background: radial-gradient(40% 35% at 50% 50%, var(--pink-soft-2), transparent 75%);
}
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: .78rem; font-weight: 500;
  color: var(--pink-deep);
}
.eyebrow::before, .kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--pink-deep);
}
.signature {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink-deep);
  line-height: 1;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.grain {
  position: fixed; inset: 0; z-index: 1; opacity: .035; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   4. Botones
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-family: var(--font-display); font-size: .92rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink); color: var(--ink);
  box-shadow: 0 10px 26px -12px rgba(216,109,168,.55);
}
.btn-primary:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(168,67,122,.55); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--pink-deep); color: var(--pink-deep); transform: translateY(-2px); }
.btn-gold {
  background: var(--pink-deep); color: #fff;
}
.btn-gold:hover { background: #8f3868; transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366; color: #0c1f10;
}
.btn-whatsapp:hover { background: #2fe374; transform: translateY(-2px); }
.btn-block { width: 100%; white-space: normal; line-height: 1.3; }
.btn-sm { padding: .7rem 1.2rem; font-size: .8rem; }

/* =============================================================
   5. Navegación
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
@supports not (backdrop-filter: blur(1px)) {
  .nav { background: rgba(255, 255, 255, 0.98); }
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .65rem; }
.nav-brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-brand img { height: 58px; width: auto; }
@media (min-width: 540px) {
  .nav-brand img { height: 64px; }
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text strong { font-family: var(--font-display); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.nav-brand-text span { font-family: var(--font-script); font-size: 1rem; color: var(--pink-deep); }
.nav-links {
  display: none; align-items: center; gap: 1.7rem;
  font-family: var(--font-display); font-size: .84rem; text-transform: uppercase; letter-spacing: .05em;
}
.nav-links a { position: relative; padding-block: .3rem; color: var(--ink-soft); transition: color .3s var(--ease-out); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--pink-deep);
  transition: right .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
/* en móvil, "Contacto" + "Reservar" + el icono de menú no caben — Contacto
   ya está dentro del menú desplegable, así que se oculta hasta que hay sitio */
.nav-actions .btn-ghost { display: none; }
@media (min-width: 540px) {
  .nav-actions .btn-ghost { display: inline-flex; }
}
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: var(--bg); padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto; overflow-x: hidden;
}
.nav-mobile.is-open { display: block; }

/* halo decorativo + firma en cursiva de fondo — detalle, no ruido */
.nav-mobile::before {
  content: ""; position: fixed; z-index: -1; pointer-events: none;
  top: -10%; right: -20%; width: 70vw; height: 70vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
}
.nav-mobile-signature {
  position: fixed; z-index: -1; pointer-events: none; left: -.2rem; bottom: 6rem;
  font-family: var(--font-script); font-size: clamp(3.5rem, 22vw, 7rem); line-height: 1;
  color: var(--pink-soft-2); opacity: .55; white-space: nowrap;
}

.nav-mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.4rem; }

.nav-mobile-links {
  display: flex; flex-direction: column; gap: 1.3rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.3rem;
  counter-reset: navnum;
}
.nav-mobile-links a {
  position: relative; display: inline-flex; align-items: baseline; gap: .7rem;
  padding-left: 2.1em; color: var(--ink-soft);
  opacity: 0; transform: translateX(18px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), color .3s var(--ease-out);
}
.nav-mobile-links a::before {
  counter-increment: navnum; content: counter(navnum, decimal-leading-zero);
  position: absolute; left: 0; font-size: .55em; color: var(--pink-deep); opacity: .8;
  letter-spacing: 0;
}
.nav-mobile.is-open .nav-mobile-links a { opacity: 1; transform: none; }
.nav-mobile-links a:nth-child(1)  { transition-delay: .05s; }
.nav-mobile-links a:nth-child(2)  { transition-delay: .09s; }
.nav-mobile-links a:nth-child(3)  { transition-delay: .13s; }
.nav-mobile-links a:nth-child(4)  { transition-delay: .17s; }
.nav-mobile-links a:nth-child(5)  { transition-delay: .21s; }
.nav-mobile-links a:nth-child(6)  { transition-delay: .25s; }
.nav-mobile-links a:nth-child(7)  { transition-delay: .29s; }
.nav-mobile-links a:nth-child(8)  { transition-delay: .33s; }
.nav-mobile-links a:nth-child(9)  { transition-delay: .37s; }
.nav-mobile-links a:nth-child(10) { transition-delay: .41s; }
.nav-mobile-links a:nth-child(11) { transition-delay: .45s; }
.nav-mobile-links a[aria-current="page"] { color: var(--pink-deep); }
.nav-mobile-links a:hover { color: var(--pink-deep); }

.nav-mobile-sub {
  position: relative; margin-top: 2.4rem; padding-top: 1.7rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .9rem;
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-links a { transition-delay: 0s !important; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* =============================================================
   6. Hero — se mantiene fotográfico y dramático a propósito
   (contraste editorial: hero oscuro con foto, resto del sitio en blanco)
   ============================================================= */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: flex-end;
  padding-block: clamp(4rem, 12vh, 8rem) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  background: #1a1214;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,18,20,.5) 0%, rgba(26,18,20,.38) 40%, rgba(26,18,20,.93) 100%),
    linear-gradient(90deg, rgba(26,18,20,.7) 0%, rgba(26,18,20,.2) 55%);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 1; pointer-events: none; opacity: .6;
  background:
    conic-gradient(from var(--mesh-angle, 0deg) at 30% 30%, var(--pink-soft-2), transparent 35%, rgba(216,109,168,.18), transparent 70%);
  filter: blur(90px);
  animation: meshRotate 26s linear infinite;
}
@keyframes meshRotate { to { --mesh-angle: 360deg; } }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #d9cfd3; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(216,109,168,.3); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 16ch;
  text-wrap: balance;
  color: #f7eff1;
}
.hero-title .signature { display: block; font-size: clamp(3.2rem, 9vw, 7rem); margin-top: .1em; text-transform: none; color: var(--pink); }
.hero-sub { margin-top: 1.3rem; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #e4d9dd; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero-foot { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem; font-size: .88rem; color: #c9bcc1; }

.hero-page {
  min-height: 52svh;
  align-items: center;
  padding-block: clamp(6.5rem, 16vh, 9rem) clamp(3rem, 8vh, 4.5rem);
}
.hero-page .hero-title { font-size: clamp(2.2rem, 5.6vw, 4rem); max-width: 20ch; }

/* el hero se queda sobre foto oscura aunque el resto del sitio sea blanco —
   el botón ghost y el breadcrumb necesitan su propia variante clara aquí */
.hero .btn-ghost { color: #f7eff1; border-color: rgba(247,239,241,.32); }
.hero .btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.hero .breadcrumb, .hero .breadcrumb a { color: #d9cdd1; }
.hero .breadcrumb a:hover { color: var(--pink); }

/* =============================================================
   7. Tarjetas / pilares — pasada de "detalle" (Sep 2026)
   ============================================================= */
.pillars-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 2.8rem; }
.pillar-card {
  position: relative; padding: 2.3rem 1.8rem 2rem; border-radius: var(--radius-m);
  background: var(--bg-3); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
  overflow: hidden;
}
/* filete superior en degradado — se enciende al pasar el ratón */
.pillar-card::after {
  content: ""; position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  transform: scaleX(0); transform-origin: left; border-radius: 0 0 4px 4px;
  transition: transform .45s var(--ease-out);
}
.pillar-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; z-index: 0;
  background: radial-gradient(140% 90% at 20% -10%, var(--pink-soft), transparent 65%);
  transition: opacity .4s var(--ease-out);
}
.pillar-card:hover {
  transform: translateY(-6px); border-color: var(--line-pink);
  box-shadow: 0 22px 40px -22px rgba(216,109,168,.45);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card > * { position: relative; z-index: 1; }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--pink-deep); margin-bottom: 1.3rem;
  border: 1.5px solid var(--pink-soft-2);
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.pillar-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.pillar-card:hover .pillar-icon { background: var(--pink); color: #fff; border-color: var(--pink); transform: rotate(-6deg) scale(1.05); }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.pillar-card p { color: var(--ink-mute); font-size: .95rem; }
.pillar-card .btn { margin-top: 1.3rem; }

.card-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-m);
  overflow: hidden; transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-pink); box-shadow: 0 20px 36px -22px rgba(216,109,168,.4); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 1.5rem; position: relative; }
.card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card-body p { color: var(--ink-mute); font-size: .92rem; }
.card-tag {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--pink-deep); font-family: var(--font-display); margin-bottom: .6rem;
}
.card-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }

/* Tarjetas con textura de fondo (sin foto de producto real) — su fondo sigue
   siendo la foto oscura + velo, así que el texto interior se fuerza claro. */
.texture-card {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; border: 1px solid var(--line);
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.texture-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -22px rgba(216,109,168,.4); }
.texture-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease-out); }
.texture-card:hover img { transform: scale(1.06); }
.texture-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,18,20,.1), rgba(26,18,20,.9));
}
.texture-card > * { position: relative; z-index: 2; }
.texture-card h3 { font-size: 1.05rem; color: #f7eff1; }
.texture-card p { color: #d9cdd1; font-size: .85rem; }

/* =============================================================
   8. Testimonios
   ============================================================= */
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.testi-card {
  position: relative;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 2.1rem 1.8rem 1.9rem;
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--line-pink); box-shadow: 0 20px 36px -22px rgba(216,109,168,.38); }
.testi-quote { font-family: var(--font-script); color: var(--pink); font-size: 2.6rem; line-height: 1; display: block; margin-bottom: .5rem; }
.testi-card p.testi-text { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.3rem; }
.testi-name {
  position: relative; display: inline-block; padding-bottom: .5rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; color: var(--ink);
}
.testi-name::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent);
}
.testi-role { color: var(--ink-mute); font-size: .8rem; }
.testi-note {
  margin-top: 3rem; padding: 1rem 1.3rem; border-radius: var(--radius-s);
  background: var(--bg-2); border: 1px dashed var(--line);
  color: var(--ink-mute); font-size: .82rem;
}

/* =============================================================
   9. Formularios
   ============================================================= */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: .85rem 1rem; color: var(--ink); font-family: var(--font-body); font-size: .96rem;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink-deep); outline: none; box-shadow: 0 0 0 3px var(--pink-soft); }
.field-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--ink-mute); }
.field-check input { margin-top: .2rem; accent-color: var(--pink-deep); }
.form-note { font-size: .78rem; color: var(--ink-mute); }
.form-success {
  display: none; padding: 1.2rem; border-radius: var(--radius-s); background: var(--pink-soft);
  border: 1px solid var(--pink); color: var(--ink); font-size: .92rem;
}
.form.is-sent .form-success { display: block; }
.form.is-sent .form-fields { display: none; }

/* =============================================================
   10. FAQ / acordeón
   ============================================================= */
.faq-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0; text-align: left; font-family: var(--font-display); font-size: 1.02rem; color: var(--ink);
}
.faq-q .plus { flex-shrink: 0; font-size: 1.3rem; color: var(--pink-deep); transition: transform .3s var(--ease-out); }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a p { padding-bottom: 1.3rem; color: var(--ink-mute); max-width: 65ch; }

/* =============================================================
   11. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand .signature { font-size: 1.6rem; display: block; margin-top: .8rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pink-deep); font-family: var(--font-display); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: var(--ink-mute); font-size: .92rem; transition: color .3s var(--ease-out); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .8rem; font-size: .78rem; color: var(--ink-mute);
}
.footer-bottom-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* =============================================================
   12. Botón flotante desplegable (insignia de marca + WhatsApp/Llamar/
       Reservar/Chat IA) — sustituye al antiguo botón único de WhatsApp
   ============================================================= */
.fab-menu {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 700;
  display: flex; flex-direction: column; align-items: flex-end; gap: .8rem;
}
.fab-actions { display: flex; flex-direction: column; align-items: center; gap: .65rem; }
/* botones perfectamente simétricos: mismo diámetro, mismo estilo, solo icono
   (la etiqueta va en aria-label + una burbuja que aparece al lado, sin
   romper la simetría del propio botón) */
.fab-action {
  position: relative;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--pink-deep); box-shadow: 0 10px 24px -12px rgba(43,41,38,.4);
  opacity: 0; transform: translateY(10px) scale(.85); pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), background .3s var(--ease-out);
}
.fab-menu.is-open .fab-action { opacity: 1; transform: none; pointer-events: auto; }
.fab-action:hover, .fab-action:focus-visible { background: var(--pink-soft); transform: scale(1.06); }
.fab-action svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.fab-action--whatsapp { background: #25D366; color: #fff; }
.fab-action--whatsapp svg { fill: currentColor; stroke: none; }
.fab-action--whatsapp:hover { background: #2fe374; }
/* etiqueta flotante a la izquierda, solo visible al pasar el ratón/foco —
   no afecta al tamaño ni a la simetría de los botones */
.fab-action-label {
  position: absolute; right: calc(100% + .7rem); top: 50%; transform: translateY(-50%) translateX(4px);
  background: var(--ink); color: #fff; padding: .4rem .8rem; border-radius: 999px;
  font-family: var(--font-display); font-size: .74rem; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.fab-action:hover .fab-action-label, .fab-action:focus-visible .fab-action-label {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
/* orden visual de aparición: el más cercano a la insignia (WhatsApp) sale primero */
.fab-menu.is-open .fab-action:nth-child(1) { transition-delay: .16s; }
.fab-menu.is-open .fab-action:nth-child(2) { transition-delay: .12s; }
.fab-menu.is-open .fab-action:nth-child(3) { transition-delay: .08s; }
.fab-menu.is-open .fab-action:nth-child(4) { transition-delay: .04s; }
.fab-menu.is-open .fab-action:nth-child(5) { transition-delay: 0s; }

.fab-trigger {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: 0 12px 30px -10px rgba(43,41,38,.4);
  transition: box-shadow .3s var(--ease-out);
}
.fab-trigger::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft-2), transparent 70%);
  opacity: 0; transform: scale(.8); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.fab-trigger:hover::before, .fab-trigger:focus-visible::before { opacity: 1; transform: scale(1); }
.fab-trigger img { border-radius: 50%; animation: fabBadgeSway 5.5s ease-in-out infinite; }
.fab-trigger:hover img, .fab-trigger:focus-visible img { animation-play-state: paused; }
.fab-trigger:active img { transform: scale(.92); }
.fab-menu.is-open .fab-trigger { box-shadow: 0 0 0 4px var(--pink-soft-2), 0 12px 30px -10px rgba(43,41,38,.4); }
.fab-menu.is-open .fab-trigger img { animation-play-state: paused; transform: rotate(135deg); }
@keyframes fabBadgeSway {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .fab-trigger img { animation: none; }
}

/* =============================================================
   13. Verificación de edad (interstitial +18)
   ============================================================= */
.age-gate {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(22, 14, 17, .92);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.age-gate.is-active { display: flex; }
.age-gate-box {
  max-width: 460px; width: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: clamp(2rem, 5vw, 3rem); text-align: center;
  box-shadow: 0 30px 70px -30px rgba(43,41,38,.4);
}
.age-gate-box img { height: 56px; width: auto; margin-inline: auto; margin-bottom: 1.4rem; }
.age-gate-box h2 { font-size: 1.5rem; text-transform: none; }
.age-gate-box p { color: var(--ink-mute); margin-top: .9rem; font-size: .95rem; }
.age-gate-actions { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.8rem; }
.age-gate-note { margin-top: 1.4rem; font-size: .74rem; color: var(--ink-mute); }
.age-gate-note a { text-decoration: underline; color: var(--pink-deep); }
html.age-gate-locked { overflow: hidden; }

/* =============================================================
   14. Breadcrumb, badges, misceláneos
   ============================================================= */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--ink-mute); } .breadcrumb a:hover { color: var(--pink-deep); }
.badge {
  display: inline-flex; align-items: center; gap: .4em; padding: .35rem .8rem; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .06em; font-family: var(--font-display); color: var(--ink-mute);
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: 2.5rem; }
.city-chip-grid { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.city-chip {
  padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); font-size: .84rem;
  color: var(--ink-soft); transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.city-chip:hover, .city-chip[aria-current="page"] { border-color: var(--pink); color: var(--pink-deep); background: var(--pink-soft); }

/* =============================================================
   15. Legal / artículos (contenido largo legible)
   ============================================================= */
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.4rem; margin-top: 2.4rem; margin-bottom: .9rem; text-transform: none; }
.prose h3 { font-size: 1.1rem; margin-top: 1.8rem; margin-bottom: .7rem; text-transform: none; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.3rem; list-style: disc; color: var(--ink-soft); }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.legal-updated { color: var(--ink-mute); font-size: .85rem; margin-bottom: 2rem; }
.pull-quote {
  font-family: var(--font-script); color: var(--pink-deep); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3; margin-block: 2.2rem; max-width: 26ch;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 1.1rem; color: var(--ink-mute); font-size: .85rem; margin-top: 1rem; }
.article-hero-img { border-radius: var(--radius-m); overflow: hidden; margin-block: 2rem; aspect-ratio: 16/9; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   16. Mapa / zonas
   ============================================================= */
.map-embed { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.1); }

/* =============================================================
   17. Newsletter / CTA final
   ============================================================= */
.cta-final { text-align: center; position: relative; }
.cta-final .signature { font-size: clamp(2.4rem, 6vw, 4rem); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; max-width: 480px; margin-inline: auto; }
.newsletter-form input { flex: 1 1 220px; }

/* =============================================================
   18. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 540px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .hero-title { max-width: 20ch; }
}
@media (min-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr .8fr; }
  .footer-bottom-row { flex-wrap: nowrap; }
}
@media (min-width: 1280px) {
  .container { padding-inline: clamp(2rem, 5vw, 4rem); }
}

/* =============================================================
   19. Reduced motion — SOLO efectos intrusivos
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh { animation: none; }
  /* NO se desactivan: hovers, tilts, fades, transiciones de botones/nav */
}

/* =============================================================
   20. Reveal on scroll (progressive enhancement, JS-off = visible)
   ============================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   21. Página tienda — categorías e iconografía
   ============================================================= */
.shop-cat-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.shop-product-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
.shop-product {
  position: relative;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 1.5rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  min-width: 0; overflow: hidden;
}
.shop-product::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--pink), var(--pink-deep));
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.shop-product:hover::before { transform: scaleY(1); }
.shop-product .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.shop-product:hover { transform: translateY(-4px); border-color: var(--line-pink); box-shadow: 0 18px 34px -22px rgba(216,109,168,.4); }
.shop-product-icon {
  width: 56px; height: 56px; border-radius: var(--radius-s); background: var(--bg-4);
  display: flex; align-items: center; justify-content: center; color: var(--pink-deep);
  border: 1px solid var(--pink-soft-2);
  transition: transform .4s var(--ease-out);
}
.shop-product:hover .shop-product-icon { transform: rotate(-8deg) scale(1.06); }
.shop-product-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.3; }
/* foto real de producto — fondo blanco propio de la toma, sin recortar */
.shop-product-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-s); background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 1px solid var(--line);
}
.shop-product-photo img { width: 100%; height: 100%; object-fit: contain; padding: .6rem; transition: transform .4s var(--ease-out); }
.shop-product:hover .shop-product-photo img { transform: scale(1.06); }
.shop-product h3 { font-size: 1rem; }
.shop-product p { font-size: .85rem; color: var(--ink-mute); }
.shop-product .price { font-family: var(--font-display); color: var(--pink-deep); font-size: 1rem; margin-top: auto; }
@media (min-width: 540px) {
  .shop-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .shop-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   22. Timeline (nuestra historia)
   ============================================================= */
.timeline { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; border-left: 1px solid var(--line); padding-left: 1.8rem; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.02rem; top: .3rem; width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.timeline-item p { color: var(--ink-mute); font-size: .92rem; }

/* =============================================================
   23. Valores (grid pequeña)
   ============================================================= */
.values-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
.value-chip { padding: 1.1rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-s); text-align: center; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .84rem; color: var(--ink-soft); transition: border-color .3s var(--ease-out), background .3s var(--ease-out); }
.value-chip:hover { border-color: var(--pink); background: var(--pink-soft); }
@media (min-width: 720px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   24. Layout de 2 columnas editorial
   ============================================================= */
.split { display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: center; }
.split-reverse .split-media { order: -1; }
.split-media { border-radius: var(--radius-m); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split-reverse .split-media { order: 2; }
}

/* =============================================================
   25. Print (legal pages friendliness) — minimal
   ============================================================= */
@media print {
  .nav, .footer, .fab-menu, .age-gate, .chat-widget { display: none !important; }
  body { background: #fff; color: #000; }
}

/* =============================================================
   26. Chat con IA (asesora automática)
   ============================================================= */
.chat-widget {
  position: fixed; inset: 0; z-index: 8000;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 0; background: rgba(43, 41, 38, .35); backdrop-filter: blur(2px);
}
.chat-widget[hidden] { display: none; }
.chat-panel {
  width: 100%; max-width: 420px; height: min(640px, 100dvh);
  background: var(--bg); border-radius: 0; display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(43,41,38,.35);
  animation: chatSlideIn .35s var(--ease-out);
}
@keyframes chatSlideIn { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (min-width: 540px) {
  .chat-widget { padding: 1.3rem; align-items: flex-end; }
  .chat-panel { height: min(600px, calc(100dvh - 2.6rem)); border-radius: var(--radius-l); }
}
.chat-head {
  display: flex; align-items: center; gap: .8rem; padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.chat-head img { border-radius: 50%; flex-shrink: 0; }
.chat-head-text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.chat-head-text strong { font-family: var(--font-display); font-size: .95rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); }
.chat-head-text span { font-size: .74rem; color: var(--ink-mute); }
.chat-close { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: var(--ink-mute); transition: background .3s var(--ease-out), color .3s var(--ease-out); }
.chat-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.chat-close:hover { background: var(--pink-soft); color: var(--pink-deep); }

.chat-messages { flex: 1; overflow-y: auto; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .8rem; }
.chat-msg { max-width: 86%; padding: .75rem 1rem; border-radius: var(--radius-m); font-size: .92rem; line-height: 1.5; }
.chat-msg p { margin: 0; }
.chat-msg a { color: inherit; text-decoration: underline; }
.chat-msg--bot { align-self: flex-start; background: var(--bg-2); color: var(--ink-soft); border-bottom-left-radius: 4px; }
.chat-msg--user { align-self: flex-end; background: var(--pink); color: var(--ink); border-bottom-right-radius: 4px; }
.chat-msg--error { align-self: flex-start; background: var(--pink-soft); color: var(--ink-soft); border: 1px dashed var(--pink); }
.chat-msg--typing { display: inline-flex; gap: 4px; align-self: flex-start; background: var(--bg-2); padding: .9rem 1.1rem; border-radius: var(--radius-m); border-bottom-left-radius: 4px; }
.chat-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: chatTyping 1.2s ease-in-out infinite; }
.chat-msg--typing span:nth-child(2) { animation-delay: .15s; }
.chat-msg--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTyping { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chat-form { display: flex; align-items: flex-end; gap: .6rem; padding: .9rem 1.2rem; border-top: 1px solid var(--line); flex-shrink: 0; }
.chat-form textarea {
  flex: 1; resize: none; max-height: 100px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-s); padding: .7rem .9rem; font-family: var(--font-body); font-size: .92rem; color: var(--ink);
  transition: border-color .3s var(--ease-out);
}
.chat-form textarea:focus { border-color: var(--pink-deep); outline: none; }
.chat-send {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: var(--ink);
  display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.chat-send:hover { background: var(--pink-deep); color: #fff; transform: scale(1.06); }
.chat-send:disabled { opacity: .5; pointer-events: none; }
.chat-send svg { width: 18px; height: 18px; fill: currentColor; }
.chat-note { padding: 0 1.2rem 1rem; font-size: .74rem; color: var(--ink-mute); flex-shrink: 0; }
.chat-note a { color: var(--pink-deep); }

@media (prefers-reduced-motion: reduce) {
  .chat-panel { animation: none; }
  .chat-msg--typing span { animation: none; opacity: .6; }
}

/* =============================================================
   27. Galería de sesiones — tira con movimiento continuo (marquee)
   ============================================================= */
.session-gallery { overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.marquee {
  margin-top: 2.2rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; width: max-content; gap: 1.1rem;
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto; width: 260px; aspect-ratio: 4/3; border-radius: var(--radius-m);
  overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 30px -18px rgba(43,41,38,.35);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 720px) {
  .marquee-item { width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 90s; }
}
