
/* =====================================================
   ABOUT US PAGE – about.css
   Order matches about-us.html top → bottom
===================================================== */

/* =====================================================
   PAGE HEADING (Hero)
===================================================== */
.page-heading.about-hero {
  position: relative;
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  overflow: hidden;
  background: #000; /* fallback while image loads */
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Keep the same dark overlay look */
.page-heading.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Keep text above image + overlay */
.page-heading.about-hero .page-heading-inner {
  position: relative;
  z-index: 2;
}


.page-heading-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.page-heading h1 {
  margin-bottom: 1rem;
}

.page-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.2rem;
  opacity: 0.95;
}

.page-subtle {
  font-size: 0.9rem;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .page-heading.about-hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .page-intro {
    font-size: 1rem;
  }
}

/* =====================================================
   ABOUT INTRO
===================================================== */
.about-intro {
  padding: 4.5rem 1.5rem;
  background: var(--bg-page);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem;
  align-items: center;
}

.about-intro-text h2 {
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.about-highlight {
  margin-top: 1.25rem;
  font-weight: 600;
}

/* Trust panel */
.about-intro-trust {
  background: var(--bg-card);
  border-bottom: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.trust-list li:last-child {
  margin-bottom: 0;
}

.trust-icon {
  color: var(--brand-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-intro-trust {
    text-align: center;
  }

  .trust-list li {
    justify-content: center;
  }
}

/* =====================================================
   WHAT SETS US APART (Features)
===================================================== */
.about-features {
  padding: 4rem 1.5rem;
  background: var(--bg-section-dark);
}

.about-features h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.about-features-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-feature {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid whitesmoke;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.feature-icon {
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-feature p {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .about-feature {
    padding: 1.75rem 1.5rem;
  }
}

/* =====================================================
   OWNERS
===================================================== */
.about-owners {
  padding: 4rem 1.5rem;
  background: var(--bg-section);
}

.about-owners-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.owners-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  display: block;
}

.owners-content h2 {
  margin-bottom: 0.5rem;
}

.owners-names {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.owners-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .about-owners-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owners-image img {
    margin: 0 auto;
  }
}

/* =====================================================
   MISSION, VISION & IMPACT (Purpose)
===================================================== */
.about-purpose {
  padding: 4.5rem 1.5rem;
  background: var(--bg-section);
}

.about-purpose h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.about-purpose-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
  opacity: 0.9;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.purpose-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid whitesmoke;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 14px 35px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.purpose-icon {
  display: inline-block;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.purpose-card h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.purpose-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.purpose-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .purpose-card {
    padding: 2rem 1.5rem;
  }
}

/* =====================================================
   FINAL CTA
===================================================== */
.about-cta {
  background:
    linear-gradient(var(--overlay-cta), var(--overlay-cta)),
    url("../images/cta-bg.png") center / cover no-repeat;
  padding: 120px 30px;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 0.75rem;
}

.about-cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.about-cta .cta {
  display: inline-flex;
}
