/* ============================================================
   LUMIÈRE SALON — ABOUT PAGE STYLES
   about.css
   ============================================================ */

/* ─── About Hero Banner ──────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 160px 0 100px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,7,0.75) 0%,
    rgba(8,8,7,0.88) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-content .section-label {
  color: var(--gold);
}

.about-hero-content .section-heading {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 16px;
}

.about-hero-content .section-heading::after {
  margin: 18px auto 0;
  background: var(--gold);
}

.about-hero-sub {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Our Story Section ──────────────────────────────────────── */
.story-section {
  padding: 120px 0;
  background: var(--bg);
}

.story-text .section-heading {
  color: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.story-image-wrap {
  position: relative;
}

.story-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.story-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(199,167,108,0.4);
}

.story-badge-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.story-badge-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.story-text .section-heading {
  font-size: 44px;
  margin-bottom: 28px;
}

.story-para {
  font-size: 16px;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 20px;
}

.story-para:last-of-type {
  margin-bottom: 0;
}

/* ─── Stats Section ──────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: all 0.4s ease;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ─── Team Section ───────────────────────────────────────────── */
.team-section {
  padding: 120px 0;
  background: var(--bg);
}

.team-section .section-heading {
  color: var(--cream);
}

.team-section .section-subtext {
  color: var(--cream-dim);
}

.team-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-card-body {
  padding: 24px 20px 28px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.team-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-specialty {
  font-size: 14px;
  color: var(--cream-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

.team-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  transition: var(--transition);
  padding: 10px 22px;
  border: 2px solid rgba(199,167,108,0.4);
  border-radius: 999px;
}

.team-book-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ─── Values Section ─────────────────────────────────────────── */
.values-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.values-section .section-heading {
  color: var(--cream);
}

.values-section .section-subtext {
  color: var(--cream-dim);
}

.values-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-block {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: all 0.4s ease;
}

.value-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(199,167,108,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  transition: var(--transition);
  color: var(--gold);
}

.value-block:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--bg);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.value-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
}

/* ─── About CTA ─────────────────────────────────────────────── */
.about-cta {
  padding: 100px 0;
  background: #080807;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(199,167,108,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.about-cta .section-heading {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-cta .section-heading::after {
  margin: 16px auto 0;
}

.about-cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-content .section-heading {
    font-size: 42px;
  }

  .story-section {
    padding: 80px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-img {
    height: 380px;
  }

  .story-image-badge {
    right: 16px;
    bottom: -16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-section,
  .values-section {
    padding: 80px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .about-hero-content .section-heading {
    font-size: 34px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta .section-heading {
    font-size: 32px;
  }

  .about-cta-btns {
    flex-direction: column;
  }
}
