/* ============================================================
   ABOUT PAGE — Eximium Design System
   Uses variables & classes from landing/style.css
   ============================================================ */

/* ==================== ABOUT HERO ==================== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  text-align: center;
}
.about-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.about-hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.08);
  top: -10%;
  right: -5%;
}
.about-hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.06);
  bottom: -15%;
  left: -5%;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeUp 0.8s ease both;
}
.about-hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.about-hero-title .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ==================== LEADERSHIP ==================== */
.leadership-section {
  padding: 6rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.leader-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.leader-row:last-of-type {
  border-bottom: none;
}
.leader-row-reverse {
  direction: rtl;
}
.leader-row-reverse > * {
  direction: ltr;
}

.leader-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--gold-muted);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1rem;
}
.leader-name {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.leader-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.leader-image-wrap {
  position: relative;
}
.leader-image-accent {
  display: none;
}
.leader-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.leader-image {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-50);
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.18), 0 0 0 12px rgba(201, 168, 76, 0.07);
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.leader-row:hover .leader-image img {
  transform: scale(1.05);
}

/* ==================== MISSION & VISION ==================== */
.mv-section {
  position: relative;
  background: var(--navy);
  padding: 6rem 2rem;
  overflow: hidden;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.mv-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.mv-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-card:hover .mv-card-bg {
  transform: scale(1.06);
}
.mv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.6) 40%,
    rgba(10, 22, 40, 0.3) 100%
  );
  z-index: 1;
}
.mv-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}
.mv-card-label {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.mv-card-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: #fff;
  margin: 0 0 0.75rem;
  font-weight: 400;
}
.mv-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ==================== CORE VALUES ==================== */
.values-section {
  padding: 6rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.value-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card:hover .value-card-bg {
  transform: scale(1.06);
}
.value-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.65) 45%,
    rgba(10, 22, 40, 0.25) 100%
  );
  z-index: 1;
}
.value-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.value-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.6rem;
  font-weight: 400;
}
.value-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

/* ==================== CTA BUTTONS ==================== */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
}
.cta-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .leader-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .leader-row-reverse {
    direction: ltr;
  }
  .leader-image-wrap {
    margin: 0 auto;
  }
  .leader-image {
    width: 260px;
    height: 260px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 55vh;
    padding: 7rem 1.5rem 3.5rem;
  }
  .about-hero-title {
    font-size: 2rem;
  }
  .leadership-section {
    padding: 3.5rem 1.5rem;
  }
  .leader-row {
    padding: 2rem 0;
  }
  .mv-section {
    padding: 3.5rem 1.5rem;
  }
  .mv-card {
    min-height: 300px;
  }
  .values-section {
    padding: 3.5rem 1.5rem;
  }
  .value-card {
    min-height: 340px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.7rem;
  }
  .about-hero-desc {
    font-size: 0.9rem;
  }
  .leader-name {
    font-size: 1.5rem;
  }
  .leader-bio {
    font-size: 0.88rem;
  }
  .leader-image {
    width: 200px;
    height: 200px;
  }
  .mv-card-content {
    padding: 1.5rem;
  }
  .value-card-content {
    padding: 1.5rem;
  }
}
