/* ============================================================
   DBPMU1945.ORG — Main Stylesheet
   Brand: Purple #3d1a60 / #5c2d8a  |  Gold #c9a84c / #e8c46a
   ============================================================ */

/* ── Reset & Variables ──────────────────────────────────────── */
:root {
  --purple:        #5c2d8a;
  --purple-dark:   #3d1a60;
  --purple-mid:    #6e3aa0;
  --purple-light:  #8b55b8;
  --purple-pale:   #f2eaf8;
  --gold:          #c9a84c;
  --gold-light:    #e8c46a;
  --gold-pale:     #f7edd0;
  --gold-dark:     #9a7220;
  --cream:         #faf8f3;
  --white:         #ffffff;
  --gray-50:       #faf9f7;
  --gray-100:      #f4f1eb;
  --gray-200:      #e8e2d6;
  --gray-300:      #d4ccc0;
  --gray-400:      #a09478;
  --gray-600:      #6b5e46;
  --gray-800:      #3a3020;
  --red:           #8b1a1a;
  --text:          #231a0e;
  --shadow-xs:     0 1px 4px rgba(60,20,100,0.07);
  --shadow-sm:     0 2px 10px rgba(60,20,100,0.09);
  --shadow-md:     0 6px 24px rgba(60,20,100,0.14);
  --shadow-lg:     0 16px 48px rgba(60,20,100,0.20);
  --radius:        4px;
  --transition:    0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
.section-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 8px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.55rem); font-weight: 900; color: var(--purple-dark); margin-bottom: 14px; }
.section-title em { font-style: italic; color: var(--purple-mid); }
.section-rule { width: 56px; height: 3px; background: var(--gold); margin: 16px 0 32px; }
.section-rule--center { margin-left: auto; margin-right: auto; }
.section-intro { font-family: 'Lora', serif; font-size: 1rem; color: var(--gray-600); line-height: 1.82; max-width: 620px; }
.text-white    { color: var(--white); }
.text-gold     { color: var(--gold); }
.text-gold-lt  { color: var(--gold-light); }
.text-purple   { color: var(--purple-dark); }
.text-muted    { color: rgba(250,245,240,0.65); }
.text-center   { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; padding: 12px 26px; border-radius: var(--radius); border: none; cursor: pointer; text-decoration: none; transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-gold     { background: var(--gold);        color: var(--purple-dark); }
.btn-gold:hover { background: var(--gold-light); }
.btn-purple   { background: var(--purple-dark); color: var(--white); }
.btn-purple:hover { background: var(--purple-mid); }
.btn-outline-gold { background: transparent; color: var(--gold-pale); border: 1.5px solid rgba(201,168,76,0.45); }
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-purple { background: transparent; color: var(--purple-dark); border: 1.5px solid var(--purple-dark); }
.btn-outline-purple:hover { background: var(--purple-dark); color: var(--white); }
.btn-sm { font-size: 0.72rem; padding: 8px 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-red  { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a01f1f; }

/* ── Layout ──────────────────────────────────────────────────── */
.site-section { padding: 80px 24px; }
.container { max-width: 1240px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker-bar { background: var(--purple-dark); border-bottom: 2px solid var(--gold); padding: 8px 0; overflow: hidden; position: relative; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 55s linear infinite; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-pale); }
.ticker-item { padding-right: 80px; flex-shrink: 0; }
.ticker-item::before { content: ""; display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Header / Nav ────────────────────────────────────────────── */
.site-header { background: var(--purple-dark); border-bottom: 3px solid var(--gold); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 12px; }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; background: rgba(201,168,76,0.12); padding: 2px; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'DM Serif Display', serif; font-size: 0.87rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-brand-sub { font-size: 0.58rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 9px; border-radius: var(--radius); transition: color var(--transition), background var(--transition); white-space: nowrap; }
.nav-links a:hover { color: var(--gold-light); background: rgba(201,168,76,0.1); }
.nav-links a.nav-live { background: #c41c00; color: #fff; }
.nav-links a.nav-live::before { content: ""; display: inline-block; width: 6px; height: 6px; background: #fff; border-radius: 50%; margin-right: 5px; vertical-align: middle; animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-links .nav-give { background: var(--gold); color: var(--purple-dark) !important; font-weight: 700 !important; }
.nav-links .nav-give:hover { background: var(--gold-light); }
.nav-hamburger { display: none; background: none; border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold); padding: 7px 10px; border-radius: var(--radius); cursor: pointer; font-size: 1rem; flex-shrink: 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { background: var(--purple-dark); padding: 90px 24px 100px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%), repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(201,168,76,0.018) 60px, rgba(201,168,76,0.018) 61px), repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(201,168,76,0.018) 60px, rgba(201,168,76,0.018) 61px); pointer-events: none; }
.hero-inner { max-width: 840px; margin: 0 auto; position: relative; }
.hero-seal { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; border: 2px solid rgba(201,168,76,0.6); background: rgba(201,168,76,0.08); padding: 4px; margin: 0 auto 24px; display: block; animation: seal-pulse 3s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(201,168,76,0.55)); }
@keyframes seal-pulse { 0%, 100% { filter: drop-shadow(0 0 14px rgba(201,168,76,0.45)); border-color: rgba(201,168,76,0.45); transform: scale(1); } 50% { filter: drop-shadow(0 0 32px rgba(201,168,76,0.85)); border-color: rgba(201,168,76,0.85); transform: scale(1.04); } }
.hero-badge { display: inline-block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.38); padding: 5px 16px; border-radius: 2px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 14px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-rule { width: 72px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 16px auto; }
.hero-desc { font-family: 'Lora', serif; font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(250,245,240,0.78); line-height: 1.84; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 20px 24px; }
.stats-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 1.9rem; font-weight: 900; color: var(--purple-dark); line-height: 1; }
.stat-label { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-dark); opacity: 0.7; margin-top: 3px; }

/* ── Announcement (President Video) ─────────────────────────── */
.announcement-section { background: var(--purple-dark); padding: 72px 24px; }
.announcement-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.25fr; gap: 52px; align-items: center; }
.announcement-text .section-eyebrow { color: var(--gold); }
.announcement-text .section-title  { color: var(--white); }
.announcement-text .section-title em { color: var(--gold-light); }
.announcement-text .section-rule   { background: var(--gold); }
.announcement-text p { font-size: 0.94rem; color: rgba(250,245,240,0.72); line-height: 1.84; margin-bottom: 22px; }
.video-frame { border-radius: 6px; overflow: hidden; border: 2px solid rgba(201,168,76,0.25); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: #110728; position: relative; cursor: pointer; }
.video-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(92,45,138,0.5), #110728); }
.video-placeholder.hidden { display: none; }
.play-btn { width: 68px; height: 68px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pulse-ring 2s ease-in-out infinite; }
.play-btn svg { width: 26px; height: 26px; fill: var(--purple-dark); margin-left: 4px; }
@keyframes pulse-ring { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); } 50% { box-shadow: 0 0 0 14px rgba(201,168,76,0); } }
.video-placeholder-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-pale); }
.video-placeholder-sub { font-size: 0.7rem; color: rgba(245,233,204,0.45); }

/* ── Live Stream ─────────────────────────────────────────────── */
.livestream-section { background: #0d0520; padding: 80px 24px; }
.livestream-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; background: #c41c00; color: #fff; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; padding: 4px 12px; border-radius: 2px; margin-bottom: 10px; }
.live-badge::before { content: ""; display: inline-block; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse-dot 1s step-start infinite; }
.livestream-header .section-title { color: var(--white); }
.livestream-header .section-title em { color: var(--gold-light); }
.livestream-header p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.74; max-width: 460px; }
.stream-platform-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-yt { background: #ff0000; color: #fff; }
.btn-yt:hover { background: #cc0000; transform: none; }
.btn-fb { background: #1877f2; color: #fff; }
.btn-fb:hover { background: #0d5fc4; transform: none; }
.stream-tabs { display: flex; border-bottom: 2px solid rgba(201,168,76,0.1); margin-bottom: 0; }
.stream-tab { padding: 10px 22px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); cursor: pointer; border: none; background: transparent; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color var(--transition), border-color var(--transition); }
.stream-tab:hover { color: var(--gold-light); }
.stream-tab.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.stream-embed { background: #080212; border-radius: 6px; overflow: hidden; border: 2px solid rgba(201,168,76,0.14); box-shadow: var(--shadow-lg); }
.stream-embed iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.stream-offline { aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: radial-gradient(ellipse 60% 50% at 50% 50%, #1a0535, #080212); }
.stream-offline svg { width: 48px; height: 48px; opacity: 0.25; }
.stream-offline h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: rgba(255,255,255,0.4); }
.stream-offline p { font-size: 0.82rem; color: rgba(255,255,255,0.25); text-align: center; max-width: 380px; line-height: 1.7; }
.sermon-archive { margin-top: 22px; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.sermon-archive h4 { font-family: 'DM Serif Display', serif; font-size: 0.97rem; color: var(--white); margin-bottom: 4px; }
.sermon-archive p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

/* ── About ───────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 22px; }
.pillar-item { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon { width: 40px; height: 40px; background: var(--purple-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pillar-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.pillar-text strong { display: block; font-size: 0.93rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 3px; }
.pillar-text span { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }
.quote-box { background: var(--purple-dark); padding: 36px; border-radius: 6px; position: relative; overflow: hidden; margin-bottom: 22px; }
.quote-box::before { content: '\201C'; position: absolute; top: -16px; left: 16px; font-family: 'DM Serif Display', serif; font-size: 8rem; color: rgba(201,168,76,0.12); line-height: 1; pointer-events: none; }
.quote-box blockquote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.25rem; color: var(--white); line-height: 1.72; margin-bottom: 16px; position: relative; }
.quote-box cite { font-size: 0.74rem; font-style: normal; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.about-history { font-size: 0.87rem; color: var(--gray-600); line-height: 1.84; padding-top: 22px; border-top: 1px solid var(--gray-200); }

/* ── Events ──────────────────────────────────────────────────── */
.events-section { background: var(--gray-100); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 22px; }
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card.is-featured { grid-column: span 2; flex-direction: row; }
.event-date { background: var(--purple-dark); padding: 20px 16px; text-align: center; min-width: 84px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.is-featured .event-date { min-width: 104px; padding: 28px 20px; }
.event-date-month { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); }
.event-date-day { font-family: 'DM Serif Display', serif; font-size: 2.3rem; font-weight: 900; color: var(--white); line-height: 1; margin: 3px 0; }
.is-featured .event-date-day { font-size: 2.8rem; }
.event-tag { font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-dark); background: var(--gold); padding: 2px 7px; border-radius: 2px; margin-top: 4px; }
.event-body { padding: 20px; flex: 1; display: flex; flex-direction: column; position: relative; }
.event-featured-badge { position: absolute; top: 16px; right: 16px; background: var(--red); color: var(--white); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.event-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 9px; line-height: 1.3; }
.is-featured .event-title { font-size: 1.4rem; }
.event-meta { list-style: none; display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.event-meta li { font-size: 0.79rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 6px; }
.event-meta li::before { content: "·"; color: var(--gold-dark); font-size: 1.1rem; line-height: 0; margin-top: 10px; flex-shrink: 0; }
.event-desc { font-size: 0.84rem; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.event-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Member Churches ─────────────────────────────────────────── */
.churches-section { background: var(--white); }
.churches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 18px; }
.church-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 20px; transition: border-color var(--transition), box-shadow var(--transition); }
.church-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.church-name { font-family: 'DM Serif Display', serif; font-size: 0.96rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 4px; line-height: 1.3; }
.church-pastor { font-size: 0.82rem; font-style: italic; color: var(--gold-dark); margin-bottom: 10px; font-family: 'Lora', serif; }
.church-detail { font-size: 0.77rem; color: var(--gray-600); display: flex; gap: 6px; align-items: flex-start; margin-bottom: 3px; }
.church-detail svg { width: 12px; height: 12px; fill: var(--gray-400); flex-shrink: 0; margin-top: 1px; }
.church-detail a { color: var(--purple-mid); text-decoration: none; }
.church-detail a:hover { color: var(--gold-dark); }
.church-alpha-header { grid-column: 1 / -1; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); padding: 8px 0 4px; border-bottom: 1px solid var(--gray-200); margin-bottom: 4px; }

/* ── Mission ─────────────────────────────────────────────────── */
.mission-section { background: var(--purple-dark); padding: 96px 24px; }
.mission-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.mission-section .section-eyebrow { color: var(--gold); }
.mission-section .section-title { color: var(--white); }
.mission-section .section-title em { color: var(--gold-light); }
.mission-section .section-rule { background: var(--gold); margin-left: auto; margin-right: auto; }
.mission-verse { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.15rem, 2.5vw, 1.65rem); color: var(--gold-pale); line-height: 1.78; max-width: 700px; margin: 0 auto 12px; }
.mission-ref { font-size: 0.74rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.mission-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.mission-pillar { text-align: center; padding: 28px 20px; border: 1px solid rgba(201,168,76,0.18); border-radius: var(--radius); }
.mission-pillar-num { font-family: 'DM Serif Display', serif; font-size: 2.7rem; font-weight: 900; color: rgba(201,168,76,0.17); line-height: 1; margin-bottom: 10px; }
.mission-pillar h3 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: 9px; }
.mission-pillar p { font-size: 0.83rem; color: rgba(250,245,240,0.57); line-height: 1.74; }

/* ── Portal ──────────────────────────────────────────────────── */
.portal-section { background: var(--gray-100); }
.portal-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 32px; }
.portal-tab { padding: 10px 24px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); cursor: pointer; border: none; background: transparent; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color var(--transition), border-color var(--transition); }
.portal-tab:hover { color: var(--purple-mid); }
.portal-tab.active { color: var(--purple-dark); border-bottom-color: var(--gold); }
.portal-panel { display: none; }
.portal-panel.active { display: block; }
.portal-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.portal-locked { display: flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; font-size: 0.82rem; color: var(--gold-dark); }
.portal-locked svg { width: 16px; height: 16px; fill: var(--gold-dark); flex-shrink: 0; }
.portal-resource-list { display: flex; flex-direction: column; gap: 10px; }
.portal-resource { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 15px 18px; display: flex; align-items: center; gap: 14px; text-decoration: none; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.portal-resource:hover { border-color: var(--gold); transform: translateX(3px); box-shadow: var(--shadow-xs); }
.portal-resource-icon { width: 38px; height: 38px; background: var(--purple-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.portal-resource-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.portal-resource-title { font-size: 0.9rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 2px; }
.portal-resource-desc { font-size: 0.74rem; color: var(--gray-600); }
.portal-resource-arrow { margin-left: auto; color: var(--gray-400); font-size: 1rem; line-height: 1; }
.portal-cta { background: var(--purple-dark); padding: 34px; border-radius: 6px; }
.portal-cta h3 { font-family: 'DM Serif Display', serif; font-size: 1.28rem; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.portal-cta p { font-size: 0.86rem; color: rgba(250,245,240,0.68); line-height: 1.78; margin-bottom: 20px; }

/* ── Register ────────────────────────────────────────────────── */
.register-section { background: var(--white); }
.register-reasons { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 6px; }
.register-reasons li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--gray-600); line-height: 1.62; }
.register-reasons li svg { width: 14px; height: 14px; fill: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

/* ── Give ────────────────────────────────────────────────────── */
.give-section { background: var(--gold); padding: 70px 24px; }
.give-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.give-section .section-eyebrow { color: rgba(61,26,96,0.65); }
.give-section .section-title { color: var(--purple-dark); }
.give-section .section-rule { background: var(--purple-dark); opacity: 0.25; margin-left: auto; margin-right: auto; }
.give-section p { font-family: 'Lora', serif; font-size: 0.96rem; color: rgba(35,26,14,0.66); line-height: 1.82; margin-bottom: 30px; }
.give-note { font-size: 0.72rem; color: rgba(35,26,14,0.42); margin-top: 12px; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-section { background: var(--gray-100); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 13px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; fill: var(--purple-dark); }
.contact-label { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); margin-bottom: 2px; }
.contact-value { font-size: 0.96rem; font-weight: 600; color: var(--purple-dark); }
.contact-value a { text-decoration: none; color: inherit; }
.contact-value a:hover { color: var(--gold-dark); }
.contact-sub { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-card { background: var(--white); border-radius: 6px; padding: 32px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.18rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); }
.form-group input, .form-group select, .form-group textarea { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 9px 12px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; color: var(--text); transition: border-color var(--transition); outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple-mid); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-note { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.6; }
.form-note a { color: var(--purple-mid); text-decoration: none; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: #180830; padding: 56px 24px 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: rgba(201,168,76,0.07); padding: 2px; margin-bottom: 12px; }
.footer-brand h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.81rem; line-height: 1.78; color: rgba(160,148,120,0.7); }
.footer-give { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--purple-dark); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 9px 18px; border-radius: var(--radius); text-decoration: none; margin-top: 14px; transition: background var(--transition); }
.footer-give:hover { background: var(--gold-light); }
.footer-col h5 { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(160,148,120,0.7); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.72rem; color: rgba(160,148,120,0.45); }
.footer-bottom a { font-size: 0.72rem; color: var(--gold); text-decoration: none; }

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,2,24,0.86); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 6px; max-width: 480px; width: 100%; padding: 36px; position: relative; box-shadow: var(--shadow-lg); animation: modal-in 0.22s ease; }
@keyframes modal-in { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-400); line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal-icon { text-align: center; margin-bottom: 10px; }
.modal-icon svg { width: 40px; height: 40px; }
.modal-box h4 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--purple-dark); margin-bottom: 8px; text-align: center; }
.modal-box p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.72; text-align: center; margin-bottom: 20px; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--purple-dark); color: var(--white); padding: 12px 20px; border-radius: var(--radius); font-size: 0.84rem; font-weight: 600; box-shadow: var(--shadow-md); z-index: 600; transform: translateY(80px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; max-width: 340px; border-left: 3px solid var(--gold); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: #c41c00; }

/* ── Loading Skeleton ────────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%); background-size: 200% 100%; animation: shimmer 1.4s ease-in-out infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .announcement-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .event-card.is-featured { grid-column: span 1; flex-direction: column; }
  .portal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: 0; right: 0; background: var(--purple-dark); padding: 14px 18px; border-top: 1px solid rgba(201,168,76,0.18); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .site-section { padding: 60px 20px; }
  .hero { padding: 68px 20px 76px; }
}
@media (max-width: 480px) {
  .hero-seal { width: 96px; height: 96px; }
  .hero h1 { font-size: 1.9rem; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .ticker-bar, .livestream-section, footer { display: none; }
  body { background: white; color: black; }
}

/* ══════════════════════════════════════════════════════════════
   NEW SECTIONS — Added from design screenshots
   ══════════════════════════════════════════════════════════════ */

/* ── NEW ABOUT — Two-column with stats card ───────────────── */
.about-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-new-left .about-history {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.84;
  border-top: none;
  padding-top: 0;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about-pillar-card {
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 14px 14px;
}

.about-pillar-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.about-pillar-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Stats card */
.about-new-right {
  position: sticky;
  top: 100px;
}

.about-stats-card {
  background: linear-gradient(145deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
  border-radius: 18px;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(61,26,96,0.45);
}

.about-seal-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(201,168,76,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}

.about-seal-ring img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.about-stat-box {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ── COUNTDOWN ─────────────────────────────────────────────── */
.countdown-section {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple) 60%, #6b4db8 100%);
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}

.countdown-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px 48px;
  text-align: center;
  max-width: 760px;
  width: 100%;
}

.countdown-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.countdown-date-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown-box {
  background: rgba(0,0,0,0.28);
  border-radius: 10px;
  padding: 12px 20px;
  min-width: 72px;
}

.countdown-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}

.countdown-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.countdown-sep {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.35);
  padding-bottom: 18px;
}

.countdown-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-filter-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-300);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.gallery-filter-btn.active {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: #fff;
}

.gallery-filter-btn:hover:not(.active) {
  border-color: var(--purple-dark);
  color: var(--purple-dark);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-tile {
  border-radius: 14px;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.gallery-tile:hover { transform: translateY(-3px); opacity: 0.88; }

.gallery-tile h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.gc-purple { background: linear-gradient(145deg, #5c42a0, #3d2b7a); }
.gc-dark   { background: linear-gradient(145deg, #2e2060, #1a1040); }
.gc-tan    { background: linear-gradient(145deg, #b5a87a, #9e9468); }
.gc-slate  { background: linear-gradient(145deg, #8fa8c0, #6b8fad); }
.gc-violet { background: linear-gradient(145deg, #7b52b5, #5c3a94); }

.gallery-footer-note {
  text-align: center;
  margin-top: 28px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gray-400);
}

/* ── GENEROSITY / GIVING ───────────────────────────────────── */
:root { --rust-accent: #c46a3a; }

.generosity-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(80,40,20,0.75) 0%, transparent 55%),
    linear-gradient(180deg, #1a0c06 0%, #2d1408 40%, #1a0c06 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.generosity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.018'%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/svg%3E");
  pointer-events: none;
}

.generosity-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.generosity-quote {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.generosity-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.82;
  margin-bottom: 3rem;
}

.give-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rust-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 18px 52px 18px 32px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.give-now-btn:hover { transform: translateY(-2px); background: #d47840; }

.give-icon-circle {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.generosity-secure {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── PRAYER REQUEST ────────────────────────────────────────── */
.prayer-section {
  background: linear-gradient(160deg, #1e1450 0%, #2e2070 40%, #1e1450 100%);
  padding: 100px 24px;
}

.prayer-inner {
  max-width: 760px;
  margin: 0 auto;
}

.prayer-verse-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 40px;
  margin-bottom: 20px;
  text-align: center;
}

.prayer-verse-card blockquote {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 14px;
}

.prayer-verse-card cite {
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.prayer-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 40px;
}

.prayer-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  outline: none;
  transition: border-color 0.2s;
}

.prayer-input::placeholder { color: rgba(255,255,255,0.32); }
.prayer-input:focus { border-color: rgba(180,150,220,0.6); }

.prayer-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 130px;
}

.prayer-textarea::placeholder { color: rgba(255,255,255,0.32); }
.prayer-textarea:focus { border-color: rgba(180,150,220,0.6); }

.prayer-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.prayer-private-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  cursor: pointer;
}

.prayer-private-label input { accent-color: var(--gold); width: 15px; height: 15px; }

/* ── RESPONSIVE UPDATES ────────────────────────────────────── */
@media (max-width: 960px) {
  .about-new-grid { grid-template-columns: 1fr; }
  .about-new-right { position: static; }
  .about-stats-card { max-width: 480px; margin: 0 auto; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .countdown-card { padding: 28px 20px; }
  .countdown-num { font-size: 2rem; }
}

@media (max-width: 600px) {
  .about-pillars-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .prayer-form-card { padding: 24px 18px; }
  .prayer-verse-card { padding: 26px 20px; }
  .countdown-display { gap: 8px; }
  .countdown-box { min-width: 58px; padding: 10px 12px; }
}

/* ══════════════════════════════════════════════════════════════
   AUTHENTIC ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */

.about-pullquote-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.about-pullquote-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  min-width: 40px;
}
.about-pullquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--purple-dark);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.about-pullquote-ref {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  width: 100%;
  margin-top: -12px;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.about-lede {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--purple-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}
.about-body-text {
  font-family: 'Lora', serif;
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Numbers block */
.about-in-numbers {
  background: var(--purple-dark);
  border-radius: 6px;
  padding: 32px 28px;
  margin-bottom: 28px;
}
.about-in-numbers-title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.about-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-number-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-number-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.about-number-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* What we do */
.about-what-we-do {
  background: var(--gray-100);
  border-radius: 6px;
  padding: 28px;
}
.about-do-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.about-do-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.about-do-icon {
  color: var(--gold-dark);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-do-list li strong {
  color: var(--purple-dark);
  display: block;
  margin-bottom: 2px;
  font-size: 0.87rem;
}

/* Timeline */
.about-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 3px solid var(--gold);
  padding-top: 32px;
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200);
}
.about-timeline-item {
  padding: 0 16px 0 0;
  border-right: 1px solid var(--gray-200);
}
.about-timeline-item:last-child {
  border-right: none;
  padding-right: 0;
}
.about-tl-year {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple-dark);
  margin-bottom: 8px;
}
.about-tl-text {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   AUTHENTIC CHURCH DIRECTORY v2
   ══════════════════════════════════════════════════════════════ */

.churches-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.church-v2-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.church-v2-card:hover {
  box-shadow: 0 8px 32px rgba(61,26,96,0.12);
  transform: translateY(-2px);
}

.church-v2-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 0;
}
.church-v2-initial {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}
.church-v2-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.church-v2-pastor {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 600;
}
.church-v2-role {
  color: var(--gold-dark);
  font-weight: 700;
}

.church-v2-desc {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 14px 20px;
  flex: 1;
  border-top: 1px solid var(--gray-100);
  margin-top: 14px;
  background: var(--gray-50);
  font-style: italic;
}

.church-v2-details {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.church-v2-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.church-v2-detail svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.church-v2-service {
  color: var(--gray-400);
  font-size: 0.73rem;
}

.church-v2-links {
  padding: 12px 20px 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
}
.church-v2-link {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.church-v2-link--web  { background: var(--purple-pale); color: var(--purple-dark); }
.church-v2-link--web:hover  { background: var(--purple-dark); color: var(--white); }
.church-v2-link--fb   { background: #e8f0fe; color: #1877f2; }
.church-v2-link--fb:hover   { background: #1877f2; color: var(--white); }
.church-v2-link--yt   { background: #fde8e8; color: #c41c00; }
.church-v2-link--yt:hover   { background: #c41c00; color: var(--white); }
.church-v2-link--map  { background: var(--gray-100); color: var(--gray-600); }
.church-v2-link--map:hover  { background: var(--gray-600); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .churches-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .about-timeline   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .about-timeline-item { border-right: none; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
  .about-timeline-item:last-child { border-bottom: none; }
}
@media (max-width: 800px) {
  .about-editorial-grid { grid-template-columns: 1fr; gap: 36px; }
  .churches-v2-grid     { grid-template-columns: 1fr; }
  .about-numbers-grid   { grid-template-columns: 1fr 1fr; }
  .about-timeline       { grid-template-columns: repeat(2, 1fr); }
  .about-pullquote      { white-space: normal; }
}

/* ══════════════════════════════════════════════════════════════
   V3 — HUMAN-CRAFTED DESIGN SYSTEM
   New fonts: DM Serif Display (headlines) + Lora (body) + DM Sans (UI)
   ══════════════════════════════════════════════════════════════ */

/* Override base fonts with new type system */
body {
  font-family: 'DM Sans', sans-serif;
}
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
}
.section-intro,
.about-body-text,
.about-lede,
.church-v2-desc,
blockquote,
.prayer-verse-card blockquote,
.generosity-quote,
.giving-quote {
  font-family: 'Lora', serif;
}

/* ── EDITORIAL HERO ─────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════
   HERO — INVITING, WARM, HUMAN
   ══════════════════════════════════════════════════════ */
.hero-editorial {
  background: #2a1045;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Warm radial light — makes it feel alive */
.hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(100,50,160,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(196,160,60,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(80,20,120,0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dot pattern — hand-made feel */
.hero-editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ── LEFT COLUMN ── */
.hero-ed-left {
  padding: clamp(72px, 9vw, 120px) clamp(40px, 6vw, 88px) clamp(72px, 9vw, 120px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-ed-year-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0ms;
}
.hero-ed-est {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
/* Small gold rule after EST. */
.hero-ed-year-block::before {
  content: '';
  display: none;
}
.hero-ed-year {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}

.hero-ed-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 120ms;
}
.hero-ed-headline em {
  font-style: italic;
  color: var(--gold-light);
  background: linear-gradient(135deg, #e8c46a, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-ed-sub {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(250,245,240,0.72);
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 260ms;
}

.hero-ed-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 380ms;
}
.hero-ed-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 3px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-ed-btn--primary {
  background: var(--gold);
  color: var(--purple-dark);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.hero-ed-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.hero-ed-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.hero-ed-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── RIGHT COLUMN ── */
.hero-ed-right {
  padding: clamp(72px, 9vw, 120px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
  position: relative;
  z-index: 1;
  border-left: 1px solid rgba(201,168,76,0.12);
}

/* Seal — centered, warm glow, gentle float */
.hero-ed-seal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 200ms;
}
.hero-ed-seal {
  width: clamp(140px, 17vw, 200px);
  height: clamp(140px, 17vw, 200px);
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  padding: 8px;
  background: rgba(201,168,76,0.06);
  box-shadow:
    0 0 0 8px rgba(201,168,76,0.06),
    0 0 0 24px rgba(201,168,76,0.03),
    0 20px 60px rgba(0,0,0,0.5);
  animation: sealFloat 6s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hero-ed-seal-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* Stats — warmer presentation */
.hero-ed-stats {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 350ms;
}
.hero-ed-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 20px 12px;
}
.hero-ed-stat-div {
  width: 1px;
  background: rgba(201,168,76,0.18);
  align-self: stretch;
  margin: 12px 0;
}
.hero-ed-stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
}
.hero-ed-stat-l {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
  text-align: center;
}

/* Next event strip — warmer */
.hero-ed-next {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 460ms;
}
.hero-ed-next-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-ed-next-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.hero-ed-next-event {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.hero-ed-next-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.hero-ed-next-link:hover { gap: 8px; }
.hero-ed-next-link::after { content: '→'; }

.hero-ed-vline { display: none; }

/* ── HERO ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-ed-left {
    padding: 64px 32px 48px;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .hero-ed-right {
    padding: 48px 32px 64px;
    border-left: none;
    gap: 32px;
  }
  .hero-ed-seal-wrap { align-items: flex-start; }
  .hero-ed-stats { max-width: 360px; }
}

/* ── OHIO BAPTIST DIRECTORY BANNER ───────────────────────────── */
.ohbd-banner {
  background: #0e0a1e;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.ohbd-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-dark), var(--gold), var(--purple-dark));
}

.ohbd-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ohbd-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ohbd-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
}
.ohbd-sub {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}
.ohbd-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ohbd-region {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
.ohbd-region em {
  font-style: normal;
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-top: 1px;
}
.ohbd-region--active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.ohbd-region--active em { color: var(--gold); opacity: 0.7; }

/* Signup form */
.ohbd-signup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  border-radius: 4px;
}
.ohbd-signup-head {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.ohbd-signup-body {
  font-family: 'Lora', serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ohbd-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ohbd-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.ohbd-input::placeholder { color: rgba(255,255,255,0.28); }
.ohbd-input:focus { border-color: var(--gold); }
.ohbd-submit {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  border-radius: 2px;
  padding: 13px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.ohbd-submit:hover { background: var(--gold-light); }
.ohbd-legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ── AD ZONES ────────────────────────────────────────────────── */
/* These are styled but empty — flip to visible when advertiser is live */
.ad-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0,0,0,0.04);
  border: 1px dashed rgba(0,0,0,0.1);
  /* Hide empty zones — remove display:none when an ad is placed */
  display: none;
}
.ad-zone--horizontal {
  width: 100%;
  height: 90px;
  max-width: 728px;
  margin: 0 auto 32px;
}
.ad-zone--footer {
  width: 100%;
  height: 90px;
  max-width: 728px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  padding: 16px 0;
}
.ad-zone--sidebar {
  width: 100%;
  min-height: 120px;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.ad-zone-label {
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(128,128,128,0.4);
}

/* ── WHY WISDOM WORKS FOOTER CREDIT ─────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 40px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.wwworks-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
}
.wwworks-built {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wwworks-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.wwworks-name:hover { color: var(--gold-light); }
.wwworks-tag {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}
.wwworks-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(201,168,76,0.65);
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.2s;
}
.wwworks-cta:hover { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-editorial     { grid-template-columns: 1fr; min-height: auto; }
  .hero-ed-left       { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding-bottom: 40px; min-height: auto; }
  .hero-ed-right      { padding-top: 40px; }
  .hero-ed-headline   { font-size: clamp(2.5rem, 8vw, 4rem); }
  .ohbd-inner         { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
  .wwworks-credit     { align-items: flex-start; text-align: left; }
}

/* ══════════════════════════════════════════════════════════════
   V3 CONTINUED — TYPE SYSTEM PROPAGATION + SECTION UPGRADES
   ══════════════════════════════════════════════════════════════ */

/* Apply new fonts to all headings and bodies sitewide */
.section-title        { font-family: 'DM Serif Display', serif; font-weight: 400; }
.section-eyebrow      { font-family: 'DM Sans', sans-serif; }
.section-intro        { font-family: 'Lora', serif; }
.about-history        { font-family: 'Lora', serif; }
.event-title          { font-family: 'DM Serif Display', serif; font-weight: 400; }
.church-v2-name       { font-family: 'DM Serif Display', serif; font-weight: 400; }
.church-v2-pastor     { font-family: 'DM Sans', sans-serif; }
.church-v2-desc       { font-family: 'Lora', serif; }
.btn, .btn-sm         { font-family: 'DM Sans', sans-serif; }
.form-card h3         { font-family: 'DM Serif Display', serif; font-weight: 400; }
label, input, select, textarea { font-family: 'DM Sans', sans-serif; }
.portal-resource-title { font-family: 'DM Sans', sans-serif; font-weight: 600; }
.nav-brand-name       { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: 0.06em; font-size: 0.9rem; }
.nav-brand-sub        { font-family: 'DM Sans', sans-serif; font-size: 0.55rem; letter-spacing: 0.12em; }
footer h4, footer h5  { font-family: 'DM Serif Display', serif; font-weight: 400; }
footer p              { font-family: 'DM Sans', sans-serif; }

/* ── MISSION EDITORIAL ──────────────────────────────────────── */
.mission-editorial {
  background: var(--purple-dark);
  padding: 96px 24px;
}
.mission-ed-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Verse column */
.mission-ed-verse-wrap {
  position: relative;
  padding: 40px 32px 32px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}
.mission-ed-open-quote {
  position: absolute;
  top: -32px;
  left: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(201,168,76,0.2);
  pointer-events: none;
  user-select: none;
}
.mission-ed-verse {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 18px;
}
.mission-ed-cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.mission-ed-verse-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

/* Text column */
.mission-ed-body {
  font-family: 'Lora', serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}
.mission-ed-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}
.mission-ed-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.mission-ed-link:hover { color: var(--gold-light); }

/* ── GALLERY UPGRADES ───────────────────────────────────────── */
.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.gallery-intro-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery-tile--lg {
  grid-column: span 2;
}
.gallery-tile {
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, filter 0.25s;
  /* When real photo added: background-image: url('...'); background-size: cover; */
}
.gallery-tile:hover { transform: scale(1.02); filter: brightness(1.1); }
.gallery-tile-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.gallery-tile h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin-bottom: 3px;
}
.gallery-tile-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gallery-tile-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  display: block;
}

.gallery-submit-cta {
  margin-top: 32px;
  background: var(--gray-100);
  border-left: 4px solid var(--purple-dark);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-cta-head {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--purple-dark);
  margin-bottom: 4px;
}
.gallery-cta-body {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── CONTACT SECTION UPGRADE ────────────────────────────────── */
.contact-section h2 { font-family: 'DM Serif Display', serif; font-weight: 400; }
.contact-section .section-title em { font-style: italic; }

/* ── REGISTER SECTION UPGRADE ───────────────────────────────── */
.register-section h2 { font-family: 'DM Serif Display', serif; font-weight: 400; }
.register-section .section-title em { font-style: italic; }
.register-reasons li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
}

/* ── PORTAL SECTION UPGRADE ─────────────────────────────────── */
.portal-section h2 { font-family: 'DM Serif Display', serif; font-weight: 400; }
.portal-cta h3     { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* ── GENEROSITY SECTION UPGRADE ─────────────────────────────── */
.generosity-section h2 { font-family: 'DM Serif Display', serif; font-weight: 400; }
.generosity-quote      { font-family: 'Lora', serif; }
.generosity-body       { font-family: 'Lora', serif; }

/* ── PRAYER SECTION UPGRADE ─────────────────────────────────── */
.prayer-section h2     { font-family: 'DM Serif Display', serif; font-weight: 400; }
.prayer-verse-card blockquote { font-family: 'Lora', serif; }

/* ── COUNTDOWN UPGRADE ──────────────────────────────────────── */
.countdown-title { font-family: 'DM Serif Display', serif; font-weight: 400; }
.countdown-num   { font-family: 'DM Serif Display', serif; }
.countdown-lbl   { font-family: 'DM Sans', sans-serif; }

/* ── EVENTS UPGRADE ─────────────────────────────────────────── */
.events-section h2  { font-family: 'DM Serif Display', serif; font-weight: 400; }
.events-section .section-title em { font-style: italic; }
.event-desc { font-family: 'Lora', serif; }
.event-featured-badge { font-family: 'DM Sans', sans-serif; }

/* ── ABOUT SECTION FINAL POLISH ─────────────────────────────── */
.about-timeline-item { padding-right: 20px; }
.about-tl-year { font-family: 'DM Serif Display', serif; }
.about-tl-text { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; }
.about-in-numbers-title { font-family: 'DM Sans', sans-serif; }
.about-number-val { font-family: 'DM Serif Display', serif; }
.about-do-list li { font-family: 'DM Sans', sans-serif; }
.about-pullquote  { font-family: 'DM Serif Display', serif; font-style: italic; }
.about-lede       { font-family: 'Lora', serif; }
.about-body-text  { font-family: 'Lora', serif; }

/* ── CHURCH CARD TYPE FIX ───────────────────────────────────── */
.church-v2-detail span { font-family: 'DM Sans', sans-serif; }
.church-v2-link        { font-family: 'DM Sans', sans-serif; }

/* ── HERO EDITORIAL — Spotlight fix for new section below ───── */
.spotlight-text .section-title { font-family: 'DM Serif Display', serif; font-weight: 400; }
.spotlight-text .section-title em { font-style: italic; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────────── */
@media (max-width: 960px) {
  .mission-ed-grid   { grid-template-columns: 1fr; gap: 48px; }
  .gallery-header    { grid-template-columns: 1fr; }
  .gallery-mosaic    { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile--lg  { grid-column: span 2; }
  .gallery-submit-cta { flex-direction: column; }
}
@media (max-width: 600px) {
  .gallery-mosaic    { grid-template-columns: 1fr; }
  .gallery-tile--lg  { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════
   V4 — VOICE FROM THE PULPIT + SOCIAL WALL
   ══════════════════════════════════════════════════════════════ */

.pulpit-section {
  background: #080212;
  padding: 80px 24px;
}

/* Header */
.pulpit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pulpit-header .section-title  { color: var(--white); }
.pulpit-header .section-title em { color: var(--gold-light); }
.pulpit-header .section-eyebrow { color: var(--gold); }
.pulpit-header .section-intro   { color: rgba(255,255,255,0.55); max-width: 560px; }
.pulpit-header .section-rule    { background: var(--gold); }

.pulpit-live-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.3);
  padding: 12px 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.pulpit-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3c3c;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.pulpit-live-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

/* Main featured video + sidebar */
.pulpit-featured-video {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

/* YouTube facade (lazy thumbnail) */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
}
.yt-facade:focus { outline: 2px solid var(--gold); }
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s;
}
.yt-facade:hover .yt-thumb { filter: brightness(0.75); }
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.2s;
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 24px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yt-facade-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff4444;
}
.yt-facade-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: #fff;
}
.yt-facade-speaker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Sidebar */
.pulpit-sidebar-head {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.pulpit-sidebar-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pulpit-channel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pulpit-channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.pulpit-channel-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); }
.pulpit-channel-icon {
  width: 32px; height: 32px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pulpit-channel-icon--yt { background: #ff0000; color: #fff; }
.pulpit-channel-icon--fb { background: #1877f2; color: #fff; }
.pulpit-channel-card strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2px;
}
.pulpit-channel-card span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.pulpit-channel-stat { color: var(--gold) !important; font-weight: 600 !important; }

.pulpit-revival-cta {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
}
.pulpit-revival-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pulpit-revival-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── SOCIAL WALL ──────────────────────────────────────────── */
.social-wall {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}
.social-wall-head {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.social-wall-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 28px;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.social-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  border-radius: 2px;
}
.social-card:hover { background: rgba(255,255,255,0.06); }
.social-card--fb  { border-top-color: #1877f2; }
.social-card--ig  { border-top-color: #c13584; }
.social-card--add { border-top-color: var(--gold); border-style: dashed; border-width: 1px; border-top: 3px solid var(--gold); }

.social-card-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.social-card-platform {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.social-card-platform--fb  { color: #4a9bff; }
.social-card-platform--ig  { color: #e1699a; }
.social-card-platform--add { color: var(--gold); }
.social-card-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.social-card-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}
.social-card-stats {
  display: flex;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.social-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s;
}
.social-card-link:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .pulpit-featured-video { grid-template-columns: 1fr; }
  .social-cards-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .social-cards-grid { grid-template-columns: 1fr; }
  .pulpit-header     { flex-direction: column; }
}
