/* =========================================
   FAITHFUL POST — styles.css
   ========================================= */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #F9F6F1;
  --cream-dark:   #F0EAE0;
  --gold:         #C8A97E;
  --gold-dark:    #A8845A;
  --gold-light:   #E8DCCB;
  --text:         #3E3E3E;
  --text-light:   #7A6E62;
  --white:        #FFFFFF;
  --shadow:       0 4px 32px rgba(100, 80, 50, 0.10);
  --shadow-lg:    0 12px 48px rgba(100, 80, 50, 0.16);
  --radius:       16px;
  --radius-sm:    8px;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(168, 132, 90, 0.40);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 132, 90, 0.50);
}

.btn-full { width: 100%; text-align: center; display: block; }
.btn-large { padding: 18px 50px; font-size: 0.9rem; }

/* ----- Sections ----- */
.section { padding: 76px 0; position: relative; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(100, 80, 50, 0.10);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: #fff !important;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.75rem !important;
  box-shadow: 0 4px 20px rgba(168, 132, 90, 0.5), 0 0 40px rgba(200, 169, 126, 0.35), 0 0 80px rgba(200, 169, 126, 0.15) !important;
  animation: navCtaGlow 2s ease-in-out infinite alternate;
  transition: transform 0.2s !important;
}

@keyframes navCtaGlow {
  from { box-shadow: 0 4px 20px rgba(168, 132, 90, 0.5), 0 0 40px rgba(200, 169, 126, 0.35), 0 0 80px rgba(200, 169, 126, 0.15); }
  to   { box-shadow: 0 4px 24px rgba(168, 132, 90, 0.7), 0 0 60px rgba(200, 169, 126, 0.5), 0 0 100px rgba(200, 169, 126, 0.25); }
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  animation: none;
  box-shadow: 0 8px 32px rgba(168, 132, 90, 0.8), 0 0 60px rgba(200, 169, 126, 0.6), 0 0 120px rgba(200, 169, 126, 0.3) !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
/* Tall outer track that gives the page scroll room for all 5 frames */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200, 169, 126, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 169, 126, 0.10) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(249, 246, 241, 0.8);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(249, 246, 241, 0.8);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 16px rgba(249, 246, 241, 0.6);
}

.hero-sub-headline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #2A2A2A;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 24px rgba(249, 246, 241, 0.95), 0 0 8px rgba(249, 246, 241, 0.8);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works { background: var(--cream); border-top: 1px solid var(--gold-light); }

.how-it-works .section-title { margin-bottom: 44px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.step-icon { font-size: 2.2rem; margin-bottom: 16px; }

/* ---- Unified icon style: consistent rounded squares ---- */
.step-icon-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 4px 16px rgba(100,70,20,0.10);
  flex-shrink: 0;
}

.step-icon-img svg {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* =========================================
   WHAT'S INSIDE
   ========================================= */
.whats-inside {
  background: linear-gradient(135deg, #F0E8D8 0%, var(--cream) 60%);
}

.inside-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.inside-text { position: sticky; top: 100px; }
.inside-tagline { font-size: 1rem; color: var(--text-light); margin-bottom: 32px; font-style: italic; }

.inside-items { display: flex; flex-direction: column; gap: 20px; }

.inside-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.inside-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }

.inside-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.inside-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.inside-item p { font-size: 0.88rem; color: var(--text-light); }

/* =========================================
   WHO IT'S FOR
   ========================================= */
.who-for { background: var(--cream); text-align: center; border-top: 1px solid var(--gold-light); }

.who-for .section-sub { margin: 0 auto 48px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: min(600px, 100%);
  margin: 0 auto;
}

.who-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #fff 0%, #FDF7ED 100%);
}

.who-icon { font-size: 2rem; margin-bottom: 12px; }

.who-icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--cream-dark);
  box-shadow: 0 2px 12px rgba(100,70,20,0.08);
  flex-shrink: 0;
}

.who-icon-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.who-icon-img svg {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
}

.who-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* =========================================
   PRAYER WALL
   ========================================= */
.prayer-wall {
  background: linear-gradient(135deg, #3A2E24 0%, #5C4A35 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.prayer-wall-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.prayer-wall .section-label { color: var(--gold); }

.prayer-wall .section-title { color: #fff; margin-bottom: 40px; }

.prayer-counter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.prayer-counter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: var(--radius);
  padding: 28px 56px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.counter-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.counter-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Prayer cards carousel */
.prayer-cards-track {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.prayer-cards {
  position: relative;
  height: 100%;
}

.prayer-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.prayer-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.prayer-card p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  max-width: min(600px, 100%);
  line-height: 1.5;
  margin-bottom: 10px;
}

.prayer-card-icon {
  margin-bottom: 12px;
  opacity: 0.8;
  color: var(--gold);
}

.prayer-card-icon svg {
  width: 36px;
  height: 36px;
}

.prayer-card span {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* =========================================
   PRAYER REQUEST FORM
   ========================================= */
.prayer-request { background: var(--cream); }

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

/* Card wrapper around the form */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E8E0D4;
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #E07070;
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #C5BAB0; }

/* Inline field errors */
.field-error {
  display: none;
  font-size: 0.78rem;
  color: #C0504D;
  margin-top: 5px;
  padding-left: 2px;
}

.field-error.show { display: block; }

/* Custom checkbox */
.form-checkbox { margin-bottom: 26px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-light);
  border-radius: 5px;
  flex-shrink: 0;
  background: var(--cream);
  margin-top: 1px;
  transition: all 0.2s;
  position: relative;
}

.checkbox-label:hover .checkmark {
  border-color: var(--gold);
}

.checkbox-label input:checked + .checkmark {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-dark);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Submit button loading state */
#submitBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
}

#submitBtn.loading .btn-text { opacity: 0.6; }

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

#submitBtn.loading .btn-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Privacy note */
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px 32px;
  animation: fadeInUp 0.5s ease both;
}

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

.success-dove {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: floatA 3s ease-in-out infinite;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p { color: var(--text-light); margin-bottom: 6px; }

.success-scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-top: 16px !important;
}

.btn-ghost {
  margin-top: 24px;
  background: none;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

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

/* Error state */
.form-error-msg {
  display: none;
  background: #FFF5F5;
  border: 1px solid #F5C6C6;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #C0504D;
  text-align: center;
}

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

/* =========================================
   PRICING
   ========================================= */
.pricing {
  background: linear-gradient(135deg, #F0E8D8 0%, var(--cream) 100%);
  text-align: center;
}

.pricing .section-title { margin-bottom: 40px; }

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-light);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 32px;
  line-height: 1;
}

.price-dollar {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 10px;
}

.price-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text);
}

.price-cents {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 10px;
}

.price-per {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 44px;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cancel {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card > p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  background: linear-gradient(135deg, #3A2E24 0%, #5C4A35 100%);
  text-align: center;
  padding: 96px 0;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.final-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}

.final-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-title em { font-style: italic; color: var(--gold); }

.final-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #2A2018;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 32px;
}

/* ── Four-column grid ── */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-link {
  display: inline-flex;
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 3px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  margin: 4px 0 0;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.footer-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col-list li {
  margin: 0;
}

.footer-col-list a {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  transition: color 0.2s;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-tagline-bottom {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.12);
  color: var(--gold);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background: var(--gold);
  color: #1A1A1A;
  transform: translateY(-2px);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section { background: var(--cream); text-align: center; }

.faq-section .section-title { margin-bottom: 48px; }

.faq-grid {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.trust-section { background: linear-gradient(135deg, #F0E8D8 0%, var(--cream) 60%); text-align: center; }

.trust-section .section-title { margin-bottom: 48px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.trust-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}



/* =========================================
   NEWSLETTER SIGNUP SECTION
   ========================================= */
.newsletter-section {
  background: var(--cream);
  text-align: center;
  position: relative;
  padding: 76px 0;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,126,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200,169,126,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.newsletter-icon {
  margin-bottom: 20px;
}

.newsletter-icon svg {
  width: 64px;
  height: 64px;
}

.newsletter-title {
  margin-bottom: 14px;
}

.newsletter-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* Input + button row */
.newsletter-form {
  width: 100%;
}

.newsletter-field-wrap {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--gold-light);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 4px 24px rgba(100, 70, 20, 0.10);
  transition: border-color 0.2s, box-shadow 0.2s;
  align-items: center;
}

.newsletter-field-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200, 169, 126, 0.22);
}

.newsletter-field-wrap input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
  min-width: 0;
}

.newsletter-field-wrap input::placeholder { color: #C5BAB0; }

.newsletter-field-wrap .btn {
  flex-shrink: 0;
  padding: 11px 28px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

/* Error */
.newsletter-field-error {
  display: none;
  font-size: 0.8rem;
  color: #C0504D;
  margin-top: 8px;
  padding-left: 4px;
  text-align: left;
}

.newsletter-field-error.show { display: block; }

/* Success */
.newsletter-success {
  display: none;
  padding: 28px 20px;
  background: #fff;
  border: 1.5px solid var(--gold-light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.5s ease both;
}

.newsletter-success.visible { display: block; }

.newsletter-success p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-success strong { color: var(--gold-dark); }

/* Privacy note */
.newsletter-privacy {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}


/* =========================================
   MOBILE-FIRST RESPONSIVE — FaithfulPost
   Base = mobile (320px). Scale up with min-width.
   ========================================= */

/* ── Global mobile base fixes ── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { overflow-x: hidden; min-width: 320px; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.container { width: 100%; padding: 0 16px; }

/* ── Sections ── */
.section { padding: 56px 0; }

/* ── Nav — mobile base ── */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(249, 246, 241, 0.98);
  padding: 20px 16px;
  gap: 0;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav-links.open { display: flex; }
.nav-links li { width: 100%; }
.nav-links a {
  display: block;
  padding: 14px 8px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gold-light);
  width: 100%;
  min-height: 44px;
  line-height: 1.2;
}
.nav-links li:last-child a { border-bottom: none; }
.nav-cta {
  display: inline-block !important;
  margin-top: 12px;
  border-radius: 50px !important;
  border-bottom: none !important;
  padding: 14px 22px !important;
  text-align: center;
}
.nav-toggle { display: flex; }
.nav-inner { padding: 0 16px; }

/* ── Hero ── */
.hero { min-height: auto; padding: 90px 0 56px; }
.hero-headline { font-size: clamp(1.9rem, 7vw, 2.8rem); }
.hero-tagline { font-size: 1rem; }
.hero-sub-headline { font-size: 0.95rem; margin: 0 auto 28px; padding: 0 8px; }
.hero-cta-group { flex-direction: column; gap: 12px; align-items: center; }
.hero-cta-group .btn { width: 100%; max-width: 340px; text-align: center; }

/* ── Grids — stack on mobile ── */
.steps-grid { grid-template-columns: 1fr; gap: 16px; }
.inside-layout { grid-template-columns: 1fr; gap: 32px; }
.inside-text { position: static; }
.who-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-grid { grid-template-columns: 1fr; max-width: 100%; }
.testi-grid { grid-template-columns: 1fr; max-width: 100%; }
.blog-grid { grid-template-columns: 1fr; gap: 16px; }
.form-row { grid-template-columns: 1fr; gap: 0; }

/* ── Cards ── */
.form-card { padding: 24px 16px; }
.step-card { padding: 24px 16px; }
.who-card { padding: 24px 12px; }
.trust-card { padding: 28px 20px; }
.faq-item { padding: 20px 20px; }
.inside-item { padding: 18px 16px; }
.blog-card { padding: 24px 20px; }

/* ── Pricing ── */
.pricing-card { padding: 36px 20px; }

/* ── Prayer form ── */
.prayer-counter { padding: 24px 20px; }
.counter-num { font-size: 3rem; }

/* ── Footer — stack on mobile ── */
.footer { padding: 48px 0 24px; }
.footer-top {
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-col-list a {
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ── Subpage hero ── */
.subpage-hero { padding: 100px 16px 48px; }
.subpage-body { padding: 0 16px 60px; }
.blog-post-body { padding: 0 16px 60px; }

/* ── Related / Internal link rows ── */
.related-grid { gap: 10px; }
.internal-links .link-row { gap: 10px; }
.link-row a, .related-grid a {
  padding: 10px 16px;
  font-size: 0.82rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── Buttons tap targets ── */
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.btn-large { padding: 16px 32px; font-size: 0.88rem; }

/* ── No horizontal scroll safeguards ── */
.hero-video { width: 100%; }
.prayer-wall { overflow: hidden; }
.section-sub { max-width: 100%; }
.form-wrap { max-width: 100%; padding: 0 0; }

/* ── Subscribe page list ── */
.subpage-body ul { padding: 0; }

/* ─────────────────────────────────────────
   768px+ — Tablet
   ───────────────────────────────────────── */
@media (min-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 76px 0; }

  /* Nav */
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    gap: 20px;
    box-shadow: none;
    align-items: center;
  }
  .nav-links li { width: auto; }
  .nav-links a {
    display: inline;
    padding: 0;
    border-bottom: none;
    min-height: auto;
    font-size: 0.88rem;
  }
  .nav-cta {
    margin-top: 0 !important;
    padding: 7px 16px !important;
    font-size: 0.75rem !important;
  }
  .nav-toggle { display: none; }
  .nav-inner { padding: 0 24px; }

  /* Hero */
  .hero { min-height: 80vh; padding: 100px 0 72px; }
  .hero-headline { font-size: clamp(2.2rem, 5vw, 3.6rem); }
  .hero-cta-group { flex-direction: row; gap: 20px; }
  .hero-cta-group .btn { width: auto; }

  /* Grids */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Cards */
  .form-card { padding: 40px 36px; }
  .step-card { padding: 32px 24px; }

  /* Footer — two columns */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }

  /* Subpage */
  .subpage-hero { padding: 120px 24px 64px; }
  .subpage-body { padding: 0 24px 80px; }
  .blog-post-body { padding: 0 24px 80px; }
}

/* ─────────────────────────────────────────
   900px+ — Large tablet / small desktop
   ───────────────────────────────────────── */
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-layout { grid-template-columns: 1fr 1.4fr; gap: 72px; }
  .inside-text { position: sticky; top: 100px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────
   1024px+ — Desktop
   ───────────────────────────────────────── */
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .container { padding: 0 24px; }
  .subpage-hero { padding: 140px 24px 72px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ─────────────────────────────────────────
   1440px+ — Wide desktop
   ───────────────────────────────────────── */
@media (min-width: 1440px) {
  .container { max-width: 1100px; margin: 0 auto; }
}

/* =========================================
   HYBRID DESIGN ENHANCEMENTS
   Warm devotional + modern editorial
   ========================================= */

/* ── Hero Vignette ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(249,246,241,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Hero Fade-In Animation ── */
.hero-fade-in {
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Secondary Button (outlined) ── */
.btn-secondary {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #F0E8D8 100%) !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 4px 18px rgba(168, 132, 90, 0.25) !important;
  color: var(--text) !important;
  transition: all 0.3s ease !important;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #F0E8D8 0%, var(--gold-light) 100%) !important;
  box-shadow: 0 8px 28px rgba(168, 132, 90, 0.4), 0 0 24px rgba(200,169,126,0.2) !important;
  transform: translateY(-2px) !important;
}
.btn-secondary em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Hero Devotional Image ── */


/* ── Section Divider (botanical line art) ── */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.section-divider svg {
  width: 160px;
  height: 28px;
  opacity: 0.5;
}

/* ── Pillar Card "Explore" Link ── */
.pillar-explore {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: transform 0.25s ease, color 0.25s ease;
}
.pillar-card:hover .pillar-explore {
  transform: translateX(4px);
  color: var(--gold);
}

/* ── Pillar Card Watercolor Texture ── */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,169,126,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,169,126,0.06) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius);
}

/* ── Featured Articles Section Enhancement ── */
#featured-articles {
  background: linear-gradient(180deg, var(--cream) 0%, #F5F0E8 100%);
}
#featured-articles .section-label::before {
  content: '✦ ';
  font-size: 0.6rem;
  color: var(--gold);
}
.article-card-img {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 180px;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-card-img img {
  transform: scale(1.08);
}

/* ── Email Signup (7-Day Devotional) Enhancement ── */
.newsletter-section {
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 40%, #F5F0E8 100%) !important;
  overflow: hidden;
}
.newsletter-section .watercolor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.newsletter-section .wc-floral-1 {
  width: 300px; height: 300px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(200,169,126,0.3), transparent 70%);
}
.newsletter-section .wc-floral-2 {
  width: 250px; height: 250px;
  bottom: -60px; right: -40px;
  background: radial-gradient(circle, rgba(232,200,122,0.25), transparent 70%);
}
.newsletter-inner {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 12px 56px rgba(100,80,50,0.18);
  border: 1.5px solid rgba(200,169,126,0.25);
  position: relative;
  z-index: 1;
}
.newsletter-inner .newsletter-icon svg {
  width: 56px;
  height: 56px;
}
.newsletter-devotional-img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(100,80,50,0.15);
}

/* ── Encouragement Spotlight Enhancement ── */
#encouragement-spotlight {
  background: linear-gradient(135deg, #F0E8D8 0%, var(--cream) 60%) !important;
}
#encouragement-spotlight .section-label::before {
  content: '✦ ';
  font-size: 0.6rem;
  color: var(--gold);
}

/* ── Bible Study + Christian Home Sections ── */
#bible-study-section {
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 60%);
}
#bible-study-section .inside-item {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}
#christian-home-section .inside-item {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}

/* ── Footer Enhancement ── */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A97E' fill-opacity='0.03'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer-brand-watermark {
  position: absolute;
  bottom: 10px;
  right: 20px;
  opacity: 0.04;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.footer-divider-botanical {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 16px;
  opacity: 0.2;
}
.footer-divider-botanical svg {
  width: 180px;
  height: 20px;
}
.footer-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-nav a:hover {
  color: var(--gold-dark);
  transform: translateX(3px);
}

/* ── Typography: Script accent lines ── */
.script-accent {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

/* ── Scroll Reveal Animation ── */
.fade-in {
  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero CTA hover lift (already exists, reinforced) ── */
.hero-cta-group .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(168, 132, 90, 0.55);
}

/* ── Mobile adjustments for enhancements ── */
@media (max-width: 767px) {
  .newsletter-inner { padding: 32px 20px; border-radius: 16px; }
  .footer-brand-watermark { font-size: 2.5rem; }
  .pillar-explore { font-size: 0.75rem; }
}
.nav-dropdown-menu li:first-child a { font-weight: 800; color: var(--text); }

/* ── Dropdown Nav (moved from inline styles) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--font-body);
  background: none; border: none; color: inherit; cursor: pointer;
  width: 100%; text-align: left; display: flex; align-items: center;
  justify-content: space-between; gap: 6px; padding: 14px 8px;
  font-size: 0.95rem; border-bottom: 1px solid var(--gold-light);
  min-height: 44px; line-height: 1.2;
}
.nav-dropdown-toggle:hover { color: var(--gold-dark); }
.nav-caret { font-size: 0.7em; transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown.open > .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.nav-dropdown.open .nav-dropdown-menu { max-height: 560px; }
.nav-dropdown-menu li a { display: block; padding: 12px 8px 12px 22px !important; font-size: 0.88rem !important; color: var(--text-light) !important; border-bottom: 1px solid var(--gold-light); }
.nav-dropdown-menu li:first-child a { font-size: 0.95rem !important; font-weight: 800 !important; color: var(--text) !important; border-bottom: 2px solid var(--gold) !important; padding-bottom: 10px !important; margin-bottom: 4px; }
.nav-divider { display: none; }
@media (min-width: 768px) {
  .nav-dropdown-toggle { display: inline-flex; width: auto; padding: 0; border-bottom: none; min-height: auto; font-size: 0.88rem; }
  .nav-dropdown-menu { position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, 8px); background: #fff; min-width: 260px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); border: 1px solid var(--gold-light); padding: 8px; max-height: none; overflow: visible; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; z-index: 1001; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav-dropdown-menu li a { padding: 10px 12px !important; border-bottom: none !important; border-radius: 8px; white-space: nowrap; }
  .nav-dropdown-menu li:first-child a { font-size: 0.95rem !important; font-weight: 800 !important; color: var(--text) !important; border-bottom: none !important; padding: 10px 12px !important; margin-bottom: 0; }
  .nav-dropdown-menu li:first-child + li a { border-top: 1px solid var(--gold-light); padding-top: 12px !important; }
  .nav-dropdown-menu li a:hover { background: var(--cream-dark); }
  .nav-divider { display: block; width: 1px; height: 20px; background: var(--gold-light); margin: 0 4px; }
}

/* ── Homepage Design Accents (moved from inline styles) ── */
.watercolor-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.watercolor-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.35; }
.wc-1 { width: 420px; height: 420px; top: -120px; left: -100px; background: radial-gradient(circle, rgba(200,169,126,0.55), transparent 70%); }
.wc-2 { width: 380px; height: 380px; top: 60px; right: -140px; background: radial-gradient(circle, rgba(232,200,122,0.45), transparent 70%); }
.wc-3 { width: 300px; height: 300px; bottom: -120px; left: 30%; background: radial-gradient(circle, rgba(168,132,90,0.35), transparent 70%); }
.botanical-accent { position: absolute; opacity: 0.5; pointer-events: none; }
.hero .botanical-accent { width: 90px; height: auto; bottom: 20px; right: 6%; opacity: 0.45; }
#pillars .botanical-accent { width: 60px; height: auto; top: 10px; left: 4%; opacity: 0.3; transform: scaleX(-1); }
.hero-content, .hero-text { position: relative; z-index: 2; }
.pillar-card { position: relative; overflow: hidden; transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease; }
.pillar-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.pillar-card .trust-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; background: radial-gradient(circle, rgba(232,200,122,0.35), rgba(200,169,126,0.12) 70%); transition: transform 0.35s ease; }
.pillar-card:hover .trust-icon { transform: rotate(-6deg) scale(1.08); }
.pillar-card-watercolor { position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,126,0.25), transparent 70%); filter: blur(8px); transition: transform 0.35s ease; }
.pillar-card:hover .pillar-card-watercolor { transform: scale(1.3); }
.article-card { border-top: 3px solid transparent; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.article-card:hover { border-top-color: var(--gold); }
.inside-item:hover h4 { color: var(--gold-dark); }
.wc-floral-1 { width: 320px; height: 320px; top: -80px; left: -60px; background: radial-gradient(circle, rgba(200,169,126,0.4), transparent 70%); }
.wc-floral-2 { width: 280px; height: 280px; bottom: -80px; right: -60px; background: radial-gradient(circle, rgba(232,200,122,0.3), transparent 70%); }
@media (max-width: 767px) {
  .botanical-accent { display: none; }
}