/* ===================================================================
   THE WELL MINISTRIES — Shared Stylesheet
   Aesthetic: girly, vibrant, warm, editorial. Bold condensed caps
   (Anton) mixed with elegant italic serif (Playfair Display).
   =================================================================== */

:root {
  /* Brand palette — vibrant, no cream */
  --pink:        #DA5D95;
  --pink-deep:   #B83573;
  --pink-soft:   #FFBDE8;
  --blush:       #FFF6FA;   /* soft warm base (not cream) */
  --blush-deep:  #FFE9F3;
  --blush-mid:   #FFD6EC;
  --coral:       #E07A5F;
  --coral-deep:  #C9674E;
  --coral-soft:  #FCE4DB;
  --blue:        #3366D3;
  --blue-deep:   #2A53AD;
  --periwinkle:  #9AAFED;
  --peri-soft:   #E9EDFB;
  --chartreuse:  #D1D163;
  --chartreuse-deep: #9FA03B;
  --chartreuse-tint: #F6F8E0;
  --white:       #FFFFFF;

  /* Text — never pure black */
  --charcoal:    #2D2926;
  --text-body:   #4A4441;
  --text-light:  #8A817A;

  /* System */
  --maxw: 1140px;
  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 34px;
  --shadow-sm: 0 6px 24px rgba(184,53,115,0.07);
  --shadow:    0 22px 56px rgba(184,53,115,0.13);
  --shadow-pink: 0 16px 38px rgba(218,93,149,0.26);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-serif-display: 'Bethany Elingston', 'Playfair Display', Georgia, serif;
  --font-sans:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Uploaded brand font — PERSONAL-USE license only; commercial license
   required before publishing. Used for the wordmark/logo. */
@font-face {
  font-family: 'Bethany Elingston';
  src: url('/fonts/BethanyElingston.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Headlines: bold condensed caps + italic serif accents ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 em, h2 em, h3 em, h4 em,
.serif-em {
  font-family: var(--font-serif-display);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--pink);
}

em { font-style: italic; }

::selection { background: var(--pink-soft); color: var(--charcoal); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }

.bg-blush      { background: var(--blush); }
.bg-blush-deep { background: var(--blush-deep); }
.bg-peri-soft  { background: var(--peri-soft); }
.bg-coral-soft { background: var(--coral-soft); }
.bg-chartreuse-soft { background: var(--chartreuse-tint); }
.bg-white      { background: var(--white); }
.bg-pink       { background: linear-gradient(150deg, var(--pink) 0%, var(--pink-deep) 100%); }
.bg-coral      { background: linear-gradient(150deg, var(--coral) 0%, var(--coral-deep) 100%); }
.bg-blue       { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%); }

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

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  display: inline-block;
}
.eyebrow.blue { color: var(--blue); }
.eyebrow.chartreuse { color: var(--chartreuse-deep); }
.eyebrow.on-dark { color: rgba(255,255,255,0.85); }
.eyebrow.on-dark.chartreuse { color: var(--chartreuse); }

/* chartreuse marker highlight behind a word */
.hl {
  background: var(--chartreuse);
  color: var(--charcoal);
  padding: 0.02em 0.18em;
  border-radius: 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Headings scale ---------- */
.display { font-size: clamp(2.8rem, 8.5vw, 5.6rem); line-height: 0.95; }
.h-xl { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.h-lg { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2rem); }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-body);
}

.accent-pink  { color: var(--pink); }
.accent-coral { color: var(--coral); }
.accent-blue  { color: var(--blue); }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--white); }
.on-dark .lead { color: rgba(255,255,255,0.94); }
.on-dark h1 em, .on-dark h2 em { color: var(--white); }

/* handwritten-feel accent — elegant serif italic (no cursive) */
.hand {
  font-family: var(--font-serif-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  color: var(--pink);
  line-height: 1.25;
  margin: 16px 0 26px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-pink   { background: var(--pink); color: var(--white); box-shadow: var(--shadow-pink); }
.btn-pink:hover { background: var(--pink-deep); box-shadow: 0 20px 46px rgba(184,53,115,0.34); }
.btn-coral  { background: var(--coral); color: var(--white); box-shadow: 0 16px 38px rgba(224,122,95,0.26); }
.btn-coral:hover { background: var(--coral-deep); }
.btn-blue   { background: var(--blue); color: var(--white); box-shadow: 0 16px 38px rgba(51,102,211,0.22); }
.btn-blue:hover { background: var(--blue-deep); }
.btn-white  { background: var(--white); color: var(--pink); box-shadow: var(--shadow-sm); }
.btn-white:hover { color: var(--pink-deep); }
.btn-ghost  { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-ghost:hover { background: var(--pink); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-ghost-light:hover { background: var(--white); color: var(--pink); }
.btn-chartreuse { background: var(--chartreuse); color: var(--charcoal); box-shadow: 0 16px 38px rgba(159,160,59,0.24); }
.btn-chartreuse:hover { background: #C3C457; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ===================================================================
   MARQUEE STRIP
   =================================================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  background: var(--pink);
}
.marquee.coral { background: var(--coral); }
.marquee.blue  { background: var(--blue); }
.marquee.chartreuse { background: var(--chartreuse); }
.marquee.chartreuse span { color: var(--charcoal); }
.marquee.chartreuse .sep { color: rgba(45,41,38,0.4); }
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 0 4px;
}
.marquee .sep { color: rgba(255,255,255,0.55); padding: 0 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================================
   CINEMATIC BAND (darkened photo / video, white text, movement)
   =================================================================== */
.cine {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cine .cine-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cine img.cine-media { animation: kenburns 22s ease-in-out infinite alternate; }
.cine .cine-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 100% at 50% 40%, rgba(45,25,35,0.36) 0%, rgba(45,25,35,0.62) 100%),
    linear-gradient(180deg, rgba(45,25,35,0.28), rgba(120,40,80,0.34));
}
.cine .cine-overlay.soft {
  background: linear-gradient(180deg, rgba(45,25,35,0.30), rgba(45,25,35,0.48));
}
.cine .cine-inner { position: relative; z-index: 2; padding: 96px 24px; width: 100%; max-width: 900px; }
.cine .cine-tag {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--chartreuse); margin-bottom: 18px; display: inline-block;
}
.cine h2 { color: var(--white); }
.cine h2 em { color: var(--white); }
.cine .cine-sub {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: rgba(255,255,255,0.92); margin-top: 18px;
}
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .cine img.cine-media { animation: none; } }

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,246,250,0.9);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(184,53,115,0.08);
  box-shadow: 0 6px 26px rgba(184,53,115,0.08);
}

/* transparent state (over the hero video): light text */
.nav .nav-logo,
.nav .nav-logo span { color: var(--white); }
.nav .nav-links a:not(.btn) { color: rgba(255,255,255,0.95); }
.nav .nav-drop > button { color: rgba(255,255,255,0.95); }
.nav .nav-toggle span { background: var(--white); }
.nav .nav-links a:not(.btn):hover,
.nav .nav-drop > button:hover { color: var(--pink-soft); }

/* scrolled / solid state: brand colors */
.nav.scrolled .nav-logo,
.nav.scrolled .nav-logo span { color: var(--blue); }
.nav.scrolled .nav-links a:not(.btn) { color: var(--text-body); }
.nav.scrolled .nav-drop > button { color: var(--text-body); }
.nav.scrolled .nav-toggle span { background: var(--charcoal); }
.nav.scrolled .nav-links a:not(.btn):hover,
.nav.scrolled .nav-drop > button:hover { color: var(--pink); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-family: 'Bethany Elingston', var(--font-serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--pink); }

.nav-drop { position: relative; }
.nav-drop > button {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.2s;
}
.nav-drop > button:hover { color: var(--pink); }
.nav-drop > button svg { transition: transform 0.25s var(--ease); }
.nav-drop:hover > button svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s var(--ease);
  border: 1px solid rgba(184,53,115,0.06);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-drop-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-drop-menu a:hover { background: var(--blush-deep); }
.nav-drop-menu .di-title {
  font-family: var(--font-serif-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  font-weight: 400;
  display: block;
}
.nav-drop-menu .di-sub {
  font-size: 12.5px;
  color: var(--text-light);
  display: block;
  margin-top: 1px;
}

.nav-cta { padding: 11px 22px !important; font-size: 12px !important; }
.nav-right { display: flex; align-items: center; gap: 26px; }

.nav-toggle {
  display: flex;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; border-radius: 2px;
  background: var(--charcoal); transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* full-screen pop-down menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 100%);
  z-index: 300;
  padding: 122px 6vw 64px;
  transform: translateY(-101%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu.open { transform: translateY(0); }
.popmenu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 56px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.popmenu-col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.popmenu-col .pm-head {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--chartreuse); margin-bottom: 8px;
}
.mobile-menu a:not(.btn) {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.22s var(--ease);
  width: fit-content;
  line-height: 1.15;
}
.mobile-menu a:not(.btn):hover { color: var(--chartreuse); padding-left: 7px; }
.popmenu-social { display: flex; gap: 16px; margin-top: 18px; }
.popmenu-social a { color: rgba(255,255,255,0.9); display: inline-flex; transition: color 0.2s, transform 0.2s var(--ease); }
.popmenu-social a:hover { color: var(--chartreuse); transform: translateY(-2px); }
.mobile-menu .btn { margin-top: 10px; }
.mobile-close {
  position: absolute; top: 30px; right: 6vw;
  background: none; border: none; cursor: pointer; font-size: 34px; color: var(--white);
  width: 44px; height: 44px; line-height: 1;
}
.nav-overlay { display: none; }

/* ===================================================================
   PHOTO FRAMES & SHAPES
   =================================================================== */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img,
.photo-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* dainty hand-drawn fruit illustrations (decorative accents) */
.fruit-doodle {
  position: absolute;
  width: 96px; height: auto;
  z-index: -1;
  pointer-events: none;
  color: var(--chartreuse-deep);
}
.fruit-doodle.green { color: var(--chartreuse-deep); }
.fruit-doodle.blue  { color: var(--blue); }
.fruit-doodle.peri  { color: var(--periwinkle); }
.fruit-doodle.pink  { color: var(--pink); }

.tag-float {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 11px 20px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tag-float .dotmark { width: 9px; height: 9px; border-radius: 50%; }

/* ===================================================================
   CARDS
   =================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,53,115,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .q-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--blush-mid);
  display: block;
  margin-bottom: 6px;
  height: 28px;
}
.quote-card p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 16px;
}
.quote-card cite, .quote-card .q-name {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
}
.quote-card .q-name small {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

/* ---------- Scripture pull-quote ---------- */
.scripture { text-align: center; max-width: 760px; margin: 0 auto; }
.scripture .verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  line-height: 1.45;
  color: var(--charcoal);
}
.scripture.on-dark .verse { color: var(--white); }
.scripture .ref {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 22px;
  display: inline-block;
}
.scripture.on-dark .ref { color: rgba(255,255,255,0.85); }
.scripture .sm-mark {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--blush-mid);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}
.scripture.on-dark .sm-mark { color: rgba(255,255,255,0.5); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 72px 0 110px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer .f-logo {
  font-family: 'Bethany Elingston', var(--font-serif);
  font-size: 2.9rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer .f-logo span { color: var(--white); }
.site-footer .f-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  max-width: 330px;
}
.footer-social { margin-top: 22px; display: flex; gap: 14px; }
.footer-social a {
  color: rgba(255,255,255,0.88);
  display: inline-flex; transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a:hover { color: var(--chartreuse); transform: translateY(-2px); }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links .fl-head {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chartreuse); margin-bottom: 4px;
}
.footer-links a {
  color: rgba(255,255,255,0.9); text-decoration: none; font-size: 15px; font-weight: 600;
  transition: color 0.2s, padding-left 0.2s var(--ease); width: fit-content;
}
.footer-links a:hover { color: var(--chartreuse); padding-left: 5px; }
.footer-bottom {
  margin-top: 48px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.65);
}
.footer-bottom a { color: var(--chartreuse); text-decoration: none; }

/* ===================================================================
   STICKY PROMO BAR
   =================================================================== */
.promo-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(100deg, var(--pink) 0%, var(--pink-deep) 100%);
  padding: 12px 22px;
  display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap;
  z-index: 180;
  box-shadow: 0 -6px 28px rgba(184,53,115,0.22);
}
.promo-bar p { font-size: 14px; color: rgba(255,255,255,0.96); margin: 0; }
.promo-bar strong { color: var(--white); font-weight: 800; }
.promo-bar .btn { padding: 9px 22px; font-size: 11px; }
.promo-bar .btn-white { color: var(--pink); }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .mobile-menu { padding: 104px 8vw 56px; justify-content: flex-start; }
  .popmenu-inner { grid-template-columns: 1fr; gap: 26px; max-width: 360px; }
  .popmenu-col { gap: 11px; }
  .mobile-menu a:not(.btn) { font-size: 1.5rem; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .marquee span { font-size: 1rem; }
  .promo-bar { flex-direction: column; gap: 9px; padding: 11px 18px; text-align: center; }
  .promo-bar p { font-size: 13px; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { width: 100%; }
  .nav-cta { width: auto !important; }
}

/* ===================================================================
   INNER PAGES + BLOG
   =================================================================== */
/* solid nav for pages without a dark hero behind it */
.nav.solid {
  background: rgba(255,246,250,0.95);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(184,53,115,0.08);
  box-shadow: 0 6px 26px rgba(184,53,115,0.08);
}
.nav.solid .nav-logo, .nav.solid .nav-logo span { color: var(--blue); }
.nav.solid .nav-links a:not(.btn) { color: var(--text-body); }
.nav.solid .nav-drop > button { color: var(--text-body); }
.nav.solid .nav-toggle span { background: var(--charcoal); }
.nav.solid .nav-links a:not(.btn):hover,
.nav.solid .nav-drop > button:hover { color: var(--pink); }

.page-hero {
  padding: 150px 0 56px;
  text-align: center;
  background: var(--white);
}
.page-hero .wrap { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.96; }
.page-hero h1 em { color: var(--pink); }
.page-hero .lead { margin: 18px auto 0; max-width: 600px; }

/* blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(184,53,115,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .bc-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .bc-img img { transform: scale(1.05); }
.blog-card .bc-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--chartreuse-deep); margin-bottom: 12px; }
.blog-card h3 {
  font-family: var(--font-serif); text-transform: none; letter-spacing: 0; font-weight: 700;
  font-size: 1.55rem; line-height: 1.18; color: var(--charcoal); margin-bottom: 12px;
}
.blog-card p { font-size: 15px; color: var(--text-body); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.blog-card .bc-more { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); display: inline-flex; align-items: center; gap: 7px; }
.blog-card .bc-more .arrow { transition: transform 0.3s var(--ease); }
.blog-card:hover .bc-more .arrow { transform: translateX(5px); }
.blog-featured { grid-column: 1 / -1; flex-direction: row; }
.blog-featured .bc-img { aspect-ratio: auto; flex: 1.05; min-height: 320px; }
.blog-featured .bc-body { flex: 0.95; justify-content: center; padding: 44px 46px; }
.blog-featured h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.blog-featured p { font-size: 16.5px; }

/* article */
.post-hero { padding: 142px 0 0; background: var(--white); }
.post-head { max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.post-cat { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--chartreuse-deep); margin-bottom: 18px; display: inline-block; }
.post-head h1 {
  font-family: var(--font-serif-display);
  text-transform: none; font-weight: 400;
  color: var(--charcoal);
  font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1.04; margin-bottom: 18px;
}
.post-dek { font-family: var(--font-sans); font-style: normal; font-weight: 400; font-size: clamp(1.05rem, 2.2vw, 1.32rem); color: var(--text-light); line-height: 1.5; }
.post-dek .g { color: var(--chartreuse-deep); font-weight: 600; }
.post-meta { margin-top: 24px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; }
.post-cover { max-width: 1000px; margin: 46px auto 0; padding: 0 24px; }
.post-cover .photo-frame { aspect-ratio: 16 / 8; border-radius: var(--radius-lg); }
.post-body { max-width: 720px; margin: 0 auto; padding: 54px 24px 0; }
.post-body p { font-size: 18px; line-height: 1.85; color: var(--text-body); margin-bottom: 1.35em; }
.post-body h2 {
  font-family: var(--font-serif); text-transform: none; letter-spacing: 0; font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.1rem); color: var(--charcoal); line-height: 1.2; margin: 1.7em 0 0.5em;
}
.post-body strong { color: var(--charcoal); font-weight: 700; }
.post-body a { color: var(--pink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.post-scripture { margin: 1.9em 0; padding: 28px 32px; background: var(--peri-soft); border-radius: var(--radius); border-left: 5px solid var(--blue); }
.post-scripture p { font-family: var(--font-serif); font-style: italic; font-size: 1.45rem; line-height: 1.45; color: var(--charcoal); margin: 0 0 12px; }
.post-scripture cite { font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.post-cta { max-width: 720px; margin: 52px auto 0; padding: 0 24px; }
.post-cta-box { background: linear-gradient(150deg, var(--pink), var(--pink-deep)); border-radius: var(--radius-lg); padding: 46px 42px; text-align: center; }
.post-cta-box h3 { color: #fff; font-family: var(--font-serif); text-transform: none; letter-spacing: 0; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; line-height: 1.1; }
.post-cta-box p { color: rgba(255,255,255,0.92); margin-bottom: 24px; font-size: 16px; }
.post-author { max-width: 720px; margin: 50px auto 0; padding: 28px 24px 0; border-top: 1px solid rgba(184,53,115,0.14); font-size: 15px; line-height: 1.6; color: var(--text-light); }
.post-author strong { color: var(--charcoal); }

@media (max-width: 820px) {
  .blog-featured { flex-direction: column; }
  .blog-featured .bc-img { min-height: 240px; }
  .blog-featured .bc-body { padding: 32px 30px; }
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-body p { font-size: 17px; }
  .page-hero { padding: 124px 0 44px; }
  .post-hero { padding: 118px 0 0; }
}
