@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ==========================================================================
   Clear Way Ministries — Inter body + Cormorant Garamond headings
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --navy: #1a3a52;
  --gold: #c8a55f;
  --white: #ffffff;
  --black: #000000;
  --gray-text: #4b5563;
  --gray-bg: #f9fafb;
  --border: #e5e7eb;
  --gold-glow: rgba(200, 165, 95, 0.25);
  --header-height: 96px;
  --container-max: 1400px;
  --container-narrow: 800px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

ul, ol { list-style: none; }

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Typography — Cormorant for section headings, Inter for UI/body */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
}

h1 {
  font-size: 5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-text);
}

p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-muted { color: var(--gray-text); }

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

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 1rem; }

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.container-narrow { max-width: var(--container-narrow); }

.section { padding: 8rem 0; }
.section-tight { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-bg); }

.section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 0.813rem;
  flex-shrink: 0;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo-img {
  height: auto;
  width: auto;
  max-height: 64px;
  max-width: 200px;
  object-fit: contain;
}

.nav-logo span { line-height: 1.3; display: none; }

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.938rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  opacity: 0.6;
}

.nav-menu a.active {
  font-weight: 600;
  opacity: 1;
}

.nav-dropdown::after {
  content: ' \25BE';
  font-size: 0.625rem;
  opacity: 0.6;
  margin-left: 0.25rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-right a:not(.btn) {
  color: var(--black);
  text-decoration: none;
  font-size: 0.938rem;
  font-weight: 400;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-right a:not(.btn):hover { opacity: 0.6; }

.nav-right .btn {
  font-size: 0.938rem;
  padding: 0.75rem 1.75rem;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.nav-right .btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
  display: block;
}

.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.938rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 0.6875rem 1.375rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 5rem;
  margin-top: calc(-1 * var(--header-height));
  background-image: url('images/photo-section-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 58, 82, 0.1) 0%, rgba(200, 165, 95, 0.06) 50%, rgba(26, 58, 82, 0.08) 100%),
    rgba(0, 0, 0, 0.14);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(5px) saturate(1.08);
  -webkit-backdrop-filter: blur(5px) saturate(1.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 3rem 2.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.08;
  font-weight: 500;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: 0 auto 2.5rem;
  max-width: 680px;
  line-height: 1.65;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  min-width: 11rem;
}

.hero .btn-primary:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  min-width: 11rem;
}

.hero .btn-secondary:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
  margin-top: calc(-1 * var(--header-height));
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.88) 0%, rgba(26, 58, 82, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .subtitle { color: var(--gold); }

.page-hero .hero-body {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-top: 1rem;
}

.page-hero--counseling { background-image: url('images/counseling-session.png'); }
.page-hero--mentorship { background-image: url('images/mentorship-session.png'); }
.page-hero--church { background-image: url('images/church-guidance.png'); }

/* Donate page */
.donate-intro {
  padding: 4rem 0 3rem;
  background: var(--white);
}

.donate-intro h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
}

.donate-image {
  margin: 0;
  padding: 0 3rem;
  line-height: 0;
}

.donate-image img {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  height: auto;
  max-height: 75vh;
  object-fit: cover;
  display: block;
}

.donate-body {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background: var(--white);
}

.donate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.donate-split-col {
  min-width: 0;
}

.donate-split-col--stripe {
  display: flex;
  flex-direction: column;
}

.donate-split-col--text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.donate-split-col--stripe .donate-stripe {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.donate-split-col--stripe form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.donate-split-col--stripe .btn-block {
  margin-top: auto;
}

.donate-prose p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 1.75rem;
}

.donate-prose p:last-child {
  margin-bottom: 0;
}

.donate-note {
  margin-top: 2rem !important;
  font-size: 1rem !important;
  color: var(--gray-text) !important;
}

.donate-give-panel {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--white);
}

.donate-give-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}

.donate-give-methods {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.donate-give-methods li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--black);
}

.donate-give-methods li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.donate-give-panel--simple {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.donate-give-panel--simple .donate-give-btn {
  margin: 0;
  min-width: 12rem;
}

.donate-give-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--gray-text);
  text-align: center;
  line-height: 1.5;
}

.amount-buttons--static {
  pointer-events: none;
}

.amount-btn--static {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--gray-bg);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
}

.donate-give-panel .amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.donate-give-panel .donate-knight .amount-buttons {
  grid-template-columns: repeat(3, 1fr);
}

.donate-stripe {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--white);
}

.donate-stripe-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.donate-stripe .form-group {
  margin-bottom: 1rem;
}

.donate-stripe .form-checkbox {
  margin-bottom: 1.25rem;
}

.donate-stripe .amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.donate-stripe .amount-btn {
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.donate-stripe .amount-display {
  margin-bottom: 1.25rem;
}

.stripe-payment-wrap {
  min-height: 120px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px dashed var(--border);
  border-radius: 0.5rem;
  background: var(--gray-bg);
}

.stripe-payment-wrap.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.donate-success.is-visible {
  display: block;
  margin-bottom: 1.25rem;
}

.donate-success[hidden] {
  display: none !important;
}

.stripe-placeholder {
  font-size: 0.875rem;
  color: var(--gray-text);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.donate-stripe-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.donate-stripe-secure svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.donate-onetime {
  margin-bottom: 2rem;
}

.donate-knight {
  padding-top: 2rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}

.donate-knight-intro {
  font-size: 0.9375rem;
  color: var(--gray-text);
  margin: -0.25rem 0 1rem;
  line-height: 1.5;
}

.donate-knight .amount-buttons {
  grid-template-columns: repeat(3, 1fr);
}

/* Mission */
.mission {
  background: var(--white);
  text-align: center;
}

.mission h2 {
  max-width: 1000px;
  margin: 0 auto 2rem;
  color: var(--black);
}

.mission .btn { margin-top: 1rem; }

/* Stats */
.stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stat p {
  font-size: 0.938rem;
  color: var(--gray-text);
}

/* Photo section */
.photo-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/support-biblical-care.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
}

.photo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.photo-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.photo-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.photo-callout {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  display: inline-block;
  margin: 2rem 0;
  max-width: 640px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.photo-callout p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.photo-callout-btn {
  margin: 0;
}

.photo-content h3 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 500;
}

/* Services (homepage cards) */
.services { background: var(--white); }

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 { margin-bottom: 1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services .service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: #0a1520;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.service-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, #0a1520);
  pointer-events: none;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  flex: 1;
  padding: 1.75rem 1.5rem 2rem;
  background: #0a1520;
  color: var(--white);
}

.services .service-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.75rem, 2.2vw, 2.125rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-card-accent {
  display: inline-block;
  position: relative;
  padding-bottom: 0.625rem;
}

.service-card-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.services .service-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.service-link:hover {
  gap: 0.75rem;
  opacity: 0.85;
}

/* About preview */
.about-preview { background: var(--gray-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 150px;
}

.about-sidebar h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.about-content h2 { margin-bottom: 2rem; }

.about-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-image-wrap { position: relative; }

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* About page */
.about-bio-section {
  padding: 5rem 0;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.about-bio-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.about-bio-text p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.about-bio-text p:last-child {
  margin-bottom: 0;
}

.about-credentials-section {
  padding: 5rem 0;
  background: var(--gray-bg);
}

.cred-wrap {
  padding: 3rem 2.5rem;
  background: #faf9f7;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.cred-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(184, 149, 42, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cred-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8952a;
  margin: 0 0 0.6rem;
}

.cred-title {
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.cred-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #b8952a, transparent);
  margin: 0 0 2.5rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cred-grid--five .cred-card:nth-child(4) {
  grid-column: 1;
}

.cred-grid--five .cred-card:nth-child(5) {
  grid-column: 3;
}

@media (min-width: 769px) {
  .cred-grid--five .cred-card:nth-child(4),
  .cred-grid--five .cred-card:nth-child(5) {
    grid-column: auto;
  }

  .cred-grid--five {
    grid-template-columns: repeat(6, 1fr);
  }

  .cred-grid--five .cred-card {
    grid-column: span 2;
  }

  .cred-grid--five .cred-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .cred-grid--five .cred-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.cred-card {
  background: #ffffff;
  border: 0.5px solid rgba(184, 149, 42, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cred-card:hover {
  border-color: rgba(184, 149, 42, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 42, 0.08);
}

.cred-card--featured {
  background: linear-gradient(135deg, #fffdf5 0%, #fff9e6 100%);
}

.cred-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(184, 149, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #b8952a;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-text {
  flex: 1;
  min-width: 0;
}

.cred-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #2c2a24;
  line-height: 1.55;
  font-weight: 400;
}

.cred-text > span:first-child {
  display: block;
  font-size: 0.6875rem;
  color: #b8952a;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.1875rem;
  text-transform: uppercase;
}

.cred-inline-note {
  font-size: 0.6875rem;
  color: #9a7c20;
  font-weight: 500;
}

.about-quote-section {
  padding: 5rem 0;
}

.pastor-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.pastor-quote-mark {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 0.25rem;
}

.pastor-quote blockquote {
  margin: 0;
}

.pastor-quote blockquote p {
  font-size: clamp(1.1875rem, 2.2vw, 1.4375rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--black);
  margin: 0;
}

.pastor-quote figcaption {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

/* CTA section */
.cta,
.cta-section {
  background: var(--navy);
  color: var(--white);
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cta h2,
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.cta-intro,
.cta-section > .container > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-options,
.cta-booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.cta-option,
.cta-booking-option {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  text-align: left;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.cta-option:hover,
.cta-booking-option:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.option-label {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.option-content h4 {
  color: var(--navy);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.option-content p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.option-content .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.disclaimer,
.disclaimer-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.disclaimer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
}

.disclaimer a:hover { opacity: 0.8; }

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

/* Footer */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 0.938rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-text);
}

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--gray-text);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--black); }

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-social a:hover { color: var(--black); }

/* Service detail (inner pages) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.service-detail-image {
  border-radius: 1rem;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail.reverse .service-detail-image { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }

/* Accordion */
.accordion {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-item + .accordion-item { border-top: 1px solid var(--border); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition-fast);
}

.accordion-header:hover { background: var(--gray-bg); }

.accordion-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-content.is-open { max-height: 600px; }

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-text);
}

.accordion-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.accordion-body li { margin-bottom: 0.375rem; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.process-step-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.process-step h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9375rem; }

/* Booking */
.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 840px;
  margin: 0 auto 3rem;
}

.booking-cards--triple {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}

.booking-subsection {
  margin-top: 3rem;
}

.booking-subsection:first-child {
  margin-top: 0;
}

.booking-section-title,
.booking-subsection h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--navy);
}

.booking-service-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.75rem 0;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.25rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.booking-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.booking-card.is-selected {
  border-color: var(--gold);
  background: var(--gray-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-duration {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.booking-price {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.booking-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.selected-service-label {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--gray-bg);
  border-radius: 0.5rem;
  display: none;
}

.selected-service-label.is-visible { display: block; }

#calendlySection.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.calendly-wrap {
  width: 100%;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  line-height: 0;
}

.calendly-wrap .calendly-inline-widget {
  width: 100%;
  min-width: 320px;
}

.calendly-wrap iframe {
  display: block;
  width: 100% !important;
  border: 0;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.form-label .required { color: var(--gold); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #c0392b;
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-error {
  display: none;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.375rem;
}

.form-error.is-visible { display: block; }

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 0.5rem;
  color: #1e8449;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-success.is-visible { display: block; }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

/* What to Expect (booking) */
.expect-section {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.expect-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.expect-header h2 {
  margin-bottom: 0.875rem;
}

.expect-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin: 0;
}

.expect-steps {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.expect-step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.375rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.expect-step:last-child {
  border-bottom: none;
}

.expect-step-num {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50%;
  line-height: 1;
}

.expect-step p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--black);
}

/* Numbered steps (legacy) */
.numbered-steps { max-width: 640px; margin: 0 auto; }

.numbered-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
  color: var(--gray-text);
}

.numbered-steps li span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
}

/* Payment grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.payment-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.payment-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-icon { font-size: 1.25rem; }
.payment-card p { font-size: 0.9375rem; }

.payment-detail {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
}

.payment-toggle {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Donation form */
.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition-fast);
}

.amount-btn:hover { border-color: var(--gold); }

.amount-btn.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.amount-display {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  background: var(--gray-bg);
  border-radius: 0.5rem;
  text-align: center;
}

.donation-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.25rem;
  max-width: 520px;
  margin: 2.5rem auto 0;
}

.donation-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 82, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 1rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(16px);
  transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal { transform: translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.modal-header h2 { font-size: 1.5rem; }

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-text);
  font-size: 1.5rem;
}

.modal-close:hover { background: var(--gray-bg); }

.modal-body { padding: 1.5rem; }

/* Contact */
.contact-section {
  padding: 5rem 0;
}

.contact-intro {
  max-width: 560px;
  margin-bottom: 3rem;
}

.contact-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.contact-intro p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-panel,
.contact-form-panel {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--white);
  height: 100%;
}

.contact-panel-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.contact-details {
  margin: 0;
  padding: 0;
}

.contact-detail {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
}

.contact-detail dd {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--black);
}

.contact-detail a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.contact-panel-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-text);
}

.contact-form-panel form {
  display: flex;
  flex-direction: column;
}

.contact-form-panel .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-panel .form-group {
  margin-bottom: 1rem;
}

.contact-form-panel .form-input,
.contact-form-panel .form-select,
.contact-form-panel .form-textarea {
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
}

.contact-form-panel .form-textarea {
  min-height: 128px;
}

.contact-form-panel .btn-block {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
}

/* Legacy contact styles */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--gray-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.125rem;
}

.contact-info-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-item p,
.contact-info-item a { font-size: 0.9375rem; }

/* Blockquote / quotes */
.ministry-quote {
  background: var(--gray-bg);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.ministry-quote blockquote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--gray-text);
  line-height: 1.7;
}

.ministry-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.scripture-quote {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.scripture-quote blockquote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
}

.scripture-quote cite {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  color: var(--gray-text);
}

.experience-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  background: var(--gold);
  border-radius: 50%;
}

.transparency-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.transparency-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: var(--gray-text);
}

.transparency-list li::before {
  content: '\2713';
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Animations */
.animate-on-scroll,
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1, .reveal-delay-1 { transition-delay: 0.1s; }
.animate-delay-2, .reveal-delay-2 { transition-delay: 0.2s; }
.animate-delay-3, .reveal-delay-3 { transition-delay: 0.3s; }
.animate-delay-4, .reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.75rem; }

  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-sidebar { position: static; }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-image,
  .service-detail.reverse .service-detail-content { order: 0; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 84px; }

  .container,
  .nav-container,
  .footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-container {
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-logo span { font-size: 0.75rem; }

  .nav-menu,
  .nav-right { display: none; }

  .nav-toggle { display: flex; }

  .nav.is-open .nav-menu {
    display: flex;
    flex-direction: column;
    order: 3;
    width: 100%;
    gap: 1rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid var(--border);
  }

  .nav.is-open .nav-right {
    display: flex;
    flex-direction: column;
    order: 4;
    width: 100%;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .nav.is-open .nav-right .btn { text-align: center; }

  .section { padding: 5rem 0; }

  .donate-intro { padding: 3rem 0 2rem; }
  .donate-image { padding: 0 1.5rem; }
  .donate-body { padding-top: 3.5rem; padding-bottom: 5rem; }

  .expect-section { padding: 3.5rem 0; }

  .expect-header { margin-bottom: 2rem; }

  .expect-step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
  }

  .expect-step-num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }

  .expect-step p { font-size: 1rem; }

  .about-bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-bio-section,
  .about-credentials-section,
  .about-quote-section {
    padding: 3.5rem 0;
  }

  .cred-wrap {
    padding: 2rem 1.5rem;
  }

  .cred-grid {
    grid-template-columns: 1fr;
  }

  .cred-divider {
    margin-bottom: 2rem;
  }

  .pastor-quote {
    padding: 2.25rem 1.5rem;
  }

  .donate-stripe .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 { font-size: 2.5rem; line-height: 1.1; }
  h2 { font-size: 2rem; }

  .hero h1 { font-size: 2.5rem; }

  .hero {
    min-height: 78vh;
    padding: 5rem 0 4rem;
    background-position: center center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cta-options,
  .cta-booking-options,
  .booking-cards,
  .booking-cards--triple { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .grid-2,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact-form-panel .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section { padding: 3.5rem 0; }

  .contact-intro { margin-bottom: 2rem; }

  .process-steps { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (max-width: 480px) {
  .amount-buttons { flex-direction: column; }
  .amount-btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
