/*
Theme Name: Family Prayer Ministry
Theme URI: https://familyprayerministry.org
Author: Family Prayer Ministry
Author URI: https://familyprayerministry.org
Description: Custom WordPress theme for the Family Prayer Ministry — Positioning the Power of Prayer. Features a navy and gold design with Cormorant Garamond and Lato typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fpm
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-deep: #111c33;
  --navy-light: #2a3d5e;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-muted: #b8973f;
  --cream: #faf6ee;
  --cream-dark: #f0e9d8;
  --warm-white: #fefcf7;
  --text-dark: #1a1a1a;
  --text-medium: #3a3a3a;
  --text-light: #5a5a5a;
  --border-light: #e8e0cf;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 39, 68, 0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow 0.3s ease;
}
.nav-bar.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15); }

.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}

.nav-brand {
  display: flex; align-items: center; gap: 18px;
  margin-right: 2.5rem; flex-shrink: 0;
}
.nav-logo {
  width: 74px; height: 74px; border-radius: 50%; background: transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-logo .logo-placeholder {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.nav-brand-text {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left; line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.02em; white-space: nowrap;
}
.nav-brand-tagline {
  font-size: 0.62rem; font-weight: 300; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  margin-top: 3px;
}

/* WordPress generates nav with ul.menu > li > a structure */
.nav-links,
.nav-links .menu {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none; margin: 0; padding: 0;
  margin-left: auto;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  color: rgba(250, 246, 238, 0.75);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5rem 0.85rem; border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  text-align: center; white-space: nowrap;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--gold-light); background: rgba(201, 168, 76, 0.08);
}

/* Subscribe CTA button in nav */
.nav-links .menu-item-subscribe > a,
.nav-cta {
  background: var(--gold) !important; color: var(--navy-deep) !important;
  font-weight: 700; padding: 0.5rem 1.2rem; border-radius: 6px;
  margin-left: 0.5rem;
}
.nav-links .menu-item-subscribe > a:hover,
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(250, 246, 238, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(250, 246, 238, 0.3);
}
.btn-outline-light:hover {
  border-color: var(--gold); color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== DIVIDER ORNAMENT ===== */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 3rem auto; max-width: 200px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-light);
}
.divider span { color: var(--gold); font-size: 0.8rem; }
.divider-light::before, .divider-light::after {
  background: rgba(250, 246, 238, 0.15);
}

/* ===== SCROLLING QUOTES BANNER ===== */
.quotes-banner {
  background: var(--navy); padding: 1.2rem 0; overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.quotes-track {
  display: flex; gap: 4rem;
  animation: scrollQuotes 60s linear infinite;
  width: max-content;
}
.quotes-track:hover { animation-play-state: paused; }
@keyframes scrollQuotes {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.quote-item {
  flex-shrink: 0; display: flex; align-items: center;
  gap: 1.5rem; white-space: nowrap;
}
.quote-item .quote-text {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: rgba(250, 246, 238, 0.85); font-weight: 400;
}
.quote-item .quote-ref {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 400;
}
.quote-divider { color: var(--gold); font-size: 0.6rem; opacity: 0.4; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: 10rem 2rem 5rem; background: var(--navy-deep);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(42, 61, 94, 0.3) 0%, transparent 50%);
}
.page-hero-content {
  position: relative; z-index: 2; max-width: 750px; margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-hero h1 {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 500;
  color: var(--cream); line-height: 1.2; margin-bottom: 1.25rem;
}
.page-hero p {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: rgba(250, 246, 238, 0.75); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* ===== HERO (homepage) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--navy-deep); overflow: hidden;
  padding-top: 120px; padding-bottom: 2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(42, 61, 94, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(42, 61, 94, 0.3) 0%, transparent 50%);
}
.hero::after {
  content: '✦'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-size: 28rem;
  color: rgba(201, 168, 76, 0.018); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem;
  max-width: 800px; animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 300px; height: 300px; border-radius: 50%;
  margin: 0 auto 2.5rem; background: transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.15);
  animation: heroLogoIn 1s ease-out 0.3s both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-logo .logo-placeholder {
  font-family: var(--font-display); font-size: 4.5rem;
  font-weight: 700; color: var(--navy);
}
.hero h1 {
  font-family: var(--font-display); font-size: 3.8rem; font-weight: 500;
  color: var(--cream); line-height: 1.15; margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero h1 span {
  display: block; font-size: 1.1rem; font-family: var(--font-body);
  font-weight: 300; color: var(--gold); letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.hero-scripture {
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem;
  color: rgba(250, 246, 238, 0.75); max-width: 560px;
  margin: 1.5rem auto 2.5rem; line-height: 1.7;
}
.hero-scripture cite {
  display: block; font-style: normal; font-size: 0.85rem;
  color: var(--gold-muted); margin-top: 0.5rem; letter-spacing: 0.05em;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

/* ===== SCRIPTURE CALLOUT ===== */
.scripture-callout {
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 1.75rem 2rem; margin: 2.5rem 0;
}
.scripture-callout p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--text-medium); line-height: 1.7;
  margin-bottom: 0.5rem;
}
.scripture-callout cite {
  font-family: var(--font-body); font-style: normal;
  font-size: 0.9rem; color: var(--gold-muted);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 5rem 2rem;
}
.content-section-inner {
  max-width: 780px; margin: 0 auto;
}
.content-section h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 2rem;
}
.content-section p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85;
  margin-bottom: 1.5rem;
}

.bg-white { background: var(--warm-white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-deep); }
.text-center { text-align: center; }

/* ===== PILLAR / VISION CARDS ===== */
.pillars-grid, .vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.pillar-card, .vision-card {
  background: var(--warm-white); border-radius: 12px;
  padding: 2.5rem 2rem; border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.pillar-card::before, .vision-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-light));
  opacity: 0; transition: opacity 0.3s ease;
}
.pillar-card:hover, .vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
}
.pillar-card:hover::before, .vision-card:hover::before { opacity: 1; }
.pillar-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 0.75rem;
}
.pillar-card h3, .vision-card h3 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1rem;
}
.pillar-card p, .vision-card p {
  font-size: 1.12rem; color: var(--text-medium); line-height: 1.75;
  margin-bottom: 1rem;
}
.pillar-scripture, .scripture-inline {
  font-family: var(--font-display); font-style: italic; font-size: 1.08rem;
  color: var(--text-light); border-left: 2px solid var(--gold);
  padding-left: 1rem; margin-top: 1.25rem; line-height: 1.6;
}
.pillar-summary {
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 1.25rem;
  padding-top: 1rem; border-top: 1px solid var(--border-light);
}

/* ===== SUBSCRIBE CTA SECTION ===== */
.subscribe-cta {
  padding: 5rem 2rem; background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.subscribe-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}
.subscribe-inner {
  position: relative; z-index: 2;
  max-width: 650px; margin: 0 auto; text-align: center;
}
.subscribe-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 1rem;
}
.subscribe-inner p {
  font-size: 1.25rem; color: rgba(250, 246, 238, 0.8);
  margin-bottom: 2.5rem; line-height: 1.7;
}
.subscribe-note {
  margin-top: 1.5rem; font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.35);
}

/* ===== TESTIMONY CARDS ===== */
.testimony-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.testimony-card {
  background: var(--cream); border-radius: 12px; padding: 2rem;
  text-align: left; border: 1px solid var(--border-light);
}
.testimony-card .quote-mark {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem; opacity: 0.5;
}
.testimony-card p {
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  color: var(--text-medium); line-height: 1.7; margin-bottom: 1rem;
}
.testimony-card .testimony-attr {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  color: var(--navy); font-style: normal; letter-spacing: 0.03em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo {
  width: 60px; height: 60px; border-radius: 50%; background: transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.footer-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-logo .logo-placeholder {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; color: var(--navy);
}
.footer-brand-text {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 500; color: var(--cream);
}

/* Footer nav - WordPress generates ul.menu */
.footer-links,
.footer-links .menu {
  display: flex; gap: 2rem; list-style: none;
  margin: 0; padding: 0;
}
.footer-links a {
  font-size: 0.8rem; color: rgba(250, 246, 238, 0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center; font-size: 0.75rem; color: rgba(250, 246, 238, 0.3);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding-top: 140px; }
  .pillars-grid, .vision-grid {
    grid-template-columns: 1fr; max-width: 500px; margin: 0 auto;
  }
  .testimony-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .content-section h2,
  .subscribe-inner h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sof-columns { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .clarifications-grid { grid-template-columns: 1fr; }
  .gcal-sync-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .principles-grid { grid-template-columns: 1fr; max-width: 450px; margin: 3rem auto 0; }
  .essay-section-header h2 { font-size: 1.8rem; }
  .team-intro-inner h2,
  .team-section-header h2,
  .accountability-inner h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  /* ----- Mobile Navigation (hidden by default, shown via JS .open) ----- */
  .nav-links,
  .nav-links .menu {
    display: none !important;
    position: absolute; top: 100px; left: 0; right: 0;
    background: #111c33; flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15); gap: 0;
    z-index: 9999;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
  }
  .nav-links .menu.open,
  .nav-links.open .menu,
  .nav-links.open > ul {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    padding: 0 !important;
    border-bottom: none !important;
    background: transparent !important;
  }
  .nav-links.open li,
  .nav-links.open .menu li {
    width: 100%; list-style: none;
  }
  .nav-links.open a,
  .nav-links.open .menu a {
    padding: 0.75rem 0 !important; width: 100% !important;
    display: block !important;
  }
  .nav-links.open .menu-item-subscribe > a {
    background: #c9a84c !important; color: #111c33 !important;
    font-weight: 700 !important; padding: 0.5rem 1.2rem !important;
    border-radius: 6px !important; margin-top: 0.5rem !important;
    margin-left: 0 !important;
    text-align: center !important; display: flex !important;
    justify-content: center !important;
  }
  .nav-toggle { display: block; }

  /* ----- Layout adjustments ----- */
  .hero { padding-top: 140px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-logo { width: 220px; height: 220px; }
  .page-hero { padding: 8rem 2rem 3.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .login-page { padding: 130px 1.5rem 3rem; }
  .login-card { padding: 2rem 1.5rem; }
  .login-header h1 { font-size: 2rem; }
  .form-options { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .prayer-request-header { flex-direction: column; align-items: flex-start; gap: 0.5em; }
  .essay-section-header h2 { font-size: 1.6rem; }
  .essay-section-number { font-size: 2.2rem; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links, .footer-links .menu {
    flex-wrap: wrap; justify-content: center; gap: 1rem;
  }
}

/* ==========================================================================
   PAGE TEMPLATES — Phase 2 (extracted from static HTML designs)
   ========================================================================== */

/* ===== OUR MINISTRY PAGE ===== */
.who-we-are { padding: 5rem 2rem; background: var(--warm-white); }
.who-we-are-inner { max-width: 780px; margin: 0 auto; }
.who-we-are-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 2rem; text-align: center;
}
.who-we-are-inner p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.5rem;
}
.who-we-are-inner p:last-child { margin-bottom: 0; }

.biblical-model { padding: 5rem 2rem; background: var(--cream); }
.biblical-model-inner { max-width: 780px; margin: 0 auto; }
.biblical-model-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 2rem; text-align: center;
}
.biblical-model-inner p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.5rem;
}

.what-we-are-not { padding: 5rem 2rem; background: var(--warm-white); }
.what-we-are-not-inner { max-width: 900px; margin: 0 auto; }
.what-we-are-not-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 1rem; text-align: center;
}
.what-we-are-not-inner > p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85;
  text-align: center; max-width: 700px; margin: 0 auto 3rem;
}

.clarifications-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.clarification-card {
  background: var(--cream); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clarification-card:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26, 39, 68, 0.06);
}
.clarification-card .card-icon { font-size: 1.6rem; margin-bottom: 0.75rem; opacity: 0.7; }
.clarification-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem;
}
.clarification-card p { font-size: 1.15rem; color: var(--text-medium); line-height: 1.75; }
.clarification-card.full-width { grid-column: 1 / -1; }

.summary-statement { padding: 5rem 2rem; background: var(--cream); }
.summary-inner-content {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.summary-inner-content h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 2rem;
}
.summary-inner-content p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.5rem;
}

/* ===== VISION PAGE ===== */
.vision-intro { padding: 5rem 2rem; background: var(--warm-white); }
.vision-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.vision-intro-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 2rem;
}
.vision-intro-inner p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.5rem;
}

.vision-columns { padding: 5rem 2rem; background: var(--cream); }
.vision-columns-inner { max-width: 1100px; margin: 0 auto; }
.vision-columns-header { text-align: center; margin-bottom: 3.5rem; }
.vision-columns-header h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); margin-bottom: 1rem;
}
.vision-columns-header p { font-size: 1.25rem; color: var(--text-medium); max-width: 600px; margin: 0 auto; }

.vision-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--navy-deep);
}

/* PPP Section */
.ppp-section { padding: 5rem 2rem; background: var(--warm-white); }
.ppp-inner { max-width: 900px; margin: 0 auto; }
.ppp-header { text-align: center; margin-bottom: 4rem; }
.ppp-header h2 {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.5rem;
}
.ppp-header .subtitle {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--gold-muted); font-style: italic;
}
.ppp-block {
  margin-bottom: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
}
.ppp-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ppp-block-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.75rem; }
.ppp-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); opacity: 0.25; line-height: 1;
}
.ppp-block-header h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy);
}
.ppp-block > p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.25rem;
}
.ppp-scripture {
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 1.5rem 1.75rem; margin: 1.5rem 0;
}
.ppp-scripture p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 0.4rem;
}
.ppp-scripture cite {
  font-family: var(--font-body); font-style: normal; font-size: 0.9rem; color: var(--gold-muted);
}
.ppp-summary {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  text-align: center; padding: 1.25rem 1.5rem;
  background: var(--cream); border-radius: 8px;
  margin-top: 1.5rem; letter-spacing: 0.02em;
}

.focused-vision {
  padding: 5rem 2rem; background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.focused-vision::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}
.focused-vision-inner {
  position: relative; z-index: 2; max-width: 780px; margin: 0 auto; text-align: center;
}
.focused-vision-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 2rem;
}
.focused-vision-inner p {
  font-size: 1.28rem; color: rgba(250, 246, 238, 0.8); line-height: 1.85; margin-bottom: 1.5rem;
}

/* ===== SUBSCRIBE PAGE ===== */
.form-section { padding: 5rem 2rem; background: var(--warm-white); }
.form-section-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
}
.form-info h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 1.5rem;
}
.form-info p {
  font-size: 1.15rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 1.25rem;
}
.benefits-list { list-style: none; margin: 2rem 0; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 1.1rem; color: var(--text-medium); line-height: 1.7;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border-light);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list .check { color: var(--gold); font-size: 1.2rem; margin-top: 0.15rem; flex-shrink: 0; }

.privacy-note {
  background: var(--cream); border-radius: 8px; padding: 1.25rem 1.5rem;
  margin-top: 2rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.privacy-note .lock { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.privacy-note p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0; }

.form-card {
  background: var(--cream); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--border-light); box-shadow: 0 8px 40px rgba(26, 39, 68, 0.06);
}
.form-card h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.5rem; text-align: center;
}
.form-card .form-subtitle {
  font-size: 0.95rem; color: var(--text-light); text-align: center; margin-bottom: 2rem;
}
.form-footer {
  text-align: center; margin-top: 1.25rem; font-size: 0.88rem; color: var(--text-light);
}
.form-footer a { color: var(--gold-muted); text-decoration: underline; }

/* What to Expect */
.what-to-expect { padding: 5rem 2rem; background: var(--cream); }
.what-to-expect-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.what-to-expect-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); margin-bottom: 1rem;
}
.what-to-expect-inner > p {
  font-size: 1.25rem; color: var(--text-medium); max-width: 600px; margin: 0 auto 3rem;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
.step-card {
  background: var(--warm-white); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border-light);
}
.step-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 0.75rem;
}
.step-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.6rem;
}
.step-card p { font-size: 1.05rem; color: var(--text-medium); line-height: 1.7; }

/* Scripture Banner */
.scripture-banner {
  padding: 4rem 2rem; background: var(--navy-deep);
  text-align: center; position: relative; overflow: hidden;
}
.scripture-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}
.scripture-banner-inner {
  position: relative; z-index: 2; max-width: 600px; margin: 0 auto;
}
.scripture-banner-inner p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; color: rgba(250, 246, 238, 0.8); line-height: 1.7; margin-bottom: 0.75rem;
}
.scripture-banner-inner cite {
  font-family: var(--font-body); font-style: normal; font-size: 0.9rem; color: var(--gold);
}

/* ===== SUBSCRIBE PAGE (REDESIGNED) ===== */
/* Why Subscribe — centered single column */
.subscribe-why-inner {
  max-width: 700px; margin: 0 auto;
}
.subscribe-why-inner h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 1.5rem;
}
.subscribe-why-inner p {
  font-size: 1.15rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 1.25rem;
}

/* Statement of Faith & Code of Conduct */
.sof-section {
  padding: 5rem 2rem; background: var(--cream);
}
.sof-inner {
  max-width: 1100px; margin: 0 auto;
}
.sof-inner > .section-label {
  text-align: center;
}
.sof-inner > h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); text-align: center; margin-bottom: 1rem;
}
.sof-intro {
  font-size: 1.15rem; color: var(--text-medium); text-align: center;
  max-width: 650px; margin: 0 auto 3rem; line-height: 1.7;
}
.sof-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.sof-column h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.75rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  /* Force equal header height so gold lines align */
  min-height: 3.2rem;
  display: flex; align-items: flex-end;
}
.sof-item {
  margin-bottom: 1.75rem;
}
.sof-item h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.5rem;
}
.sof-item p {
  font-size: 0.97rem; color: var(--text-medium); line-height: 1.8;
  margin-bottom: 0.5rem; text-align: justify; hyphens: auto;
}
.sof-item p:last-child { margin-bottom: 0; }

/* Application Form — full width centered */
.application-section {
  padding: 5rem 2rem; background: var(--warm-white);
}
.application-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.application-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.75rem;
}
.application-subtitle {
  font-size: 1.1rem; color: var(--text-medium); margin-bottom: 2.5rem; line-height: 1.7;
}
.form-card-wide {
  text-align: left;
}

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep); padding: 140px 2rem 4rem;
  position: relative; overflow: hidden;
}
.login-page::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(42, 61, 94, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(42, 61, 94, 0.2) 0%, transparent 50%);
}
.login-container {
  position: relative; z-index: 2; width: 100%; max-width: 440px;
  animation: fadeUp 0.8s ease-out;
}
.login-header { text-align: center; margin-bottom: 2.5rem; }
.login-logo {
  width: 100px; height: 100px; border-radius: 50%; background: transparent;
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 0 60px rgba(201, 168, 76, 0.1);
}
.login-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.login-header h1 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.5rem;
}
.login-header p { font-size: 1.05rem; color: rgba(250, 246, 238, 0.55); }

.login-card {
  background: var(--warm-white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.login-card .form-group { margin-bottom: 1.5rem; }
.login-card .form-group label {
  display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.login-card .form-group input {
  width: 100%; padding: 0.9rem 1rem; border: 1.5px solid var(--border-light);
  border-radius: 8px; font-family: var(--font-body); font-size: 1.05rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-card .form-group input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.login-card .form-group input::placeholder { color: #b0a898; }

.form-options {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem;
}
.remember-me {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; color: var(--text-medium); cursor: pointer;
}
.remember-me input { accent-color: var(--gold); cursor: pointer; }
.forgot-link { font-size: 0.9rem; color: var(--gold-muted); transition: color 0.2s; }
.forgot-link:hover { color: var(--gold); }

.login-footer-text {
  text-align: center; margin-top: 1.5rem; font-size: 0.95rem; color: var(--text-light);
}
.login-footer-text a { color: var(--gold-muted); text-decoration: underline; font-weight: 700; }
.login-footer-text a:hover { color: var(--gold); }

.member-preview { margin-top: 2.5rem; text-align: center; }
.member-preview p { font-size: 0.95rem; color: rgba(250, 246, 238, 0.45); margin-bottom: 1rem; }
.member-features { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.member-feature-tag {
  background: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px; padding: 0.4rem 1rem;
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.04em;
}

/* WP Login Form Override (for WordPress wp_login_form) */
.login-card .login-username,
.login-card .login-password { margin-bottom: 1.5rem; }
.login-card .login-username label,
.login-card .login-password label {
  display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.login-card .login-username input,
.login-card .login-password input {
  width: 100%; padding: 0.9rem 1rem; border: 1.5px solid var(--border-light);
  border-radius: 8px; font-family: var(--font-body); font-size: 1.05rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-card .login-username input:focus,
.login-card .login-password input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.login-card .login-remember {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; color: var(--text-medium); margin-bottom: 1.5rem;
}
.login-card .login-remember input { accent-color: var(--gold); }
.login-card .login-submit input[type="submit"] {
  width: 100%; background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.login-card .login-submit input[type="submit"]:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

/* ===== PRAYER CALENDAR PAGE ===== */
.calendar-intro { padding: 5rem 2rem; background: var(--warm-white); }
.calendar-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.calendar-intro-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); margin-bottom: 2rem;
}
.calendar-intro-inner p {
  font-size: 1.28rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.5rem;
}

.calendar-section { padding: 4rem 2rem 5rem; background: var(--cream); }
.calendar-section-inner { max-width: 1000px; margin: 0 auto; }
.calendar-section-header { text-align: center; margin-bottom: 2.5rem; }
.calendar-section-header h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.5rem;
}
.calendar-section-header p { font-size: 1.15rem; color: var(--text-light); }

.calendar-embed {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: 16px; min-height: 500px; display: flex;
  align-items: center; justify-content: center; text-align: center;
  padding: 3rem; position: relative; overflow: hidden;
}
.calendar-embed::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 59px, var(--border-light) 59px, var(--border-light) 60px);
  opacity: 0.3;
}
.calendar-placeholder { position: relative; z-index: 1; }
.calendar-placeholder .cal-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.4; }
.calendar-placeholder h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.75rem;
}
.calendar-placeholder p {
  font-size: 1.15rem; color: var(--text-light); line-height: 1.7; max-width: 450px; margin: 0 auto;
}
.calendar-placeholder .tech-note {
  margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-light);
  background: var(--cream); border-radius: 6px; padding: 0.75rem 1.25rem; display: inline-block;
}

.sample-strategy { padding: 5rem 2rem; background: var(--cream); }
.sample-inner { max-width: 700px; margin: 0 auto; }
.sample-inner > .section-label { text-align: center; }
.sample-inner > h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--navy); text-align: center; margin-bottom: 1rem;
}
.sample-inner > p {
  font-size: 1.15rem; color: var(--text-medium); text-align: center;
  margin-bottom: 2.5rem; line-height: 1.7;
}
.strategy-card {
  background: var(--warm-white); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--border-light); box-shadow: 0 8px 40px rgba(26, 39, 68, 0.05);
}
.strategy-card .strategy-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 1rem;
}
.strategy-card h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.25rem;
}
.strategy-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border-light);
}
.strategy-detail:last-child { border-bottom: none; }
.strategy-detail .detail-label {
  font-size: 0.78rem; font-weight: 700; color: var(--gold-muted);
  text-transform: uppercase; letter-spacing: 0.08em; min-width: 100px;
  flex-shrink: 0; padding-top: 0.15rem;
}
.strategy-detail .detail-value { font-size: 1.1rem; color: var(--text-medium); line-height: 1.6; }

.gcal-sync { padding: 4rem 2rem; background: var(--warm-white); }
.gcal-sync-inner {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.gcal-info h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 1rem;
}
.gcal-info p { font-size: 1.15rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 1rem; }
.gcal-visual {
  background: var(--cream); border-radius: 16px; padding: 2.5rem;
  text-align: center; border: 1px solid var(--border-light);
}
.gcal-visual .gcal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.gcal-visual h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.5rem;
}
.gcal-visual p { font-size: 1rem; color: var(--text-light); }

/* ===== PRAYER REQUESTS PAGE (member-only) ===== */
.prayer-requests-section { padding: 5rem 2rem; background: var(--warm-white); }
.prayer-requests-inner { max-width: 800px; margin: 0 auto; }
.prayer-requests-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); text-align: center; margin-bottom: 1rem;
}
.prayer-requests-inner > p {
  font-size: 1.15rem; color: var(--text-medium); text-align: center;
  max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.prayer-request-card {
  background: var(--cream); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border-light); border-left: 4px solid var(--gold);
  margin-bottom: 1.5rem;
}
.prayer-request-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1em;
}
.prayer-request-header h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--navy); margin: 0;
}
.urgency-badge {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.urgency-standard { background: #e8f0e8; color: #3a7a3a; }
.urgency-urgent { background: #fff3e0; color: #c97a1c; }
.urgency-critical { background: #fde8e8; color: #b53a3a; }
.prayer-request-content { font-size: 1.05rem; line-height: 1.75; color: var(--text-medium); margin-bottom: 1em; }
.prayer-strategy {
  background: var(--warm-white); border-radius: 8px; padding: 1.25em 1.5em; margin-top: 1.25em;
}
.prayer-strategy h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin: 0 0 0.5em;
}
.prayer-strategy p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.prayer-request-date { margin-top: 1em; color: var(--text-light); font-size: 0.85rem; }

.no-content-message {
  text-align: center; padding: 3em 2em; color: var(--text-light); line-height: 1.7;
}
.no-content-message a { color: var(--gold); font-weight: 600; }
.no-content-message a:hover { text-decoration: underline; }

/* Submit form section on member pages */
.submit-section {
  padding: 5rem 2rem; background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.submit-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}
.submit-inner {
  position: relative; z-index: 2; max-width: 650px; margin: 0 auto; text-align: center;
}
.submit-inner h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--cream); margin-bottom: 1rem;
}
.submit-inner > p {
  font-size: 1.15rem; color: rgba(250, 246, 238, 0.8); margin-bottom: 2.5rem; line-height: 1.7;
}

/* ===== TESTIMONIES PAGE (member-only) ===== */
.testimonies-section { padding: 5rem 2rem; background: var(--warm-white); }
.testimonies-inner { max-width: 800px; margin: 0 auto; }
.testimonies-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); text-align: center; margin-bottom: 1rem;
}
.testimonies-inner > p {
  font-size: 1.15rem; color: var(--text-medium); text-align: center;
  max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.testimony-member-card {
  background: var(--cream); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border-light); margin-bottom: 1.5rem; position: relative;
}
.testimony-member-card .quote-mark {
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--gold); line-height: 1; margin-bottom: -0.1em; opacity: 0.5;
}
.testimony-member-card h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--navy); margin: 0.3em 0 0.8em;
}
.testimony-member-card .testimony-body {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-medium);
}
.testimony-member-card .testimony-related {
  margin-top: 1em; color: var(--gold-muted); font-size: 0.9rem;
}
.testimony-member-card .testimony-date {
  margin-top: 0.8em; color: var(--text-light); font-size: 0.85rem;
}

/* ===== RESPONSIVE: PAGE TEMPLATES ===== */
@media (max-width: 900px) {
  .form-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .clarifications-grid { grid-template-columns: 1fr; }
  .gcal-sync-inner { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .login-page { padding: 130px 1.5rem 3rem; }
  .login-card { padding: 2rem 1.5rem; }
  .login-header h1 { font-size: 2rem; }
  .form-options { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .prayer-request-header { flex-direction: column; align-items: flex-start; gap: 0.5em; }
}

/* ==========================================================================
   PHASE 2 — SESSION 2 CSS ADDITIONS
   Append this entire block to the END of your existing style.css
   ========================================================================== */


/* ===================================================================
   POSITION PAPER PAGE — toc, essay, scripture-block, insight-box, greek
   =================================================================== */

/* Table of Contents */
.toc-section {
  padding: 3rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}
.toc-inner {
  max-width: 700px;
  margin: 0 auto;
}
.toc-inner h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-align: center;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li {
  border-bottom: 1px solid var(--border-light);
}
.toc-list li:last-child {
  border-bottom: none;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0.5rem;
  font-size: 1.1rem;
  color: var(--text-medium);
  transition: color 0.2s, padding-left 0.2s;
}
.toc-list a:hover {
  color: var(--gold-muted);
  padding-left: 1rem;
}
.toc-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  min-width: 2rem;
}

/* Essay layout */
.essay {
  padding: 4rem 2rem;
  background: var(--warm-white);
}
.essay-inner {
  max-width: 780px;
  margin: 0 auto;
}
.essay-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: 120px;
}
.essay-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.essay-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.essay-section-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.essay-section-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.essay p {
  font-size: 1.28rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Scripture block (used in position paper) */
.scripture-block {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.scripture-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.scripture-block cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-muted);
}

/* Greek term styling */
.greek {
  font-style: italic;
  color: var(--navy);
}

/* Key insight callout box */
.insight-box {
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin: 2rem 0;
}
.insight-box p {
  font-size: 1.2rem;
  color: rgba(250, 246, 238, 0.85);
  line-height: 1.8;
  margin-bottom: 0;
}
.insight-box .insight-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}


/* ===================================================================
   OVERSIGHT TEAM PAGE — team-intro, team cards, accountability
   =================================================================== */

/* Team Intro */
.team-intro {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.team-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.team-intro-inner h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.team-intro-inner p {
  font-size: 1.28rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Scripture callout (oversight team) */
.scripture-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.scripture-callout p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.scripture-callout cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-muted);
}

/* Team section & grid */
.team-section {
  padding: 5rem 2rem;
  background: var(--cream);
}
.team-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.team-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.team-section-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.team-section-header p {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 550px;
  margin: 0 auto;
}

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

.team-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.07);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--border-light);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-photo .initials {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.team-info {
  flex: 1;
}
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-info p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* Accountability section */
.accountability {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.accountability-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.accountability-inner h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.accountability-inner p {
  font-size: 1.28rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  text-align: left;
}
.principle-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border-light);
}
.principle-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.principle-item p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
}


/* ===================================================================
   RESPONSIVE — Position Paper + Oversight Team
   =================================================================== */

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 3rem auto 0;
  }
  .essay-section-header h2 {
    font-size: 1.8rem;
  }
  .team-intro-inner h2,
  .team-section-header h2,
  .accountability-inner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .essay-section-header h2 {
    font-size: 1.6rem;
  }
  .essay-section-number {
    font-size: 2.2rem;
  }
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



/* ==========================================================================
   FORM STYLES
   Base form elements + WPForms theme overrides + Login form styling.
   Field width overrides are handled in functions.php (wp_footer) to
   guarantee they load after WPForms' own CSS.
   ========================================================================== */

/* --- Base form elements (used in login template) --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700; color: #1a2744;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem;
  font-family: 'Lato', 'Segoe UI', sans-serif;
}
.form-group .required { color: #b8973f; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid #e8e0cf; border-radius: 8px;
  font-family: 'Lato', 'Segoe UI', sans-serif; font-size: 1rem;
  color: #1a1a1a; background: #fefcf7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a898; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- WPForms labels --- */
body .wpforms-container .wpforms-form .wpforms-field-label,
body .wpforms-container-full .wpforms-form .wpforms-field-label {
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #1a2744 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.4 !important;
}
/* Subscribe form (#53) — natural case for longer question labels */
#wpforms-53 .wpforms-field-label,
#wpforms-53 legend.wpforms-field-label {
  text-transform: none !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}
#wpforms-53 .wpforms-field-sublabel,
#wpforms-53 .wpforms-field-description {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
  line-height: 1.5 !important;
}
/* Subscribe form (#53) — checkbox alignment fix */
#wpforms-53 .wpforms-field-checkbox ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
#wpforms-53 .wpforms-field-checkbox li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
}
#wpforms-53 .wpforms-field-checkbox input[type="checkbox"] {
  flex-shrink: 0 !important;
  margin-top: 0.25rem !important;
  width: 18px !important;
  height: 18px !important;
}
#wpforms-53 .wpforms-field-checkbox .wpforms-field-label-inline {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: var(--text-dark) !important;
}
/* Labels on dark backgrounds */
.submit-section .wpforms-field-label,
body .submit-section .wpforms-field-label,
body .submit-inner .wpforms-field-label {
  color: #c9a84c !important;
  text-align: center !important;
}

/* --- WPForms inputs, textareas, selects --- */
body .wpforms-container .wpforms-form input[type="text"],
body .wpforms-container .wpforms-form input[type="email"],
body .wpforms-container .wpforms-form input[type="tel"],
body .wpforms-container .wpforms-form input[type="password"],
body .wpforms-container .wpforms-form textarea,
body .wpforms-container .wpforms-form select {
  color: #1a1a1a !important;
  background-color: #fefcf7 !important;
  font-size: 1rem !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-weight: 400 !important;
  padding: 0.75rem 1rem !important;
  border: 1.5px solid #e8e0cf !important;
  border-radius: 8px !important;
  line-height: 1.5 !important;
}

/* --- Select dropdown visibility --- */
body .wpforms-container .wpforms-form select {
  color: #3a3a3a !important;
  background-color: #fefcf7 !important;
  opacity: 1 !important;
}
body .wpforms-container .wpforms-form select option {
  color: #1a1a1a !important;
  background-color: #ffffff !important;
}

/* --- Placeholder + sub-labels --- */
body .wpforms-container .wpforms-form input::placeholder,
body .wpforms-container .wpforms-form textarea::placeholder {
  color: #999 !important;
  opacity: 1 !important;
}
body .wpforms-container .wpforms-form .wpforms-field-sublabel {
  font-size: 0.78rem !important;
  color: #5a5a5a !important;
  font-weight: 400 !important;
  margin-top: 0.25rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.submit-section .wpforms-field-sublabel,
body .submit-inner .wpforms-field-sublabel {
  color: rgba(250, 246, 238, 0.5) !important;
  text-align: center !important;
}

/* --- Focus states --- */
body .wpforms-container .wpforms-form input:focus,
body .wpforms-container .wpforms-form textarea:focus,
body .wpforms-container .wpforms-form select:focus {
  outline: none !important;
  border-color: #c9a84c !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

/* --- Submit button --- */
body .wpforms-container .wpforms-form button[type="submit"],
body .wpforms-container .wpforms-form .wpforms-submit {
  background: #c9a84c !important;
  color: #111c33 !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2rem !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
body .wpforms-container .wpforms-form button[type="submit"]:hover,
body .wpforms-container .wpforms-form .wpforms-submit:hover {
  background: #e0c872 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3) !important;
}

/* --- Field spacing --- */
body .wpforms-container .wpforms-form .wpforms-field {
  margin-bottom: 1.25rem !important;
}

/* --- Dark background form centering (submit sections) --- */
.submit-section .wpforms-container,
.submit-inner .wpforms-container {
  text-align: center !important;
}
.submit-section .wpforms-container .wpforms-form .wpforms-submit-container,
.submit-inner .wpforms-container .wpforms-form .wpforms-submit-container {
  text-align: center !important;
}

/* --- Subscribe form info column --- */
.form-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 500 !important;
  color: #1a2744 !important;
  line-height: 1.25 !important;
  margin-bottom: 1.25rem !important;
}
.form-info > p {
  font-size: 1.05rem !important;
  color: #3a3a3a !important;
  line-height: 1.75 !important;
}
.benefits-list li {
  font-size: 1rem !important;
}

/* --- Login form (wp_login_form) --- */
.login-card label,
.login-card .login-username label,
.login-card .login-password label {
  display: block !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #1a2744 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
}
.login-card input[type="text"],
.login-card input[type="password"],
.login-card .login-username input,
.login-card .login-password input {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  border: 1.5px solid #e8e0cf !important;
  border-radius: 8px !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 1rem !important;
  color: #1a1a1a !important;
  background: #faf6ee !important;
  box-sizing: border-box !important;
}
.login-card input[type="text"]:focus,
.login-card input[type="password"]:focus {
  outline: none !important;
  border-color: #c9a84c !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}
.login-card input[type="text"]::placeholder,
.login-card input[type="password"]::placeholder {
  color: #b0a898 !important;
}
.login-card .login-remember {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.95rem !important;
  color: #3a3a3a !important;
  margin-bottom: 1.5rem !important;
}
.login-card .login-remember input {
  width: auto !important;
  accent-color: #c9a84c !important;
}
.login-card input[type="submit"],
.login-card .login-submit input[type="submit"] {
  width: 100% !important;
  background: #c9a84c !important;
  color: #111c33 !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 1rem 2rem !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.login-card input[type="submit"]:hover {
  background: #e0c872 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3) !important;
}

/* --- Login gate (non-logged-in users on member pages) --- */
.login-gate {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 10rem 2rem 5rem;
  background: var(--navy-deep);
  position: relative; overflow: hidden; text-align: center;
}
.login-gate::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(42, 61, 94, 0.3) 0%, transparent 60%);
}
.login-gate-inner {
  position: relative; z-index: 2; max-width: 550px; margin: 0 auto;
}
.login-gate-icon { font-size: 3rem; margin-bottom: 1.5rem; opacity: 0.6; }
.login-gate-inner h2 {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  color: var(--cream); margin-bottom: 1.25rem;
}
.login-gate-inner p {
  font-size: 1.2rem; color: rgba(250, 246, 238, 0.7);
  line-height: 1.8; margin-bottom: 2rem;
}
.login-gate-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* --- Select dropdown text clipping fix --- */
body .wpforms-container .wpforms-form select,
body .wpforms-container-full .wpforms-form select,
div.wpforms-render-modern .wpforms-form select {
  height: auto !important;
  min-height: 48px !important;
  padding: 0.85rem 2.5rem 0.85rem 1rem !important;
  line-height: 1.5 !important;
  overflow: visible !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px 8px !important;
}

/* --- Responsive: forms --- */
@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- Dark background form labels — bold gold visibility fix --- */
#wpforms-59 .wpforms-field-label,
#wpforms-59 legend.wpforms-field-label,
#wpforms-63 .wpforms-field-label,
#wpforms-63 legend.wpforms-field-label,
.submit-section .wpforms-field-label,
.submit-section legend.wpforms-field-label,
body .submit-section .wpforms-container .wpforms-form .wpforms-field-label,
body .submit-inner .wpforms-container .wpforms-form .wpforms-field-label {
  color: #c9a84c !important;
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

/* Sub-labels (First, Last) on dark backgrounds */
#wpforms-59 .wpforms-field-sublabel,
#wpforms-63 .wpforms-field-sublabel,
.submit-section .wpforms-field-sublabel {
  color: rgba(250, 246, 238, 0.5) !important;
  text-align: center !important;
}
/* Prayer Calendar — Event Items */
.prayer-event-item {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.prayer-event-item h3 a {
    color: var(--navy);
    text-decoration: none;
}
.prayer-event-item h3 a:hover {
    color: var(--gold);
}
.prayer-event-item .event-date {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5rem 0 1rem;
}
.prayer-event-item .event-description {
    color: var(--text-dark);
    line-height: 1.7;
}
.prayer-event-item .event-details-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.prayer-event-item .event-details-link:hover {
    color: var(--navy);
}
.calendar-full-link {
    text-align: center;
    margin-top: 2rem;
}
.calendar-full-link a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
.calendar-full-link a:hover {
    color: var(--navy);
}