/* ============================================================
   PLANTILLA BARBERÍA — styles.css
   Multipágina · estética moderna, sobria y premium.
   Tipografía: General Sans (titulares) + Satoshi (cuerpo).

   ▸ RE-SKIN: edita SOLO el bloque "IDENTIDAD" de abajo.
   ============================================================ */

:root {
  /* ╔══════════════════════════════════════════════════════════╗
     ║  IDENTIDAD  ·  cambia estas 3 variables por cliente       ║
     ╚══════════════════════════════════════════════════════════╝ */
  --color-acento: #E8E2D6;   /* ÚNICO color de acento de marca (blanco hueso) */
  --bg:           #0a0a0a;   /* fondo principal (negro) */
  --bg-2:         #141414;   /* superficie elevada (carbón) */
  /* ╚══════════════ fin zona de re-skin ══════════════╝ */

  /* Acento verde WhatsApp — uso CON CRITERIO: contacto/WhatsApp y señales
     positivas (botón WA, WA flotante, hover de redes, "hoy/abierto").
     El hueso (--color-acento) sigue siendo la identidad de marca. */
  --color-whatsapp:       #25D366;
  --color-whatsapp-hover: #1FBF5B;

  /* Neutros derivados (normalmente no hace falta tocarlos) */
  --bg-3:         #1c1c1c;
  --text:         #f4f3f0;   /* texto principal */
  --text-soft:    #c9c7c1;   /* texto secundario */
  --muted:        #8d8b85;   /* texto tenue */
  --line:         rgba(255, 255, 255, 0.10);   /* bordes/divisores */
  --line-2:       rgba(255, 255, 255, 0.18);

  /* Tipografía */
  --font-display: 'General Sans', 'Satoshi', system-ui, sans-serif;
  --font-body:    'Satoshi', 'General Sans', system-ui, sans-serif;

  /* Escala tipográfica (sobria y contenida) */
  --fs-hero:  clamp(2.4rem, 5.2vw, 4rem);
  --fs-h1:    clamp(2rem, 4vw, 2.9rem);
  --fs-h2:    clamp(1.55rem, 3vw, 2.2rem);
  --fs-h3:    clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.75rem;
  --fs-label: 0.7rem;

  /* Galería diagonal estática */
  --panel-skew: 1.6rem;   /* inclinación del corte diagonal */
  --panel-gap:  5px;      /* grosor del separador */

  /* Navbar + ritmo */
  --nav-h: 68px;
  --section-pad: clamp(4rem, 9vw, 7rem);

  /* Transiciones */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      0.35s;

  --cursor-dot-size:  6px;
  --cursor-ring-size: 34px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--text);
  background: var(--bg);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--color-acento); color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Cursor personalizado ───────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%); mix-blend-mode: difference; z-index: 9999;
}
.cursor-dot { width: var(--cursor-dot-size); height: var(--cursor-dot-size); background: var(--color-acento); transition: transform 0.12s var(--ease), opacity 0.2s var(--ease); }
.cursor-ring { width: var(--cursor-ring-size); height: var(--cursor-ring-size); border: 1px solid var(--color-acento); z-index: 9998; transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.2s var(--ease); }
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button, .btn, .navbar__hamburger { cursor: pointer; }
}

/* ── Reveal on scroll ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

/* ── Tipografía utilitaria ──────────────────────────────────── */
.display-hero { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-hero); line-height: 1.04; letter-spacing: -0.03em; }
.display-h1 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h1); line-height: 1.06; letter-spacing: -0.025em; }
.display-h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.02em; }
.accent { color: var(--color-acento); }
.thin { font-weight: 300; color: var(--muted); }

.label {
  font-family: var(--font-body); font-size: var(--fs-label); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-acento);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.label::before { content: ''; width: 22px; height: 1px; background: var(--color-acento); opacity: 0.6; }
.label-center { justify-content: center; }

.section { padding: var(--section-pad) clamp(1.25rem, 4vw, 3rem); }
.container { max-width: 1180px; margin: 0 auto; }

.section-head { max-width: 1180px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.section-head p.sub { color: var(--muted); font-size: var(--fs-sm); max-width: 460px; }

/* ── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.8rem 1.6rem; border: 1px solid currentColor; border-radius: 999px;
  cursor: none; background: transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn-solid { background: var(--color-acento); color: var(--bg); border-color: var(--color-acento); }
.btn-solid:hover { background: transparent; color: var(--color-acento); }
.btn-outline { color: var(--text); border-color: var(--line-2); }
.btn-outline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-ghost { color: var(--color-acento); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { transform: none; }
.btn-ghost:hover .btn__arrow { transform: translateX(5px); }

/* WhatsApp: contorno verde → relleno en hover. Icono + texto. */
.btn-wa { color: var(--color-whatsapp); border-color: rgba(37, 211, 102, 0.55); background: transparent; }
.btn-wa:hover { background: var(--color-whatsapp); border-color: var(--color-whatsapp); color: #07120b; }
.btn-wa:hover .btn-wa__icon { transform: scale(1.08); }
.btn-wa__icon { display: inline-flex; transition: transform 0.3s var(--ease); }
.btn-wa svg { display: block; }
/* Variante compacta para la navbar */
.navbar__wa { padding: 0.55rem 1.05rem; font-size: 0.66rem; }
/* En anchos intermedios la navbar va justa: WhatsApp pasa a solo-icono. */
@media (max-width: 1120px) {
  .navbar__wa span:not(.btn-wa__icon) { display: none; }
  .navbar__wa { padding: 0.5rem 0.72rem; }
}
/* Bloque de CTAs (WhatsApp + Reserva) en el menú móvil */
.navbar__mobile-cta { display: flex; flex-direction: column; gap: 0.8rem; width: min(280px, 82%); }
.navbar__mobile-cta .btn { justify-content: center; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  NAVBAR (inyectada por components.js)                     ║
   ╚══════════════════════════════════════════════════════════╝ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.navbar__logo { display: flex; align-items: center; gap: 0.6rem; }
/* Logo blanco sobre fondo negro → screen elimina el negro sobre fondos oscuros */
.navbar__logo img { height: 30px; width: auto; mix-blend-mode: screen; transition: opacity var(--dur) var(--ease); }
.navbar__logo:hover img { opacity: 0.8; }

.navbar__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.navbar__links a.navlink {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft); position: relative; padding-bottom: 3px;
  transition: color var(--dur) var(--ease);
}
.navbar__links a.navlink::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--color-acento); transition: width var(--dur) var(--ease); }
.navbar__links a.navlink:hover, .navbar__links a.navlink.active { color: var(--color-acento); }
.navbar__links a.navlink:hover::after, .navbar__links a.navlink.active::after { width: 100%; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: transparent; border: none; padding: 4px 8px; border-radius: 999px; cursor: none; transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.lang-switch button.active { color: var(--bg); background: var(--color-acento); }

.navbar__cta { padding: 0.55rem 1.25rem; font-size: 0.66rem; }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 6px; z-index: 1001; }
.navbar__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease); }
.navbar__hamburger.is-open span { background: var(--color-acento); }
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.navbar__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  flex-direction: column; align-items: center; padding: 2.2rem 0 2.6rem; gap: 1.4rem; z-index: 999; border-bottom: 1px solid var(--line);
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile a.navlink { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); transition: color var(--dur) var(--ease); }
.navbar__mobile a.navlink:hover, .navbar__mobile a.navlink.active { color: var(--color-acento); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  HERO (home)                                             ║
   ╚══════════════════════════════════════════════════════════╝ */
.hero {
  position: relative; min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; overflow: hidden;
  padding: var(--nav-h) clamp(1.25rem, 4vw, 3rem) 0; background: var(--bg);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(45%) contrast(1.04) brightness(0.45); transform: scale(1.04); animation: heroZoom 24s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.09); } }
.hero__bg::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 45%, rgba(10,10,10,0.92) 100%); }
.hero__content { position: relative; z-index: 3; max-width: 880px; }
.hero__label { margin-bottom: 1.5rem; }
.hero__title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-hero); line-height: 1.02; letter-spacing: -0.035em; color: var(--text); }
.hero__title .accent { font-weight: 300; }
.hero__tagline { margin-top: 1.1rem; font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text-soft); font-weight: 400; }
.hero__sub { margin-top: 0.9rem; font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.hero__cta-row { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 3; }
.hero__scroll span { font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--color-acento), transparent); animation: scrollLine 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; } }

/* ── Entrada del hero (home) ──────────────────────────────────
   El bloque de texto del hero (label, título, subtítulo, sub y CTA)
   entra TODO A LA VEZ: fade in + subida sutil (~26px desde :root),
   señorial pero ágil. Duración 1.15s, easing power3.out
   (cubic-bezier 0.33,1,0.68,1) y arranque a 0.2s. Sin escalonado.
   El estado inicial/final lo aportan .reveal / .reveal.is-visible;
   aquí solo se ajusta el ritmo. prefers-reduced-motion lo neutraliza
   vía la regla global (transition-duration: 0.001ms !important). */
.hero .reveal {
  transition: opacity 1.15s cubic-bezier(0.33, 1, 0.68, 1) 0.2s,
              transform 1.15s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}
/* Anula el escalonado heredado: todos los elementos del hero a la vez. */
.hero .reveal-d1,
.hero .reveal-d2,
.hero .reveal-d3,
.hero .reveal-d4 { transition-delay: 0.2s; }

/* ── Page hero (páginas internas) ───────────────────────────── */
.page-hero { padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; background: var(--bg); }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 70% 0%, rgba(232,226,214,0.05), transparent 60%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h1); line-height: 1.06; letter-spacing: -0.025em; color: var(--text); margin-top: 1.1rem; }
.page-hero h1 .accent { font-weight: 300; }
.page-hero__sub { margin-top: 1.1rem; color: var(--muted); font-size: var(--fs-sm); max-width: 520px; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOME — teasers                                          ║
   ╚══════════════════════════════════════════════════════════╝ */
.teaser { background: var(--bg); }
.teaser--alt { background: var(--bg-2); }
.teaser__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.teaser__body h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.02em; margin: 0.9rem 0 1.1rem; }
.teaser__body p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.75; margin-bottom: 1.6rem; max-width: 440px; }
.teaser__media { position: relative; min-width: 0; }

/* Mini-galería diagonal del home */
.cut-strip { display: flex; gap: var(--panel-gap); height: clamp(280px, 38vw, 420px); }
/* min-width:0 es CLAVE: sin él, el aspect-ratio de .cut + la altura fija dan a
   cada foto un ancho mínimo (min-content) que impide encogerse y desborda en móvil. */
.cut-strip .cut { flex: 1 1 0; min-width: 0; }

/* Teaser precios (lista compacta) */
.teaser__pricelist { display: flex; flex-direction: column; gap: 0.2rem; }
.teaser__priceitem { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.teaser__priceitem span:first-child { color: var(--text); }
.teaser__priceitem span:last-child { color: var(--color-acento); font-weight: 600; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  GALERÍA DIAGONAL ESTÁTICA + CLICABLE                     ║
   ╚══════════════════════════════════════════════════════════╝ */
.cut-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--panel-gap); max-width: 1180px; margin: 0 auto; }
.cut {
  position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-2);
  clip-path: polygon(var(--panel-skew) 0, 100% 0, calc(100% - var(--panel-skew)) 100%, 0 100%);
  transition: transform 0.5s var(--ease-out);
}
.cut img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%) brightness(0.8) contrast(1.04); transform: scale(1.05); transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease); }
.cut::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0.82) 100%); transition: background 0.4s var(--ease); }
.cut:hover img { transform: scale(1.11); filter: grayscale(0%) brightness(0.95) contrast(1.06); }
.cut:hover { transform: translateY(-4px); }
.cut:hover::after { background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.7) 100%); }
.cut__tag { position: absolute; left: clamp(1rem, 2vw, 1.6rem); bottom: clamp(1.1rem, 2.5vw, 1.8rem); z-index: 3; }
.cut__num { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-xs); color: var(--color-acento); display: block; margin-bottom: 0.3rem; }
.cut__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(0.95rem, 1.5vw, 1.2rem); letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); line-height: 1.1; }
.cut__go { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-acento); opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.cut__go::after { content: '→'; }
.cut:hover .cut__go, .cut:focus-visible .cut__go { opacity: 1; transform: translateY(0); }
.cut__line { display: block; width: 30px; height: 2px; background: var(--color-acento); margin-top: 0.6rem; transition: width 0.4s var(--ease-out); }

/* ── BLOQUE A · Carrusel infinito automático de cortes (galería) ───
   Las fotos desfilan solas en bucle continuo (sin fin perceptible),
   manteniendo los separadores en DIAGONAL. Sin etiquetas ni clicks.
   Movimiento CONSTANTE: NO se pausa ni reacciona al hover. */
.cut-marquee { position: relative; width: 100%; overflow: hidden; padding: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.cut-marquee__track { display: flex; width: max-content; animation: cutScroll var(--cut-speed, 55s) linear infinite; will-change: transform; }
.cut-photo {
  flex: 0 0 auto; width: clamp(240px, 24vw, 340px); height: clamp(340px, 56vh, 520px);
  margin-right: var(--panel-gap); overflow: hidden; background: var(--bg-2);
  clip-path: polygon(var(--panel-skew) 0, 100% 0, calc(100% - var(--panel-skew)) 100%, 0 100%);
}
.cut-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(22%) brightness(0.92) contrast(1.04); }
.cut-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
@keyframes cutScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cut-marquee__track { animation: none; } }
.cut:hover .cut__line { width: 52px; }

/* ── BLOQUE B · Grid estático de cortes con nombre del estilo ──────
   Cuadrícula limpia, cada foto con su etiqueta. Hover: zoom suave +
   gris→color y subrayado de acento. */
.shots { max-width: 1180px; margin: 0 auto; }
.shots__head { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); }
.shots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.6vw, 1.25rem); }
.shot { display: block; }
.shot__img { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-2); border-radius: 8px; }
.shot__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(32%) brightness(0.88) contrast(1.05); clip-path: inset(0 0 100% 0); transition: filter 0.6s var(--ease), transform 0.7s var(--ease-out), clip-path 0.9s var(--ease-out); }
/* reveal-wipe: la foto se descubre con un barrido al entrar en pantalla */
.shot.is-visible .shot__img img { clip-path: inset(0 0 0 0); }
.shot:hover .shot__img img { filter: grayscale(0%) brightness(1) contrast(1.04); transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .shot__img img { clip-path: none; } }
.shot__pie { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-top: 0.8rem; padding-top: 0.7rem; border-top: 1px solid var(--line); position: relative; }
.shot__pie::after { content: ''; position: absolute; top: -1px; left: 0; height: 1px; width: 0; background: var(--color-acento); transition: width 0.6s var(--ease-out); }
.shot:hover .shot__pie::after { width: 100%; }
.shot__num { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-xs); letter-spacing: 0.08em; color: var(--muted); transition: color 0.4s var(--ease); }
.shot:hover .shot__num { color: var(--color-acento); }
.shot__name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); }
@media (max-width: 860px) { .shots-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .shots-grid { gap: 0.7rem; } .shot__name { font-size: 0.62rem; letter-spacing: 0.1em; } .shot__img { border-radius: 6px; } }

/* ╔══════════════════════════════════════════════════════════╗
   ║  PRECIOS                                                 ║
   ╚══════════════════════════════════════════════════════════╝ */
.pricing__grid { max-width: 880px; margin: 0 auto; display: grid; gap: 0.8rem; }
/* Carta agrupada por categorías (Cortes · Barba y cejas · Combos · Otros) */
.pricing { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(2.2rem, 4.5vw, 3.4rem); }
.price-group__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.price-group__head .label { flex: 0 0 auto; }
/* Hairline con un punto de verde: el acento de "contacto/activo" en la carta */
.price-group__head::after { content: ''; flex: 1 1 auto; height: 1px; background: linear-gradient(90deg, rgba(37, 211, 102, 0.5), var(--line) 42%, transparent); }
.price-group__count { order: 1; flex: 0 0 auto; font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 500; color: var(--muted); letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
.price-group__grid { display: grid; gap: 0.8rem; }
.price-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.35rem 1.7rem;
  position: relative; overflow: hidden; scroll-margin-top: calc(var(--nav-h) + 1.5rem);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 0.35s var(--ease-out);
}
.price-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--color-acento); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease-out); }
.price-card:hover { border-color: var(--line-2); transform: translateX(3px); background: var(--bg-3); }
.price-card:hover::before { transform: scaleY(1); }
.price-card__num { font-family: var(--font-display); font-weight: 500; color: var(--color-acento); font-size: var(--fs-sm); min-width: 2ch; }
.price-card__info h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); color: var(--text); letter-spacing: -0.01em; }
.price-card__info p { font-size: var(--fs-xs); color: var(--muted); margin-top: 0.2rem; }
.price-card__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; }
.price-card__price { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--color-acento); white-space: nowrap; transition: color var(--dur) var(--ease); }
.price-card:hover .price-card__price { color: var(--color-whatsapp); }
/* Duración como píldora */
.price-card__dur { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 0.26rem 0.62rem; white-space: nowrap; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.price-card:hover .price-card__dur { color: var(--text-soft); border-color: var(--line-2); }
.pricing__note { text-align: center; margin-top: 1.8rem; font-size: var(--fs-xs); color: var(--muted); }
/* Pulso de resaltado al llegar desde la galería */
@keyframes cardPulse {
  0% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(232,226,214,0); }
  15% { border-color: var(--color-acento); box-shadow: 0 0 0 3px rgba(232,226,214,0.18); }
  100% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(232,226,214,0); }
}
.price-card.is-highlight { animation: cardPulse 2.4s var(--ease) 1; }
.price-card.is-highlight::before { transform: scaleY(1); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  OPINIONES                                               ║
   ╚══════════════════════════════════════════════════════════╝ */
.reviews__rating { max-width: 1180px; margin: 0 auto clamp(2.2rem, 4vw, 3rem); display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.reviews__score { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--color-acento); line-height: 1; letter-spacing: -0.02em; }
.reviews__stars { color: var(--color-acento); font-size: 1rem; letter-spacing: 2px; }
.reviews__count { font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.reviews__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.review-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; transition: transform 0.35s var(--ease-out), border-color var(--dur) var(--ease); }
.review-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review-card__stars { color: var(--color-acento); font-size: 0.8rem; letter-spacing: 2px; }
.review-card__text { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.65; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 0.7rem; }
.review-card__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--color-acento); font-size: 0.85rem; }
.review-card__name { font-weight: 600; font-size: var(--fs-xs); color: var(--text); }
.review-card__meta { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Horarios + Ubicación ───────────────────────────────────── */
.info__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hours h3, .location h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); color: var(--text); margin: 0.9rem 0 1.2rem; letter-spacing: -0.01em; }
.hours__row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.hours__row.is-today { color: var(--color-acento); }
.hours__time { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours__row.is-today .hours__time { color: var(--color-acento); }
.hours__closed { color: var(--muted); font-weight: 600; }
.location__map { position: relative; aspect-ratio: 16/10; width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: grid; place-items: center; }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) invert(0.92) contrast(0.88); }
.location__map-placeholder { text-align: center; color: var(--muted); padding: 2rem; }
.location__map-placeholder strong { display: block; color: var(--color-acento); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.location__details { margin-top: 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.location__detail span { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-acento); margin-bottom: 0.3rem; }
.location__detail a, .location__detail p { font-size: var(--fs-sm); color: var(--text-soft); }
.location__detail a:hover { color: var(--color-acento); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; cursor: none; color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); padding: 1.3rem 2.5rem 1.3rem 0; position: relative; transition: color var(--dur) var(--ease); }
.faq-item__q:hover { color: var(--color-acento); }
.faq-item__q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--color-acento); transition: transform var(--dur) var(--ease); }
.faq-item.is-open .faq-item__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), padding 0.45s var(--ease); }
.faq-item.is-open .faq-item__a { max-height: 300px; padding-bottom: 1.3rem; }
.faq-item__a p { color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }

/* ── Bloque intención local (SEO) ───────────────────────────── */
.local-intent__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.local-intent__inner p { color: var(--muted); font-size: var(--fs-sm); line-height: 1.85; margin-top: 1rem; }
.local-intent__inner strong { color: var(--text-soft); font-weight: 600; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  BOOK CTA                                                ║
   ╚══════════════════════════════════════════════════════════╝ */
.book-cta { text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
/* Marca de agua editorial (wordmark gigante, contorno tenue). Inyectada por JS. */
.book-cta__watermark {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(4.5rem, 23vw, 19rem); letter-spacing: -0.045em;
  color: transparent; -webkit-text-stroke: 1px rgba(232, 226, 214, 0.05);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.book-cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.book-cta__headline { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h1); line-height: 1.04; letter-spacing: -0.025em; color: var(--text); margin: 1rem 0; }
.book-cta__headline .accent { font-weight: 300; }
.book-cta__sub { font-size: var(--fs-sm); color: var(--muted); margin: 0 auto 1.8rem; max-width: 460px; line-height: 1.7; }
.book-cta__buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  FOOTER (inyectado por components.js)                     ║
   ╚══════════════════════════════════════════════════════════╝ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 6vw, 5rem) 1.8rem; color: var(--muted); font-size: var(--fs-sm); }
.footer__inner { max-width: 1180px; margin: 0 auto 3rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; mix-blend-mode: screen; }
.footer__brand p { line-height: 1.7; max-width: 260px; color: var(--muted); font-size: var(--fs-sm); }
/* Iconos de redes (hover en verde de contacto) */
.footer__socials { display: flex; gap: 0.55rem; margin-top: 1.3rem; }
.footer__socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text-soft); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 0.25s var(--ease), background var(--dur) var(--ease); }
.footer__socials a:hover { color: var(--color-whatsapp); border-color: var(--color-whatsapp); transform: translateY(-3px); }
.footer__socials svg { display: block; }
.footer__col h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-acento); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a { color: var(--muted); font-size: var(--fs-sm); transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer__col ul a:hover { color: var(--text); padding-left: 5px; }
.footer__col address { font-style: normal; line-height: 1.9; font-size: var(--fs-sm); }
.footer__col address strong { color: var(--text-soft); font-weight: 500; }
.footer__bottom { max-width: 1180px; margin: 0 auto; border-top: 1px solid var(--line); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { font-size: var(--fs-xs); }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color var(--dur) var(--ease); }
.footer__social a:hover { color: var(--color-acento); }

/* ── Botón flotante ─────────────────────────────────────────── */
.float-book { position: fixed; bottom: 24px; right: 24px; z-index: 400; display: inline-flex; align-items: center; gap: 9px; background: var(--bg); color: var(--color-acento); font-family: var(--font-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 12px 18px; border: 1px solid var(--color-acento); border-radius: 999px; cursor: none; box-shadow: 0 8px 30px rgba(0,0,0,0.45); transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease); }
.float-book:hover { background: var(--color-acento); color: var(--bg); transform: translateY(-3px); }
.float-book__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; animation: floatPulse 2s ease-in-out infinite; }
@keyframes floatPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.6); } }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 1rem 0; }
.marquee__track { display: flex; gap: 3rem; animation: marqueeScroll 40s linear infinite; white-space: nowrap; width: max-content; }
.marquee__item { font-family: var(--font-display); font-weight: 500; font-size: clamp(0.9rem, 1.8vw, 1.3rem); color: var(--text-soft); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 3rem; text-transform: uppercase; }
.marquee__item::after { content: '/'; color: var(--color-acento); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ╔══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE                                              ║
   ╚══════════════════════════════════════════════════════════╝ */
@media (max-width: 1080px) {
  .cut-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .info__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .teaser__inner { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; }
  .teaser--alt .teaser__media { order: -1; }
  .cut-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: auto 1fr; row-gap: 0.55rem; padding: 1.1rem 1.2rem; }
  .price-card__right { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: center; justify-content: flex-end; gap: 0.7rem; text-align: right; }
  .price-card__dur { margin-top: 0; }
  .location__details { grid-template-columns: 1fr; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
  /* Galería: carrusel swipe manteniendo diagonales */
  .cut-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; scrollbar-width: none; }
  .cut-grid::-webkit-scrollbar { display: none; }
  .cut-grid .cut { flex: 0 0 72%; scroll-snap-align: center; aspect-ratio: 3/4.2; }
  .cut-strip { height: 300px; }
}
@media (max-width: 480px) {
  .btn { padding: 0.75rem 1.4rem; }
  .float-book { bottom: 16px; right: 16px; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  PÁGINAS LEGALES                                          ║
   ╚══════════════════════════════════════════════════════════╝ */
.legal { max-width: 820px; margin: 0 auto; }
.legal__toc { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.legal__toc a {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1.1rem;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.legal__toc a:hover { color: var(--color-acento); border-color: var(--line-2); background: var(--bg-2); }
.legal-section { scroll-margin-top: calc(var(--nav-h) + 1.5rem); margin-top: clamp(2.6rem, 5vw, 3.8rem); padding-top: clamp(2.6rem, 5vw, 3.8rem); border-top: 1px solid var(--line); }
.legal-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-section > .label { margin-bottom: 0.7rem; }
.legal-section h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.02em; color: var(--text); margin: 0.4rem 0 1.5rem; }
.legal__body p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.8; margin-bottom: 1.1rem; }
.legal__body h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); color: var(--text); letter-spacing: -0.01em; margin: 2rem 0 0.7rem; }
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__body a { color: var(--color-acento); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: opacity var(--dur) var(--ease); }
.legal__body a:hover { opacity: 0.75; }
.legal__body ul { display: flex; flex-direction: column; gap: 0.5rem; margin: 0 0 1.2rem; }
.legal__body li { position: relative; padding-left: 1.3rem; color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.7; }
.legal__body li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--color-acento); }
.legal__updated { font-size: var(--fs-xs); color: var(--muted); margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
/* Tarjeta de datos del titular / responsable */
.legal__card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.6rem; margin: 1.4rem 0 1.8rem; }
.legal__card dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.55rem 1.6rem; margin: 0; }
.legal__card dt { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-acento); padding-top: 0.15rem; }
.legal__card dd { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); }
.legal__card a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal__card a:hover { color: var(--color-acento); }
@media (max-width: 560px) {
  .legal__card dl { grid-template-columns: 1fr; gap: 0.1rem 0; }
  .legal__card dt { margin-top: 0.7rem; }
  .legal__card dt:first-child { margin-top: 0; }
}

/* ── Banner de cookies (discreto, abajo) ────────────────────── */
.cookie-banner {
  position: fixed; z-index: 500; left: clamp(1rem, 3vw, 1.5rem); bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: 380px; background: rgba(20, 20, 20, 0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 1.1rem 1.2rem 1.15rem;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; gap: 0.95rem;
  transform: translateY(18px); opacity: 0; transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__text { font-size: var(--fs-xs); color: var(--text-soft); line-height: 1.65; }
.cookie-banner__actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-banner__link { font-size: var(--fs-xs); color: var(--color-acento); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cookie-banner__link:hover { opacity: 0.75; }
.cookie-banner__accept { padding: 0.55rem 1.4rem; font-size: var(--fs-xs); cursor: none; }
@media (max-width: 600px) {
  .cookie-banner { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; max-width: none; }
  /* Mientras el aviso esté visible, ocultamos el botón flotante para no solaparse */
  .cookies-pending .float-book { opacity: 0; visibility: hidden; }
}
@media (hover: none), (pointer: coarse) { .cookie-banner__accept { cursor: pointer; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: opacity 0.001ms; } }
