/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ABOUT PAGE SPECIFIC STYLES (QUIET LUXURY REDESIGN)
   ========================================================================== */

.page-hero {
  background: 
    linear-gradient(180deg, rgba(7, 8, 10, 0.9) 0%, rgba(12, 14, 18, 0.95) 100%),
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  color: #ffffff;
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}

.page-hero-title {
  color: #ffffff;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.page-hero-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #c5cbd6;
  font-size: 1.05rem;
}

/* Editorial Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-image-primary {
  width: 90%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: 12px;
  background: var(--navy);
  background: var(--obsidian);
  color: #ffffff;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: var(--shadow-xl);
  max-width: 220px;
}

.about-image-badge .badge-stat {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 700;
  color: var(--bronze-light);
  font-weight: 600;
  line-height: 1;
}

/* Values Grid */
.value-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
  height: 100%;
  border-top: 2px solid var(--bronze);
  transition: all var(--transition-base);
}

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

.value-icon {
  font-size: 1.8rem;
  color: var(--gold);
  font-size: 1.6rem;
  color: var(--bronze-dark);
  margin-bottom: var(--space-4);
}

/* Leadership Team Grid */
.team-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.35);
}

.team-media {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-media img {
  transform: scale(1.04);
}

.team-info {
  padding: var(--space-5);
  text-align: center;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-weight: 600;
  margin-bottom: 3px;
}

.team-designation {
  font-size: 0.82rem;
  color: var(--gold);
  font-size: 0.74rem;
  color: var(--bronze-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-image-primary {
    width: 100%;
    height: 360px;
  }
}