/* ==========================================================================
   Barbería de San Pedro — Page-Specific Styles
   ========================================================================== */

/* ── Hero Indicators ── */
.hero-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  animation: heroTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-badge);
  color: var(--color-warm-white-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.hero-indicator svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

/* ── Story Section Highlights ── */
.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.story-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 164, 93, 0.08);
  border: 1px solid rgba(200, 164, 93, 0.15);
  border-radius: 100px;
  font-size: var(--fs-badge);
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}

.story-highlight svg {
  width: 12px;
  height: 12px;
  fill: var(--color-gold);
}

/* ── Experience Section ── */
.experience-section {
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Brands Section ── */
.brands-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo img {
  max-width: 200px;
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .brands-showcase {
    gap: var(--space-xl);
  }
  .brand-logo img {
    max-width: 140px;
    max-height: 60px;
  }
}

/* ── Team Section ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Locations Grid ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

/* ── Schedule Section ── */
.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.schedule-note {
  padding: var(--space-md);
  background: rgba(200, 164, 93, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: var(--fs-small);
  color: var(--color-warm-white-dim);
  margin-top: var(--space-lg);
}

@media (max-width: 767px) {
  .schedule-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ── Services Page ── */
.services-hero {
  padding: 160px 0 var(--space-xl);
  text-align: center;
  background: linear-gradient(180deg, var(--color-carbon) 0%, var(--color-black) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Hero indicators responsive ── */
@media (max-width: 767px) {
  .hero-indicators {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

/* ── Confirmation toast ── */
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--color-card);
  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-warm-white);
  font-size: var(--fs-small);
  z-index: var(--z-modal);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}