/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:    #0d0f0e;
  --ink2:   #141816;
  --forest: #0f3028;
  --jade:   #1a5c44;
  --sage:   #2e8b68;
  --mint:   #5cc9a0;
  --cream:  #f5f0e8;
  --amber:  #e8a830;
  --amber2: #f2c060;
  --sand:   #c8a870;
  --snow:   #ffffff;
  --mist:   rgba(245,240,232,0.08);
  --mist2:  rgba(245,240,232,0.14);

  --ff-display: 'Playfair Display', serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-italic:  'Cormorant Garamond', serif;

  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--forest);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-logo {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  animation: prePulse 2s ease-in-out infinite;
}
.pre-logo img { width: 120px; height: auto; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(20deg); }
.pre-word {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
}
.pre-tag {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--amber);
}
.pre-track {
  width: clamp(140px, 30vw, 200px);
  height: 1px;
  background: rgba(245,240,232,0.15);
  margin-top: 24px;
  border-radius: 1px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  width: 0%;
  animation: preFill 2.2s ease forwards;
}
@keyframes prePulse { 0%,100%{opacity:1} 50%{opacity:0.75} }
@keyframes preFill { to { width: 100%; } }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(13,15,14,0.9), transparent);
  backdrop-filter: blur(0px);
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(13,15,14,0.97);
  backdrop-filter: blur(12px);
  padding: 12px clamp(20px, 5vw, 64px);
  box-shadow: 0 1px 0 rgba(245,240,232,0.06);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: clamp(32px, 5vw, 44px); width: auto; }

.nav-links { display: flex; gap: clamp(18px, 3vw, 40px); list-style: none; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active-nav { opacity: 1; color: var(--amber); }
.nav-links a:hover::after, .nav-links a.active-nav::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0;
  background: var(--forest);
  z-index: 250;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.nav-drawer a {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.nav-drawer a:hover { color: var(--amber); opacity: 1; }
.nav-drawer-tag {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin-top: 20px;
}

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute; inset: -40px;
  opacity: 0;
  transition: opacity 1.6s ease;
  background-size: cover;
  background-position: center top;
  /* filter: blur(0px) brightness(0.35) saturate(0.8); */
}
#heroBgSlides {
  display: none !important;
}
.hero-bg-slide.active {
  opacity: 1;
  animation: kbz 12s ease-out forwards;
}
@keyframes kbz { from{transform:scale(1)} to{transform:scale(1.08)} }

/* ── HERO OVERLAY: dark left-to-right so image on left shows, text on right pops ── */
.hero-overlay {
  display: none !important;
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,15,14,0.45) 0%, rgba(13,15,14,0.1) 35%, rgba(13,15,14,0.88) 100%),
    linear-gradient(90deg, rgba(13,15,14,0.05) 0%, rgba(13,15,14,0.0) 40%, rgba(13,15,14,0.75) 60%, rgba(13,15,14,0.95) 100%);
  z-index: 1;
}

/* ── PASTOR IMAGE: LEFT SIDE on large screens ── */
.hero-pastor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 52%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  /* fade out on the right edge so it blends into text area */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 60%, transparent 100%);
}
.hero-pastor-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: translateX(-20px) scale(0.98);
  transition: opacity 1.2s ease, transform 1.2s ease;
  filter: grayscale(80%) contrast(1.05) brightness(0.95);
}
.hero-pastor-img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ── HERO CONTENT: RIGHT SIDE ── */
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: clamp(80px,10vw,140px) clamp(20px,6vw,80px) clamp(60px,8vw,100px);
  display: flex;
  justify-content: flex-end; /* text on the RIGHT */
  align-items: center;
}

.hero-text {
  max-width: clamp(280px, 48vw, 540px);
}

.hero-kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(0.6rem, 1.2vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(12px, 2vw, 20px);
  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero-kicker::before {
  content: '';
  width: clamp(24px, 3vw, 36px); height: 1px;
  background: var(--amber);
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-weight: 900;
  opacity: 0; animation: fadeUp 0.8s 0.6s ease forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  line-height: 1.75;
  color: rgba(245,240,232,0.62);
  margin-top: clamp(14px, 2vw, 22px);
  max-width: 400px;
  opacity: 0; animation: fadeUp 0.8s 0.85s ease forwards;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: clamp(10px, 2vw, 14px);
  margin-top: clamp(22px, 3.5vw, 36px);
  opacity: 0; animation: fadeUp 0.8s 1.05s ease forwards;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-kicker, .hero-h1, .hero-sub, .hero-btns { transform: translateY(18px); }

.btn-forest {
  background: var(--sage);
  color: var(--snow);
  border: none;
  padding: clamp(11px, 1.8vw, 14px) clamp(22px, 3vw, 32px);
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-forest:hover { background: var(--jade); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.3);
  padding: clamp(11px, 1.8vw, 14px) clamp(22px, 3vw, 32px);
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

.hero-dots {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  right: clamp(20px, 6vw, 80px); /* align with text */
  left: auto;
  z-index: 4;
  display: flex; gap: 10px;
}
.dot {
  width: 28px; height: 2px;
  background: rgba(245,240,232,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.dot.active { background: var(--amber); width: 44px; }

/* ── MOBILE: stack vertically ── */
@media (max-width: 768px) {
  .hero-pastor-wrap {
    left: 0; right: 0;
    width: 100%;
    height: 60%;
    bottom: auto; top: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  }
  .hero-pastor-img {
    object-position: center top;
  }
  .hero-content {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .hero-text { max-width: 100%; }
  .hero-dots { right: auto; left: 50%; transform: translateX(-50%); }
}

/* Accent pills bar */
.pills-bar {
  background: var(--forest);
  border-top: 1px solid rgba(245,240,232,0.06);
  border-bottom: 1px solid rgba(245,240,232,0.06);
  padding: clamp(12px, 2vw, 18px) clamp(20px, 5vw, 60px);
  display: flex; flex-wrap: wrap; gap: clamp(8px, 1.5vw, 14px);
  justify-content: center;
}
.pill {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  color: var(--cream);
  padding: 8px clamp(14px, 2vw, 20px);
  border-radius: 100px;
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.pill:hover { background: var(--mist2); border-color: var(--amber); color: var(--amber); transform: translateY(-1px); }

/* ===== WELCOME ===== */
.welcome-wrap {
  background: var(--ink);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 64px);
}
.welcome-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr clamp(280px, 30%, 360px);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.welcome-serif {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: clamp(16px, 2.5vw, 26px);
}
.welcome-serif em { font-style: italic; color: var(--mint); }

.welcome-body {
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  line-height: 1.85;
  color: rgba(245,240,232,0.62);
  max-width: 520px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.welcome-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
.feat-card {
  border-top: 2px solid var(--sage);
  padding-top: clamp(14px, 2vw, 20px);
}
.feat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.feat-title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}
.feat-body {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
}

.events-sidebar {
  background: var(--forest);
  border: 1px solid rgba(245,240,232,0.07);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
  position: sticky;
  top: 90px;
}
.service-schedule {
  background: rgba(18, 40, 32, 0.95);
  padding: clamp(50px, 6vw, 70px) clamp(20px, 5vw, 64px);
}
.service-schedule-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.service-schedule-list {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(18px, 2.5vw, 28px);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 22px);
}
.service-row:hover {
  background: rgba(245,240,232,0.1);
}
.service-tag {
  color: var(--cream);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  min-width: 100px;
  text-align: center;
}
.service-info {
  display: grid;
  gap: 6px;
}
.service-title {
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
}
.service-meta {
  color: rgba(245,240,232,0.7);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.sidebar-label {
  font-size: clamp(0.6rem, 0.9vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.sidebar-title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.event-item {
  border-left: 2px solid var(--sage);
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.8vw, 18px);
  margin-bottom: clamp(10px, 1.5vw, 14px);
  background: rgba(245,240,232,0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition), border-color var(--transition);
}
.event-item:hover { background: rgba(245,240,232,0.06); border-color: var(--amber); }
.event-date {
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3px;
}
.event-name {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.event-loc {
  font-size: clamp(0.68rem, 0.95vw, 0.76rem);
  color: rgba(245,240,232,0.45);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
  border: none;
  width: 100%;
  padding: clamp(11px, 1.6vw, 14px);
  font-family: var(--ff-body);
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  margin-top: clamp(6px, 1vw, 10px);
  transition: background var(--transition);
  display: block;
  text-align: center;
  text-decoration: none;
}
.btn-amber:hover { background: var(--amber2); }

/* ===== EXCERPTS ===== */
.excerpts-wrap {
  background: var(--ink2);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
}
.excerpts-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 6px;
}
.section-eyebrow::before { content:''; width: 28px; height: 1px; background: var(--amber); }
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.excerpts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.excerpt-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 30px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.excerpt-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.exc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--jade);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 14px;
}
.exc-quote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(0.82rem, 1.3vw, 0.92rem);
  line-height: 1.7;
  color: #1a2a22;
}
.exc-author {
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--jade);
  margin-top: clamp(10px, 1.5vw, 14px);
  text-transform: uppercase;
}

.more-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mint);
  text-decoration: none;
  font-size: clamp(0.78rem, 1.1vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: clamp(22px, 3vw, 32px);
  transition: color var(--transition), gap var(--transition);
}
.more-link:hover { color: var(--amber); gap: 14px; }

/* ===== SERMONS (HOME) ===== */
.sermons-home {
  background: var(--forest);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
}
.sermons-home-inner { max-width: 1200px; margin: 0 auto; }
.sermons-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.sermons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.sermon-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.sermon-card:hover { transform: translateY(-5px); border-color: rgba(92,201,160,0.4); }
.sermon-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--jade), var(--forest));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sermon-thumb::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(92,201,160,0.2), transparent 70%);
}
.play-circle {
  width: 50px; height: 50px;
  background: rgba(232,168,48,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(232,168,48,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sermon-card:hover .play-circle { transform: scale(1.12); box-shadow: 0 8px 32px rgba(232,168,48,0.5); }
.play-circle::after {
  content:'';
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.sermon-label {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-family: var(--ff-display);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.sermon-info { padding: clamp(12px, 1.8vw, 18px); }
.sermon-title { font-size: clamp(0.78rem, 1.2vw, 0.9rem); font-weight: 600; margin-bottom: 5px; line-height: 1.4; }
.sermon-meta { font-size: clamp(0.65rem, 0.9vw, 0.74rem); color: rgba(245,240,232,0.4); }

/* ===== RADIO ===== */
.radio-wrap {
  background: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
}
.radio-inner { max-width: 1200px; margin: 0 auto; }
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 18px);
  margin-top: clamp(28px, 4vw, 44px);
}
.radio-card {
  background: var(--forest);
  border: 1px solid rgba(245,240,232,0.07);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 28px);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.radio-card:hover { background: var(--jade); transform: translateY(-3px); border-color: var(--mint); }
.radio-state {
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 5px;
}
.radio-station {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.radio-time {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: rgba(245,240,232,0.55);
  margin-bottom: 10px;
}
.radio-time strong { color: var(--amber); }
.radio-link {
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  font-weight: 600;
  color: var(--mint);
  text-decoration: underline;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 36px);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 48px);
  border-bottom: 1px solid rgba(245,240,232,0.07);
}
.footer-logo img { width: clamp(100px, 15vw, 140px); height: auto; margin-bottom: 14px; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: clamp(12px, 1.8vw, 18px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--mint); }

.contact-row { display: flex; gap: 10px; margin-bottom: 11px; align-items: flex-start; }
.c-icon { font-size: 0.82rem; opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.c-text { font-size: clamp(0.7rem, 1vw, 0.78rem); color: rgba(245,240,232,0.52); line-height: 1.5; }

.socials { display: flex; gap: 10px; margin-top: 6px; }
.soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.soc:hover { background: var(--sage); border-color: var(--sage); }

.footer-bottom {
  max-width: 1200px;
  margin: clamp(18px, 2.5vw, 26px) auto 0;
  text-align: center;
  font-size: clamp(0.65rem, 0.9vw, 0.74rem);
  color: rgba(245,240,232,0.3);
}
.footer-bottom a { color: var(--mint); text-decoration: none; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  height: clamp(280px, 45vw, 440px);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: clamp(30px, 5vw, 50px);
}
.about-bg {
  position: absolute; inset: -20px;
  background: url('https://jacksonadebisi.com/img/pst3.c315a57a.png') center top / cover;
  filter: blur(4px) brightness(0.3) saturate(0.6);
  transform: scale(1.06);
}
.about-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,15,14,0.4), rgba(15,48,40,0.9));
}
.about-hero-txt { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.about-hero-txt h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1;
}
.about-hero-txt p {
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.about-hero-txt p strong { color: var(--amber); }

.about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px);
}
.about-journey {
  display: grid;
  grid-template-columns: 1fr clamp(220px, 32%, 340px);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.about-tag {
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mint);
  display: block;
  margin-bottom: 10px;
}
.about-journey h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.about-journey p {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  line-height: 1.85;
  color: rgba(245,240,232,0.62);
  margin-bottom: 14px;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--jade);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(50px, 7vw, 80px);
}
.about-two-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 14px;
}
.about-two-left p {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  line-height: 1.85;
  color: rgba(245,240,232,0.6);
  margin-bottom: 12px;
}
.about-impact {
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  align-self: start;
}
.about-impact h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.about-impact p {
  font-size: clamp(0.76rem, 1.1vw, 0.84rem);
  line-height: 1.75;
  margin-bottom: 12px;
  color: rgba(10,15,12,0.78);
}
.about-impact ul { padding-left: 18px; margin-bottom: 12px; }
.about-impact ul li {
  font-size: clamp(0.76rem, 1.1vw, 0.84rem);
  line-height: 1.7;
  color: rgba(10,15,12,0.75);
  margin-bottom: 6px;
}
.about-impact ul li strong { color: var(--ink); }

.about-leadership {
  background: var(--forest);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.about-leadership h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 16px;
}
.about-leadership p {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  line-height: 1.85;
  color: rgba(245,240,232,0.65);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SERMONS PAGE — YouTube Cards ===== */
.sermons-hero {
  background: var(--forest);
  padding: clamp(100px, 14vw, 160px) clamp(20px, 5vw, 64px) clamp(50px, 7vw, 80px);
  text-align: center;
}
.sermons-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.sermons-hero p {
  font-size: clamp(0.8rem, 1.3vw, 0.92rem);
  color: rgba(245,240,232,0.6);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.sermons-page-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 64px);
}
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

/* ── YouTube Card with thumbnail overlay ── */
.yt-card {
  background: #000;
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.yt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92,201,160,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.yt-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.yt-thumb-img.loaded {
  opacity: 1;
}

.yt-thumb-overlay {
  position: absolute; inset: 0;
  z-index: 4;
  background-color: rgba(0,0,0,0.18);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.yt-card:hover .yt-thumb-overlay { opacity: 0; }

/* Dark gradient on thumbnail bottom */
.yt-thumb-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

/* Red YouTube play button */
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 62px; height: 44px;
  background: #FF0000;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.4s ease;
}
.yt-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}
.yt-card:hover .yt-play-btn {
  opacity: 0;
}

/* Channel strip at bottom of thumbnail */
.yt-channel-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 12px 10px;
  display: flex; align-items: center; gap: 8px;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.yt-card:hover .yt-channel-strip { opacity: 0; }
.yt-channel-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.yt-channel-avatar img { width: 100%; height: 100%; object-fit: cover; }
.yt-channel-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* "Watch on YouTube" button */
.yt-watch-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 4;
  pointer-events: none;
  display: flex; align-items: center; gap: 5px;
  transition: opacity 0.4s ease;
  text-transform: uppercase;
}
.yt-watch-badge .yt-logo-dot {
  width: 14px; height: 10px;
  background: #FF0000;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.yt-watch-badge .yt-logo-dot::after {
  content: '';
  width: 0; height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 6px solid #fff;
  margin-left: 1px;
}
.yt-card:hover .yt-watch-badge { opacity: 0; }

/* Title bar + duration badge */
.yt-thumb-title {
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--ff-display);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  letter-spacing: 0.04em;
  line-height: 1.3;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.yt-card:hover .yt-thumb-title { opacity: 0; }

/* Info below card */
.yt-info {
  padding: clamp(12px, 1.8vw, 18px);
  background: var(--ink2);
}
.yt-info h4 {
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  color: var(--cream);
}
.yt-info span {
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  color: rgba(245,240,232,0.4);
}

/* ===== SHARED PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: clamp(110px, 16vw, 180px) clamp(20px, 5vw, 64px) clamp(50px, 7vw, 80px);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,15,14,0.55) 0%, rgba(13,15,14,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p {
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  color: rgba(245,240,232,0.6);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--amber), var(--mint));
}

/* ===== GALLERY PAGE ===== */
.gallery-wrap {
  background: var(--ink);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.g-filter {
  padding: 8px clamp(16px, 2vw, 22px);
  border-radius: 100px;
  border: 1px solid rgba(245,240,232,0.15);
  background: transparent;
  color: rgba(245,240,232,0.6);
  font-family: var(--ff-body);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.g-filter:hover, .g-filter.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
}

.gallery-year-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.gallery-year-dropdown label {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-wrap {
  position: relative;
  display: inline-flex;
  width: 100%;
}

.gallery-year-dropdown select {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,240,232,0.15);
  background: rgba(13, 28, 24, 0.9);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.gallery-year-dropdown select:hover,
.gallery-year-dropdown select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(108, 144, 114, 0.12);
}

.select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(245,240,232,0.7);
  font-size: 0.85rem;
}

.gallery-year-dropdown select option {
  background: var(--ink);
  color: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: clamp(12px, 1.8vw, 20px);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.8vw, 20px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--forest);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,15,14,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
  color: var(--cream);
}
.g-placeholder {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.05em;
}

#lightbox {
  position: fixed; inset: 0;
  background: rgba(13,15,14,0.97);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
.lb-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.6rem;
  color: var(--cream);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  background: none; border: none;
  font-family: var(--ff-body);
  line-height: 1;
}
.lb-close:hover { opacity: 1; }
#blogPreviewModal {
  position: fixed; inset: 0;
  background: rgba(13,15,14,0.92);
  z-index: 510;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
#blogPreviewModal.open { display: flex; }
.bpm-panel {
  width: min(1200px,100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background: rgba(17,22,19,0.98);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.35);
}
.bpm-close {
  position: absolute;
  top: 18px; right: 18px;
  border: none; background: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.bpm-close:hover { opacity: 1; }
.bpm-img {
  width: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 24px;
}
.bpm-category {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(92,201,160,0.1);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.bpm-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}
.bpm-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  color: rgba(245,240,232,0.55);
  margin-bottom: 24px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
}
.bpm-meta span { display: inline-flex; align-items: center; }
.bpm-excerpt {
  margin-bottom: 22px;
  color: rgba(245,240,232,0.72);
  line-height: 1.8;
}
.bpm-body p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.82);
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-caption {
  position: absolute; bottom: 28px;
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  color: rgba(245,240,232,0.6);
  text-align: center;
}

/* ===== EVENTS PAGE ===== */
.events-wrap {
  background: var(--ink);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px);
}
.events-inner { max-width: 1100px; margin: 0 auto; }

.events-layout {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32%, 340px);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.event-big-card {
  border: 1px solid rgba(245,240,232,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(18px, 2.5vw, 26px);
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
  display: grid;
  grid-template-columns: 90px 1fr;
}
.event-big-card:hover { border-color: var(--mint); transform: translateX(4px); }
.event-big-date-col {
  background: var(--forest);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 18px 10px;
  text-align: center;
  flex-shrink: 0;
}
.ebc-day {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
}
.ebc-month {
  font-size: clamp(0.58rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 4px;
}
.ebc-year {
  font-size: clamp(0.55rem, 0.8vw, 0.62rem);
  color: rgba(245,240,232,0.3);
  margin-top: 2px;
}
.event-big-body {
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--ink2);
}
.ebc-tag {
  font-size: clamp(0.58rem, 0.85vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.ebc-title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ebc-desc {
  font-size: clamp(0.74rem, 1.1vw, 0.83rem);
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
  margin-bottom: 12px;
}
.ebc-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.ebc-meta-item {
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  color: rgba(245,240,232,0.45);
  display: flex; align-items: center; gap: 5px;
}

.events-right-sidebar {}
.ers-box {
  background: var(--forest);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  margin-bottom: clamp(18px, 2.5vw, 26px);
}
.ers-box h3 {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  margin-bottom: clamp(14px, 2vw, 20px);
  color: var(--amber);
}
.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.mc-day-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  text-align: center;
  padding: 4px 0;
}
.mc-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  color: rgba(245,240,232,0.55);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mc-day:hover { background: var(--jade); color: var(--cream); }
.mc-day.has-event { color: var(--amber); font-weight: 700; background: rgba(232,168,48,0.1); }
.mc-day.today { background: var(--sage); color: var(--cream); font-weight: 700; }
.mc-day.empty { cursor: default; }

.newsletter-box {
  background: linear-gradient(135deg, var(--jade), var(--forest));
  border: 1px solid rgba(92,201,160,0.2);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}
.newsletter-box h3 {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: rgba(245,240,232,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}
.nl-input {
  width: 100%;
  background: rgba(13,15,14,0.5);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--cream);
  outline: none;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.nl-input:focus { border-color: var(--mint); }
.nl-input::placeholder { color: rgba(245,240,232,0.35); }

/* ===== BLOG PAGE ===== */
.blog-wrap {
  background: var(--ink);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px);
}
.blog-inner { max-width: 1200px; margin: 0 auto; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 30%, 320px);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.blog-featured {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  margin-bottom: clamp(24px, 3.5vw, 36px);
  cursor: pointer;
  transition: transform var(--transition);
}
.blog-featured:hover { transform: translateY(-4px); }
.bf-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--forest) 0%, var(--jade) 50%, var(--ink) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bf-img.with-image .bf-icon {
  opacity: 0;
}
.bf-img-pattern {
  position: absolute; inset: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(45deg, var(--cream) 0px, var(--cream) 1px, transparent 1px, transparent 20px);
}
.bf-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.bf-icon { font-size: clamp(2.5rem, 5vw, 4rem); opacity: 0.25; }
.bf-body { padding: clamp(22px, 3vw, 32px); }
.bf-cat {
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
}
.bf-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.bf-excerpt {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  line-height: 1.75;
  color: rgba(245,240,232,0.6);
  margin-bottom: 18px;
}
.bf-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(0.65rem, 0.9vw, 0.72rem);
  color: rgba(245,240,232,0.4);
}
.bf-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(245,240,232,0.3); }

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
.blog-card {
  background: var(--ink2);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(92,201,160,0.35); }
.bc-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bc-img-pattern {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(90deg, var(--cream) 0px, var(--cream) 1px, transparent 1px, transparent 24px);
}
.bc-body { padding: clamp(14px, 2vw, 20px); }
.bc-cat {
  font-size: clamp(0.58rem, 0.85vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 7px;
}
.bc-title {
  font-family: var(--ff-display);
  font-size: clamp(0.88rem, 1.5vw, 1.1rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.bc-excerpt {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  line-height: 1.7;
  color: rgba(245,240,232,0.52);
  margin-bottom: 12px;
}
.bc-meta {
  font-size: clamp(0.62rem, 0.85vw, 0.7rem);
  color: rgba(245,240,232,0.35);
  display: flex; gap: 10px; flex-wrap: wrap;
}

.blog-sidebar {}
.bs-box {
  background: var(--ink2);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: var(--radius);
  padding: clamp(20px, 2.8vw, 30px);
  margin-bottom: clamp(18px, 2.5vw, 26px);
}
.bs-box h3 {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  margin-bottom: clamp(12px, 1.8vw, 18px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,240,232,0.07);
  color: var(--amber);
}
.bs-topic {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(245,240,232,0.05);
  cursor: pointer;
  transition: color var(--transition);
  font-size: clamp(0.76rem, 1.1vw, 0.84rem);
  color: rgba(245,240,232,0.65);
}
.bs-topic:hover { color: var(--mint); }
.bs-topic-count {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(92,201,160,0.15);
  color: var(--mint);
  padding: 2px 8px;
  border-radius: 100px;
}
.bs-recent-item {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,232,0.05);
  cursor: pointer;
  transition: opacity var(--transition);
}
.bs-recent-item:hover { opacity: 0.8; }
.bs-recent-thumb {
  width: 52px; height: 52px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background-size: cover;
  background-position: center;
}
.bs-recent-text h5 {
  font-size: clamp(0.72rem, 1.1vw, 0.8rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--cream);
}
.bs-recent-text span { font-size: 0.65rem; color: rgba(245,240,232,0.35); }
.bs-search { display: flex; gap: 8px; }
.bs-search input {
  flex: 1;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}
.bs-search input:focus { border-color: var(--mint); }
.bs-search input::placeholder { color: rgba(245,240,232,0.3); }
.bs-search button {
  background: var(--sage);
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.8rem;
  transition: background var(--transition);
}
.bs-search button:hover { background: var(--jade); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  font-size: clamp(0.62rem, 0.85vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid rgba(245,240,232,0.12);
  color: rgba(245,240,232,0.55);
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.tag-item:hover { border-color: var(--amber); color: var(--amber); }

.pagination {
  display: flex; gap: 8px; justify-content: center;
  margin-top: clamp(36px, 5vw, 54px);
  flex-wrap: wrap;
}
.pg-btn {
  width: 38px; height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(245,240,232,0.12);
  background: transparent;
  color: rgba(245,240,232,0.55);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pg-btn:hover, .pg-btn.active { background: var(--sage); border-color: var(--sage); color: var(--cream); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sermons-grid, .radio-grid, .excerpts-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .welcome-inner { grid-template-columns: 1fr; }
  .events-sidebar { position: static; }
  .welcome-feats { grid-template-columns: 1fr; gap: 22px; }
  .about-journey { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; max-width: 400px; }
  .about-two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .event-big-card { grid-template-columns: 70px 1fr; }
  .blog-layout { display: flex; flex-direction: column-reverse; gap: 18px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: block; margin-top: 0; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 600px) {
  .excerpts-grid { grid-template-columns: 1fr; }
  .sermons-grid { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr 1fr; }
  .sp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sermons-header { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns a, .hero-btns button { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 2; }
  .blog-posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .gallery-masonry { columns: 1; }
}

@media (max-width: 400px) {
  .radio-grid { grid-template-columns: 1fr; }
  .welcome-feats { grid-template-columns: 1fr; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--jade); border-radius: 5px; }
::selection { background: var(--sage); color: var(--cream); }
