/* =========================================================
   ABOUT PAGE — FINAL CSS
   SCOPE: .page-about ONLY
========================================================= */

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.page-about .hero-about {
  position: relative;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.15)
    ),
    url("/assets/images/about-us.jpg") center center / min(1400px, 100%) auto no-repeat;
  background-color: #0f1e2b;
  min-height: 520px;
  padding: 6rem 0;
}

.page-about .hero-about .hero-inner {
  position: relative;
  z-index: 2;
}

.page-about .hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.12),
    rgba(0,0,0,0)
  );
  padding: 2.25rem 2rem 2.25rem 0;
  border-radius: 4px;
}

.page-about .hero-about .eyebrow {
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.page-about .hero-about h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
}

.page-about .hero-about h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #d4b36a, #f1d58a);
  border-radius: 2px;
}

.page-about .hero-subhead {
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   SECTION SPACING — ABOUT ONLY
--------------------------------------------------------- */

.page-about .section {
  padding: 3.5rem 0;
}

.page-about .section-muted {
  padding: 3.25rem 0;
}

.page-about .section:last-of-type {
  padding: 3rem 0;
}

.page-about .section-head {
  display: flex;
  flex-direction: column;
  row-gap: 0.85rem;
}

/* ---------------------------------------------------------
   WHO WE SERVE — BULLET REFINEMENT (LEFT-ALIGNED)
--------------------------------------------------------- */

.page-about .resource-links {
  list-style: disc;
  padding-left: 1.4rem;          /* pulls list closer to paragraph */
  margin-top: 0.75rem;           /* tighter connection to intro text */
  max-width: 760px;
}

.page-about .resource-links li {
  line-height: 1.55;
  margin-bottom: 0.6rem;         /* tighter vertical rhythm */
}

.page-about .resource-links li:last-child {
  margin-bottom: 0;
}

/* Gold bullets — subtle, not dominant */
.page-about .resource-links li::marker {
  color: var(--gold);
  font-size: 0.85em;             /* softer visual weight */
}

/* ---------------------------------------------------------
   CTA — FORCE BRAND GOLD (DESKTOP + MOBILE)
--------------------------------------------------------- */

.page-about .site-header .btn-primary,
.page-about .site-main .btn-primary {
  background-color: var(--gold) !important;
  background-image: none !important;
  border-color: var(--gold) !important;
  color: #0b1220 !important;
}

.page-about .site-header .btn-primary:hover,
.page-about .site-main .btn-primary:hover,
.page-about .site-header .btn-primary:focus,
.page-about .site-main .btn-primary:focus {
  background-color: var(--gold) !important;
  background-image: none !important;
  border-color: var(--gold) !important;
  opacity: 0.92;
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 768px) {
  .page-about .hero-about {
    padding: 4rem 0;
    min-height: 440px;
  }

  .page-about .hero-content {
    padding: 1.5rem;
    background: rgba(0,0,0,0.42);
  }

  .page-about .resource-links {
    padding-left: 1.25rem;
  }
}
