.about-page {
  width: 100%;
  min-width: 0;
  background: var(--paper);
}

.about-detail-page,
.about-detail-page section,
.leadership-intro,
.leadership-table,
.leadership-row,
.team-grid,
.team-card,
.affiliate-group,
.affiliate-links {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.about-detail-section .container {
  min-width: 0;
}

.about-detail-page p,
.about-detail-page h1,
.about-detail-page h2,
.about-detail-page li,
.leadership-row span,
.leadership-row strong {
  overflow-wrap: anywhere;
}

.about-page h1,
.about-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.025em;
}

.about-subnav {
  position: sticky;
  top: 82px;
  z-index: 20;
  overflow-x: auto;
  color: var(--dark-muted);
  background: rgba(23, 32, 28, .98);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  scrollbar-width: none;
}

.about-subnav::-webkit-scrollbar {
  display: none;
}

.about-subnav .container {
  min-height: 58px;
  display: flex;
  align-items: stretch;
}

.about-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 750;
}

.about-subnav a:first-child {
  padding-left: 0;
}

.about-subnav a::after {
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 2px;
  background: #a9d1b7;
  transform: scaleX(0);
  content: "";
  transition: transform .18s ease;
}

.about-subnav a:first-child::after {
  left: 0;
}

.about-subnav a:hover,
.about-subnav a.is-current {
  color: #fff;
}

.about-subnav a:hover::after,
.about-subnav a.is-current::after {
  transform: scaleX(1);
}

.about-detail-hero {
  padding: 82px 0 76px;
  color: var(--dark-text);
  background:
    radial-gradient(circle at 76% 24%, rgba(74, 122, 91, .2), transparent 34%),
    var(--dark-deep);
}

.about-detail-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--dark-text);
  font-size: clamp(50px, 6vw, 76px);
  line-height: 1.02;
}

.about-detail-hero p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--dark-muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-detail-section {
  padding: 92px 0 110px;
  background: var(--surface);
}

.pastor-profile {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(52px, 9vw, 116px);
}

.pastor-portrait {
  position: relative;
  margin: 0;
}

.pastor-portrait::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 45%;
  height: 42%;
  z-index: 0;
  border: 1px solid rgba(40, 96, 71, .34);
  content: "";
}

.pastor-portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  z-index: 1;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  filter: saturate(.82) sepia(.04);
}

.pastor-copy h2,
.leadership-intro h2,
.team-card h2,
.affiliate-group h2 {
  margin: 0;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.pastor-copy h2 {
  font-size: clamp(42px, 5vw, 62px);
}

.pastor-role {
  margin: 8px 0 28px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pastor-copy > p:not(.eyebrow):not(.pastor-role),
.leadership-intro > p:not(.eyebrow),
.leadership-closing {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.leadership-intro {
  max-width: 840px;
}

.leadership-intro h2 {
  font-size: clamp(40px, 4.8vw, 58px);
}

.leadership-intro .content-note {
  margin-top: 26px;
  border-left: 3px solid var(--forest);
  padding: 12px 0 12px 20px;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(40, 96, 71, .06), transparent);
}

.leadership-table {
  max-width: 920px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.leadership-row {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
}

.leadership-row:nth-child(even) {
  background: rgba(40, 96, 71, .035);
}

.leadership-row span {
  color: var(--muted);
}

.leadership-row strong {
  color: var(--forest-dark);
}

.leadership-row-heading {
  min-height: 48px;
  color: var(--forest-dark);
  background: var(--sage);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.leadership-row-heading span {
  color: inherit;
}

.leadership-closing {
  max-width: 760px;
  margin-top: 26px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 74px;
}

.team-card {
  border: 1px solid var(--line);
  padding: 38px 40px;
  background: var(--paper);
}

.team-card h2 {
  max-width: 470px;
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.18;
}

.team-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.team-card li {
  padding: 12px 6px 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.affiliate-notice {
  max-width: 800px;
  margin: 0 0 52px;
  border-left: 3px solid var(--forest);
  padding: 15px 20px;
  color: var(--muted);
  background: rgba(40, 96, 71, .055);
  line-height: 1.7;
}

.affiliate-groups {
  display: grid;
  gap: 64px;
}

.affiliate-group h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
}

.affiliate-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.affiliate-links a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  color: var(--forest-dark);
  background: var(--paper);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  transition: color .18s ease, background .18s ease;
}

.affiliate-links a:hover {
  color: #fff;
  background: var(--forest);
}

.affiliate-links a span:last-child {
  flex: 0 0 auto;
  font-size: 20px;
}

.about-hero {
  padding: 72px 0;
  color: var(--dark-text);
  background:
    radial-gradient(circle at 35% 20%, rgba(74, 122, 91, .16), transparent 32%),
    var(--dark-deep);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.about-hero-copy,
.about-hero-image,
.about-intro-heading,
.about-prose,
.about-story-image,
.about-story-copy,
.about-denomination-copy {
  min-width: 0;
}

.about-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1.02;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--dark-muted);
  font-size: 18px;
  line-height: 1.72;
}

.about-hero-button {
  min-height: 56px;
  margin-top: 34px;
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.about-hero-image {
  position: relative;
  margin: 0;
}

.about-hero-image::before {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38%;
  height: 38%;
  z-index: 0;
  border-top: 1px solid rgba(169, 209, 183, .5);
  border-right: 1px solid rgba(169, 209, 183, .5);
  content: "";
}

.about-hero-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  z-index: 1;
  display: block;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 3px;
  filter: saturate(.7) sepia(.08);
}

.about-intro {
  padding: 96px 0;
  background: var(--surface);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 9vw, 120px);
}

.about-intro-heading h2,
.about-section-heading h2,
.about-story-copy h2,
.about-denomination h2,
.about-community-card h2 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.12;
}

.about-prose {
  padding-top: 28px;
}

.about-prose p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-prose .about-prose-lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.5;
}

.about-values {
  padding: 88px 0 96px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-value {
  min-width: 0;
  min-height: 270px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 34px;
}

.about-value > span {
  display: block;
  margin-bottom: 52px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.about-value h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 20px;
}

.about-value p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-story {
  padding: 104px 0;
  background: var(--surface);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
}

.about-story-image {
  position: relative;
  margin: 0;
}

.about-story-image::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 44%;
  z-index: 0;
  border: 1px solid rgba(40, 96, 71, .34);
  content: "";
}

.about-story-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  z-index: 1;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

.about-story-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-check-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.about-check-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.about-denomination {
  padding: 82px 0;
  color: var(--dark-text);
  background: var(--forest-dark);
}

.about-denomination-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 10vw, 130px);
}

.about-denomination .eyebrow {
  color: #a9d1b7;
}

.about-denomination h2 {
  color: var(--dark-text);
}

.about-denomination-copy p {
  max-width: 690px;
  margin: 5px 0 0;
  color: #d2ded5;
  font-size: 17px;
  line-height: 1.78;
}

.about-denomination .text-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

.about-community {
  padding: 96px 0 112px;
  background: var(--paper);
}

.about-community .container {
  position: relative;
}

.about-community-image {
  margin: 0;
}

.about-community-image img {
  width: 100%;
  height: clamp(390px, 48vw, 590px);
  display: block;
  object-fit: cover;
  border-radius: 3px;
  filter: saturate(.76) sepia(.05);
}

.about-community-card {
  position: relative;
  width: min(560px, calc(100% - 48px));
  z-index: 2;
  margin: -145px 0 0 48px;
  padding: 44px 48px;
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(25, 45, 35, .16);
}

.about-community-card h2 {
  font-size: clamp(34px, 3.8vw, 48px);
}

.about-community-card > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-community-card .btn {
  min-height: 52px;
  margin-top: 28px;
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

@media (max-width: 920px) {
  .about-hero-grid,
  .about-intro-grid,
  .about-story-grid,
  .about-denomination-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    max-width: 720px;
  }

  .about-intro-grid,
  .about-denomination-grid {
    gap: 34px;
  }

  .about-prose {
    padding-top: 0;
  }

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

  .about-value {
    min-height: 0;
  }

  .about-value > span {
    margin-bottom: 30px;
  }

  .about-story-image {
    max-width: 720px;
  }

  .pastor-profile,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pastor-portrait {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .about-subnav {
    top: 70px;
  }

  .about-subnav .container {
    min-height: 52px;
  }

  .about-subnav a {
    padding: 0 16px;
  }

  .about-subnav a::after {
    right: 16px;
    left: 16px;
  }

  .about-detail-hero {
    padding: 58px 0 54px;
  }

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

  .about-detail-hero p:last-child {
    font-size: 16px;
  }

  .about-detail-section {
    padding: 62px 0 72px;
  }

  .about-hero {
    padding: 54px 0 62px;
  }

  .about-hero-grid {
    gap: 42px;
  }

  .about-hero-copy h1 {
    font-size: clamp(43px, 12vw, 54px);
  }

  .about-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .about-hero-button {
    width: 100%;
  }

  .about-hero-image::before {
    top: -8px;
    right: -8px;
  }

  .about-intro,
  .about-values,
  .about-story,
  .about-denomination,
  .about-community {
    padding: 62px 0;
  }

  .about-intro-heading h2,
  .about-section-heading h2,
  .about-story-copy h2,
  .about-denomination h2 {
    font-size: 36px;
  }

  .about-prose .about-prose-lead {
    font-size: 22px;
  }

  .about-value {
    padding: 28px 24px;
  }

  .about-story-image::after {
    right: -8px;
    bottom: -10px;
  }

  .about-community-image img {
    height: 340px;
  }

  .about-community-card {
    width: calc(100% - 24px);
    margin: -62px auto 0;
    padding: 32px 26px;
  }

  .about-community-card .btn {
    width: 100%;
  }

  .leadership-row {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 14px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .team-card {
    padding: 30px 24px;
  }

  .team-card ul,
  .affiliate-links {
    grid-template-columns: 1fr;
  }

  .affiliate-groups {
    gap: 48px;
  }
}
