/* ============================================================
   DobleB.es — Barber CSS
   Estética: razor cut, masculina, geométrica, oscura
   ============================================================ */

/* Hero Barber */
.barber-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0f0c06 100%);
}

.barber-hero .hero-bg img {
  filter: contrast(1.1) brightness(0.8);
}

/* Línea de corte — efecto animado signature Barber */
.razor-line {
  position: absolute;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
  width: 0;
  animation: razor-draw 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes razor-draw {
  to { width: 100%; }
}

/* Patrón diagonal Barber */
.barber-pattern {
  position: relative;
}
.barber-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(201, 168, 76, 0.03) 30px,
    rgba(201, 168, 76, 0.03) 31px
  );
  pointer-events: none;
}

/* Número de servicio decorativo */
.service-number {
  font-family: var(--f-accent);
  font-size: 5rem;
  font-style: italic;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 0;
  right: 1rem;
  user-select: none;
  pointer-events: none;
}

/* Bloque de servicio Barber — estilo tabla de precios */
.barber-service-block {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.barber-service-header {
  background: var(--c-dark);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.barber-service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}

/* Tag Barber */
.barber-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3em 0.9em;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.barber-tag::before {
  content: '✦';
  font-size: 0.5rem;
}

/* Split intro Barber */
.barber-intro-split {
  display: grid;
  min-height: 70vh;
}
@media (min-width: 768px) {
  .barber-intro-split {
    grid-template-columns: 40% 60%;
  }
}

.barber-intro-image {
  position: relative;
  overflow: hidden;
}
.barber-intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
  filter: saturate(0.9) contrast(1.05);
}
.barber-intro-image::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(to right, transparent, var(--c-black));
  pointer-events: none;
}

.barber-intro-content {
  max-width: 700px;
}

/* Stat / número destacado */
.barber-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.barber-stat-number {
  font-family: var(--f-accent);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1;
}
.barber-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gray-light);
}

/* Reveal animación Barber — "corte" */
.barber-cut-reveal {
  position: relative;
  overflow: hidden;
}
.barber-cut-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-black);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.barber-cut-reveal.revealed::after {
  transform: scaleX(0);
}

/* Equipo Barber — efecto grayscale específico */
.team-photo-wrap img { filter: grayscale(15%); }
.team-card:hover .team-photo-wrap img { filter: grayscale(0); }
@media (max-width: 640px) {
  .barber-schedule { padding: var(--sp-md); }
}

/* Geometric accent lines */
.barber-accent-v {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
}
.barber-accent-h {
  height: 1px;
  background: linear-gradient(to right, var(--c-gold), transparent);
  width: 100%;
  margin-block: var(--sp-xl);
}

/* Sección horarios Barber */
.barber-schedule {
  background: var(--c-dark);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  position: relative;
  overflow: hidden;
}
.barber-schedule::before {
  content: 'B';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--f-accent);
  font-size: 8rem;
  font-style: italic;
  color: rgba(201,168,76,0.04);
  user-select: none;
}

/* Cita/quote section */
.barber-quote {
  font-family: var(--f-accent);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--c-white);
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
  position: relative;
  background: radial-gradient(ellipse at center, #1c1508 0%, #0a0a0a 70%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.barber-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  color: rgba(201,168,76,0.1);
  font-family: var(--f-accent);
  line-height: 1;
  user-select: none;
}
.barber-quote-author {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: var(--sp-lg);
  font-style: normal;
  font-family: var(--f-body);
}
