/* ================================================================
   Built To Rise — About Page Styles
   ================================================================ */

/* ── HERO ───────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 5rem;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.18);
  transition: transform 8s ease-out;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 55% at center,
      rgba(20, 6, 38, 0.58) 0%,
      rgba(20, 6, 38, 0.18) 60%,
      rgba(20, 6, 38, 0) 100%
    ),
    linear-gradient(
      160deg,
      rgba(27, 8, 50, 0.72) 0%,
      rgba(61, 26, 94, 0.52) 55%,
      rgba(27, 8, 50, 0.68) 100%
    );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.eyebrow--light {
  color: var(--gold-light);
}

.about-hero-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.about-hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* ── ORIGIN STORY ───────────────────────────────────────────────── */
.about-origin {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--cream);
}

.about-origin-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-origin-text h2 {
  margin-bottom: 1.5rem;
}

.about-origin-text p {
  color: var(--text-body);
  margin-bottom: 1.125rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-origin-text p:last-child { margin-bottom: 0; }

.about-origin-photo {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}

.about-origin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease-out;
}

.about-origin-photo:hover img { transform: scale(1.04); }

/* ── FOUNDER QUOTE ──────────────────────────────────────────────── */
.about-founder {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  overflow: hidden;
}

.about-founder-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}

.about-founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 8, 50, 0.88) 0%,
    rgba(61, 26, 94, 0.78) 100%
  );
}

.about-founder-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.founder-quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  user-select: none;
}

.founder-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.founder-cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ── MISSION + VISION ───────────────────────────────────────────── */
.about-mv {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--cream-warm);
}

.about-mv-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-mv-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-mv-header h2 { margin-bottom: 0; }

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background: var(--white);
  border-radius: 2px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.mv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-warm) 100%);
}

.mv-card-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mv-card-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: none;
}

/* ── FOUR PILLARS ───────────────────────────────────────────────── */
.about-pillars {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--purple);
}

.about-pillars-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-pillars-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-pillars-header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-pillars-intro {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  max-width: 54ch;
  margin-inline: auto;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  position: relative;
}

.about-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-warm) 100%);
}

.about-pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-pillar-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.about-pillar p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.68;
  max-width: none;
}

/* ── FAITH STATEMENT ────────────────────────────────────────────── */
.about-faith {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--cream);
}

.about-faith-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.about-faith-title {
  margin-bottom: 0.5rem;
}

.about-faith-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.4375rem);
  color: var(--gold);
  margin-bottom: 2rem;
  max-width: none;
}

.about-faith-body {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.about-scripture {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  text-align: left;
  background: var(--cream-warm);
}

.about-scripture p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-head);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: none;
}

.about-scripture cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.about-cta {
  background: var(--purple);
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad-x);
}

.about-cta-inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.about-cta-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}

.about-cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.72;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .about-hero {
    min-height: 0;
    align-items: flex-start;
    background: var(--purple);
    padding-top: calc(var(--nav-h) + 46vw + 2rem);
    padding-bottom: 3.5rem;
  }
  .about-hero-bg {
    background-image: url('../pexels-pnw-prod-8377282-mobile.jpg') !important;
    background-size: 100% auto;
    background-position: center var(--nav-h);
    background-repeat: no-repeat;
    transform: none;
    transition: none;
  }
  .about-hero-overlay {
    inset: auto;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: 46vw;
    background: linear-gradient(
      to bottom,
      rgba(20, 6, 38, 0.08) 0%,
      rgba(20, 6, 38, 0.22) 70%,
      var(--purple) 100%
    );
  }
}

@media (max-width: 900px) {
  .about-origin-inner {
    grid-template-columns: 1fr;
  }
  .about-origin-photo {
    aspect-ratio: 16/9;
    order: -1;
  }
  .about-mv-grid {
    grid-template-columns: 1fr;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
