/* ==================================================
   PHEONIX — ABOUT PAGE
================================================== */

.pheonix-about {
  background: #ffffff;
  color: #0f172a;
}

/* =================================
   HERO
================================= */

.about-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 50px 24px;
  text-align: center;

  background:
    linear-gradient(
      rgba(15,23,42,0.85),
      rgba(15,23,42,0.90)
    );
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff;
}

.about-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.75);
}

.about-hero h1 {
  font-size: 54px;
  font-family: "Playfair Display", Georgia, serif;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* =================================
   SECTION BASE
================================= */

.about-section {
  padding: 24px 24px;
}

.about-light {
  background: #f8fafc;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 38px;
  margin-bottom: 28px;
  font-family: "Playfair Display", Georgia, serif;
}

.about-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  max-width: 760px;
}

/* =================================
   GRID
================================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}

.about-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.06);
  transition: all 0.25s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

  .about-hero {
    padding: 80px 20px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-section {
    padding: 60px 20px;
  }

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

}
