/* about-us.css — Page-specific styles for about-us.html
   Extends inner-pages.css. Do not redefine base variables or
   shared components already in home.css / inner-pages.css.
   ─────────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   ABOUT HERO — full-bleed cinematic opening
   ══════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: clamp(560px, 82vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.58) brightness(0.38);
  animation: aboutKenBurns 20s ease-in-out infinite alternate;
}

@keyframes aboutKenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1.5%, 1.2%); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 60%, rgba(200,169,138,0.06) 0%, transparent 55%),
    linear-gradient(170deg,
      rgba(7,5,3,0.52) 0%,
      rgba(7,5,3,0.36) 40%,
      rgba(7,5,3,0.78) 100%
    );
}

.about-hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(96px, 14vw, 160px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.about-hero-eyebrow {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c8a98a;
}

.about-hero-headline {
  margin: 0 0 22px;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #fff;
  text-wrap: balance;
  max-width: 14ch;
}

.about-hero-sub {
  margin: 0 0 38px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.74;
  color: rgba(255,255,255,0.66);
  max-width: 50ch;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-hero-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.about-hero-ghost-link:hover { color: rgba(255,255,255,0.9); }

.about-hero-ghost-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.about-hero-ghost-link:hover svg { transform: translateY(3px); }

/* Frosted stat bar at the bottom of the hero */
.about-hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.07);

  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.09);
}

.about-hero-stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 26px 0;
  gap: 0;
}

.about-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 24px;
}

.about-hero-stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(0.96rem, 1.4vw, 1.22rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.about-hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(200,169,138,0.76);
  letter-spacing: 0.04em;
  text-align: center;
}

.about-hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   PROBLEM SECTION — side-by-side comparison
   ══════════════════════════════════════════════════════════════ */
.about-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-problem-copy .eyebrow { margin-bottom: 14px; }
.about-problem-copy h2       { margin: 0 0 18px; }
.about-problem-copy p + p    { margin-top: 14px; }

.about-compare-stack {
  display: grid;
  gap: 14px;
}

.about-compare-card {
  border-radius: 18px;
  padding: 22px 24px 20px;
}

.about-compare-card.others {
  background: rgba(40,31,25,0.04);
  border: 1px solid rgba(40,31,25,0.11);
}

.about-compare-card.ours {
  background: linear-gradient(135deg,
    rgba(74,107,82,0.09) 0%,
    rgba(74,107,82,0.03) 100%);
  border: 1px solid rgba(74,107,82,0.26);
  box-shadow: 0 4px 14px rgba(74,107,82,0.07);
}

.about-compare-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-compare-card.others .about-compare-label { color: #967b68; }
.about-compare-card.ours   .about-compare-label { color: rgba(62,107,72,0.9); }

.about-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.about-compare-card li {
  font-size: 0.9rem;
  line-height: 1.52;
  padding-left: 22px;
  position: relative;
  color: #4a3e35;
}

.about-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1.5px;
  background: rgba(80,60,48,0.4);
}

.about-compare-card.ours li            { color: #2a3e2e; }
.about-compare-card.ours li::before   {
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(74,107,82,0.64);
}


/* ══════════════════════════════════════════════════════════════
   MISSION SPLIT — photo left, copy right
   ══════════════════════════════════════════════════════════════ */
.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: center;
}

.about-mission-photo-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.6) inset,
    0 36px 80px rgba(14,10,6,0.26),
    0 10px 24px rgba(14,10,6,0.12);
}

.about-mission-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.8) brightness(0.86);
  transition: transform 8s ease;
}

.about-mission-photo-wrap:hover img {
  transform: scale(1.03);
}

.about-mission-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top,
    rgba(7,5,3,0.82) 0%,
    rgba(7,5,3,0.0) 100%);
}

.about-mission-photo-caption p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.about-mission-copy .eyebrow { margin-bottom: 14px; }
.about-mission-copy h2     { margin: 0 0 16px; }
.about-mission-copy p + p  { margin-top: 14px; }
.about-mission-copy em     {
  font-style: italic;
  color: #1a100a;
  font-weight: 500;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #2a1c12;
  text-decoration: none;
  border-bottom: 1.5px solid #c8a98a;
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}

.about-link:hover {
  color: #9f836c;
  border-color: transparent;
}


/* ══════════════════════════════════════════════════════════════
   FOUR PILLARS — 2×2 icon cards
   ══════════════════════════════════════════════════════════════ */
.about-pillar-card {
  background: rgba(255,255,255,0.94);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(40,31,25,0.08);
  border-radius: 18px;
  padding: 32px 34px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.72) inset,
    0 14px 36px rgba(22,14,9,0.09),
    0 3px 8px rgba(22,14,9,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.72) inset,
    0 24px 56px rgba(14,10,6,0.14),
    0 6px 14px rgba(14,10,6,0.06);
  border-color: rgba(200,169,138,0.34);
}

.about-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #f0e4d4, #e8d5be);
  border: 1.5px solid rgba(200,169,138,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(159,131,108,0.14);
  transition: transform 0.25s ease;
}

.about-pillar-card:hover .about-pillar-icon {
  transform: scale(1.08);
}

.about-pillar-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #9f836c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillar-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.about-pillar-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.66;
  color: #6b5d51;
}


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — 3-step cards with photos
   ══════════════════════════════════════════════════════════════ */
.about-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.about-step {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40,31,25,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.72) inset,
    0 14px 36px rgba(22,14,9,0.09),
    0 3px 8px rgba(22,14,9,0.05);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

.about-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.72) inset,
    0 24px 52px rgba(14,10,6,0.15),
    0 6px 14px rgba(14,10,6,0.07);
  border-color: rgba(200,169,138,0.34);
}

.about-step-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.about-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.76) brightness(0.82);
  transition: transform 0.55s ease;
}

.about-step:hover .about-step-photo img {
  transform: scale(1.05);
}

.about-step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c1108, #3c2618);
  color: #c8a98a;
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(22,14,9,0.28);
  z-index: 1;
}

.about-step-body {
  padding: 22px 24px 26px;
}

.about-step-body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #1a100a;
}

.about-step-body p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.66;
  color: #6b5d51;
}


/* ══════════════════════════════════════════════════════════════
   MEMBER VOICES — quote cards with profile photos
   ══════════════════════════════════════════════════════════════ */
.about-quote-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-quote-profile img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
  filter: saturate(0.82);
  border: 2px solid rgba(200,169,138,0.3);
}

.about-quote-profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-quote-profile-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #281f19;
  display: block;
}

.about-quote-profile-meta {
  font-size: 0.74rem;
  color: #9f836c;
  font-weight: 500;
  display: block;
}

/* Featured card variant overrides */
.quote-card.featured .about-quote-profile-name { color: rgba(255,255,255,0.92); }
.quote-card.featured .about-quote-profile-meta { color: rgba(200,169,138,0.72); }
.quote-card.featured .about-quote-profile img  {
  border-color: rgba(200,169,138,0.28);
}


/* ══════════════════════════════════════════════════════════════
   FAITH STATEMENT — full-bleed dark section
   ══════════════════════════════════════════════════════════════ */
.about-faith-section {
  position: relative;
  min-height: clamp(400px, 52vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.about-faith-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.45) brightness(0.26);
  display: block;
}

.about-faith-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(159,131,108,0.08) 0%, transparent 55%),
    linear-gradient(145deg,
      rgba(7,5,3,0.9) 0%,
      rgba(10,7,4,0.78) 100%);
}

.about-faith-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-faith-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c8a98a;
  margin: 0 0 26px;
}

.about-faith-quote {
  margin: 0 0 26px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
  quotes: "\201C" "\201D";
}

.about-faith-quote::before { content: "\201C"; }
.about-faith-quote::after  { content: "\201D"; }

.about-faith-rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a98a, transparent);
  border-radius: 999px;
  margin: 0 auto 26px;
}

.about-faith-sub {
  font-size: 0.97rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.54);
  max-width: 58ch;
  margin: 0 auto 30px;
}

.about-faith-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,138,0.62);
}

.about-faith-sep { opacity: 0.35; }


/* ══════════════════════════════════════════════════════════════
   SPACING — tighter than inner-pages defaults
   ══════════════════════════════════════════════════════════════ */
/* Pull back the generous 80px section padding site-wide on this page */
.about-hero             { min-height: clamp(460px, 68vh, 760px); }
.about-hero-body        { padding-top: clamp(72px, 10vw, 120px);
                          padding-bottom: clamp(36px, 4vw, 52px); }

/* Override content-section padding just for this page */
.content-section        { padding: 40px 0; }
.content-section.alt    { padding: 40px 0; }

.about-faith-section    { padding: 56px 0; min-height: clamp(320px, 42vh, 520px); }

/* Internal grid/component gaps */
.about-problem-grid     { gap: 48px; }
.about-mission-grid     { gap: 52px; }
.about-steps            { margin-top: 36px; }
.about-pillar-card      { padding: 26px 28px; }
.about-step-body        { padding: 18px 22px 22px; }
.section-intro          { margin-bottom: 0; }
.section-intro p        { margin-bottom: 0; }

/* Hero stat bar */
.about-hero-stats-inner { padding: 18px 0; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .about-problem-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-mission-photo-wrap img {
    aspect-ratio: 16/9;
  }

  .about-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-step-photo { aspect-ratio: 16/8; }

  .about-hero-stats-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .about-hero-stat-sep { display: none; }

  .about-hero-stat { padding: 0; }
}

@media (max-width: 767px) {
  .about-hero-headline {
    font-size: clamp(2.4rem, 7.5vw, 3.2rem);
  }

  .about-hero-body {
    padding-top: clamp(64px, 10vw, 88px);
    padding-bottom: 28px;
  }

  .content-section     { padding: 30px 0; }
  .content-section.alt { padding: 30px 0; }
  .about-faith-section { padding: 38px 0; }

  .about-faith-quote {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  }
}

@media (max-width: 640px) {
  .about-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .about-pillar-card { padding: 26px 24px; }

  .card-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-img,
  .about-mission-photo-wrap img,
  .about-step-photo img {
    transition: none !important;
    animation: none !important;
  }
}
