:root {
  --brand-info: #5bc0de;
}

* {
  box-sizing: border-box;
}

/*ul[class],ol[class]{
  padding:0;
  list-style: none;
  margin:0;
}*/
body, h1, h2, h3, h4, h5, h6, p, ul:not([class]), ol:not([class]), li, figure, dl, dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

#logo {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

img {
  /*//max-width:100%;*/
  display: inline-block;
}

article > * + * {
  margin-top: 1em;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* button reset */
button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

/* Remove excess padding and border in Firefox 4+ */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Remove focus styles for non-keyboard focus.
 */
:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/**
 * Cross-browser styles for explicit focus via
 * keyboard-based (eg Tab) navigation or the
 * .focus-visible utility class.
 */
:focus,
.focus-visible:focus:not(:focus-visible) {
  outline: 0;
  /* box-shadow: 0 0 0 .2rem #fff, 0 0 0 .35rem #069; */
}

:root {
  --navy: #7A4F28;
  --navy-dark: #4E3118;
  --navy-med: #9B6432;
  --gold: #c9a227;
  --gold-light: #e5c55a;
  --gold-text: #8a6d10;
  --cream: #faf7f0;
  --cream2: #f0ebe0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --navbar-h: 80px;
  --ornament: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M60 18v84M18 60h84' stroke='%23c9a227' stroke-width='0.6' opacity='0.1'/%3E%3Ccircle cx='60' cy='60' r='4' fill='none' stroke='%23c9a227' stroke-width='0.6' opacity='0.08'/%3E%3Ccircle cx='60' cy='60' r='18' fill='none' stroke='%23c9a227' stroke-width='0.4' opacity='0.05'/%3E%3Cpath d='M48 48 L72 72 M72 48 L48 72' stroke='%23c9a227' stroke-width='0.4' opacity='0.05'/%3E%3C/svg%3E");
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  padding-top: var(--navbar-h);
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }
}
h1, h2, h3 {
  font-family: "Lora", serif;
  line-height: 1.25;
}

p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.4rem;
}
ul li {
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  background: var(--navy-dark);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

body.scrolled .navbar-wrap {
  background: rgba(40, 22, 10, 0.97);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white) !important;
  text-decoration: none !important;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}
.logo-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1rem 0;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }
  .main-nav.open {
    display: block;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 12, 4, 0.55) 0%, rgba(30, 18, 8, 0.42) 50%, rgba(20, 12, 4, 0.58) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5 L30 55 M10 20 L50 20' stroke='rgba(201,162,39,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 4rem 1.5rem;
}

.hero-symbol {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.hero h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.3rem;
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.hero-quote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 2rem auto;
  max-width: 580px;
  text-align: left;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 4px 4px 0;
}
.hero-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold-light);
}

.btn-primary {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .section {
    padding: 3.5rem 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
}

section[id] {
  scroll-margin-top: calc(var(--navbar-h) + 1rem);
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
  background-image: var(--ornament);
}

.bg-navy {
  background: var(--navy-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M60 18v84M18 60h84' stroke='%23c9a227' stroke-width='0.6' opacity='0.06'/%3E%3Ccircle cx='60' cy='60' r='18' fill='none' stroke='%23c9a227' stroke-width='0.4' opacity='0.04'/%3E%3C/svg%3E");
}

.ornament-divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  opacity: 0.65;
  margin: 0;
  padding: 0.6rem 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}
.ornament-divider::before, .ornament-divider::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 1rem;
  opacity: 0.5;
}

.section-title {
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title.text-gold {
  color: var(--gold);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.65rem;
  }
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.section-lead.text-white {
  color: rgba(255, 255, 255, 0.82);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-gold {
  color: var(--gold);
}

.lang-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.divider-cross {
  text-align: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 1.5rem 0;
  opacity: 0.6;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 991px) {
  .section-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.clergy-card {
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
}
.clergy-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: block;
}
@media (max-width: 991px) {
  .clergy-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .clergy-card {
    max-width: 100%;
  }
}

.clergy-card--cutout {
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.clergy-card--cutout .portrait-wrap {
  width: 240px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18), 0 0 0 3px var(--cream2);
  background: var(--cream);
}
.clergy-card--cutout .portrait-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.clergy-card--cutout .clergy-caption {
  background: transparent;
  border-radius: 0;
  padding: 1rem 0 0;
}
.clergy-card--cutout .clergy-caption strong {
  color: var(--navy);
}
.clergy-card--cutout .clergy-caption span {
  color: var(--text-light);
}

.clergy-caption {
  background: var(--navy-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 0 0 6px 6px;
}
.clergy-caption strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 1rem;
  color: var(--gold-light);
}
.clergy-caption span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

.mission-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}
.mission-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  margin-bottom: 0.75rem;
}
.mission-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  margin: 0 auto;
}

.inclusive-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 0 auto;
}

.icon-inline {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.4rem;
  position: relative;
  top: -0.1em;
}

.icon-dt {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.3rem;
  position: relative;
  top: -0.1em;
}

.icon-footer-cross {
  width: 0.7rem;
  height: 1rem;
  vertical-align: middle;
  display: inline-block;
}

.mission-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: "Lora", serif;
}

.mission-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.mission-motto {
  text-align: center;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  border-top: 1px solid var(--cream2);
  padding-top: 2rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.support-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}
.support-card h3 {
  font-family: "Lora", serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.support-card ul {
  padding-left: 1.2rem;
}
.support-card ul li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.donate-cta {
  text-align: center;
  padding: 2rem;
}
.donate-cta p {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  text-decoration: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.contact-logo {
  width: 80px;
  margin-bottom: 1rem;
}
.contact-logo svg {
  width: 100%;
  height: auto;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.church-subtitle {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-details dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
}
.contact-details dt:first-child {
  margin-top: 0;
}
.contact-details dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  line-height: 1.6;
}
.contact-details dd a {
  color: var(--navy);
}
.contact-details dd a:hover {
  color: var(--gold-text);
}

.contact-map {
  position: relative;
  min-height: 400px;
  filter: grayscale(100%) contrast(1.05);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(78, 49, 24, 0.25);
}
.contact-map iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: none;
}
@media (max-width: 991px) {
  .contact-map {
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .contact-map {
    min-height: 260px;
    position: static;
  }
  .contact-map iframe {
    position: static;
    height: 260px;
  }
}

.page-hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .page-hero {
    padding: 4rem 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 1rem 2rem;
  }
}
.page-hero .hero-symbol {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: "Lora", serif;
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
}
@media (max-width: 991px) {
  .page-hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.6rem;
  }
}
.page-hero p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .page-hero p {
    font-size: 0.9rem;
  }
}

.inclusive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
@media (max-width: 991px) {
  .inclusive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .inclusive-grid {
    grid-template-columns: 1fr;
  }
}

.inclusive-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.inclusive-card h3 {
  font-family: "Lora", serif;
  color: var(--navy);
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
}
.inclusive-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.inclusive-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.clergy-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.clergy-id-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.clergy-id-card a {
  display: block;
  text-decoration: none !important;
}
.clergy-id-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.clergy-id-card a:hover img {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.clergy-bio {
  width: 100%;
  max-width: 760px;
}

.clergy-name {
  text-align: center;
  margin-bottom: 0.75rem;
}

.clergy-role {
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--gold-text);
  font-size: 1.05rem;
  margin: -0.5rem 0 1rem;
}

.clergy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0;
}
.clergy-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.credential-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .credential-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .credential-gallery {
    grid-template-columns: 1fr;
  }
}

.credential-item {
  display: block;
  text-decoration: none !important;
}
.credential-item:hover img {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.credential-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (max-width: 991px) {
  .credential-item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .credential-item--wide {
    grid-column: span 1;
  }
}

.credential-caption {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}
.credential-caption small {
  display: block;
  color: var(--gold-text);
  font-weight: 600;
}

.document-section {
  display: grid;
  grid-template-columns: 1fr minmax(0, 340px);
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .document-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.document-section--reverse {
  grid-template-columns: minmax(0, 340px) 1fr;
}
@media (max-width: 991px) {
  .document-section--reverse {
    grid-template-columns: 1fr;
  }
}
.document-section--reverse .document-image {
  order: 1;
}
@media (max-width: 991px) {
  .document-section--reverse .document-image {
    order: 0;
  }
}
.document-section--reverse .document-text {
  order: 2;
}
@media (max-width: 991px) {
  .document-section--reverse .document-text {
    order: 0;
  }
}
.document-section .document-image a {
  display: block;
  text-decoration: none !important;
}
.document-section .document-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}
@media (max-width: 991px) {
  .document-section .document-image img {
    max-width: 100%;
  }
}
.document-section .document-image a:hover img {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .document-section .document-image {
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .document-section .document-image {
    max-width: 100%;
  }
}

.doc-intro {
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faith-articles {
  padding-left: 0;
  list-style: none;
  margin: 0.75rem 0 1.5rem;
  counter-reset: faith-counter;
}
.faith-articles li {
  counter-increment: faith-counter;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream2);
}
.faith-articles li:last-child {
  border-bottom: none;
}
.faith-articles li::before {
  content: counter(faith-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  flex-shrink: 0;
}

.doc-signatories {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream2);
}
.doc-signatories p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0.35rem 0;
}
.doc-signatories strong {
  color: var(--navy);
}

.constitution-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .constitution-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .constitution-gallery {
    grid-template-columns: 1fr;
  }
}
.constitution-gallery .credential-item--wide {
  grid-column: 1/-1;
}

.main-nav a.active {
  color: var(--gold) !important;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.82rem;
}
.site-footer p {
  margin: 0.25rem 0;
}

.footer-motto {
  color: var(--gold);
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.9rem !important;
  margin-top: 0.5rem !important;
}

.footer-contact {
  margin-bottom: 0.75rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.card-pl {
  margin-top: 0.6rem !important;
  font-style: italic;
}

.support-pl {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.give-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.give-card {
  background: var(--white);
  border-radius: 10px;
  border-top: 4px solid var(--gold);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(78, 49, 24, 0.1);
  text-align: center;
}
.give-card h3 {
  font-family: "Lora", serif;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
.give-card p {
  color: var(--text-light);
  margin: 0 0 1rem;
}

.stripe-mount {
  margin: 1.25rem 0;
  min-height: 48px;
}

.give-note {
  font-size: 0.85rem !important;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0 !important;
}

.donate-form {
  margin-top: 0.5rem;
}

.amount-row, .freq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.freq-row {
  margin-top: 1rem;
}

.amount-chip, .freq-chip {
  position: relative;
  cursor: pointer;
}
.amount-chip input, .freq-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.amount-chip span, .freq-chip span {
  display: block;
  padding: 0.6rem 1.1rem;
  border: 2px solid var(--cream2);
  border-radius: 6px;
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.amount-chip input:checked + span, .freq-chip input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
}
.amount-chip input:focus-visible + span, .freq-chip input:focus-visible + span {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.amount-other {
  display: block;
  max-width: 260px;
  margin: 1.1rem auto 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.amount-other input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--cream2);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text);
}
.amount-other input:focus {
  border-color: var(--gold);
  outline: none;
}

.donate-submit {
  margin-top: 1.5rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(20, 12, 4, 0.92);
}
.lightbox.open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: 92vw;
  text-align: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}
.lightbox-figure figcaption {
  margin-top: 0.85rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy-dark);
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close:hover {
  background: var(--gold-light);
}

body.lightbox-lock {
  overflow: hidden;
}

.site-footer a {
  color: var(--gold-light);
}
.site-footer a:hover {
  color: var(--white);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1100;
}
.skip-link:focus {
  left: 1rem;
  top: 0.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible,
.mobile-toggle:focus-visible,
.main-nav a:focus-visible,
.logo-link:focus-visible,
.credential-item:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}
