/* ========================================
   About page
   ======================================== */


.about-page {
  margin: 0;
  padding: 0;
  overflow: clip;
  color: #1c2538;
}


.about-page h1,
.about-page h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.18;
  letter-spacing: -.035em;
}


.about-page h3 {
  margin-top: 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.35;
}


.about-page p {
  font-size: clamp(13px, 1.4vw, 16px);
}


.about-page .section-kicker {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;
}




/* ========================================
   Hero
   ======================================== */


.about-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: max(610px, calc(78svh - var(--header-height)));
  margin: 0;
  padding-block: 70px;
  overflow: hidden;
  color: #fff;
  background-color: #262824;
  background-image:
    linear-gradient(
      105deg,
      rgba(8, 13, 18, .7) 0%,
      rgba(8, 13, 18, .45) 48%,
      rgba(8, 13, 18, .28) 100%
    ),
    var(--about-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(350px, 1.12fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
}


.about-hero-copy {
  max-width: 560px;
  animation: about-hero-arrive .82s
    var(--ease, cubic-bezier(.2, .75, .25, 1)) .08s both;
}


.about-hero .section-kicker {
  color: rgba(255, 255, 255, .82);
}


.about-hero h1 {
  max-width: 540px;
  margin-bottom: 17px;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 30px);
}


.about-hero-lead {
  max-width: 540px;
  margin: 0 0 27px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.72;
}


.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}


.about-primary-button {
  color: #202a28;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 11px 28px rgba(0, 0, 0, .16);
}


.about-primary-button:hover {
  color: #151b19;
  background: #fff;
  transform: translateY(-2px);
}


.about-secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
}


.about-secondary-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .2);
}




/* Hero orbit */


.about-orbit {
  position: relative;
  width: min(100%, 405px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: translate3d(
    var(--about-orbit-x, 0),
    var(--about-orbit-y, 0),
    0
  );
  transition: transform .32s
    var(--ease, cubic-bezier(.2, .75, .25, 1));
  animation: about-orbit-arrive .9s
    var(--ease, cubic-bezier(.2, .75, .25, 1)) .2s both;
}


.about-orbit::before {
  position: absolute;
  inset: 8%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, .18),
    transparent 67%
  );
  pointer-events: none;
}


.about-orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}


.about-orbit-ring::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 0 20px rgba(255, 255, 255, .72);
}


.about-orbit-ring-outer {
  inset: 0;
  animation: about-orbit-spin 24s linear infinite;
}


.about-orbit-ring-inner {
  inset: 18%;
  animation: about-orbit-spin-reverse 18s linear infinite;
}


.about-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 49%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, .2),
    inset 0 1px rgba(255, 255, 255, .42);
  backdrop-filter: blur(24px) saturate(108%);
  -webkit-backdrop-filter: blur(24px) saturate(108%);
  transform: translate(-50%, -50%);
}


.about-orbit-center img {
  width: clamp(62px, 7vw, 84px);
  height: clamp(62px, 7vw, 84px);
}


.about-orbit-center strong {
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
}


.about-orbit-center span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
}


.about-orbit-label {
  position: absolute;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .43);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .17),
    inset 0 1px rgba(255, 255, 255, .35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 750;
  animation: about-label-float 4.5s ease-in-out infinite;
}


.about-orbit-label-one {
  top: 11%;
  right: 3%;
}


.about-orbit-label-two {
  top: 39%;
  left: -2%;
  animation-delay: -.8s;
}


.about-orbit-label-three {
  right: 3%;
  bottom: 18%;
  animation-delay: -1.6s;
}


.about-orbit-label-four {
  bottom: 5%;
  left: 18%;
  animation-delay: -2.4s;
}




/* ========================================
   Story
   ======================================== */


.about-story {
  position: relative;
  isolation: isolate;
  padding-block: 76px;
  background:
    radial-gradient(
      circle at -6% 18%,
      rgba(132, 148, 255, .2),
      transparent 31%
    ),
    radial-gradient(
      circle at 105% 88%,
      rgba(187, 137, 235, .16),
      transparent 35%
    ),
    linear-gradient(180deg, #f6f8ff, #fff);
}


.about-story-inner {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 84px);
}


.about-story-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}


.about-story-heading h2 {
  max-width: 370px;
  margin-bottom: 0;
}


.about-story-content {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(75, 86, 160, .13);
  border-radius: 25px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 21px 55px rgba(38, 45, 95, .09);
  backdrop-filter: blur(23px) saturate(125%);
  -webkit-backdrop-filter: blur(23px) saturate(125%);
}


.about-story-content > p {
  max-width: 720px;
  margin-bottom: 0;
  color: #4d5769;
  font-size: clamp(15px, 1.75vw, 18px);
  line-height: 1.78;
}


.about-story-content > p + p {
  margin-top: 18px;
}


.about-facts {
  display: grid;
  gap: 11px;
  margin-top: 31px;
}


.about-fact {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(72, 84, 145, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .7);
  transition:
    transform .28s var(--ease, ease),
    background .28s ease,
    box-shadow .28s ease;
}


.about-fact:hover {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 28px rgba(38, 45, 95, .09);
  transform: translateX(5px);
}


.about-fact-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: #6471ce;
  border-radius: 13px;
  background: rgba(234, 237, 255, .92);
}


.about-fact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


.about-fact strong,
.about-fact span {
  display: block;
}


.about-fact strong {
  color: #182033;
  font-size: 13px;
}


.about-fact span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}




/* ========================================
   Mission
   ======================================== */


.about-mission {
  position: relative;
  overflow: hidden;
  padding-block: 72px;
  background:
    radial-gradient(
      circle at 3% 0%,
      rgba(139, 153, 255, .2),
      transparent 30%
    ),
    radial-gradient(
      circle at 98% 100%,
      rgba(177, 129, 231, .15),
      transparent 33%
    ),
    linear-gradient(180deg, #f5f7ff, #fbfaff);
}


.about-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 27px;
}


.about-section-heading h2 {
  margin-bottom: 0;
}


.about-section-heading > p {
  max-width: 380px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
}


.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}


.about-mission-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(75, 86, 160, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 15px 38px rgba(38, 45, 95, .075);
  backdrop-filter: blur(19px) saturate(125%);
  -webkit-backdrop-filter: blur(19px) saturate(125%);
  transition:
    transform .35s var(--ease, ease),
    box-shadow .35s ease,
    border-color .35s ease;
}


.about-mission-card:hover {
  border-color: rgba(86, 100, 191, .25);
  box-shadow: 0 21px 46px rgba(38, 45, 95, .13);
  transform: translateY(-5px);
}


.about-mission-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(89, 103, 198, .15);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}


.about-mission-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  color: #5d69ca;
  border-radius: 14px;
  background: rgba(233, 236, 255, .95);
}


.about-mission-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}


.about-mission-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}


.about-mission-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}




/* ========================================
   Sunday
   ======================================== */


.about-sunday {
  padding-block: 76px;
  background: #fff;
}


.about-sunday-inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(370px, 1.15fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}


.about-sunday-copy {
  max-width: 500px;
}


.about-sunday-copy h2 {
  margin-bottom: 14px;
}


.about-sunday-copy > p:not(.section-kicker) {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}


.about-sunday-timeline {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(75, 86, 160, .14);
  border-radius: 23px;
  background: rgba(244, 246, 253, .86);
  box-shadow: 0 21px 54px rgba(38, 45, 95, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}


.about-time-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 23px;
  border: 1px solid rgba(72, 84, 145, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .85);
  transition:
    transform .28s var(--ease, ease),
    background .28s ease;
}


.about-time-card:hover {
  background: #fff;
  transform: translateX(4px);
}


.about-time-card time {
  color: #5c69c8;
  font-size: 15px;
  font-weight: 850;
}


.about-time-card h3 {
  margin-bottom: 5px;
  font-size: 16px;
}


.about-time-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}


.about-time-line {
  display: block;
  width: 2px;
  height: 28px;
  margin-left: 62px;
  background: linear-gradient(
    to bottom,
    #717cf5,
    rgba(113, 124, 245, .15)
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .7s var(--ease, ease) .35s;
}


.about-sunday-timeline.is-visible .about-time-line {
  transform: scaleY(1);
}




/* ========================================
   Pastor
   ======================================== */


.about-pastor {
  padding-block: 76px;
  color: #252a31;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(255, 255, 255, .75),
      transparent 35%
    ),
    linear-gradient(145deg, #e5e7ea, #f0f1f3);
}


.about-pastor-inner {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}


.about-pastor-visual {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(48, 53, 61, .12);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255, 255, 255, .9),
      transparent 37%
    ),
    linear-gradient(145deg, #d5d8dc, #e8eaed);
  box-shadow: 0 24px 60px rgba(48, 53, 61, .14);
}


.about-pastor-visual::before,
.about-pastor-visual::after {
  position: absolute;
  width: 215px;
  height: 215px;
  content: "";
  border: 1px solid rgba(48, 53, 61, .11);
  border-radius: 50%;
}


.about-pastor-visual::before {
  transform: scale(1);
}


.about-pastor-visual::after {
  transform: scale(1.42);
}


.about-pastor-small-label {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #626a76;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}


.about-pastor-visual strong {
  position: relative;
  z-index: 1;
  color: #343a43;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .05em;
}


.about-pastor-visual > span:last-child {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #5e6671;
  font-size: 13px;
}


.about-pastor-copy .section-kicker {
  color: #6974ba;
}


.about-pastor-copy h2 {
  margin-bottom: 17px;
  color: #252a31;
}


.about-pastor-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: #5f6670;
  font-size: 14px;
  line-height: 1.78;
}


.about-pastor-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 25px;
}


.about-pastor .button-dark {
  color: #fff;
  background: #363c45;
}


.about-pastor .button-dark:hover {
  color: #fff;
  background: #20252b;
}


.about-pastor .text-link {
  color: #5967b7;
}




/* ========================================
   CTA
   ======================================== */


.about-cta {
  padding-block: 64px;
  background:
    radial-gradient(
      circle at 5% 0%,
      rgba(207, 231, 255, .9),
      transparent 43%
    ),
    radial-gradient(
      circle at 94% 88%,
      rgba(225, 207, 255, .72),
      transparent 44%
    ),
    linear-gradient(135deg, #f4f9ff, #f4efff);
}


.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(29px, 4.5vw, 48px);
  border: 1px solid rgba(95, 108, 185, .15);
  border-radius: 25px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 21px 56px rgba(48, 57, 116, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}


.about-cta-inner h2 {
  margin-bottom: 9px;
}


.about-cta-inner p:not(.section-kicker) {
  max-width: 590px;
  margin-bottom: 0;
  color: #647087;
  font-size: 13px;
}


.about-cta-button {
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #6277d4, #8969c4);
  box-shadow: 0 11px 25px rgba(83, 91, 174, .2);
}


.about-cta-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #5369c7, #785ab5);
}




/* ========================================
   Motion
   ======================================== */


.about-motion-ready .about-reveal-target {
  opacity: 0;
  transform: translate3d(
    var(--about-reveal-x, 0),
    22px,
    0
  );
  transition:
    opacity .66s ease var(--about-reveal-delay, 0ms),
    transform .66s
      var(--ease, cubic-bezier(.2, .75, .25, 1))
      var(--about-reveal-delay, 0ms);
  will-change: opacity, transform;
}


.about-motion-ready .about-reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


@keyframes about-hero-arrive {
  from {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0);
  }


  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


@keyframes about-orbit-arrive {
  from {
    opacity: 0;
    transform: translate3d(22px, 18px, 0) scale(.97);
  }


  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}


@keyframes about-label-float {
  0%,
  100% {
    translate: 0 0;
  }


  50% {
    translate: 0 -6px;
  }
}


@keyframes about-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}


@keyframes about-orbit-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}




/* ========================================
   Responsive
   ======================================== */


@media (max-width: 1050px) {
  .about-mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .about-mission-card {
    min-height: 250px;
  }
}


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


  .about-hero-copy {
    max-width: 650px;
  }


  .about-orbit {
    width: min(78vw, 390px);
  }


  .about-story-heading {
    position: static;
  }


  .about-sunday-copy {
    max-width: 650px;
  }
}


@media (max-width: 620px) {
  .about-hero {
    min-height: auto;
    padding-block: 54px 66px;
    background-position: 42% center;
  }


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


  .about-hero-actions,
  .about-pastor-actions {
    align-items: stretch;
    flex-direction: column;
  }


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


  .about-orbit {
    width: min(88vw, 350px);
  }


  .about-orbit-label {
    padding: 7px 10px;
    font-size: 9px;
  }


  .about-story,
  .about-mission,
  .about-sunday,
  .about-pastor {
    padding-block: 58px;
  }


  .about-story-content {
    padding: 22px 18px;
    border-radius: 20px;
  }


  .about-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }


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


  .about-mission-card {
    min-height: auto;
  }


  .about-time-card {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px;
  }


  .about-time-line {
    height: 23px;
    margin-left: 31px;
  }


  .about-pastor-visual {
    min-height: 285px;
  }


  .about-cta {
    padding-block: 50px;
  }


  .about-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 21px;
  }


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


@media (prefers-reduced-motion: reduce) {
  .about-hero-copy,
  .about-orbit,
  .about-orbit-label,
  .about-orbit-ring {
    animation: none;
  }


  .about-orbit {
    transform: none;
  }


  .about-motion-ready .about-reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }


  .about-time-line {
    transform: scaleY(1);
    transition: none;
  }


  .about-fact,
  .about-mission-card,
  .about-time-card {
    transition: none;
  }

