/*
Theme Name:  Pagan Church of Christ
Theme URI:   https://paganchurchofchrist.org
Description: Official theme for the Pagan Church of Christ — earthy, warm, spirit-focused design.
Version:     1.0.0
Author:      Pagan Church of Christ
Author URI:  https://paganchurchofchrist.org
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pcoc
Tags: church, custom-menu, custom-logo, full-width-template, threaded-comments
*/

/* ─────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --ink:   #1c1410;
  --bark:  #3b2a1a;
  --earth: #6b4226;
  --terra: #a0522d;
  --ember: #c8732a;
  --flame: #e8973c;
  --parch: #f5ead6;
  --cream: #fdf6ec;
  --moss:  #4a5c38;
  --sage:  #7a8c6a;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IM Fell English', serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px;
  background: rgba(253,246,236,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,66,38,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo-wrap img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-wrap .site-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-style: italic;
  color: var(--earth); margin-left: .75rem;
}

/* WordPress nav menu */
#site-nav .menu { display: flex; gap: 1.4rem; list-style: none; }
#site-nav .menu a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bark); transition: color .3s;
}
#site-nav .menu a:hover,
#site-nav .menu .current-menu-item > a,
#site-nav .menu .current_page_item > a { color: var(--ember); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--earth); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 499;
  background: rgba(253,246,236,.97);
  border-bottom: 1px solid rgba(107,66,38,.15);
  padding: 1.5rem 2rem;
  transform: translateY(-10px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
#mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
#mobile-menu .menu { list-style: none; }
#mobile-menu .menu a {
  display: block; padding: .85rem 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bark); border-bottom: 1px solid rgba(107,66,38,.1);
  transition: color .3s;
}
#mobile-menu .menu a:hover { color: var(--ember); }

/* ─────────────────────────────────────────────
   PAGE HERO (subpages)
───────────────────────────────────────────── */
.page-hero {
  min-height: 36vh;
  background: var(--ink);
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding: 7rem 2rem 3.5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(200,115,42,.16) 0%, transparent 70%),
    linear-gradient(180deg, #120d08 0%, #1c1410 100%);
}
.page-hero-leaves {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%; pointer-events: none; opacity: .4;
}
.page-eyetext {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .6rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--flame); margin-bottom: .7rem;
  position: relative;
  animation: riseIn 1s ease forwards; opacity: 0;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 700;
  color: var(--parch); line-height: 1.1;
  position: relative;
  animation: riseIn 1s .15s ease forwards; opacity: 0;
}
.page-title em { color: var(--flame); font-style: italic; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.pcoc-section { padding: 5rem 1.5rem; }
.pcoc-wrap { max-width: 960px; margin: 0 auto; }
.pcoc-wrap-wide { max-width: 1060px; margin: 0 auto; }

.s-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .6rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .6rem;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700;
  color: var(--bark); line-height: 1.2; margin-bottom: 1.2rem;
}
.s-title em { font-style: italic; color: var(--earth); }
.ornament { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.orn-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(107,66,38,.3), transparent); }
.orn-sym { color: var(--terra); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 1px;
  cursor: pointer; border: none;
  display: inline-block; transition: all .3s;
}
.btn-warm  { background: var(--ember); color: var(--cream); }
.btn-warm:hover  { background: var(--flame); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,115,42,.35); }
.btn-earth { background: var(--earth); color: var(--cream); }
.btn-earth:hover { background: var(--terra); transform: translateY(-2px); }
.btn-moss  { background: var(--moss); color: var(--cream); }
.btn-moss:hover  { background: #5a7a48; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--parch); border: 1px solid rgba(245,234,214,.3); }
.btn-ghost:hover { border-color: var(--flame); color: var(--flame); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--earth); border: 1px solid rgba(107,66,38,.35); }
.btn-outline:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FORMS
───────────────────────────────────────────── */
.f-field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.f-field label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(59,42,26,.5);
}
.f-field input,
.f-field textarea,
.f-field select {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(107,66,38,.2); border-radius: 1px;
  padding: .75rem 1rem;
  font-family: 'IM Fell English', serif; font-style: italic;
  font-size: 1rem; color: var(--ink);
  outline: none; transition: border-color .3s; width: 100%;
}
.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus { border-color: var(--terra); }
.f-field textarea { resize: vertical; min-height: 120px; }
.f-field select option { background: var(--cream); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: .75rem; margin: 1.2rem 0; }
.checkbox-row input[type="checkbox"] { margin-top: 4px; accent-color: var(--ember); width: 16px; height: 16px; }
.checkbox-row label { font-size: .95rem; font-style: italic; color: rgba(28,20,16,.65); line-height: 1.6; }

/* ─────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────── */
.filter-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(107,66,38,.25); border-radius: 1px;
  background: transparent; cursor: pointer; color: var(--bark);
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--terra); background: rgba(107,66,38,.07); color: var(--earth); }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   HERO (homepage)
───────────────────────────────────────────── */
#home-hero {
  min-height: 100vh; background: var(--ink);
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 55%, rgba(200,115,42,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 25% 80%, rgba(74,92,56,.15) 0%, transparent 60%),
    linear-gradient(180deg, #120d08 0%, #1c1410 60%, #120d08 100%);
}
.rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,115,42,.1);
  animation: breathe var(--dur, 8s) ease-in-out infinite alternate;
}
@keyframes breathe {
  from { transform: scale(1); opacity: .3; }
  to   { transform: scale(1.05); opacity: .85; }
}
.hero-leaves { position: absolute; bottom: 0; left: 0; right: 0; height: 38%; pointer-events: none; opacity: .5; }

.hero-logo-wrap { position: relative; margin-bottom: 2rem; animation: riseIn 1.4s ease forwards; opacity: 0; }
.hero-logo-wrap img { height: 140px; width: auto; margin: 0 auto; filter: drop-shadow(0 8px 32px rgba(200,115,42,.35)); }

.hero-eyetext {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .6rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--flame); margin-bottom: 1rem;
  animation: riseIn 1.4s .15s ease forwards; opacity: 0;
}
h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem); font-weight: 700;
  color: var(--parch); line-height: 1.1; margin-bottom: .5rem;
  animation: riseIn 1.4s .3s ease forwards; opacity: 0;
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem); font-style: italic;
  color: var(--flame); margin-bottom: 1.8rem;
  animation: riseIn 1.4s .45s ease forwards; opacity: 0;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem); font-style: italic;
  color: rgba(245,234,214,.65);
  max-width: 500px; line-height: 1.85; margin-bottom: 2.8rem;
  animation: riseIn 1.4s .6s ease forwards; opacity: 0;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: riseIn 1.4s .75s ease forwards; opacity: 0;
}

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
#about { background: var(--cream); }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-bottom: 3rem; }
.about-text p { font-size: 1.05rem; font-style: italic; line-height: 1.9; color: rgba(28,20,16,.72); margin-bottom: 1.2rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar {
  background: rgba(107,66,38,.04); border: 1px solid rgba(107,66,38,.12);
  border-radius: 2px; padding: 1.5rem; transition: all .3s;
}
.pillar:hover { border-color: var(--ember); background: rgba(200,115,42,.06); transform: translateY(-2px); }
.pillar-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--earth); margin-bottom: .3rem; }
.pillar p { font-size: .88rem; font-style: italic; line-height: 1.65; color: rgba(28,20,16,.6); }
.gathering-bar {
  background: var(--bark); border-radius: 2px;
  padding: 1.5rem 2rem;
  display: flex; gap: 3rem; flex-wrap: wrap; align-items: center;
}
.gathering-bar .g-item { display: flex; align-items: center; gap: .75rem; }
.g-icon { font-size: 1.1rem; }
.g-text { font-family: 'Josefin Sans', sans-serif; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,234,214,.6); line-height: 1.5; }
.g-text strong { color: var(--flame); display: block; }

/* ─────────────────────────────────────────────
   EVENTS
───────────────────────────────────────────── */
.events-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.event-card {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 0;
  border: 1px solid rgba(107,66,38,.15); border-radius: 2px;
  overflow: hidden; background: white; transition: all .3s;
}
.event-card:hover { border-color: var(--ember); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,66,38,.1); }
.event-date-box {
  background: var(--bark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem .75rem; text-align: center;
}
.event-month { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--flame); }
.event-day { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--parch); line-height: 1; }
.event-dow { font-family: 'Josefin Sans', sans-serif; font-size: .52rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,234,214,.4); }
.event-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.event-tag { font-family: 'Josefin Sans', sans-serif; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: .3rem; }
.event-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--bark); margin-bottom: .35rem; }
.event-meta { font-size: .88rem; font-style: italic; color: rgba(28,20,16,.5); display: flex; gap: 1rem; flex-wrap: wrap; }
.event-cta { display: flex; align-items: center; padding: 1.25rem 1.5rem; }

/* Featured event */
.featured-event {
  background: var(--ink); border-radius: 2px; padding: 2.5rem; margin-bottom: 3rem;
  position: relative; overflow: hidden;
}
.featured-event::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,115,42,.12) 0%, transparent 70%);
}
.fe-tag { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--flame); margin-bottom: .6rem; position: relative; }
.fe-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--parch); margin-bottom: .5rem; position: relative; }
.fe-desc { font-size: 1rem; font-style: italic; color: rgba(245,234,214,.6); line-height: 1.8; max-width: 500px; margin-bottom: 1.5rem; position: relative; }
.fe-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; position: relative; }
.fe-meta span { font-family: 'Josefin Sans', sans-serif; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,234,214,.4); }
.fe-meta span strong { color: var(--flame); font-weight: 400; }

/* ─────────────────────────────────────────────
   SERMONS
───────────────────────────────────────────── */
.latest-sermon {
  background: var(--ink); border-radius: 2px; padding: 2.5rem;
  margin-bottom: 3rem; display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center; position: relative; overflow: hidden;
}
.latest-sermon::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(200,115,42,.1) 0%, transparent 70%); }
.ls-tag { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--flame); margin-bottom: .5rem; position: relative; }
.ls-title { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; color: var(--parch); margin-bottom: .4rem; position: relative; }
.ls-speaker { font-size: .95rem; font-style: italic; color: rgba(245,234,214,.5); margin-bottom: 1rem; position: relative; }
.ls-desc { font-size: .95rem; font-style: italic; color: rgba(245,234,214,.55); line-height: 1.75; max-width: 480px; margin-bottom: 1.5rem; position: relative; }
.ls-btns { display: flex; gap: .75rem; flex-wrap: wrap; position: relative; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,115,42,.15); border: 2px solid rgba(200,115,42,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; flex-shrink: 0; color: var(--flame);
  font-size: 1.5rem;
}
.play-btn:hover { background: rgba(200,115,42,.25); border-color: var(--ember); transform: scale(1.05); }

.sermon-list { display: flex; flex-direction: column; gap: 1px; background: rgba(107,66,38,.1); border-radius: 2px; overflow: hidden; margin-bottom: 2.5rem; }
.sermon-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem;
  align-items: center; padding: 1.25rem 1.5rem;
  background: var(--cream); transition: background .3s; cursor: pointer;
}
.sermon-row:hover { background: rgba(107,66,38,.04); }
.sr-series { font-family: 'Josefin Sans', sans-serif; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: .2rem; }
.sr-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--bark); margin-bottom: .3rem; }
.sr-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.sr-meta span { font-size: .85rem; font-style: italic; color: rgba(28,20,16,.45); }
.sr-actions { display: flex; gap: .5rem; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(107,66,38,.2); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; color: var(--terra); font-size: .8rem;
}
.icon-btn:hover { background: rgba(107,66,38,.08); border-color: var(--terra); }

.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.series-card {
  border: 1px solid rgba(107,66,38,.15); border-radius: 2px; padding: 1.5rem;
  cursor: pointer; transition: all .3s; background: rgba(107,66,38,.02);
}
.series-card:hover { border-color: var(--ember); background: rgba(200,115,42,.05); transform: translateY(-2px); }
.sc-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: rgba(107,66,38,.15); margin-bottom: .5rem; }
.sc-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--earth); margin-bottom: .3rem; }
.sc-count { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(28,20,16,.4); }

/* ─────────────────────────────────────────────
   BLOG
───────────────────────────────────────────── */
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(107,66,38,.15); border-radius: 2px; overflow: hidden; margin-bottom: 3rem; background: white; }
.fp-img { background: linear-gradient(135deg, var(--bark) 0%, var(--earth) 60%, var(--moss) 100%); min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; }
.fp-img::after { content: 'Featured'; position: absolute; top: 1rem; left: 1rem; font-family: 'Josefin Sans', sans-serif; font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--flame); background: rgba(28,20,16,.7); padding: .3rem .7rem; border-radius: 1px; }
.fp-body { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.fp-cat { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); margin-bottom: .5rem; }
.fp-title { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--bark); line-height: 1.25; margin-bottom: .6rem; }
.fp-meta { font-size: .85rem; font-style: italic; color: rgba(28,20,16,.4); margin-bottom: 1rem; }
.fp-excerpt { font-size: 1rem; font-style: italic; line-height: 1.8; color: rgba(28,20,16,.65); margin-bottom: 1.5rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.blog-card { border: 1px solid rgba(107,66,38,.12); border-radius: 2px; overflow: hidden; background: white; transition: all .3s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(200,115,42,.4); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(107,66,38,.1); }
.bc-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.bc-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.bc-cat { font-family: 'Josefin Sans', sans-serif; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: .3rem; }
.bc-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--bark); line-height: 1.3; margin-bottom: .4rem; flex: 1; }
.bc-meta { font-size: .8rem; font-style: italic; color: rgba(28,20,16,.38); margin-bottom: .8rem; }
.bc-excerpt { font-size: .88rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.58); margin-bottom: 1rem; }
.bc-link { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); transition: color .3s; }
.bc-link:hover { color: var(--ember); }

/* WordPress post content */
.entry-content h1, .entry-content h2, .entry-content h3 { font-family: 'Playfair Display', serif; color: var(--bark); margin: 1.5rem 0 .75rem; }
.entry-content p { font-size: 1.05rem; font-style: italic; line-height: 1.9; color: rgba(28,20,16,.72); margin-bottom: 1.2rem; }
.entry-content a { color: var(--ember); text-decoration: underline; }
.entry-content img { border-radius: 2px; margin: 1.5rem 0; }
.entry-content blockquote { border-left: 3px solid var(--ember); padding-left: 1.5rem; font-style: italic; color: rgba(28,20,16,.6); margin: 1.5rem 0; }

/* ─────────────────────────────────────────────
   VOLUNTEER
───────────────────────────────────────────── */
.vol-intro { font-size: 1.15rem; font-style: italic; line-height: 1.95; color: rgba(28,20,16,.7); max-width: 660px; margin-bottom: 3rem; border-left: 3px solid var(--ember); padding-left: 1.5rem; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(107,66,38,.12); border-radius: 2px; overflow: hidden; margin-bottom: 4rem; }
.stat-box { background: var(--cream); padding: 2rem 1rem; text-align: center; transition: background .3s; }
.stat-box:hover { background: rgba(200,115,42,.05); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--ember); display: block; margin-bottom: .2rem; }
.stat-label { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(28,20,16,.45); }
.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.role-card { border: 1px solid rgba(107,66,38,.14); border-radius: 2px; padding: 2rem; background: white; transition: all .3s; display: flex; flex-direction: column; }
.role-card:hover { border-color: var(--ember); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(107,66,38,.09); }
.role-icon { font-size: 2rem; margin-bottom: .75rem; }
.role-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--earth); margin-bottom: .3rem; }
.role-time { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); margin-bottom: .75rem; }
.role-desc { font-size: .95rem; font-style: italic; line-height: 1.75; color: rgba(28,20,16,.62); flex: 1; margin-bottom: 1.25rem; }
.role-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.tag { font-family: 'Josefin Sans', sans-serif; font-size: .52rem; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .6rem; border: 1px solid rgba(107,66,38,.2); border-radius: 1px; color: rgba(59,42,26,.55); }

/* ─────────────────────────────────────────────
   LEADERSHIP
───────────────────────────────────────────── */
.featured-leader {
  display: grid; grid-template-columns: 260px 1fr; gap: 3rem;
  align-items: center; background: var(--ink); border-radius: 2px;
  padding: 3rem; margin-bottom: 3.5rem;
  position: relative; overflow: hidden;
}
.featured-leader::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,115,42,.1) 0%, transparent 70%); }
.fl-avatar {
  width: 260px; height: 260px; border-radius: 2px;
  background: linear-gradient(135deg, var(--bark) 0%, var(--earth) 50%, var(--moss) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; flex-shrink: 0; position: relative; overflow: hidden;
}
.fl-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fl-badge { position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%); font-family: 'Josefin Sans', sans-serif; font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--flame); background: rgba(28,20,16,.8); padding: .3rem .8rem; white-space: nowrap; }
.fl-body { position: relative; }
.fl-name { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--parch); margin-bottom: .3rem; }
.fl-title { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--flame); margin-bottom: 1.2rem; }
.fl-bio { font-size: 1rem; font-style: italic; line-height: 1.85; color: rgba(245,234,214,.6); margin-bottom: 1.5rem; }
.fl-quote { border-left: 2px solid var(--terra); padding-left: 1rem; font-size: 1.05rem; font-style: italic; color: rgba(245,234,214,.45); line-height: 1.75; margin-bottom: 1.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.team-card { border: 1px solid rgba(107,66,38,.13); border-radius: 2px; overflow: hidden; background: white; transition: all .3s; text-align: center; }
.team-card:hover { border-color: rgba(200,115,42,.4); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(107,66,38,.1); }
.tc-avatar { height: 180px; background: linear-gradient(135deg, var(--bark), var(--earth)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; overflow: hidden; }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-body { padding: 1.5rem 1.25rem; }
.tc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--bark); margin-bottom: .2rem; }
.tc-role { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: .75rem; }
.tc-bio { font-size: .88rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.58); margin-bottom: 1rem; }
.tc-contact { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(107,66,38,.5); transition: color .3s; }
.tc-contact:hover { color: var(--ember); }
.council { background: var(--parch); border-radius: 2px; padding: 3rem; margin-bottom: 3rem; }
.council h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--bark); margin-bottom: .5rem; }
.council-intro { font-size: 1rem; font-style: italic; line-height: 1.8; color: rgba(28,20,16,.65); margin-bottom: 2rem; }
.council-members { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cm { text-align: center; padding: 1rem .5rem; }
.cm-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.cm-name { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--bark); margin-bottom: .15rem; }
.cm-seat { font-family: 'Josefin Sans', sans-serif; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--terra); }

/* ─────────────────────────────────────────────
   MEMBERSHIP
───────────────────────────────────────────── */
.welcome-banner { background: var(--parch); border-left: 4px solid var(--ember); border-radius: 2px; padding: 2rem 2.5rem; margin-bottom: 3rem; font-size: 1.15rem; font-style: italic; line-height: 1.85; color: rgba(28,20,16,.75); }
.steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; position: relative; }
.steps::before { content: ''; position: absolute; left: 28px; top: 32px; bottom: 32px; width: 1px; background: linear-gradient(180deg, var(--terra), transparent); }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; }
.step-num-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); border: 2px solid var(--terra); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--flame); flex-shrink: 0; z-index: 1; }
.step-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--bark); margin-bottom: .4rem; }
.step-body p { font-size: 1rem; font-style: italic; line-height: 1.75; color: rgba(28,20,16,.65); }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem; }
.benefit { padding: 1.5rem; border: 1px solid rgba(107,66,38,.12); border-radius: 2px; background: rgba(107,66,38,.02); transition: all .3s; }
.benefit:hover { border-color: var(--ember); background: rgba(200,115,42,.05); transform: translateY(-2px); }
.benefit-icon { font-size: 1.6rem; margin-bottom: .6rem; }
.benefit h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--earth); margin-bottom: .35rem; }
.benefit p { font-size: .9rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.6); }
.mem-form { background: var(--parch); border-radius: 2px; padding: 2.5rem; border: 1px solid rgba(107,66,38,.12); }
.mem-form h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--bark); margin-bottom: .5rem; }
.mem-form > p { font-size: .95rem; font-style: italic; color: rgba(28,20,16,.6); margin-bottom: 1.8rem; }

/* ─────────────────────────────────────────────
   PRAYER
───────────────────────────────────────────── */
.candles { position: absolute; bottom: 40%; left: 50%; transform: translateX(-50%); display: flex; gap: 3rem; pointer-events: none; }
.candle { display: flex; flex-direction: column; align-items: center; }
.flame-el { width: 8px; height: 16px; background: radial-gradient(ellipse at 50% 80%, #fff 0%, var(--flame) 40%, rgba(200,115,42,0) 100%); border-radius: 50% 50% 30% 30%; animation: flicker var(--f, 2.2s) ease-in-out infinite alternate; opacity: .9; }
@keyframes flicker { from { transform: scaleX(1) scaleY(1) rotate(-2deg); opacity: .8; } to { transform: scaleX(.85) scaleY(1.1) rotate(2deg); opacity: 1; } }
.wick { width: 1px; height: 6px; background: rgba(245,234,214,.4); }
.wax { width: 6px; height: 40px; background: linear-gradient(180deg, rgba(245,234,214,.6) 0%, rgba(245,234,214,.2) 100%); border-radius: 1px; }
.prayer-form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: flex-start; }
.prayer-sidebar h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--bark); margin-bottom: 1rem; }
.prayer-sidebar p { font-size: .95rem; font-style: italic; line-height: 1.8; color: rgba(28,20,16,.6); margin-bottom: 1.2rem; }
.promise { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.2rem; padding: .9rem 1rem; border-left: 2px solid var(--terra); background: rgba(107,66,38,.04); }
.promise-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.promise p { font-size: .9rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.65); }
.prayer-form { background: var(--parch); border-radius: 2px; padding: 2.25rem; border: 1px solid rgba(107,66,38,.12); }
.prayer-form h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--bark); margin-bottom: 1.5rem; }
.privacy-note { font-family: 'Josefin Sans', sans-serif; font-size: .58rem; letter-spacing: .1em; color: rgba(59,42,26,.4); margin-top: .75rem; font-style: italic; line-height: 1.5; }
.intention-card { background: rgba(107,66,38,.04); border: 1px solid rgba(107,66,38,.1); border-radius: 2px; padding: 1.25rem 1.5rem; margin-bottom: .75rem; position: relative; transition: border-color .3s; }
.intention-card:hover { border-color: rgba(107,66,38,.25); }
.ic-name { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); margin-bottom: .3rem; }
.ic-text { font-size: 1rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.7); }
.ic-candle { position: absolute; top: 1rem; right: 1.25rem; font-size: 1rem; opacity: .5; }

/* ─────────────────────────────────────────────
   CONTACT & DONATE
───────────────────────────────────────────── */
#contact { background: var(--parch); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--bark); margin-bottom: 1.2rem; }
.contact-item { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1rem; }
.ci-icon { font-size: 1rem; color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.ci-body { font-size: .95rem; font-style: italic; line-height: 1.7; color: rgba(28,20,16,.65); }
.ci-body strong { color: var(--bark); font-style: normal; display: block; font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-form { background: white; border-radius: 2px; padding: 2.25rem; border: 1px solid rgba(107,66,38,.12); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--bark); margin-bottom: 1.5rem; }

#donate { background: var(--ink); }
.donate-title { color: var(--parch) !important; }
.donate-title em { color: var(--flame) !important; }
.donate-s-label { color: rgba(245,234,214,.45) !important; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.tier {
  border: 2px solid rgba(245,234,214,.1); border-radius: 2px;
  padding: 1.25rem; cursor: pointer; transition: all .3s; text-align: center;
}
.tier:hover, .tier.active { border-color: var(--ember); background: rgba(200,115,42,.1); }
.tier-name { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--flame); margin-bottom: .3rem; }
.tier-amount { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--parch); margin-bottom: .2rem; }
.tier-desc { font-size: .78rem; font-style: italic; color: rgba(245,234,214,.4); }
.donate-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.donate-label { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,234,214,.5); margin-bottom: .5rem; }
.donate-select { background: rgba(255,255,255,.06); border: 1px solid rgba(245,234,214,.15); border-radius: 1px; padding: .75rem 1rem; font-family: 'IM Fell English', serif; font-style: italic; font-size: 1rem; color: var(--parch); width: 100%; outline: none; }
.payment-methods { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pm-card { background: rgba(255,255,255,.06); border: 1px solid rgba(245,234,214,.12); border-radius: 2px; padding: .75rem 1.5rem; cursor: pointer; transition: all .3s; font-family: 'Josefin Sans', sans-serif; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,234,214,.5); }
.pm-card:hover, .pm-card.active { border-color: var(--ember); color: var(--flame); background: rgba(200,115,42,.1); }
.tax-note { font-size: .82rem; font-style: italic; color: rgba(245,234,214,.3); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer { background: var(--ink); padding: 3.5rem 2rem 2.5rem; text-align: center; }
.footer-logo { height: 72px; width: auto; object-fit: contain; opacity: .85; margin: 0 auto 1rem; }
.f-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--flame); margin-bottom: .4rem; }
.f-verse { font-size: .9rem; font-style: italic; color: rgba(245,234,214,.3); margin-bottom: 2rem; line-height: 1.6; }
.social-row { display: flex; justify-content: center; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245,234,214,.15); color: rgba(245,234,214,.45); text-decoration: none; transition: all .3s; }
.social-btn:hover { border-color: var(--flame); color: var(--flame); background: rgba(232,151,60,.08); transform: translateY(-3px); }
.f-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; list-style: none; }
.f-nav a { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,234,214,.35); text-decoration: none; transition: color .3s; }
.f-nav a:hover { color: var(--flame); }
.f-copy { font-family: 'Josefin Sans', sans-serif; font-size: .6rem; letter-spacing: .1em; color: rgba(245,234,214,.18); }

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
#pcoc-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bark); border: 1px solid var(--terra); border-radius: 2px;
  padding: 1rem 2rem;
  font-family: 'IM Fell English', serif; font-style: italic; font-size: 1rem;
  color: var(--parch); box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 9999; opacity: 0; transition: all .45s ease; white-space: nowrap;
}
#pcoc-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────────
   NEWSLETTER BLOCK
───────────────────────────────────────────── */
.newsletter { background: var(--bark); border-radius: 2px; padding: 3rem 2.5rem; text-align: center; margin-top: 1rem; }
.newsletter h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--parch); margin-bottom: .6rem; }
.newsletter p { font-size: 1rem; font-style: italic; color: rgba(245,234,214,.55); margin-bottom: 1.8rem; line-height: 1.7; }
.nl-form { display: flex; gap: .75rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input { flex: 1; min-width: 200px; background: rgba(255,255,255,.08); border: 1px solid rgba(245,234,214,.2); border-radius: 1px; padding: .8rem 1rem; font-family: 'IM Fell English', serif; font-style: italic; font-size: 1rem; color: var(--parch); outline: none; }
.nl-form input::placeholder { color: rgba(245,234,214,.3); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  #site-nav .menu { display: none; }
  .nav-toggle { display: flex; }
  .about-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-leader { grid-template-columns: 1fr; }
  .fl-avatar { width: 100%; height: 200px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .council-members { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-controls { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .prayer-form-wrap { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-sermon { grid-template-columns: 1fr; }
  .candles { gap: 1.5rem; }
}
@media (max-width: 560px) {
  .about-pillars { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 80px 1fr; }
  .event-cta { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .council-members { grid-template-columns: repeat(2, 1fr); }
}
