/* ---------- Base ---------- */

:root {
  --bg: #0b1119;
  --bg-alt: #0f1723;
  --bg-muted: #f2f4f7;
  --bg-card: #ffffff;
  --accent: #d6b07a;
  --accent-dark: #c59c5d;
  --text-main: #0f1724;
  --text-light: #edf2f7;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --max-width: 1100px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 20px 50px rgba(9, 12, 18, 0.18);
  --ml-form-max-width: 360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Baskerville", "Lora", serif;
  color: var(--text-main);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

p, span, div, li, a, label, input, textarea, select, button {
  font-family: "Libre Baskerville", "Lora", serif;
}

/* Buttons should use body font */
.btn {
  font-family: "Lora", "Inter", serif;
}

/* Ensure all headings use Playfair Display */
h1, h2, h3, h4, h5, h6,
.section-header h1, .section-header h2,
.resource-card-content h3,
.brand-title,
.obedience-content h2,
.affirmations-content h2,
.examen-content h2 {
  font-family: "Playfair Display", serif;
}

/* ---------- Layout Helpers ---------- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  background: #ffffff;
}

.section-alt {
  padding: 4.5rem 0;
  background: #f7f9fb;
}

.section-muted {
  padding: 6rem 0;
  background: var(--bg-alt);
  color: var(--text-light);
}

/* Dark blue page headers (used on most pages except Home/About) */
.page-hero {
  padding: 1rem 0 1rem;
}

.section-muted .section-header h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.section-muted .section-header p {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.95);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 0.25rem 0 0.25rem;
  }

  .section-muted .section-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 0.5rem;
  }

  .section-muted .section-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  .section-muted .section-header {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 0.4rem 0 0.4rem;
  }

  .section-muted .section-header h1 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin: 0 0 0.4rem;
  }

  .section-muted .section-header p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

.section-narrow {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.section-header p {
  max-width: 550px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-muted .section-header h2 {
  color: var(--text-light);
}

.section-muted .section-header p {
  color: rgba(226, 232, 240, 0.85);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0b1119;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-subtitle {
  font-size: 0.78rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: #f1f5f9;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Make "Give" look like the gold CTA button in header nav.
   Use a dedicated class instead of relying on href formats that can change on deploy. */
.site-header .main-nav a.btn-nav-cta {
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  color: #0b0f17 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 999px !important;
  margin-left: 1rem;
  border-left: none !important; /* override mobile ".active" border-left */
  transition: all 0.3s ease;
}

.site-header .main-nav a.btn-nav-cta::after {
  display: none !important;
}

.site-header .main-nav a.btn-nav-cta:hover,
.site-header .main-nav a.btn-nav-cta:focus {
  background: var(--accent-dark) !important;
  background-color: var(--accent-dark) !important;
  color: #0b0f17 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 176, 122, 0.3);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--accent);
}

.main-nav a.active::after {
  width: 100%;
}

.btn-nav-cta {
  background: var(--accent) !important;
  color: #0b0f17 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 999px !important;
  margin-left: 1rem;
  transition: all 0.3s ease !important;
}

.btn-nav-cta::after {
  display: none !important;
}

.btn-nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(214, 176, 122, 0.3) !important;
}

/* ---------- Mobile Nav ---------- */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 50;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:hover span {
  background: var(--accent);
}

/* Hamburger animation when menu is open */
.site-header:has(.main-nav.open) .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.site-header:has(.main-nav.open) .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header:has(.main-nav.open) .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Fallback for browsers that don't support :has() */
.main-nav.open ~ .header-inner .nav-toggle span:nth-child(1),
.site-header.open-nav .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.main-nav.open ~ .header-inner .nav-toggle span:nth-child(2),
.site-header.open-nav .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.main-nav.open ~ .header-inner .nav-toggle span:nth-child(3),
.site-header.open-nav .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 85vh;
  color: var(--text-light);
  background: #0a0e14;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  isolation: isolate;
  margin-top: 0;
}

.hero-home {
  background-image: url("../images/hero-home page-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile hero background */
@media (max-width: 768px) {
  .hero-home {
    background-image: url("../images/hero-home page-background.webp");
  }
  
  /* Show stronger gradient overlay on mobile */
  .hero::before {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.1);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.15) 0%, rgba(10, 14, 20, 0.05) 50%, rgba(10, 14, 20, 0.15) 100%);
  z-index: 1;
}

/* Stronger gradient overlay for mobile readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 5rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  line-height: 1.1;
}

/* Mobile typography adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    line-height: 1.2;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #ffffff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Mobile subheadline adjustments */
.hero-subtitle-desktop {
  display: block;
}

.hero-subtitle-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 30ch;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-subtitle-desktop {
    display: none;
  }
  
  .hero-subtitle-mobile {
    display: block;
  }
}

/* Hero Text Content Styles */
.hero-text-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-label {
  font-family: "Playfair Display", serif;
  /* Match tagline size (Restoration...) */
  font-size: clamp(1.75rem, 3.5vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.hero-main-title {
  font-family: "Caveat", "Allura", "Playfair Display", serif;
  font-size: clamp(6.5rem, 13vw, 9.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0;
}

.forward {
  font-family: "Caveat", cursive;
}

.hero-tagline {
  font-family: "Lora", serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.01em;
}

.hero-description {
  font-family: "Lora", serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-label {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .hero-main-title {
    font-size: clamp(3.8rem, 14vw, 5.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Home hero: make secondary button text gold */
.hero-actions .btn-outline {
  color: var(--accent);
  border-color: rgba(214, 176, 122, 0.75);
}

.hero-actions .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(214, 176, 122, 0.12);
}

/* Mobile CTA stack - vertical layout */
@media (max-width: 768px) {
  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Hide tertiary button on mobile initially (can be shown below fold) */
  .hero-actions .btn-tertiary {
    display: none;
  }
}

.nav-spacer {
  height: 10px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0b0f17;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

/* Professional mobile button styling - Uniform for all buttons */
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    border-radius: 6px;
  }

  .btn-primary {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-outline {
    border-width: 1.5px;
  }
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(214, 176, 122, 0.35);
}

.btn-tertiary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Split Layout ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.split-text h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.split-text p {
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem;
}

.split-text .highlight-list {
  margin-top: 1.3rem;
}

.highlight-list {
  padding-left: 1.1rem;
  color: #374151;
}

.highlight-list li {
  margin-bottom: 0.4rem;
}

/* ---------- Home Sections ---------- */

.dark-section {
  background: #2f3133;
  color: #ffffff;
}

/* Ensure all text in dark sections is white */
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6,
.dark-section p,
.dark-section li,
.dark-section span,
.dark-section label,
.dark-section strong,
.dark-section em,
.dark-section a:not(.btn) {
  color: #ffffff;
}

.dark-section .section-header h1,
.dark-section .section-header h2 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.dark-section .section-header h1::after,
.dark-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.dark-section .section-header p {
  color: #ffffff;
}

.dark-section .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .service-card h3,
.dark-section .service-card p,
.dark-section .service-description {
  color: #ffffff;
}

.dark-section .service-icon {
  color: var(--accent);
}

.dark-section .service-details {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 10px;
}

.dark-section .service-details p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.dark-section .service-details strong {
  color: #ffffff;
  font-weight: 600;
}

.dark-section .resource-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .resource-card-content h3,
.dark-section .resource-card-content p {
  color: #ffffff;
}

.dark-section .event-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .event-card h3,
.dark-section .event-description,
.dark-section .event-details p,
.dark-section .event-details strong {
  color: #ffffff;
}

.dark-section .contact-info-card,
.dark-section .contact-cta-card,
.dark-section .prayer-request-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .contact-form-wrapper h2,
.dark-section .contact-info-wrapper h2,
.dark-section .contact-info-item strong,
.dark-section .contact-info-item p,
.dark-section .contact-cta-card h3,
.dark-section .contact-cta-card p {
  color: #ffffff;
}

.dark-section .form-group label {
  color: #ffffff;
}

.dark-section .form-group input {
  background: rgba(47, 49, 51, 0.8);
  border: 1px solid rgba(214, 176, 122, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  padding: 0.75rem;
  font: inherit;
}

.dark-section .form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.2);
}

.dark-section .form-group select {
  background: rgba(47, 49, 51, 0.8);
  border: 1px solid rgba(214, 176, 122, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  padding: 0.75rem;
  padding-right: 2.5rem;
  font: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
}

.dark-section .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.2);
}

.dark-section .form-group textarea {
  background: rgba(47, 49, 51, 0.8);
  border: 1px solid rgba(214, 176, 122, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  padding: 0.75rem;
  font: inherit;
  resize: vertical;
}

.dark-section .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.2);
}

.dark-section .form-group input::placeholder,
.dark-section .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dark-section .give-intro h2,
.dark-section .give-intro p,
.dark-section .give-benefits li,
.dark-section .give-options h2,
.dark-section .give-global-impact h2,
.dark-section .give-global-impact p,
.dark-section .donation-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .give-intro h2 {
  color: #ffffff !important;
}

.dark-section .give-intro p {
  color: #ffffff !important;
}

.dark-section .give-benefits li {
  color: #ffffff !important;
}

.dark-section .give-options h2 {
  color: #ffffff !important;
}

.dark-section .give-options-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}

.dark-section .give-global-impact {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-section .give-global-impact h2 {
  color: #ffffff !important;
}

.dark-section .give-global-impact p {
  color: #ffffff !important;
}

.dark-section .give-global-impact .give-benefits li {
  color: #ffffff !important;
}

.dark-section .donation-options h2 {
  color: #ffffff !important;
}

.dark-section .impact-card {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dark-section .impact-card h3 {
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
}

.dark-section .impact-card p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.dark-section .donation-card h3,
.dark-section .donation-card p {
  color: #ffffff;
}

.dark-section .calendar-cta h2,
.dark-section .calendar-cta p {
  color: #ffffff;
}

.dark-section .blog-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dark-section .blog-header h1,
.dark-section .blog-subtitle {
  color: #ffffff;
}

.dark-section .blog-loading,
.dark-section .blog-empty {
  color: #ffffff;
}

.dark-section .blog-error {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section .blog-error p,
.dark-section .blog-error-help {
  color: #ffffff;
}

.dark-section .blog-post {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .blog-post-title,
.dark-section .blog-post-date,
.dark-section .blog-post-content,
.dark-section .blog-post-content p {
  color: #ffffff;
}

/* ---------- The Way Forward Section ---------- */

#the-way-forward.section {
  padding-bottom: 2.25rem;
}

#twf-spaces.section {
  padding-top: 2.25rem;
}

@media (max-width: 768px) {
  #the-way-forward.section {
    padding-bottom: 2rem;
  }

  #twf-spaces.section {
    padding-top: 2rem;
  }
}

.working-text h2 {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #d6b07a;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.working-text .working-intro-text {
  font-size: 1.05rem;
  color: #191c40;
  line-height: 1.8;
  margin: 0;
  font-style: normal;
}

/* ---------- TWF Spaces Section ---------- */

.twf-spaces-section {
  background: #ffffff;
  padding: 6rem 0;
}

.twf-spaces-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.twf-spaces-header {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #d6b07a;
  margin: 0 0 2rem;
  font-weight: 600;
}

.twf-spaces-content p {
  font-family: "Libre Baskerville", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #191c40;
  margin: 0;
}

.working-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.portrait-placeholder {
  background: linear-gradient(#e3e3e3, #cfcfcf);
  border: none;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.working-intro {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.working-intro-text {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.7;
  margin: 0 0 2.5rem;
  font-style: italic;
}

/* Removed old working-text h2 styles - now using new The Way Forward styling */

.working-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.working-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.working-icon {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  line-height: 1;
}

.working-content h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-gold {
  color: var(--accent);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}

.working-content p {
  color: #d7d7d7;
  line-height: 1.7;
  margin: 0;
}

.start-section {
  background: #ffffff;
  color: #191c40;
  text-align: center;
  position: relative;
  padding: 6rem 0;
}

.start-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.start-inner h2 {
  font-family: "Playfair Display", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: #191c40;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1.5rem;
}

.start-inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d6b07a;
}

.journey-content {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.journey-main-text {
  font-family: "Libre Baskerville", serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #191c40;
  margin: 0 0 2rem;
  font-style: normal;
  font-weight: 400;
}

.journey-blessing {
  font-family: "Libre Baskerville", serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #191c40;
  margin: 0;
  font-style: italic;
  font-weight: 400;
}

.start-actions {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.wide {
  flex: 0 1 auto;
  min-width: 200px;
  justify-content: center;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

.btn.wide.btn-primary {
  background: var(--accent);
  color: #0b0f17;
  border: none;
}

.btn.wide.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 176, 122, 0.4);
}

.btn.wide.btn-outline {
  border-color: #191c40;
  color: #191c40;
  background: transparent;
}

.btn.wide.btn-outline:hover {
  background: #191c40;
  border-color: #191c40;
  color: #ffffff;
}

/* Landing page: make "Explore Resources" gold in Start Journey */
#start-journey .btn.wide.btn-outline {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0f17;
}

#start-journey .btn.wide.btn-outline:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #0b0f17;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 176, 122, 0.4);
}

.blog-strip {
  position: relative;
  background: url("../images/hero-forest.webp") center/cover no-repeat;
  padding: 4rem 0;
  color: #f8f8f8;
  text-align: center;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.blog-inner {
  position: relative;
  text-align: center;
}

.blog-inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.blog-inner p {
  margin: 0;
  color: #e5e7eb;
}

.about-section {
  background: #2f3133;
}

/* ---------- Featured Resources Section ---------- */

#featured-resources {
  background: #191c40;
}

#featured-resources .section-header h2,
#featured-resources .section-header p {
  color: #ffffff;
}

.resources-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-preview-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.resource-preview-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.resource-preview-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.resource-preview-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.resource-description {
  font-size: 0.95rem;
  color: #191c40;
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.resource-preview-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #191c40;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.resource-preview-card p {
  color: #191c40;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.resource-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  pointer-events: none;
  cursor: default;
}

.resources-view-all {
  text-align: center;
  margin-top: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.about-photo {
  background: linear-gradient(160deg, #d8d2c7, #a99b86);
  border: 4px solid #2f343b;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  min-height: 340px;
}

/* ---------- Image Card ---------- */

.split-media {
  display: flex;
  justify-content: center;
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at 20% 20%, rgba(214, 176, 122, 0.22), transparent 55%),
    #0d1520;
  position: relative;
  min-height: 360px;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.25), rgba(8, 12, 18, 0.55));
}

/* ---------- Content Pages ---------- */

.content {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.content .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.content h3 {
  margin-top: 0;
}

.content .block {
  margin-bottom: 1.7rem;
}

.content ul {
  padding-left: 1.25rem;
  color: #374151;
}

.content .scripture,
.content .closing {
  color: #4b5563;
  line-height: 1.7;
}

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

/* ---------- Cards ---------- */

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.card-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  margin-bottom: 1rem;
  background: radial-gradient(circle at 30% 20%, rgba(214, 176, 122, 0.18), transparent 55%),
    #0d1520;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.15), rgba(8, 12, 18, 0.55));
}

/* ---------- Materials ---------- */

.materials-main {
  background: #ffffff;
  min-height: calc(100vh - 70px);
}

.materials-hero {
  padding: 3.5rem 0 4rem;
}

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

.materials-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #1f2933;
  margin: 0 0 2.5rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: start;
}

.materials-item {
  text-decoration: none;
  color: #0f1724;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.materials-item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.materials-item img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  border: 4px solid #2f343b;
  border-radius: 4px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .materials-hero {
    padding: 2.5rem 0 3rem;
  }

  .materials-grid {
    gap: 1.5rem;
  }
}

.card p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

.badge {
  align-self: flex-start;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(180, 83, 9, 0.08);
  color: var(--accent-dark);
}

/* ---------- Subscribe ---------- */

.subscribe-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.subscribe-grid h2 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.subscribe-grid p {
  margin: 0;
  color: var(--text-muted);
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.subscribe-form input {
  flex: 1 1 210px;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font: inherit;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(196, 122, 63, 0.4);
}

.subscribe-form .btn {
  flex-shrink: 0;
}

.form-note {
  width: 100%;
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
}

.section-muted .subscribe-grid p {
  color: rgba(226, 232, 240, 0.85);
}

.section-muted .subscribe-form input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.section-muted .subscribe-form input::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

.section-muted .form-note {
  color: rgba(226, 232, 240, 0.7);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #1a202c;
  color: #cbd5e1;
  padding: 4rem 0 2.5rem;
  font-size: 0.85rem;
  margin-top: 0;
  border-top: none;
}

.about-page .site-footer {
  margin-top: 0;
}

.footer-inner {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-small {
  margin-top: 0.3rem;
  color: #94a3b8;
}

/* ---------- Misc ---------- */

.small-center {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-muted .small-center {
  color: rgba(226, 232, 240, 0.8);
}

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

/* ---------- Affirmations ---------- */

.affirmations-page {
  background: #202226;
}

.affirmations-main {
  padding: 0;
}

.affirmations-section {
  padding: 4rem 0;
  background: #202226;
}

.affirmations-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.affirmations-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.affirmations-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.affirmation-card {
  position: relative;
  background-image: url("../images/hero-forest.webp");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  height: auto;
  min-height: 300px;
  color: #f8fafc;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.affirmation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.2), rgba(7, 11, 16, 0.6));
}

.affirmation-card-overlay {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.affirmation-card-overlay h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.affirmation-card-overlay p {
  font-family: "Lora", serif;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e5e7eb;
}

.affirmations-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-weight: 500;
}

.affirmations-content h2 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.affirmations-lead {
  margin: 0 0 2rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
}

.affirmations-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
  color: #ffffff;
}

.affirmations-list li {
  margin-bottom: 0;
  padding: 0;
  color: #ffffff;
}

.affirmations-list li:has(strong:first-child) {
  margin-top: 1.5rem;
  padding-top: 0;
}

.affirmations-list li:has(strong:first-child):first-of-type {
  margin-top: 0;
}

.affirmations-list li strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.affirmations-list li ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.affirmations-list li ul li {
  margin-bottom: 0.5rem;
  padding: 0;
  color: #ffffff;
}

.affirmations-list .ref {
  display: inline-block;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

@media (max-width: 820px) {
  .affirmations-layout {
    gap: 2rem;
  }

  .affirmations-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .affirmation-card {
    max-width: 100%;
    min-height: 250px;
  }
}

/* ---------- Examen ---------- */

.examen-page {
  background: #ffffff;
}

.examen-main {
  padding: 3rem 0 4rem;
}

.examen-section {
  padding: 0;
}

.examen-wrapper {
  max-width: 1100px;
}

.examen-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.examen-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.examen-header h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
}

.examen-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.examen-card {
  position: relative;
  background-image: url("../images/hero-forest.webp");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  height: auto;
  min-height: 300px;
  color: #f8fafc;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.examen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.2), rgba(7, 11, 16, 0.6));
}

.examen-card-overlay {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.examen-card-overlay h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.examen-card-overlay p {
  font-family: "Lora", serif;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e5e7eb;
}

.examen-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-weight: 500;
}

.examen-content h2 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.examen-lead {
  margin: 0 0 2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.examen-steps {
  margin: 0;
}

.examen-steps h3 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.examen-list {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 1.8;
  color: #ffffff;
}

.examen-list li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.examen-list ul {
  padding-left: 1.2rem;
  margin-top: 0.3rem;
}

.examen-list strong {
  font-weight: 700;
  color: #ffffff;
}

.examen-list ul {
  color: rgba(255, 255, 255, 0.9);
}

.examen-closing {
  margin-top: 1.2rem;
}

@media (max-width: 820px) {
  .examen-layout {
    gap: 2rem;
  }

  .examen-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .examen-card {
    max-width: 100%;
    min-height: 250px;
  }
}

/* ---------- Obedience From Love ---------- */

.obedience-page {
  background: #202226;
}

.obedience-main {
  padding: 0;
}

.obedience-section {
  padding: 4rem 0;
  background: #202226;
}

.obedience-wrapper {
  max-width: 1100px;
}

.obedience-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.obedience-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.obedience-header h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.obedience-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.obedience-card {
  position: relative;
  background-image: url("../images/hero-forest.webp");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  height: auto;
  min-height: 300px;
  color: #f8fafc;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.obedience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.2), rgba(7, 11, 16, 0.6));
}

.obedience-card-overlay {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.obedience-card-overlay h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.obedience-card-overlay p {
  font-family: "Lora", serif;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e5e7eb;
}

.obedience-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.obedience-content h2 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.obedience-content h3 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.obedience-subtitle {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  color: #ffffff;
}

.obedience-scripture {
  margin: 0 0 2rem;
  line-height: 1.7;
  color: #ffffff;
}

.obedience-list {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.8;
  color: #ffffff;
}

.obedience-list li {
  margin-bottom: 0.7rem;
}

.obedience-list ul {
  padding-left: 1.2rem;
  margin-top: 0.3rem;
}

.obedience-list .ref {
  display: inline-block;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

.obedience-closing {
  margin-top: 1.5rem;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.obedience-closing-title {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: normal;
}

.closing-text {
  margin: 0.5rem 0;
  line-height: 1.7;
  color: #ffffff;
}

.closing-separator {
  margin-top: 2rem;
}

.obedience-principles,
.obedience-considerations {
  margin: 0;
}

.obedience-principles-content {
  color: #ffffff;
}

.obedience-principles-content p {
  margin: 0;
  line-height: 1.7;
  color: #ffffff;
}

.obedience-principles-content p:has(strong:first-child) {
  margin-top: 1.5rem;
}

.obedience-principles-content p:has(strong:first-child):first-of-type {
  margin-top: 0;
}

.obedience-principles-content strong {
  color: #ffffff;
  font-weight: 600;
}

.obedience-principles-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.obedience-principles-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #ffffff;
}

.obedience-principles-content ul li strong {
  color: #ffffff;
  font-weight: 600;
}

.obedience-principles-content .ref,
.obedience-scripture .ref {
  display: inline-block;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

.obedience-italic {
  font-style: italic;
  color: #ffffff;
}

/* ---------- Blog Page ---------- */

.blog-page {
  background: #2f3133;
}

.blog-main {
  min-height: calc(100vh - 200px);
  padding: 0;
}

.blog-section {
  padding: 2rem 0;
}

.blog-wrapper {
  max-width: 800px;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-soft);
}

.blog-header h1 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin: 0 0 0.5rem;
}

.blog-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.blog-loading,
.blog-error {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.blog-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
}

.blog-error-help {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #7f1d1d;
}

.blog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-post {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.blog-post:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.blog-category {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.blog-post-title {
  font-size: 2rem;
  color: var(--text-main);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-post-date {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.blog-post-content {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-post-content p {
  margin: 0 0 1.25rem;
}

.blog-post-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .obedience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .obedience-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-post-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 900px) {
  .working-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .subscribe-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-form {
    justify-content: center;
    max-width: 100%;
    margin-left: 0;
  }

  .newsletter-form .ml-embedded {
    max-width: 100%;
  }

  .newsletter-form .ml-embedded .ml-form-embedContainer,
  .site-footer .ml-embedded,
  .site-footer .ml-embedded .ml-form-embedContainer {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2.05rem;
  }

  .header-inner {
    height: 70px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-title {
    font-size: 0.85rem;
  }

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

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #0b1119;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

  .main-nav a {
    display: block;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    text-align: left;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background-color: rgba(214, 176, 122, 0.1);
    color: var(--accent);
    padding-left: 2rem;
  }

  .main-nav a.active {
    background-color: rgba(214, 176, 122, 0.15);
    color: var(--accent);
    border-left: 3px solid var(--accent);
  }

  .main-nav a::after {
    display: none;
  }

  .btn-nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
  }

  /* Give button spacing in mobile menu */
  .site-header .main-nav a.btn-nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    transform: none;
  }

  .site-header .main-nav a.btn-nav-cta:hover,
  .site-header .main-nav a.btn-nav-cta:focus {
    transform: none;
  }

  .main-nav.open {
    max-height: 500px;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 75vh;
  }

  .hero-inner {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    line-height: 1.2;
    max-width: 22ch;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 30ch;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
  }
  
  .hero-actions a {
    width: auto;
    text-align: center;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }
  
  .hero-actions .btn-primary {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .hero-actions .btn-outline {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    border-width: 1.5px;
  }
  
  /* Hide tertiary button on mobile */
  .hero-actions .btn-tertiary {
    display: none;
  }
}

/* Scroll hint for mobile */
.scroll-hint {
  opacity: 0.6;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
  color: #ffffff;
  animation: bounce 2s infinite;
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .scroll-hint {
    display: block;
    position: relative;
    z-index: 2;
  }
}

/* ---------- Resources Page ---------- */

.resources-main {
  background: #2f3133;
}

.resources-page {
  background: #2f3133;
}

.resources-hero {
  padding: 2.5rem 0 2rem;
  background: var(--bg-alt) !important;
}

.resources-hero .section-header h1 {
  font-size: 45px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.resources-page .section-muted {
  background: var(--bg-alt) !important;
}

.resources-section {
  padding: 3rem 0 4rem;
  background: #2f3133;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.resource-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.3), rgba(8, 12, 18, 0.5));
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* Resources card: overlay the same hero words as homepage */
.resource-card-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1rem;
  pointer-events: none;
}

.resource-hero-label {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.1;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.resource-hero-title {
  font-family: "Caveat", "Allura", "Playfair Display", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  letter-spacing: 0;
}

.resource-hero-tagline {
  font-family: "Lora", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 28ch;
}

@media (max-width: 480px) {
  .resource-hero-label {
    font-size: 0.9rem;
  }

  .resource-hero-title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .resource-hero-tagline {
    font-size: 0.88rem;
  }
}

.resource-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resource-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.resource-card-content p {
  font-family: "Lora", serif;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.resource-card-content .btn {
  align-self: flex-start;
  pointer-events: none;
  cursor: default;
}

/* ---------- About Page ---------- */

.about-page {
  background: #fafafa;
}

/* New About Page Sections - Gold Headers, Blue Text - Modern Design */
.about-page .about-section {
  background: #ffffff;
  padding: 6rem 0;
  border-top: 1px solid rgba(214, 176, 122, 0.15);
}

.about-page .about-section:first-of-type {
  border-top: none;
}

.about-page .about-section .about-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.about-page .about-section .about-section-header h2 {
  color: #d6b07a;
  font-size: 2.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.about-page .about-section .about-section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d6b07a 0%, rgba(214, 176, 122, 0.3) 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.about-page .about-section .about-section-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-page .about-section .about-section-content p {
  color: #1e3a8a;
  font-size: 1.125rem;
  line-height: 1.9;
  margin: 0 0 1.75rem;
  font-weight: 400;
}

.about-page .about-section .about-section-content p:last-child {
  margin-bottom: 0;
}

.about-page .about-drives-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.about-page .about-drives-list li {
  color: #1e3a8a;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0;
  padding: 1rem 1.5rem 1rem 2.5rem;
  position: relative;
  background: #f8f9fa;
  border-left: 3px solid #d6b07a;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-page .about-drives-list li:hover {
  background: #f0f4f8;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.about-page .about-drives-list li::before {
  content: "•";
  color: #d6b07a;
  font-size: 1.75rem;
  font-weight: bold;
  position: absolute;
  left: 0.75rem;
  top: 0.9rem;
  line-height: 1;
}

.about-page .about-drives-list li:last-child {
  margin-bottom: 0;
}

/* ---------- About Main Wrapper ---------- */
.about-main-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- About Hero Section ---------- */
.about-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

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

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(30, 58, 138, 0.15), 0 0 0 1px rgba(214, 176, 122, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(30, 58, 138, 0.2), 0 0 0 1px rgba(214, 176, 122, 0.15);
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #d6b07a;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.about-hero-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1e3a8a;
  margin: 0;
}

/* Keep hero title on one line for desktop + iPad */
@media (max-width: 1200px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    max-width: 1000px;
  }

  .about-hero-text {
    align-items: center;
  }

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

  .about-hero-image {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- About Section Headers ---------- */
.about-section-header {
  margin-bottom: 3rem;
  margin-top: 4rem;
  text-align: left;
}

.about-section-header:first-of-type {
  margin-top: 0;
}

.about-section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  text-align: left;
}

.about-section-summary {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.about-section-divider {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(214, 176, 122, 0.3) 100%);
  border-radius: 2px;
  margin: 0;
}

/* ---------- About Bio Section ---------- */
.about-bio-section {
  padding: 6rem 0 5rem;
  background: #2f2f2f;
}

.about-bio-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-bio-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-bio-content p:last-of-type {
  margin-bottom: 0;
}

/* ---------- Professional Background Section ---------- */
.about-mission-section {
  padding: 5rem 0;
  background: #3a3a3a;
}

.about-mission-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-mission-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-mission-content p:last-of-type {
  margin-bottom: 0;
}

/* ---------- Ministry Calling Section ---------- */
.about-philosophy-section {
  padding: 5rem 0;
  background: #2f2f2f;
}

.about-philosophy-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-philosophy-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-philosophy-content p:last-of-type {
  margin-bottom: 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.philosophy-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
}

.philosophy-card h3 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.philosophy-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Life and Family Section ---------- */
.about-faith-section {
  padding: 5rem 0;
  background: #3a3a3a;
}

.faith-content {
  max-width: 680px;
  margin: 0 auto;
}

.faith-content > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.faith-content > p:last-of-type {
  margin-bottom: 0;
}

.faith-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
}

.faith-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.faith-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

.faith-list li:last-child {
  margin-bottom: 0;
}

/* Dark section styling for faith-list */
.dark-section .faith-list li {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Purpose & Invitation Section ---------- */
.about-cta-section {
  padding: 6rem 0 7rem;
  background: #2f2f2f;
  text-align: center;
}

.about-cta-section .about-section-header {
  margin-top: 0;
  text-align: center;
}

.about-cta-section .about-section-header h2 {
  text-align: center;
}

.about-cta-section .about-section-divider {
  margin: 0 auto;
}

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

.cta-content p {
  max-width: 100%;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-content p:last-of-type {
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Ministry Page ---------- */

.ministry-page {
  background: #ffffff;
}

.ministry-hero {
  padding: 4rem 0 3rem;
}

.ministry-services-section {
  padding: 4rem 0;
}

.ministry-services-section .section-header {
  margin-bottom: 3rem;
}

.ministry-services-section .section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.ministry-services-section .section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 380px));
  gap: 2.5rem;
  justify-content: center;
}

.service-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-align: center;
  color: var(--accent);
  filter: grayscale(0%);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text-main);
  text-align: center;
}

.service-description {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
}

.service-details {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.service-details p:last-child {
  margin-bottom: 0;
}

.service-details strong {
  color: var(--text-main);
  font-weight: 600;
}

.service-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  pointer-events: none;
  cursor: default;
}

.ministry-cta-section {
  padding: 4rem 0;
  text-align: center;
}

.ministry-cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Contact Page ---------- */

.contact-page {
  background: #ffffff;
}

.contact-hero {
  padding: 1rem 0 1rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 2rem;
  margin: 0 0 1.5rem;
  color: var(--text-main);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.1);
}

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

.form-message {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.5rem;
}

.contact-info-card,
.contact-cta-card,
.prayer-request-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
  margin-bottom: 2rem;
}

.contact-info-card:last-child,
.contact-cta-card:last-child,
.prayer-request-card:last-child {
  margin-bottom: 0;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.contact-info-item a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-info-item a:visited {
  color: var(--accent-dark);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-info-item p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.contact-cta-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.prayer-request-card h2 {
  margin-bottom: 1.5rem;
}

.prayer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-map-section {
  padding: 3rem 0;
}

.contact-map-section h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--text-light);
}

.map-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.map-placeholder {
  font-size: 1.1rem;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1rem;
}

.map-note {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.9rem;
}

/* ---------- Give Page ---------- */

.give-page {
  background: #ffffff;
}

.give-hero {
  padding: 2.5rem 0 2rem;
}

.give-section {
  padding: 4rem 0;
}

.give-intro h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.give-intro p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.give-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.give-benefits li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-main);
  line-height: 1.7;
}

.give-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.give-options h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
  color: var(--text-main);
}

.give-global-impact {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-soft);
}

.give-global-impact h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.give-global-impact p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.give-global-impact p:last-child {
  margin-bottom: 0;
}

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

.impact-card {
  text-align: center;
  padding: 2rem;
  background: #f7f9fb;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.impact-card h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--text-main);
}

.impact-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.donation-options h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
  color: var(--text-main);
}

.give-options-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 40px;
  max-width: 800px;
}

.donation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.donation-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-soft);
  position: relative;
}

.donation-card-highlighted {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #ffffff, #fefaf6);
}

.donation-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--accent);
  color: #0b1119;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donation-card h3 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.donation-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-btn {
  flex: 1 1 auto;
  min-width: 80px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-soft);
  background: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-main);
}

.amount-btn:hover {
  border-color: var(--accent);
  background: #fefaf6;
}

.amount-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b1119;
}

.custom-amount {
  flex: 1 1 120px;
  padding: 0.75rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  font: inherit;
  font-weight: 600;
}

.custom-amount:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.1);
}

.donation-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.donation-btn {
  width: 100%;
  justify-content: center;
}

.payment-integration-note {
  background: #f7f9fb;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-soft);
}

.payment-integration-note h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.payment-integration-note p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.payment-integration-note ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.payment-integration-note li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ---------- Enhanced Footer ---------- */

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 100%;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.footer-section p {
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--accent);
}

/* Footer: social icons (coming soon) */
.social-coming-soon {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-coming-soon-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.social-coming-soon-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

@media (max-width: 900px) {
  .social-coming-soon {
    justify-content: center;
  }
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-contact-info strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-info a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: var(--accent);
}

.subscribe-form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subscribe-form-footer input {
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font: inherit;
}

.subscribe-form-footer input::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.subscribe-form-footer input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 176, 122, 0.2);
}

.subscribe-form-footer .btn {
  width: 100%;
  justify-content: center;
}

.form-note-footer {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  min-height: 1.5rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  color: #94a3b8;
  font-size: 0.875rem;
}

.version-stamp {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(15, 42, 68, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: 'Inter', monospace;
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.05em;
}

/* ---------- Newsletter Section ---------- */

.newsletter-section {
  padding: 6rem 0 0 0;
}

.newsletter-section .btn-primary {
  background: var(--accent);
  color: #0b0f17;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
}

.newsletter-form {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: var(--ml-form-max-width);
  margin-left: auto;
}

.newsletter-form .ml-embedded {
  width: 100%;
}

.newsletter-form .ml-embedded .ml-form-embedContainer,
.site-footer .ml-embedded .ml-form-embedContainer {
  width: 100%;
  max-width: var(--ml-form-max-width);
}

.site-footer .ml-embedded {
  width: 100%;
  max-width: var(--ml-form-max-width);
}

.site-footer .footer-section .ml-embedded {
  width: 100% !important;
  max-width: var(--ml-form-max-width) !important;
}

.site-footer .ml-embedded .ml-form-embedContainer,
.site-footer .ml-embedded .ml-form-embedWrapper,
.site-footer .ml-embedded .ml-form-embedBody {
  width: 100% !important;
  max-width: 500px !important;
  background: transparent !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  border: none !important;
}

.site-footer .ml-embedded .ml-form-horizontalRow {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  padding-top: 0 !important;
  margin-top: 1rem !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
}

/* Professional Footer Form Styling */
.site-footer .ml-embedded input[type="email"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.875rem 1rem !important;
  border: none !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #1a202c !important;
  font-size: 0.95rem !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: box-shadow 0.3s ease !important;
}

.site-footer .ml-embedded input[type="email"]::placeholder {
  color: #94a3b8 !important;
}

.site-footer .ml-embedded input[type="email"]:focus {
  outline: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.site-footer .ml-embedded input[type="submit"],
.site-footer .ml-embedded button[type="submit"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.875rem 1.5rem !important;
  border: none !important;
  border-radius: 6px !important;
  background: #0a111a !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

.site-footer .ml-embedded input[type="submit"]:hover,
.site-footer .ml-embedded button[type="submit"]:hover {
  background: #1a202c !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px) !important;
}

.site-footer .ml-embedded label {
  display: none !important;
}

.newsletter-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-thom-face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.newsletter-section .subscribe-grid h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--text-light);
}

.newsletter-section .subscribe-grid p {
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.newsletter-benefits {
  margin: 1.5rem 0;
}

.newsletter-benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-benefits-list li {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.newsletter-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.newsletter-trust {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 1rem 0 0;
  font-style: italic;
}

/* ---------- Pastoral Blessing ---------- */

.pastoral-blessing {
  background: #0a111a;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(214, 176, 122, 0.2);
}

.blessing-text {
  font-size: 1.15rem;
  color: rgba(214, 176, 122, 0.95);
  font-style: italic;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.newsletter-section .subscribe-form input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.newsletter-section .subscribe-form input::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

.newsletter-section .form-note {
  text-align: center;
  margin-top: 1rem;
  color: rgba(226, 232, 240, 0.8);
  min-height: 1.5rem;
}

.newsletter-section .ml-embedded {
  margin-top: 1.5rem;
  width: 100%;
}

/* ---------- Responsive Updates for New Pages ---------- */

@media (max-width: 900px) {
  .about-bio-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .resources-grid,
  .services-grid,
  .philosophy-grid,
  .give-impact-grid,
  .donation-cards,
  .resources-preview {
    grid-template-columns: minmax(0, 1fr);
  }

  .working-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .working-icon {
    width: auto;
  }

  .event-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-date {
    width: 120px;
    margin: 0 auto 1.5rem;
  }

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .footer-section {
    margin-bottom: 0;
  }

  .footer-section h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .social-links {
    align-items: center;
  }

  .subscribe-form-footer {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main-nav.open {
    max-height: 600px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-muted {
    padding: 4rem 0;
  }

  .resources-hero,
  .about-hero,
  .ministry-hero,
  .contact-hero,
  .give-hero {
    padding: 0.25rem 0 0.25rem;
  }

  .resources-hero .section-header h1,
  .contact-hero .section-header h1,
  .give-hero .section-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
    margin: 0 0 0.5rem !important;
  }

  .resources-hero .section-header p,
  .contact-hero .section-header p,
  .give-hero .section-header p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  .section-header h1 {
    font-size: 2rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-hero-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-hero-text h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .about-hero-intro {
    font-size: 1rem;
  }

  .about-hero {
    padding: 3rem 0 4rem;
  }

  /* Modern About Page Mobile Styles */
  .about-page .about-section {
    padding: 4rem 0;
  }

  .about-page .about-section .about-section-header h2 {
    font-size: 2rem;
  }

  .about-page .about-section .about-section-content {
    padding: 0 1.5rem;
  }

  .about-page .about-section .about-section-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-page .about-drives-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-page .about-drives-list li {
    padding: 0.875rem 1.25rem 0.875rem 2.25rem;
    font-size: 0.9375rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

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

  .about-bio-section {
    padding: 4rem 0 3.5rem;
  }

  .about-mission-section,
  .about-philosophy-section,
  .about-faith-section {
    padding: 3.5rem 0;
  }

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

  .about-section-header {
    margin-top: 3rem;
  }

  .about-section-header h2 {
    font-size: 2rem;
  }

  .about-section-summary {
    font-size: 1rem;
  }

  .about-bio-content,
  .about-mission-content,
  .about-philosophy-content,
  .faith-content,
  .cta-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .about-hero {
    padding: 3rem 0 4rem;
  }

  .about-bio-section {
    padding: 4rem 0 3.5rem;
  }

  .about-mission-section,
  .about-philosophy-section,
  .about-faith-section {
    padding: 3.5rem 0;
  }

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

  .about-section-header {
    margin-top: 3rem;
  }

  .about-section-summary {
    font-size: 1rem;
  }

  .about-bio-content,
  .about-mission-content,
  .about-philosophy-content,
  .faith-content,
  .cta-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .about-hero .section-header h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .working-section {
    gap: 2rem;
  }

  .resources-preview {
    gap: 1.5rem;
  }

  .resource-preview-card {
    padding: 2rem 1.5rem;
  }

  .journey-invitation {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .start-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn.wide {
    width: 100%;
    min-width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    border-radius: 6px;
  }

  .newsletter-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .newsletter-content p {
    text-align: center;
  }

  .newsletter-thom-face {
    margin-bottom: 0.5rem;
  }

  .working-intro,
  .working-intro-text {
    text-align: center;
  }

  .service-card,
  .donation-card {
    padding: 1.75rem;
  }

  /* Mobile Footer Professional Styling */
  .site-footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-inner {
    padding: 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .footer-section {
    margin-bottom: 0;
  }

  .footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }

  .footer-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #e2e8f0;
  }

  .footer-section:last-child p:last-of-type {
    margin-bottom: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
    text-align: center;
    color: #94a3b8;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .version-stamp {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }

  .social-links {
    align-items: center;
    justify-content: center;
  }

  .site-footer .ml-embedded {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ---------- Daily Examen New Styling ---------- */

.examen-page-new {
  background: #ffffff;
}

.examen-main-new {
  background: #ffffff;
  padding: 0 0 5rem;
}

.examen-section-new {
  background: #ffffff;
  /* Space below the dark hero so content doesn't touch it */
  padding: 3rem 0 0;
}

.examen-wrapper-new {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.examen-layout-new {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.examen-image-card {
  position: relative;
}

.examen-image-card img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0 auto;
}

.examen-content-new {
  display: flex;
  flex-direction: column;
}

.examen-label-new {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.examen-main-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.examen-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.examen-body {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0 0 1.75rem;
}

.examen-list-new {
  margin: 4rem 0 0;
  padding-left: 2rem;
  list-style: none;
  width: 100%;
  max-width: 100%;
}

.examen-list-new li {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.examen-list-new li strong {
  font-weight: 700;
  color: #1e3a8a;
  display: inline;
}

.examen-list-new li ul {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 2rem;
  list-style: disc;
}

.examen-list-new li ul li {
  padding-left: 0;
  text-indent: 0;
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .examen-section-new {
    padding-top: 2.25rem;
  }

  .examen-layout-new {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .examen-image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .examen-main-title {
    font-size: 2.25rem;
  }

  .examen-subtitle {
    font-size: 1.25rem;
  }

  .examen-body,
  .examen-list-new li {
    font-size: 1rem;
  }
}

/* ---------- Daily Affirmations New Styling ---------- */

.affirmations-page-new {
  background: #ffffff;
}

.affirmations-main-new {
  background: #ffffff;
  padding: 0 0 5rem;
}

.affirmations-section-new {
  background: #ffffff;
  /* Space below the dark hero so content doesn't touch it */
  padding: 3rem 0 0;
}

.affirmations-wrapper-new {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.affirmations-layout-new {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.affirmations-image-card {
  position: relative;
}

.affirmations-image-card img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0 auto;
}

.affirmations-content-new {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.affirmations-label-new {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e3a8a;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  opacity: 0.9;
}

.affirmations-main-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.affirmations-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.affirmations-body {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #1e3a8a;
  margin: 0;
}

.affirmations-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.2), transparent);
  margin: 4rem 0 3rem;
}

.affirmations-list-new {
  margin: 0;
  padding-left: 2rem;
  list-style: none;
  width: 100%;
  max-width: 100%;
}

.affirmations-list-new li {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a !important;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  max-width: 100%;
}

.affirmations-list-new li,
.affirmations-list-new li * {
  color: #1e3a8a !important;
}

.affirmations-list-new li strong {
  font-weight: 700;
  color: #1e3a8a !important;
  display: inline;
}

.affirmations-list-new li .ref {
  display: inline-block;
  margin-left: 1.25rem;
  padding-left: 0.5rem;
  color: rgba(30, 58, 138, 0.7) !important;
  font-size: 0.9em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .affirmations-section-new {
    padding-top: 2.25rem;
  }

  .affirmations-layout-new {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .affirmations-image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .affirmations-main-title {
    font-size: 2.25rem;
  }

  .affirmations-subtitle {
    font-size: 1.25rem;
  }

  .affirmations-body,
  .affirmations-list-new li {
    font-size: 1rem;
  }
}

/* ---------- Ministry Page New Styling ---------- */

.ministry-page-new {
  background: #ffffff;
}

.ministry-main-new {
  background: #ffffff;
}

.ministry-services-section-new {
  padding: 4rem 0;
  background: #ffffff;
}

.section-header-new {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ministry-main-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ministry-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1e3a8a;
  max-width: 800px;
  margin: 0 auto;
}

/* ====== SERVICES SECTION ====== */
.services {
  padding: clamp(48px, 6vw, 88px) 16px;
  background: #ffffff;
  color: #0f1f33;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.services__header {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}

.services__header h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #173455; /* deep navy */
}

.services__header p {
  margin: 0 auto;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.6;
  color: #3a475a;
}

/* ====== GRID ====== */
.services__grid {
  max-width: 1100px;
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ====== CARD ====== */
.card {
  border: 1px solid #d9e5f5;
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 52, 85, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(23, 52, 85, 0.12);
  border-color: #c6d7ee;
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #b78b45; /* warm gold accent */
  background: #fbf4e8; /* soft gold tint */
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #173455;
  border: 2px solid #b78b45;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}

.card__text {
  margin: 0 0 18px;
  line-height: 1.7;
  color: #3a475a;
  font-size: 16.5px;
  max-width: 62ch;
}

/* ====== CTA LINK (instead of heavy buttons) ====== */
.card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #173455;
  padding: 10px 0;
  border-radius: 10px;
  pointer-events: none;
  cursor: default;
}

.card__link:hover {
  color: #b78b45;
}

.card__link span {
  transition: transform 0.15s ease;
}

.card:hover .card__link span {
  transform: translateX(2px);
}

.ministry-services-section-new .service-card {
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.15);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.ministry-services-section-new .service-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1rem;
  text-align: center;
  display: inline-block;
  background: var(--accent);
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

.ministry-services-section-new .service-card h3 .service-card-subtitle {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.95;
  color: #1e3a8a;
}

.ministry-services-section-new .service-description {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.ministry-services-section-new .service-details {
  background: rgba(30, 58, 138, 0.03);
  border-top: 1px solid rgba(30, 58, 138, 0.1);
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.ministry-services-section-new .service-details p {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.ministry-services-section-new .service-details p:last-child {
  margin-bottom: 0;
}

.ministry-services-section-new .service-details strong {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  font-weight: 600;
}

.ministry-cta-section-new {
  padding: 4rem 0;
  background: #ffffff;
  text-align: center;
}

.cta-content-new {
  max-width: 700px;
  margin: 0 auto;
}

.ministry-cta-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.cta-content-new p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0 0 2rem;
}

/* Ministry page CTA: make "Get in Touch" gold bubble */
.ministry-cta-section-new .cta-actions .btn.btn-outline {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0f17;
}

.ministry-cta-section-new .cta-actions .btn.btn-outline:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #0b0f17;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 176, 122, 0.4);
}

@media (max-width: 900px) {
  .ministry-main-title {
    font-size: 2.25rem;
  }

  .ministry-subtitle {
    font-size: 1.125rem;
  }

  .ministry-cta-title {
    font-size: 2rem;
  }
}

/* ---------- Resources Page New Styling ---------- */

.resources-page-new {
  background: #ffffff;
}

.resources-main-new {
  background: #ffffff;
}

.resources-section-new {
  padding: 4rem 0;
  background: #ffffff;
}

.resources-section-new .resources-grid {
  margin-top: 2rem;
}

.resources-section-new .resource-card {
  border: 1px solid #d9e5f5;
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 52, 85, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.resources-section-new .resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(23, 52, 85, 0.12);
  border-color: #c6d7ee;
}

.resources-section-new .resource-card-content {
  padding: 0;
}

.resources-section-new .resource-card-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #173455;
  margin: 0;
  border: 2px solid #b78b45;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}

.resources-section-new .resource-card-content .card__text {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #3a475a;
  line-height: 1.7;
  margin: 0 0 18px;
  font-size: 16.5px;
  max-width: 62ch;
}

.resources-section-new .resource-card-content .card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #173455;
  padding: 10px 0;
  border-radius: 10px;
  pointer-events: none;
  cursor: default;
}

.resources-section-new .resource-card-content .card__link:hover {
  color: #b78b45;
}

.resources-section-new .resource-card-content .card__link span {
  transition: transform 0.15s ease;
}

.resources-section-new .resource-card:hover .card__link span {
  transform: translateX(2px);
}

/* ---------- Table of Contents Pages ---------- */

.toc-container {
  max-width: 900px;
  margin: 0 auto;
}

.toc-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.toc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.12);
  border-color: rgba(30, 58, 138, 0.25);
}

.toc-item h3 a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc-item h3 a:hover {
  color: var(--accent);
}

/* Document viewer responsive styles */
.manual-pdf-container {
  width: 100%;
  box-sizing: border-box;
}

.manual-pdf-box {
  width: 100%;
  box-sizing: border-box;
  /* Don't interfere with iframe content */
  overflow: visible;
  background: transparent;
}

.pdf-viewer-container {
  width: 100%;
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pdf-viewer-container iframe {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: none;
  background: transparent;
  display: block;
  /* Ensure no CSS interference with Google Docs content */
  transform: none;
  filter: none;
  opacity: 1;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

@media (max-width: 768px) {
  .toc-item {
    padding: 1.25rem;
  }

  .manual-pdf-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 1rem !important;
  }

  .manual-pdf-box {
    padding: 1rem !important;
    border-radius: 8px !important;
    margin: 0 !important;
  }

  .pdf-viewer-container {
    margin: 0 0 1.5rem 0 !important;
  }

  .pdf-viewer-container iframe {
    height: 600px !important;
    border: none !important;
  }

  .pdf-actions {
    flex-direction: column;
    margin-top: 1.5rem !important;
  }

  .pdf-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
    justify-content: center;
  }

  .section-header a[href="resources.html"],
  .section-header a[href*="resources.html"] {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    padding: 0.5rem 0 !important;
    display: inline-block !important;
  }

  .resources-section-new .section-header {
    margin-bottom: 1rem !important;
    padding-left: 0 !important;
  }

  .resources-section-new {
    padding: 1.5rem 0 !important;
  }

  .resources-section-new .container {
    padding: 0 1rem !important;
  }
}

@media (max-width: 480px) {
  .page-hero,
  .resources-hero,
  .contact-hero,
  .give-hero {
    padding: 0.2rem 0 0.2rem !important;
  }

  .section-muted .section-header h1,
  .resources-hero .section-header h1,
  .contact-hero .section-header h1,
  .give-hero .section-header h1 {
    font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
    margin: 0 0 0.4rem !important;
  }

  .section-muted .section-header p,
  .resources-hero .section-header p,
  .contact-hero .section-header p,
  .give-hero .section-header p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .manual-pdf-container {
    padding: 0 0.75rem !important;
  }

  .manual-pdf-box {
    padding: 0.75rem !important;
  }

  .pdf-viewer-container iframe {
    height: 500px !important;
  }

  .pdf-actions .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
  }

  .pdf-actions .btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ---------- Blog Page New Styling ---------- */

.blog-page-new {
  background: #ffffff;
}

.blog-main-new {
  min-height: calc(100vh - 200px);
  padding: 0;
  background: #ffffff;
}

.blog-section-new {
  padding: 4rem 0;
  background: #ffffff;
}

.blog-wrapper-new {
  max-width: 800px;
}

.blog-header-new {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 58, 138, 0.15);
}

.blog-main-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.blog-subtitle-new {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  font-size: 1.125rem;
  margin: 0;
}

.blog-section-new .blog-loading,
.blog-section-new .blog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #1e3a8a;
}

.blog-section-new .blog-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
}

.blog-section-new .blog-error-help {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #7f1d1d;
}

.blog-section-new .blog-post {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.blog-section-new .blog-post:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}

.blog-section-new .blog-post-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: #1e3a8a;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.blog-section-new .blog-post-date {
  display: block;
  color: rgba(30, 58, 138, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.blog-section-new .blog-post-content {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-section-new .blog-post-content p {
  margin: 0 0 1.25rem;
  color: #1e3a8a;
}

.blog-section-new .blog-category {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

@media (max-width: 820px) {
  .blog-main-title {
    font-size: 2.25rem;
  }

  .blog-subtitle-new {
    font-size: 1rem;
  }

  .blog-section-new .blog-post {
    padding: 1.5rem;
  }

  .blog-section-new .blog-post-title {
    font-size: 1.75rem;
  }
}

/* ---------- Give Page New Styling ---------- */

.give-page-new {
  background: #ffffff;
}

.give-section-new {
  padding: 4rem 0;
  background: #ffffff;
}

.give-section-new .give-intro h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.give-section-new .give-intro p {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.give-section-new .give-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.give-section-new .give-benefits li {
  font-family: "Inter", sans-serif;
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #1e3a8a;
  line-height: 1.8;
  font-size: 1.125rem;
}

.give-section-new .give-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e3a8a;
  font-weight: bold;
  font-size: 1.5rem;
  top: 0.5rem;
}

.give-section-new .give-options h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.give-section-new .give-options-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0 0 2.5rem;
  max-width: 800px;
}

.give-section-new .give-global-impact {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(30, 58, 138, 0.15);
}

.give-section-new .give-global-impact h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.give-section-new .give-global-impact p {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.give-section-new .give-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.give-section-new .impact-card {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 58, 138, 0.03);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.give-section-new .impact-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #1e3a8a;
}

.give-section-new .impact-card p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.8;
  margin: 0;
}

.give-section-new .donation-options h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 2rem;
  line-height: 1.2;
}

.give-section-new .donation-card {
  background: #ffffff;
  border: 2px solid rgba(30, 58, 138, 0.15);
}

.give-section-new .donation-card-highlighted {
  border-color: #1e3a8a;
  background: linear-gradient(to bottom, #ffffff, rgba(30, 58, 138, 0.02));
}

.give-section-new .donation-badge {
  background: #1e3a8a;
  color: #ffffff;
}

.give-section-new .donation-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #1e3a8a;
}

.give-section-new .donation-card p {
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.give-section-new .amount-btn {
  border: 2px solid rgba(30, 58, 138, 0.2);
  background: #ffffff;
  color: #1e3a8a;
}

.give-section-new .amount-btn:hover {
  border-color: #1e3a8a;
  background: rgba(30, 58, 138, 0.05);
}

.give-section-new .amount-btn.active {
  background: #1e3a8a;
  border-color: #1e3a8a;
  color: #ffffff;
}

.give-section-new .custom-amount {
  border: 2px solid rgba(30, 58, 138, 0.2);
  color: #1e3a8a;
}

.give-section-new .custom-amount:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.give-section-new .donation-note {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: rgba(30, 58, 138, 0.7);
  margin: 0 0 1.5rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .give-section-new .give-intro h2,
  .give-section-new .give-options h2,
  .give-section-new .give-global-impact h2,
  .give-section-new .donation-options h2 {
    font-size: 2rem;
  }

  .give-section-new .give-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Obedience From Love New Styling ---------- */

.obedience-page-new {
  background: #ffffff;
}

.obedience-main-new {
  background: #ffffff;
  padding: 0 0 5rem;
}

.obedience-section-new {
  background: #ffffff;
  /* Space below the dark hero so content doesn't touch it */
  padding: 3rem 0 0;
}

.obedience-wrapper-new {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.obedience-layout-new {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.obedience-image-card {
  position: relative;
}

.obedience-image-card img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0 auto;
}

.obedience-content-new {
  display: flex;
  flex-direction: column;
}

.obedience-label-new {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.obedience-main-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.obedience-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.obedience-body {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0 0 1.75rem;
}

.obedience-scripture-new {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0 0 1.75rem;
  font-style: italic;
}

.obedience-principles-new,
.obedience-considerations-new,
.obedience-closing-section-new {
  margin: 3rem 0 0;
  width: 100%;
}

.obedience-section-title {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.obedience-principles-content-new {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
}

.obedience-principles-content-new p {
  margin: 0 0 1.5rem;
  color: #1e3a8a;
}

.obedience-principle-item {
  margin-top: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}

.obedience-principle-item:first-child {
  margin-top: 0 !important;
}

.obedience-principles-content-new p strong {
  font-weight: 700;
  color: #1e3a8a;
}

.obedience-principles-content-new ul {
  margin: 1rem 0 1.5rem;
  padding-left: 2rem;
  list-style: disc;
  color: #1e3a8a;
  list-style-position: outside;
}

.obedience-principles-content-new ul li {
  margin-bottom: 0.75rem;
  color: #1e3a8a;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.obedience-principles-content-new ul li strong {
  font-weight: 700;
  color: #1e3a8a;
}

.obedience-principles-content-new .ref {
  display: inline-block;
  margin-left: 1.25rem;
  padding-left: 0.5rem;
  color: rgba(30, 58, 138, 0.7);
  font-size: 0.9em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.obedience-principles-content-new .obedience-italic {
  font-style: italic;
  color: #1e3a8a;
}

.obedience-list-new {
  margin: 0;
  padding-left: 2rem;
  list-style: none;
  width: 100%;
  max-width: 100%;
}

.obedience-list-new li {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a !important;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  max-width: 100%;
}

.obedience-list-new li,
.obedience-list-new li * {
  color: #1e3a8a !important;
}

.obedience-list-new li strong {
  font-weight: 700;
  color: #1e3a8a !important;
  display: inline;
}

.obedience-closing-title-new {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 1.5rem;
}

.closing-text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e3a8a;
  margin: 0.5rem 0;
}

.closing-separator {
  margin-top: 2rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .obedience-section-new {
    padding-top: 2.25rem;
  }

  .obedience-layout-new {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .obedience-image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .obedience-main-title {
    font-size: 2.25rem;
  }

  .obedience-subtitle,
  .obedience-section-title {
    font-size: 1.25rem;
  }

  .obedience-body,
  .obedience-scripture-new,
  .obedience-principles-content-new,
  .obedience-list-new li,
  .closing-text {
    font-size: 1rem;
  }
}
