/*
Logo	#241E6C
Main headings	#241E6C
Buttons	#241E6C
Icons	#3A7D8C
Hover states	#7FB7B3
Background sections	#F4EFE6
Body text	#27323A
White cards	#FFFFFF
*/
:root {
  /* GPCPE Brand Colors */
  --primary: #241E6C;
  /* Deep Indigo - trust, wisdom */
  --primary-dark: #181449;
  /* Darker Indigo */
  --secondary: #3A7D8C;
  /* Clinical Teal */
  --secondary-light: #7FB7B3;
  /* Healing Green */
  --accent: #7FB7B3;
  /* Highlight color */
  --background: #F4EFE6;
  /* Warm neutral */
  --surface: #FFFFFF;
  --text: #27323A;
  --text-muted: #667085;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  /* UI */
  --border-radius: 16px;
  /* --primary: #1B4965;
  --secondary: #62B6CB;
  --light: #F5F8FA; */
}
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 650;
  line-height: 1.12;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}
h4 {
  font-size: 1.45rem;
}
p {
  margin-bottom: 1rem;
}
.lead {
  font-size: clamp(1.12rem, 1.4vw, 1.28rem);
  font-weight: 400;
  line-height: 1.65;
}
.site-navbar {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(36, 30, 108, .1);
  box-shadow: 0 12px 30px rgba(36, 30, 108, .08);
}
.site-navbar .container {
  min-height: 76px;
}
.navbar-brand,
.footer-brand {
  color: var(--primary) !important;
  text-decoration: none;
}
.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #FFFFFF;
  background:
    linear-gradient(135deg,
      var(--primary),
      var(--secondary));
  box-shadow: 0 10px 24px rgba(36, 30, 108, .18);
}
.brand-mark i {
  font-size: 1.25rem;
}
.brand-text,
.footer-brand span:last-child {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}
.site-brand .brand-name {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}
.brand-subtitle {
  margin-top: .25rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
}
.navbar-brand {
  max-width: calc(100% - 72px);
  white-space: normal;
}
.site-navbar-toggler {
  border-color: rgba(36, 30, 108, .18);
  border-radius: 10px;
  padding: .45rem .6rem;
}
.site-navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(127, 183, 179, .3);
}
.nav-link {
  color: var(--text) !important;
  font-weight: 600;
  padding: .6rem .85rem !important;
  border-radius: 999px;
}
.nav-link:hover {
  color: var(--secondary) !important;
  background: rgba(58, 125, 140, .09);
}
.site-navbar .dropdown-menu {
  min-width: 230px;
  padding: .55rem;
  border: 1px solid rgba(36, 30, 108, .1);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(36, 30, 108, .14);
}
.site-navbar .dropdown-item {
  padding: .65rem .8rem;
  border-radius: 9px;
  color: var(--text);
  font-weight: 600;
}
.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  color: var(--secondary);
  background: rgba(58, 125, 140, .09);
}
.site-navbar .dropdown-toggle::after {
  margin-left: .4rem;
  vertical-align: .18em;
}
section[id] {
  scroll-margin-top: 24px;
}
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.nav-cta {
  padding: .65rem 1.2rem;
  box-shadow: 0 10px 22px rgba(36, 30, 108, .18);
}
.btn-outline-light:hover {
  color: var(--primary);
}
.hero {
  background:
    linear-gradient(90deg,
      rgba(24, 20, 73, .95),
      rgba(36, 30, 108, .88) 48%,
      rgba(58, 125, 140, .7)),
    url("../images/hero-care.jpg");
  background-size: cover;
  background-position: center 45%;
  color: white;
  padding: 120px 0;
}
.hero h1 {
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  font-weight: 700;
  line-height: 1.02;
  color: white;
  margin-bottom: 1.35rem;
}
.hero .lead {
  max-width: 42rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.25rem;
}
.hero-actions .btn {
  margin-right: 0 !important;
}
.hero-card {
  background: var(--surface);
  color: var(--text);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .15);
}
.hero-card i {
  color: var(--secondary);
}
.hero-card h3,
.feature-card h4 {
  margin-top: 1rem;
  margin-bottom: .8rem;
}
.feature-card {
  height: 100%;
  padding: 35px;
  border-radius: 15px;
  background: white;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);
  text-align: center;
}
.feature-card i {
  font-size: 3rem;
  color: var(--secondary);
}
.cta {
  background:
    linear-gradient(135deg,
      var(--primary-dark),
      var(--primary) 58%,
      #2f6874);
  color: #F8FBFC;
  padding: 70px 0;
}
.cta h2 {
  color: #FFFFFF;
}
.cta .lead {
  color: rgba(248, 251, 252, .88);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn-light {
  color: var(--primary);
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.cta .btn-light:hover {
  color: #FFFFFF;
  background: var(--secondary);
  border-color: var(--secondary);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}
.section-soft {
  background: var(--background);
}
/* RESOURCES PAGE */
.resources-hero {
  padding: 92px 0;
  color: #FFFFFF;
  background:
    linear-gradient(90deg,
      rgba(24, 20, 73, .96),
      rgba(36, 30, 108, .88) 55%,
      rgba(58, 125, 140, .68)),
    url("../images/resources-hero-study.jpg");
  background-size: cover;
  background-position: center 55%;
}
.resources-hero-inner {
  max-width: 780px;
}
.resources-hero h1 {
  margin-bottom: 1.4rem;
  color: #FFFFFF;
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
}
.resources-hero .lead {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
}
.resources-hero .section-kicker {
  color: #A9D4D0;
}
.resources-section,
.book-section {
  padding: 88px 0;
}
.resources-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.resource-card {
  display: flex;
  height: 100%;
  gap: 1.4rem;
  padding: 34px;
  border: 1px solid rgba(36, 30, 108, .1);
  border-radius: var(--border-radius);
  background: var(--surface);
  box-shadow: 0 14px 35px rgba(36, 30, 108, .08);
}
.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: #FFFFFF;
  background: var(--secondary);
}
.resource-icon i {
  font-size: 1.75rem;
}
.resource-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.resource-card h3 {
  margin: .35rem 0 .8rem;
  font-size: 1.65rem;
}
.resource-card p {
  flex-grow: 1;
  color: var(--text-muted);
}
.resource-type {
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.resource-card .btn i {
  margin-right: .4rem;
}
.resource-articles {
  padding: 88px 0 0;
  background: #FFFFFF;
}
.resource-articles-heading {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.resource-articles-heading .lead {
  margin-bottom: 0;
}
.resource-article-toolbar-wrap {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: .8rem 0;
  border-top: 1px solid rgba(36, 30, 108, .1);
  border-bottom: 1px solid rgba(36, 30, 108, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 25px rgba(36, 30, 108, .07);
  backdrop-filter: blur(12px);
}
.resource-article-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.resource-toolbar-label {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.resource-toolbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.resource-toolbar-links a {
  padding: .45rem .8rem;
  border: 1px solid rgba(36, 30, 108, .14);
  border-radius: 999px;
  color: var(--text);
  background: #FFFFFF;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.resource-toolbar-links a:hover,
.resource-toolbar-links a:focus {
  color: #FFFFFF;
  border-color: var(--primary);
  background: var(--primary);
}
.resource-blog-list {
  max-width: 1040px;
}
.resource-blog {
  padding: 76px 0;
  border-bottom: 1px solid rgba(36, 30, 108, .14);
  scroll-margin-top: 88px;
}
.resource-blog:last-child {
  border-bottom: 0;
}
.resource-blog:target {
  animation: resource-article-highlight 1.3s ease-out;
}
.resource-blog-header {
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.resource-blog-header h2 {
  margin: .45rem 0 1rem;
}
.resource-blog-lead {
  color: var(--text-muted);
  font-size: clamp(1.18rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}
.resource-blog h3 {
  margin-bottom: .85rem;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}
.resource-blog-callout {
  height: 100%;
  padding: 28px;
  border-left: 4px solid var(--secondary);
  background: var(--background);
}
.resource-blog-callout ul,
.resource-blog-callout ol {
  display: grid;
  gap: .65rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}
.resource-blog > h3 {
  margin-top: 2.5rem;
}
.resource-blog-download {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.resource-blog-download:hover,
.resource-blog-download:focus {
  color: var(--secondary);
  text-decoration: underline;
}
@keyframes resource-article-highlight {
  from { background: rgba(127, 183, 179, .16); }
  to { background: transparent; }
}
.book-callout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 52px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(36, 30, 108, .1);
}
.book-cover {
  flex: 0 0 220px;
}
.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(24, 20, 73, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.book-cover:hover img,
.book-cover:focus img {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(24, 20, 73, .26);
}
.book-content {
  max-width: 680px;
}
.book-content .btn i {
  margin-left: .45rem;
  font-size: .9rem;
}
/* CONTACT PAGE */
.contact-hero {
  padding: 92px 0;
  color: #FFFFFF;
  background:
    linear-gradient(90deg,
      rgba(24, 20, 73, .97),
      rgba(36, 30, 108, .90) 55%,
      rgba(58, 125, 140, .66)),
    /* Felicity Tai via Pexels: https://www.pexels.com/photo/7964139/ */
    url("../images/contact-hero-conversation.webp");
  background-size: cover;
  background-position: center 48%;
}
.contact-hero-inner {
  max-width: 760px;
}
.contact-hero h1 {
  margin-bottom: 1.4rem;
  color: #FFFFFF;
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
}
.contact-hero .lead {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
}
.contact-hero .section-kicker {
  color: #A9D4D0;
}
.contact-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #FFFFFF, rgba(244, 239, 230, .55));
}
.contact-intro {
  max-width: 520px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(36, 30, 108, .12);
}
.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--secondary);
  background: rgba(58, 125, 140, .11);
}
.contact-detail-icon i {
  font-size: 1.35rem;
}
.contact-detail h3 {
  margin-bottom: .4rem;
  font-size: 1.25rem;
}
.contact-detail p {
  margin-bottom: 0;
  color: var(--text-muted);
}
.contact-form-card {
  padding: 44px;
  border: 1px solid rgba(36, 30, 108, .1);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(36, 30, 108, .1);
}
.contact-form-card h2 {
  margin-bottom: .6rem;
}
.contact-form {
  margin-top: 2rem;
}
.contact-form .form-label {
  margin-bottom: .5rem;
  color: var(--primary);
  font-weight: 700;
}
.contact-form .form-control {
  min-height: 52px;
  padding: .75rem 1rem;
  border-color: rgba(36, 30, 108, .2);
  border-radius: 10px;
  color: var(--text);
  background: #FCFCFD;
}
.contact-form textarea.form-control {
  min-height: 170px;
  resize: vertical;
}
.contact-form .form-control:focus {
  border-color: var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 0 0 .22rem rgba(58, 125, 140, .16);
}
.contact-form .btn i {
  margin-left: .45rem;
}
/* 404 PAGE */
.error-page {
  position: relative;
  display: flex;
  min-height: 660px;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 183, 179, .2), transparent 24%),
    radial-gradient(circle at 85% 78%, rgba(58, 125, 140, .12), transparent 25%),
    linear-gradient(145deg, #FFFFFF, var(--background));
}
.error-page::before,
.error-page::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(36, 30, 108, .08);
  border-radius: 50%;
  content: "";
}
.error-page::before {
  top: -150px;
  right: 8%;
}
.error-page::after {
  bottom: -190px;
  left: 4%;
  width: 360px;
  height: 360px;
}
.error-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.error-symbol {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.error-symbol span {
  color: rgba(36, 30, 108, .11);
  font-family: var(--font-heading);
  font-size: clamp(6.5rem, 16vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
}
.error-symbol i {
  position: absolute;
  color: var(--secondary);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
}
.error-page h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}
.error-page .lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2rem;
}
.error-actions .btn i {
  margin-right: .4rem;
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}
.error-help {
  margin: 2rem 0 0;
  color: var(--text-muted);
}
.error-help a {
  color: var(--primary);
  font-weight: 700;
}
.error-help a:hover {
  color: var(--secondary);
}
/* ABOUT PAGE */
.section-kicker {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--secondary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-hero {
  padding: 92px 0;
  color: #FFFFFF;
  background:
    linear-gradient(90deg,
      rgba(24, 20, 73, .96),
      rgba(36, 30, 108, .87) 55%,
      rgba(58, 125, 140, .66)),
    url("../images/about-hero-care.jpg");
  background-size: cover;
  background-position: center 52%;
}
.about-hero h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  color: #FFFFFF;
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
}
.about-hero .lead {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
}
.about-hero .section-kicker {
  color: #A9D4D0;
}
.about-hero-quote {
  position: relative;
  margin: 0;
  padding: 34px;
  border-left: 3px solid var(--secondary-light);
  background: rgba(255, 255, 255, .08);
}
.about-hero-quote i {
  color: var(--secondary-light);
  font-size: 2rem;
}
.about-hero-quote p {
  margin: .7rem 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.45;
}
.about-hero-quote cite {
  color: rgba(255, 255, 255, .76);
  font-style: normal;
  font-weight: 700;
}
.about-profile-section,
.about-experience,
.pinnacle-section,
.community-connections {
  padding: 96px 0;
}
.about-portrait-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 42px;
  padding-right: 42px;
}
.about-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(36, 30, 108, .16);
}
.about-stat {
  position: absolute;
  right: 0;
  display: flex;
  min-width: 145px;
  flex-direction: column;
  padding: 18px 20px;
  color: #FFFFFF;
  background: var(--secondary);
  box-shadow: 0 16px 30px rgba(36, 30, 108, .18);
}
.about-stat strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}
.about-stat span {
  margin-top: .35rem;
  font-size: .88rem;
  font-weight: 700;
}
.about-stat-patients {
  top: 34px;
}
.about-stat-pastors {
  bottom: -28px;
  background: var(--primary);
}
.about-principles {
  height: 100%;
  padding: 42px;
  color: var(--text);
  background: #FFFFFF;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 18px 42px rgba(36, 30, 108, .1);
}
.about-principles > i {
  color: var(--secondary);
  font-size: 2.5rem;
}
.about-principles h3 {
  margin: 1rem 0;
}
.pinnacle-heading {
  max-width: 800px;
  margin: 0 auto 58px;
}
.pinnacle-callout {
  position: sticky;
  top: 32px;
  padding: 42px;
  color: #FFFFFF;
  background: var(--primary);
  border-left: 6px solid var(--secondary-light);
}
.pinnacle-callout i {
  color: var(--secondary-light);
  font-size: 2.5rem;
}
.pinnacle-callout p {
  margin: 1rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
}
.pinnacle-closing {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(36, 30, 108, .16);
  color: var(--primary);
  font-weight: 600;
}
.community-connections-heading {
  max-width: 760px;
  margin: 0 auto 52px;
}
.community-connections-heading .lead {
  margin-bottom: 0;
  color: var(--text-muted);
}
.connection-card {
  display: flex;
  height: 100%;
  gap: 1.5rem;
  padding: 38px;
  border: 1px solid rgba(36, 30, 108, .1);
  border-top: 4px solid var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(36, 30, 108, .09);
}
.connection-card-church {
  flex-direction: column;
  gap: 1.15rem;
  border-top-color: var(--primary);
}
.connection-card-logo {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid rgba(36, 30, 108, .1);
  background: #FFFFFF;
}
.connection-card-logo img {
  display: block;
  width: min(100%, 360px);
  height: auto;
}
.connection-card-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #FFFFFF;
  background: var(--secondary);
}
.connection-card-icon i {
  font-size: 1.75rem;
}
.connection-card-content {
  min-width: 0;
}
.connection-card-label {
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.connection-card-church .connection-card-label {
  color: var(--primary);
}
.connection-card h3 {
  margin: .35rem 0 .55rem;
  font-size: clamp(1.65rem, 2.2vw, 2rem);
}
.connection-card-role {
  margin-bottom: .9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.connection-card-summary {
  margin-bottom: 0;
  color: var(--text);
}
.connection-card-motto {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.connection-details {
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(36, 30, 108, .12);
  list-style: none;
}
.connection-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.connection-details i {
  width: 20px;
  flex: 0 0 auto;
  color: var(--secondary);
  text-align: center;
}
.connection-details a {
  color: var(--primary);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.connection-details a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.connection-details address {
  margin: 0;
  color: var(--text);
  font-style: normal;
}
.connection-details-church {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
}
.connection-details-church strong {
  color: var(--primary);
}
/* FAQ PAGE */
.faq-hero {
  padding: 86px 0;
  text-align: center;
  background:
    linear-gradient(135deg,
      rgba(244, 239, 230, .96),
      rgba(255, 255, 255, .98));
  border-bottom: 1px solid rgba(36, 30, 108, .1);
}
.faq-hero-inner,
.credentials-heading {
  max-width: 820px;
  margin: 0 auto;
}
.faq-hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
}
.faq-hero .lead {
  margin-bottom: 0;
  color: var(--text-muted);
}
.faq-section,
.credentials-section {
  padding: 96px 0;
}
.faq-intro {
  position: sticky;
  top: 32px;
  padding-right: 24px;
}
.faq-intro h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
}
.faq-contact {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.faq-contact i {
  color: var(--secondary);
}
.faq-contact:hover {
  color: var(--secondary);
}
.faq-list {
  border-top: 1px solid rgba(36, 30, 108, .16);
}
.faq-item {
  border-bottom: 1px solid rgba(36, 30, 108, .16);
}
.faq-item summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 22px 4px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(58, 125, 140, .35);
  border-radius: 50%;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
}
.faq-item[open] summary::after {
  content: "−";
  color: #FFFFFF;
  background: var(--secondary);
  border-color: var(--secondary);
}
.faq-item summary:hover {
  color: var(--secondary);
}
.faq-answer {
  padding: 0 54px 24px 4px;
  color: var(--text-muted);
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.credentials-heading {
  margin-bottom: 52px;
}
.credential-card {
  height: 100%;
  padding: 34px;
  background: #FFFFFF;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 16px 38px rgba(36, 30, 108, .09);
}
.credential-card h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.55rem;
}
.credential-card p {
  color: var(--text-muted);
}
.credential-logo,
.credential-profile {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.credential-logo img {
  width: 100%;
  max-width: 250px;
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}
.credential-profile img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(36, 30, 108, .16);
}
/* TRUST BAR */
.trust-bar {
  background: var(--surface);
  padding: 45px 0;
  border-bottom: 1px solid #eee;
}
.trust-item {
  padding: 20px;
}
.trust-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(58, 125, 140, .12);
}
.trust-icon i {
  font-size: 2rem;
  color: var(--secondary);
}
.trust-item h5 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.trust-item p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 0;
}
.site-footer {
  margin-top: 0;
  padding: 64px 0 34px;
  color: var(--text);
  background: var(--background);
  border-top: 1px solid rgba(36, 30, 108, .12);
}
.site-footer h6 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-brand {
  color: var(--primary) !important;
  margin-bottom: 1rem;
}
.footer-brand .brand-mark {
  background:
    linear-gradient(135deg,
      var(--primary),
      var(--secondary));
  border: 0;
  box-shadow: 0 10px 24px rgba(36, 30, 108, .16);
}
.footer-brand .brand-name {
  color: var(--primary);
  font-size: 1.45rem;
}
.footer-brand .brand-subtitle {
  color: var(--secondary);
}
.footer-intro {
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.footer-links-column {
  max-width: 350px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  color: var(--secondary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(36, 30, 108, .12);
  color: var(--text-muted);
  font-size: .95rem;
}

@media (max-width: 575.98px) {
  body {
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.05rem;
  }

  .site-navbar .container {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-subtitle {
    font-size: .76rem;
  }

  .navbar-collapse {
    padding: .8rem 0 1rem;
  }

  .nav-link {
    padding: .72rem .9rem !important;
  }

  .site-navbar .dropdown-menu {
    margin: 0 0 .45rem .9rem;
    padding: .3rem;
    border: 0;
    border-left: 2px solid rgba(58, 125, 140, .24);
    border-radius: 0;
    box-shadow: none;
  }

  .site-navbar .dropdown-item {
    padding: .58rem .75rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: .45rem;
  }

  .hero {
    padding: 88px 0;
  }

  .about-hero,
  .resources-hero,
  .resources-section,
  .resource-articles,
  .book-section,
  .contact-hero,
  .contact-section,
  .about-profile-section,
  .about-experience,
  .pinnacle-section,
  .community-connections,
  .faq-hero,
  .faq-section,
  .credentials-section {
    padding: 68px 0;
  }

  .about-hero-quote,
  .about-principles,
  .pinnacle-callout {
    padding: 28px;
  }

  .about-portrait-wrap {
    padding-right: 22px;
  }

  .about-stat {
    min-width: 125px;
    padding: 14px 16px;
  }

  .pinnacle-callout {
    position: static;
  }

  .connection-card {
    flex-direction: column;
    padding: 28px;
  }

  .faq-intro {
    position: static;
    padding-right: 0;
  }

  .faq-item summary {
    min-height: 74px;
    gap: 1rem;
  }

  .faq-answer {
    padding-right: 4px;
  }

  .credential-card {
    padding: 28px;
  }

  .resource-card,
  .book-callout {
    flex-direction: column;
    padding: 28px;
  }

  .book-cover {
    width: min(100%, 220px);
    flex-basis: auto;
    align-self: center;
  }

  .resource-article-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .resource-toolbar-links {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: .2rem;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .resource-blog {
    padding: 58px 0;
    scroll-margin-top: 134px;
  }

  .resource-blog-callout {
    padding: 24px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .error-page {
    min-height: 560px;
    padding: 72px 0;
  }

  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .site-footer {
    padding: 52px 0 30px;
  }

  .footer-links-column {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 34px;
  }
}
