/* =========================================================
   Buenos Aires Barbershop — Luxury Dark One-Page
   Rebrand según Manual de Marca BSAS Barbershop:
   Paleta: #FFFFFF / #000000 / #9D8972 (7530C) / #B77636 (139C) / #3C6F63 (562C)
   Tipografías: LEMON MILK (display) + Helvetica Neue (texto) + Bebas Neue (números)
   ========================================================= */

@font-face {
  font-family: 'Lemon Milk';
  src: url('assets/fonts/LEMONMILK-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('assets/fonts/LEMONMILK-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('assets/fonts/LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue LT';
  src: url('assets/fonts/HelveticaNeueLT55.ttf') format('truetype');
  font-weight: 100 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue LT';
  src: url('assets/fonts/HelveticaNeueLT75.ttf') format('truetype');
  font-weight: 600 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
/* Sustituto libre de Benton Modern D (serif editorial del manual) */
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/PlayfairDisplay.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/PlayfairDisplay-Italic.woff2') format('woff2');
  font-weight: 400 700; font-style: italic; font-display: swap;
}

:root {
  /* Base verde-negro: el verde inglés de la fachada del local (562C profundo) */
  --bg: #0a0e0c;
  --bg-2: #0f1512;
  --bg-3: #16201b;
  --ink: #f7f3ef;
  --ink-dim: #9d8972;   /* taupe Pantone 7530C */
  --ink-mute: #6e6154;
  --copper: #b77636;    /* cobre Pantone 139C */
  --copper-2: #8a5726;
  --green: #3c6f63;     /* verde Pantone 562C */
  --green-light: #6fa596;
  --line: rgba(157, 137, 114, 0.18);
  --line-strong: rgba(157, 137, 114, 0.38);

  --display: 'Lemon Milk', 'Avenir Next', 'Century Gothic', sans-serif;
  --benton: 'Benton Modern D', 'Playfair Display', Georgia, serif;
  --sans: 'Helvetica Neue LT', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --bebas: 'Bebas Neue', 'Oswald', sans-serif;

  /* Misceláneas del manual: degradés y tipos de líneas */
  --grad-brand: linear-gradient(120deg, #b77636 0%, #9d8972 50%, #3c6f63 100%);
  --grad-copper: linear-gradient(100deg, #dc9b55, #b77636 55%, #8a5726);
  --filetes: repeating-linear-gradient(135deg, rgba(247,243,239,0.05) 0 1px, transparent 1px 10px);
  --filetes-dark: repeating-linear-gradient(135deg, rgba(9,13,11,0.1) 0 1px, transparent 1px 10px);

  --max: 1620px;
  --pad: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 12vw, 160px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.gone { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark { width: 92px; height: auto; margin: 0 auto 26px; opacity: 0.92; }
.loader-line {
  display: block; width: 0; height: 1px; background: #e8b170;
  margin: 0 auto 20px; animation: load-line 1.6s ease forwards;
}
@keyframes load-line { to { width: 120px; } }
.loader-text {
  font-family: var(--display);
  font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- Container helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; position: relative; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--benton); font-weight: 500;
  letter-spacing: 0;
}
h2 { font-size: clamp(34px, 5vw, 66px); line-height: 1.08; }
h3 { font-size: clamp(21px, 2vw, 28px); }
em { font-style: italic; color: var(--copper); }

.eyebrow {
  font-family: var(--display);
  font-size: 13px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--copper); font-weight: 300;
}
.eyebrow.center { text-align: center; }
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-dim);
  max-width: 60ch; margin-top: 24px;
}

.section-head { text-align: center; max-width: 860px; margin: 0 auto clamp(50px, 7vw, 90px); }
.section-head h2 { margin-top: 16px; }
.section-head::after {
  content: ''; display: block; width: 140px; height: 1px;
  margin: 30px auto 0; background: var(--grad-brand);
}
.section-head .lead { margin: 24px auto 0; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--pad);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 13, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--pad);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 12px 24px; border: 1px solid var(--copper);
  font-family: var(--display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--copper); color: var(--bg); }
/* Botón de idioma en la nav */
.nav-lang {
  font-family: var(--display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); background: transparent;
  padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
  cursor: pointer; transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-lang:hover { color: var(--copper); border-color: var(--copper); }
.mobile-lang {
  display: inline-block; margin-top: 8px;
  font-family: var(--display); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-dim); background: transparent;
  padding: 10px 22px; border: 1px solid var(--line-strong); border-radius: 999px;
}

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav-burger span { display: block; width: 100%; height: 1px; background: var(--ink); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta, .nav-lang { display: none; }
  .nav-burger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 90; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-menu nav a {
  font-family: var(--display); font-size: 22px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
}
.mobile-menu .mobile-cta { color: var(--copper); border-top: 1px solid var(--line); padding-top: 28px; margin-top: 12px; font-family: var(--display); font-weight: 300; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--display); font-weight: 300;
  transition: all 0.4s var(--ease); cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--copper); color: var(--bg); }
.btn-primary:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green-light); color: var(--green-light); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px var(--pad) 150px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); filter: brightness(0.72) saturate(1.08);
}
/* Oscurecer el centro (donde vive el texto) y dejar respirar la fachada en los laterales */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 75% at center, rgba(9,13,11,0.62) 0%, rgba(9,13,11,0.38) 60%, rgba(9,13,11,0.18) 100%),
    linear-gradient(180deg, rgba(9,13,11,0.35) 0%, rgba(9,13,11,0.12) 45%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 1240px;
}
.hero-brand {
  width: clamp(230px, 28vw, 400px); height: auto;
  margin: 0 auto 30px;
  animation: hero-brand-in 1.4s var(--ease) 0.2s both;
}
@keyframes hero-brand-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 13px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--copper); font-weight: 300; margin-bottom: 28px;
}
.hero-eyebrow .line { display: inline-block; width: 40px; height: 1px; background: var(--grad-brand); }
.hero-title {
  font-family: var(--benton);
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 1.02; font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-title .word {
  display: inline-block; margin: 0 0.12em;
  transform: translateY(110%); opacity: 0;
}
.hero-title .italic {
  font-style: italic; color: #e8b170;
  background: linear-gradient(105deg, #f0c78a 5%, #dc9b55 45%, #9fd4c2 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(183,118,54,0.35));
}
.hero-sub {
  margin: 32px auto 40px; max-width: 760px;
  color: var(--ink-dim); font-size: clamp(17px, 1.4vw, 20px);
  opacity: 0;
}
.hero-actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; opacity: 0; }
.hero-gift-tagline {
  margin-top: 30px; font-family: var(--benton); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px); color: var(--copper);
  letter-spacing: 0.01em;
}

.hero-scroll {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-dim);
}
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--copper) 50%, transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.4); opacity: 1; }
}
.hero-scroll p { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; }

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid transparent;
  border-image: var(--grad-brand) 1;
  padding: 18px 0; overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(9,13,11,0.8));
}
.marquee-track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--benton); font-style: italic;
  font-size: 18px; letter-spacing: 0.03em; color: var(--ink-dim);
}
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero-scroll { display: none; }
  .hero-marquee { padding: 12px 0; }
  .marquee-track span { font-size: 13px; }
  .hero { padding-bottom: 120px; }
}

/* Pantallas bajas (notebooks): compactar el hero para que el tagline
   no choque con el indicador de scroll ni el marquee */
@media (max-height: 860px) and (min-width: 901px) {
  .hero-brand { width: clamp(180px, 20vw, 270px); margin-bottom: 20px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-title { font-size: clamp(34px, 4.8vw, 64px); }
  .hero-sub { margin: 20px auto 26px; }
  .hero-gift-tagline { margin-top: 20px; }
  .hero-scroll { display: none; }
}

/* ---------- La Barbería ---------- */
.barberia {
  background:
    radial-gradient(90% 55% at 88% 0%, rgba(183,118,54,0.09), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  position: relative;
  overflow: hidden;
}
/* Monograma BA como marca de agua */
.barberia::before {
  content: ''; position: absolute; top: -4%; right: -12%;
  width: clamp(380px, 44vw, 720px); aspect-ratio: 1.61;
  background: url('assets/img/logo/monograma-cobre.png') no-repeat center / contain;
  opacity: 0.05; pointer-events: none;
}
.reveal-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.reveal-image img {
  width: 100%; height: 110%; object-fit: cover;
  filter: grayscale(0.2) brightness(0.85);
  transition: transform 0.6s var(--ease);
}
.reveal-image:hover img { transform: scale(1.04); }
.image-mask {
  position: absolute; inset: 0; background: var(--bg);
  transform-origin: bottom;
}
.barberia-text h2 { margin-top: 12px; }
.barberia-text h2 em { font-style: italic; }

.services {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px);
}
.service-item {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: clamp(34px, 3.6vw, 48px) clamp(22px, 2.4vw, 32px);
  background: linear-gradient(165deg, #17221c 0%, #10160f 100%);
  border: 1px solid var(--line-strong); border-radius: 2px;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
/* doble marco fileteado, como los menús clásicos de barbería */
.service-item::before {
  content: ''; position: absolute; inset: 7px;
  border: 1px solid var(--line); border-radius: 1px;
  pointer-events: none;
  transition: border-color 0.45s var(--ease);
}
.service-item:hover { border-color: rgba(183,118,54,0.6); box-shadow: 0 16px 40px rgba(0,0,0,0.4); transform: translateY(-4px); }
.service-item:hover::before { border-color: rgba(183,118,54,0.3); }
.service-ic {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 4px;
  border: 1px solid var(--line-strong); color: var(--copper);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.service-item:hover .service-ic { border-color: var(--copper); box-shadow: 0 0 22px rgba(183,118,54,0.35); }
.service-ic svg { width: 28px; height: 28px; }
.service-item h3 { color: var(--ink); font-size: clamp(18px, 1.5vw, 22px); }
.service-item h3 .service-sub { display: block; font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--ink-mute); margin-top: 4px; }
.service-item p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; flex: 1 1 auto; }
.service-meta { margin-top: 8px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.service-price { font-family: var(--bebas); font-size: clamp(26px, 2.4vw, 36px); letter-spacing: 0.03em; color: var(--copper); line-height: 1; }
.service-dur { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.service-cash { font-size: 14px; color: var(--green-light); }

.services-note {
  margin-top: clamp(24px, 3vw, 34px);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center; color: var(--copper); font-size: 16px;
}
.services-note svg { width: 18px; height: 18px; flex: 0 0 auto; }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } .services-note { flex-direction: column; gap: 6px; } }

/* ---------- Stats ---------- */
.stats {
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    repeating-linear-gradient(135deg, rgba(157,137,114,0.03) 0 1px, transparent 1px 12px),
    radial-gradient(70% 130% at 50% 50%, rgba(60,111,99,0.08), transparent 70%),
    var(--bg-2);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: var(--grad-brand) 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.stat { position: relative; }
.stat .num {
  display: inline-block; font-family: var(--benton); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 5vw, 74px); letter-spacing: 0;
  color: var(--copper); line-height: 1;
  transition: transform 0.6s var(--ease), color 0.6s ease, text-shadow 0.6s ease;
}
/* hover de lujo: el número se enciende apenas y dibuja su filete */
.stat::after {
  content: ''; display: block; width: 0; height: 1px;
  margin: 14px auto 0; background: var(--grad-brand);
  transition: width 0.7s var(--ease);
}
.stat:hover::after { width: 64px; }
.stat:hover .num {
  transform: translateY(-3px);
  color: #e8b170;
  text-shadow: 0 4px 26px rgba(183,118,54,0.4);
}
.stat p {
  margin-top: 14px; font-size: 14px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-dim);
  transition: color 0.6s ease;
}
.stat:hover p { color: var(--ink); }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- Equipo ---------- */
.equipo {
  background:
    radial-gradient(70% 50% at 8% 12%, rgba(157,137,114,0.1), transparent 60%),
    var(--bg-2);
}
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.barber {
  position: relative; overflow: hidden;
  background: var(--bg-3);
}
.barber-img {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.barber-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,13,11,0.85) 100%);
}
.barber-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%;
  filter: grayscale(0.3) brightness(0.9);
  transition: transform 0.8s var(--ease), filter 0.8s ease;
}
.barber:hover .barber-img img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.barber h3, .barber p {
  position: absolute; left: 24px; right: 24px; z-index: 2;
  color: var(--ink);
}
.barber h3 { bottom: 40px; font-family: var(--display); font-size: 17px; letter-spacing: 0.08em; }
.barber p {
  bottom: 18px; font-size: 12.5px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--copper);
}

/* ---------- Colecciones ---------- */
.colecciones { background: var(--bg); }
.collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 0 4px;
}
.collection-wide { grid-column: span 4; }
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
  .collection-wide { grid-column: span 1; }
}
.collection { position: relative; overflow: hidden; display: block; aspect-ratio: 3/4; }
.collection-wide { aspect-ratio: 16/9; }
.collection-img { position: absolute; inset: 0; }
.collection-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2) brightness(0.7);
  transition: transform 1s var(--ease), filter 0.6s ease;
}
.collection:hover .collection-img img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.collection::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(9,13,11,0.9));
}
.collection-meta {
  position: absolute; bottom: 32px; left: 32px; z-index: 2; color: var(--ink);
}
.collection-meta span {
  display: block; font-family: var(--sans);
  font-size: 12.5px; letter-spacing: 0.3em; color: var(--copper); margin-bottom: 8px;
}
.collection-meta h3 { font-size: clamp(17px, 1.9vw, 26px); letter-spacing: 0.1em; }

/* ---------- Pullquote ---------- */
.pullquote {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pullquote-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pullquote-bg .parallax-img {
  width: 100%; height: 132%; object-fit: cover; object-position: center 24%;
  filter: grayscale(0.34) brightness(0.52) contrast(1.03);
  will-change: transform;
}
.pullquote-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,20,17,0.36) 0%, rgba(11,20,17,0.76) 68%, rgba(8,15,12,0.95) 100%),
    linear-gradient(180deg, rgba(11,20,17,0.5), rgba(11,20,17,0.32) 50%, rgba(11,20,17,0.68));
}
.quote-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.6;
}
.pullquote .container { position: relative; z-index: 1; }
.quote {
  font-family: var(--benton); font-size: clamp(34px, 5.6vw, 74px);
  line-height: 1.12; max-width: 900px; margin: 0 auto;
  color: var(--ink); font-weight: 400;
}
.quote em { font-style: italic; }
.quote em { color: var(--copper); }
.quote .q {
  font-family: var(--benton); color: var(--copper);
  font-size: 1.4em; line-height: 0;
}
.quote-attr {
  margin-top: 40px; font-size: 14px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--ink-dim);
}

/* ---------- Prensa ---------- */
.prensa { background: var(--bg); padding-bottom: var(--section); }
.prensa-carousel {
  overflow: hidden; padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.prensa-track {
  display: flex; gap: 36px;
  animation: prensa-marquee 40s linear infinite;
}
.prensa-card {
  display: block;
  flex: 0 0 280px;
  aspect-ratio: 16/10;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.prensa-card:hover { transform: translateY(-6px); border-color: var(--copper); }
.prensa-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); }
@keyframes prensa-marquee { to { transform: translateX(calc(-50% - 18px)); } }
/* En mobile el carrusel pasa más rápido */
@media (max-width: 700px) {
  .prensa-track { animation-duration: 18s; }
}

/* ---------- Reviews ---------- */
.reviews {
  background:
    radial-gradient(80% 60% at 92% 100%, rgba(60,111,99,0.14), transparent 60%),
    var(--bg-2);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 32px; background: var(--bg-3);
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.review:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.review-head img:first-child {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.review-head h4 { font-family: var(--sans); font-size: 15.5px; font-weight: 500; color: var(--ink); }
.stars { color: var(--copper); font-size: 13.5px; letter-spacing: 1px; margin-top: 2px; }
.google-logo { margin-left: auto; width: 18px; height: 18px; opacity: 0.6; }
.review p { font-family: var(--benton); color: var(--ink-dim); font-size: 17px; line-height: 1.65; font-style: italic; }

/* ---------- Friends ---------- */
.friends {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(157,137,114,0.03) 0 1px, transparent 1px 12px),
    radial-gradient(60% 90% at 50% 50%, rgba(157,137,114,0.05), transparent 70%),
    var(--bg);
}
.friends-grid {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  align-items: center;
}
.friends-grid img {
  max-height: 50px; width: auto; margin: 0 auto;
  filter: brightness(0) invert(1); opacity: 0.4;
  transition: opacity 0.7s ease, transform 0.7s var(--ease), filter 0.7s ease;
}
.friends-grid img:hover {
  opacity: 0.95;
  transform: translateY(-4px);
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(183,118,54,0.35));
}
@media (max-width: 700px) { .friends-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ---------- Contacto ---------- */
.contacto {
  background:
    radial-gradient(70% 55% at 12% 92%, rgba(183,118,54,0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.contacto::before {
  content: ''; position: absolute; bottom: -6%; left: -10%;
  width: clamp(340px, 38vw, 620px); aspect-ratio: 1.61;
  background: url('assets/img/logo/monograma-cobre.png') no-repeat center / contain;
  opacity: 0.045; pointer-events: none;
}
.contacto-grid { align-items: stretch; }
.contacto-info h2 { margin-top: 12px; }
.contacto-list {
  list-style: none; margin: 40px 0;
  border-top: 1px solid var(--line);
}
.contacto-list li {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.contacto-list span {
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper);
  padding-top: 2px;
}
.contacto-list p { color: var(--ink); font-size: 17px; }
.contacto-list a { color: var(--ink); border-bottom: 1px solid var(--line-strong); transition: border-color 0.3s; }
.contacto-list a:hover { border-color: var(--green-light); }
.contacto-map { aspect-ratio: 4/5; overflow: hidden; }
.contacto-map img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.5) invert(0.05); }

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 40px;
  background:
    repeating-linear-gradient(135deg, rgba(157,137,114,0.03) 0 1px, transparent 1px 12px),
    radial-gradient(70% 120% at 50% 115%, rgba(60,111,99,0.08), transparent 65%),
    var(--bg-2);
  border-top: 1px solid transparent;
  border-image: var(--grad-brand) 1;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center;
}
.footer-brand img { height: 120px; width: auto; margin: 0 auto; opacity: 0.95; }
.footer-brand p {
  margin-top: 20px;
  font-family: var(--benton); font-style: italic;
  color: var(--ink-dim); font-size: 18px; letter-spacing: 0.01em;
}
.footer-meta {
  padding-top: 32px; border-top: 1px solid var(--line); width: 100%;
}
.footer-meta p { font-size: 14px; color: var(--ink-mute); letter-spacing: 0.1em; }
.footer-meta .small { margin-top: 6px; opacity: 0.6; }

/* ---------- Reveal Animations ---------- */
.reveal, .reveal-up, .reveal-text { opacity: 0; }
.reveal-image .image-mask { transform: scaleY(1); }

/* =========================================================
   NEON LAYER — ambient image glow, gold-neon button, lightbox
   ========================================================= */
:root {
  --neon-grad: linear-gradient(100deg, #8a5726 0%, #b77636 28%, #dc9b55 50%, #3c6f63 74%, #b77636 100%);
  --neon-soft: rgba(183, 118, 54, 0.35);
}

/* ---- Ambient "ambilight" glow behind imagery ---- */
.neon-host { position: relative; }
.neon-glow {
  position: absolute; inset: -9%;
  z-index: -1; border-radius: inherit;
  background-size: cover; background-position: center;
  filter: blur(34px) saturate(1.55) brightness(1.04);
  opacity: 0.32; transform: scale(1.01);
  transition: opacity 0.6s var(--ease), filter 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none; will-change: opacity, transform;
}
.neon-host:hover { z-index: 5; }
.neon-host:hover .neon-glow {
  opacity: 0.92;
  filter: blur(26px) saturate(2) brightness(1.18);
  transform: scale(1.07);
}

/* keep the photo crisply clipped while the glow bleeds outside */
.barber { overflow: visible; }
.barber-img { overflow: hidden; }
.collection { overflow: visible; }
.collection-img { overflow: hidden; }

/* gold neon ring that ignites on hover */
.barber::before, .collection::before {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border: 1px solid transparent; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(183,118,54,0);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.barber:hover::before, .collection:hover::before {
  border-color: rgba(183,118,54,0.55);
  box-shadow: 0 0 34px rgba(183,118,54,0.28), inset 0 0 24px rgba(183,118,54,0.12);
}

/* hero feature image (barberia) gets a soft glow too */
.reveal-image { box-shadow: 0 0 0 1px transparent; transition: box-shadow 0.6s var(--ease); }
.reveal-image:hover { box-shadow: 0 0 50px rgba(183,118,54,0.18); }

/* press cards neon hover */
.prensa-card { position: relative; }
.prensa-card:hover { box-shadow: 0 12px 40px rgba(183,118,54,0.22); }

/* ---- Botón principal clásico: cobre sólido como las letras de la fachada ---- */
.btn-neon {
  position: relative; isolation: isolate;
  background: var(--copper); color: #120d07;
  border: 1px solid var(--copper);
  font-weight: 500;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-neon-glow { display: none; }
.btn-neon-label { position: relative; }
.btn-neon-arrow {
  width: 15px; height: 15px; position: relative;
  transition: transform 0.4s var(--ease);
}
.btn-neon:hover {
  transform: translateY(-2px); background: #c98944; border-color: #c98944;
  box-shadow: 0 14px 34px rgba(183,118,54,0.35);
}
.btn-neon:hover .btn-neon-arrow { transform: translate(3px, -3px); }
.btn-neon:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

/* nav cta + mobile cta subtle neon on hover (inherit existing look) */
.nav-cta:hover { box-shadow: 0 0 24px rgba(183,118,54,0.3); }

/* clickable affordance on collections */
.collection { cursor: pointer; }

/* ---- Clientes · feed de Instagram (scroll vertical, pantalla completa) ---- */
.clientes-feed {
  position: relative;
  background:
    radial-gradient(60% 70% at 100% 40%, rgba(60,111,99,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.cf-pin { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.cf-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 90px var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(36px, 6vw, 96px);
}
.cf-intro { flex: 1 1 0; max-width: 440px; }
.cf-title { font-family: var(--benton); font-weight: 400; font-size: clamp(38px, 4.8vw, 72px); line-height: 1.02; letter-spacing: -0.01em; margin-top: 16px; }
.cf-intro .lead { margin-top: 22px; }
.cf-intro a { color: var(--copper); border-bottom: 1px solid var(--line-strong); transition: border-color 0.3s ease; }
.cf-intro a:hover { border-color: var(--copper); }
.cf-progress { display: flex; gap: 10px; margin-top: 42px; }
.cf-dot { width: 36px; height: 3px; border-radius: 2px; background: var(--line-strong); transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.45s var(--ease); }
.cf-dot.is-active { background: var(--grad-brand); box-shadow: 0 0 16px rgba(183,118,54,0.7); transform: scaleY(1.6); }
.cf-counter { margin-top: 20px; font-size: 13.5px; letter-spacing: 0.32em; color: var(--ink-dim); }
.cf-counter b { color: var(--copper); font-weight: 500; }

.cf-post {
  position: relative; flex: 0 0 auto;
  width: min(430px, 86vw); height: min(82vh, 780px);
  display: flex; flex-direction: column; isolation: isolate;
  background: var(--bg-3); border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cf-post:hover { border-color: rgba(183,118,54,0.5); box-shadow: 0 34px 90px rgba(0,0,0,0.55), 0 0 54px rgba(183,118,54,0.22); }
.cf-glow {
  position: absolute; inset: -10%; z-index: -1;
  background-size: cover; background-position: center;
  filter: blur(52px) saturate(1.7) brightness(1.05); opacity: 0.55;
  pointer-events: none;
}
.cf-media { position: relative; flex: 1 1 auto; overflow: hidden; background: var(--bg); }
.cf-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; will-change: opacity, transform;
  filter: grayscale(0.12) brightness(0.96);
}

/* shared Instagram post chrome (head / foot / actions) */
.ig-post-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; flex: 0 0 auto; }
.ig-ava { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: #000; border: 1px solid var(--copper); box-sizing: border-box; flex: 0 0 auto; }
.ig-handle { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.ig-handle strong { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.ig-handle span { font-size: 12px; color: var(--ink-dim); }
.ig-ig-mark { margin-left: auto; width: 20px; height: 20px; color: var(--ink-dim); flex: 0 0 auto; transition: color 0.4s ease; }
.cf-post:hover .ig-ig-mark { color: var(--copper); }
.ig-post-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; flex: 0 0 auto; }
.ig-actions { display: flex; align-items: center; gap: 16px; color: var(--ink); }
.ig-act { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink); }
.ig-actions svg { width: 22px; height: 22px; transition: color 0.4s ease, fill 0.4s ease, transform 0.4s var(--ease); }
.ig-send { margin-left: 2px; }
.cf-post:hover .ig-heart { color: var(--copper); fill: var(--copper); transform: scale(1.12); }
.ig-cta { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); white-space: nowrap; }

.cf-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-mute);
}
.cf-cue span { display: block; width: 1px; height: 38px; background: linear-gradient(180deg, transparent, var(--copper), transparent); animation: cf-cue 2.4s ease-in-out infinite; }
@keyframes cf-cue { 0%,100% { transform: scaleY(1); opacity: 0.4; } 50% { transform: scaleY(1.5); opacity: 1; } }

@media (max-width: 820px) {
  .cf-inner { flex-direction: column; gap: 22px; padding: 92px var(--pad) 54px; }
  .cf-intro { max-width: 560px; text-align: center; flex: 0 0 auto; }
  .cf-title { font-size: clamp(30px, 8vw, 46px); }
  .cf-intro .lead { display: none; }
  .cf-progress { justify-content: center; margin-top: 24px; }
  .cf-counter { margin-top: 12px; }
  .cf-post { width: min(360px, 84vw); height: min(58vh, 560px); }
  .cf-cue { display: none; }
}

/* Modo estático (mobile): sin pin de scroll — las 4 fotos en grilla */
.clientes-feed.cf-static .cf-pin { min-height: 0; display: block; }
.clientes-feed.cf-static .cf-inner { padding: 72px var(--pad) 56px; }
.clientes-feed.cf-static .cf-post { width: min(480px, 90vw); height: auto; }
.clientes-feed.cf-static .cf-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 0 12px; flex: 0 0 auto; overflow: visible; background: none;
}
.clientes-feed.cf-static .cf-photo {
  position: static; width: 100%; height: auto; aspect-ratio: 4/5;
  opacity: 1 !important; transform: none !important;
}
.clientes-feed.cf-static .cf-progress,
.clientes-feed.cf-static .cf-counter,
.clientes-feed.cf-static .cf-cue { display: none; }

/* ---- Image fallback (neon placeholder if a photo fails) ---- */
.img-failed { background: linear-gradient(135deg, #131a15, #1a251e 55%, #22302a); position: relative; }
.img-failed img { opacity: 0; }
.img-failed::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(220,155,85,0.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(60,111,99,0.2), transparent 50%);
}

/* ---- Lightbox (stateful gallery) ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 3vw, 40px); padding: clamp(16px, 5vw, 64px);
  background: rgba(5, 8, 7, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  position: relative; max-width: min(1000px, 90vw); display: flex; flex-direction: column; align-items: center;
  transform: scale(0.96); transition: transform 0.5s var(--ease);
}
.lightbox.open .lightbox-stage { transform: scale(1); }
.lightbox-glow {
  position: absolute; inset: -6%; z-index: -1;
  background-size: cover; background-position: center;
  filter: blur(60px) saturate(1.7) brightness(1.05); opacity: 0.7;
}
.lightbox-stage img {
  max-width: 100%; max-height: 76vh; object-fit: contain;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 60px rgba(183,118,54,0.18);
}
.lightbox-caption {
  display: flex; align-items: baseline; gap: 16px; margin-top: 22px;
}
.lightbox-index { font-size: 11px; letter-spacing: 0.3em; color: var(--copper); }
.lightbox-title { font-family: var(--benton); font-style: italic; font-size: clamp(20px, 2.6vw, 32px); color: var(--ink); }
.lightbox-nav, .lightbox-close {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex: 0 0 auto;
  border: 1px solid var(--line); color: var(--ink-dim);
  background: rgba(14,20,17,0.6); cursor: pointer; border-radius: 50%;
  transition: all 0.35s var(--ease);
}
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }
.lightbox-nav:hover, .lightbox-close:hover {
  color: var(--bg); background: var(--copper); border-color: var(--copper);
  box-shadow: 0 0 28px rgba(183,118,54,0.45);
}
.lightbox-close { position: absolute; top: clamp(16px, 4vw, 36px); right: clamp(16px, 4vw, 36px); }
@media (max-width: 700px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-stage img { max-height: 64vh; }
}

::selection { background: var(--copper); color: var(--bg); }

/* ---- Nav Gift Card link ---- */
.nav-gift { color: var(--copper); white-space: nowrap; }
.nav-gift::after { background: var(--copper); }

/* ---- Floating "Regalá una Experiencia" gift card ---- */
.gift-fab {
  position: fixed; left: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px);
  z-index: 1200;
  display: flex; align-items: center; gap: 14px;
  padding: 13px 20px 13px 14px;
  background: linear-gradient(135deg, #101713, #182219);
  border: 1px solid rgba(183,118,54,0.45);
  border-radius: 14px; isolation: isolate; overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  opacity: 0;
  animation: gift-fab-in 0.7s var(--ease) 1.3s forwards;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
@keyframes gift-fab-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.gift-fab:hover { transform: translateY(-4px); border-color: var(--copper); box-shadow: 0 22px 54px rgba(0,0,0,0.55), 0 0 40px rgba(183,118,54,0.3); }
.gift-fab-glow { display: none; }
.gift-fab-ic {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 10px;
  border: 1px solid rgba(183,118,54,0.4); color: var(--copper);
}
.gift-fab-ic svg { width: 22px; height: 22px; }
.gift-fab-text { display: flex; flex-direction: column; line-height: 1.22; }
.gift-fab-kicker { font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); }
.gift-fab-title { font-family: var(--display); font-size: 14px; letter-spacing: 0.06em; color: var(--ink); }
@media (max-width: 600px) {
  .gift-fab { padding: 11px 15px 11px 11px; gap: 10px; left: 12px; bottom: 12px; }
  .gift-fab-title { font-size: 15px; }
  .gift-fab-ic { width: 36px; height: 36px; }
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); }
::-webkit-scrollbar-thumb:hover { background: var(--copper-2); }

/* ---------- Pop-up de barbero (especialidad) ---------- */
.barber-click { cursor: pointer; }
.barber-esp-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px;
  font-family: var(--display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: rgba(9, 13, 11, 0.72);
  border: 1px solid rgba(183, 118, 54, 0.5); border-radius: 2px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.bm-overlay {
  position: fixed; inset: 0; z-index: 2100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(5, 8, 7, 0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.bm-overlay.open { opacity: 1; visibility: visible; }
.bm-card {
  position: relative;
  display: grid; grid-template-columns: 320px 1fr;
  width: min(760px, 100%); max-height: 86vh; overflow: hidden;
  background: linear-gradient(165deg, #17221c 0%, #0e1410 100%);
  border: 1px solid var(--line-strong); border-radius: 3px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.45s var(--ease);
}
.bm-overlay.open .bm-card { transform: translateY(0) scale(1); }
.bm-img { position: relative; min-height: 340px; }
/* Ancla el recorte arriba: las caras están en el tercio superior de las fotos */
.bm-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.bm-body { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 10px; }
.bm-rol {
  font-family: var(--display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim);
}
.bm-nombre { font-family: var(--benton); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05; color: var(--ink); }
.bm-esp {
  font-family: var(--benton); font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px); color: var(--copper);
}
.bm-bio { color: var(--ink-dim); font-size: 15.5px; line-height: 1.7; }
.bm-cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  font-family: var(--display); font-weight: 300;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--copper); color: #120d07;
  transition: background 0.35s ease, transform 0.35s var(--ease);
}
.bm-cta:hover { background: #c98944; transform: translateY(-2px); }
.bm-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--ink);
  background: rgba(9, 13, 11, 0.6); border: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.bm-close:hover { background: var(--copper); border-color: var(--copper); color: #120d07; }
@media (max-width: 680px) {
  .bm-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .bm-img { min-height: 300px; }
  .bm-cta { align-self: stretch; justify-content: center; margin-top: 8px; }
}

/* ---------- Música ambiente ---------- */
.music-fab {
  position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px);
  z-index: 1200;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 20, 17, 0.75);
  border: 1px solid rgba(183, 118, 54, 0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  cursor: pointer; opacity: 0;
  animation: gift-fab-in 0.7s var(--ease) 1.6s forwards;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.music-fab:hover {
  transform: translateY(-3px); border-color: var(--copper);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(183, 118, 54, 0.25);
}
.music-bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.music-bars i {
  width: 2px; height: 4px; border-radius: 1px;
  background: var(--copper);
  transition: height 0.35s var(--ease);
}
.music-fab.playing .music-bars i { animation: eq-bar 1.1s ease-in-out infinite; }
.music-fab.playing .music-bars i:nth-child(1) { animation-delay: 0s; }
.music-fab.playing .music-bars i:nth-child(2) { animation-delay: 0.25s; }
.music-fab.playing .music-bars i:nth-child(3) { animation-delay: 0.5s; }
.music-fab.playing .music-bars i:nth-child(4) { animation-delay: 0.12s; }
@keyframes eq-bar {
  0%, 100% { height: 5px; }
  35% { height: 18px; }
  70% { height: 9px; }
}
@media (max-width: 600px) {
  .music-fab { width: 46px; height: 46px; right: 12px; bottom: 12px; }
}

/* ---------- Booksy: ocultar el botón flotante default del widget
   (el modal se dispara desde nuestro botón #reservaBooksy) ---------- */
.booksy-widget-button { display: none !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
