/* ══════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════ */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8B6E30;
  --black:      #0A0806;
  --dark:       #100D08;
  --dark-card:  #161008;
  --dark-mid:   #1E1508;
  --cream:      #F5EDD8;
  --text:       #E2D9C4;
  --text-dim:   #9E9280;
  --border:     rgba(201,168,76,.15);
  --border-mid: rgba(201,168,76,.3);

  /* ── Typography — full sans-serif system ──
     Montserrat: headings, labels, nav, display numbers, callouts
     Inter:      body copy, descriptions, fine print
     No serif fonts anywhere. Italic = Montserrat italic.          */
  --ff-display: 'Montserrat', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --ff-italic:  'Montserrat', sans-serif;   /* italic used via font-style:italic */

  --radius: 4px;
  --transition: .4s cubic-bezier(.25,.8,.25,1);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  /* NOTE: overflow-x hidden must NOT be on html — it breaks position:fixed on mobile */
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ══════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: background var(--transition), backdrop-filter var(--transition);
  /* Ensure navbar is never clipped */
  overflow: visible;
  width: 100%;
  max-width: 100vw;
}

#navbar.scrolled {
  background: rgba(10,8,6,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 1;
  min-width: 0;
  flex-shrink: 1;
}

.logo-crown { width: 36px; height: 27px; }
.logo-crown.small { width: 28px; height: 21px; }

.logo-text {
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-dim);
  transition: color .25s;
  text-transform: uppercase;
}

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

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: .35rem 1.1rem;
  border-radius: var(--radius);
  transition: background .25s, color .25s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.show {
  display: block;
  opacity: 1;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* Building design photo as hero background */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.58) saturate(.75);
}

/* Fallback gradient when no image */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 40%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(100,50,10,.15) 0%, transparent 70%),
    #080604;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top band — shields nav/logo area */
    linear-gradient(to bottom,
      rgba(8,6,4,.70) 0%,
      rgba(8,6,4,.30) 18%,
      rgba(8,6,4,.10) 38%,
      rgba(8,6,4,.20) 55%,
      rgba(8,6,4,.72) 78%,
      rgba(8,6,4,1)   100%
    );
  z-index: 1;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .4; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
  max-width: 900px;
  min-width: 0;
  box-sizing: border-box;
  /* Prevent any child from escaping horizontally */
  overflow-x: hidden;
}

.hero-pre {
  font-family: var(--ff-display);
  font-size: clamp(.55rem, 1.4vw, .65rem);
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  opacity: .85;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
}

/* Decorative lines flanking the eyebrow text */
.hero-pre::before,
.hero-pre::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}

/* Hero CTA buttons */
.hero-cta-main {
  flex: 1 1 auto;
  max-width: 300px;
  min-width: 180px;
  text-align: center;
  font-size: .8rem;
  letter-spacing: .2em;
  padding: 1rem 2rem;
}

.hero-cta-ghost {
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--text-dim);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,.25);
  padding-bottom: .2rem;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}

.hero-cta-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-title-wrap {
  margin-bottom: .75rem;
}

.hero-title-img {
  max-height: clamp(90px, 18vw, 220px);
  width: auto;
  max-width: 90%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(201,168,76,.35)) drop-shadow(0 4px 20px rgba(0,0,0,.8));
}

.hero-title {
  font-family: var(--ff-italic);
  font-size: clamp(3.5rem, 15vw, 10rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201,168,76,.4), 0 4px 40px rgba(0,0,0,.8);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
  word-break: break-word;
}

/* ── Hero subtitle: "FOR THE KINGDOM SOUND HOLISTIC WORSHIP CENTER" ── */
.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(.55rem, 1.6vw, .7rem);
  font-weight: 500;
  letter-spacing: .2em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  word-break: break-word;
  overflow-wrap: break-word;
  padding: 0 .5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.95);
  line-height: 1.6;
}

.hero-subtitle strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 3.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  margin-top: .3rem;
  text-shadow: 0 0 30px rgba(201,168,76,.2), 0 2px 16px rgba(0,0,0,.98);
}

.hero-verse {
  font-family: var(--ff-body);
  font-size: clamp(.88rem, 2.2vw, 1.05rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  max-width: 440px;
  width: 100%;
  margin: 0 auto 2rem;
  line-height: 1.85;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  position: relative;
  padding: 0 .5rem;
  /* strong backdrop so text is always legible over any photo */
  text-shadow:
    0 1px 0 rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,.95),
    0 0 40px rgba(0,0,0,.9);
}

/* decorative open-quote in gold */
.hero-verse::before {
  content: '\201C';
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: .6;
  color: var(--gold);
  opacity: .6;
  margin-bottom: .4rem;
  font-style: normal;
  text-shadow: none;
  font-weight: 700;
}

.hero-verse-ref {
  display: block;
  margin-top: .65rem;
  font-family: var(--ff-display);
  font-style: normal;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
  opacity: .95;
  text-shadow: 0 1px 6px rgba(0,0,0,.95);
}

.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-pillars span {
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--text);
}

.hero-pillars .dot { color: var(--gold); font-size: 1rem; }

.hero-progress-wrap {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 2.5rem;
  padding: 0 .5rem;
  box-sizing: border-box;
}

.hero-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .7rem;
  font-family: var(--ff-display);
  letter-spacing: .08em;
}

.hero-progress-labels span:first-child {
  font-size: clamp(.82rem, 2.2vw, .95rem);
  color: var(--gold);
  font-weight: 600;
}

.hero-progress-labels span:last-child {
  font-size: clamp(.68rem, 1.8vw, .78rem);
  color: var(--cream);
  opacity: .9;
}

.hero-progress-bar {
  height: 8px;
  background: rgba(201,168,76,.1);
  border-radius: 100px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(201,168,76,.15);
}

.hero-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 60%, var(--gold-light) 100%);
  position: relative;
  width: 0;
  transition: width 2.2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 16px rgba(201,168,76,.5), 0 0 4px rgba(201,168,76,.8);
  overflow: hidden;
}

/* shimmer sweep */
.hero-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

.hero-progress-bubble {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translate(50%, -50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-display);
  font-size: .6rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(201,168,76,.6);
}

/* remaining amount tag below the bar */
.hero-progress-remaining {
  text-align: right;
  margin-top: .5rem;
  font-family: var(--ff-display);
  font-size: clamp(.6rem, 1.5vw, .68rem);
  letter-spacing: .1em;
  color: var(--cream);
  opacity: .8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 .5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-dim);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .12em;
  padding: .9rem 2rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform .2s, box-shadow .2s;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,168,76,.35);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .12em;
  padding: .9rem 2rem;
  border: 1px solid var(--border-mid);
  color: var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s, border-color .25s;
  text-transform: uppercase;
  background: transparent;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-ghost:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section {
  padding: 7rem 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: .3rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -.01em;
}

.section-title em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}

.section-desc {
  font-family: var(--ff-body);
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 400;
  color: var(--text-dim);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

section + section::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--border-mid);
  margin: 0 auto;
  position: relative;
  top: -3.5rem;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-stat {
  border-left: 2px solid var(--gold-dim);
  padding-left: 2rem;
}

.stat-number {
  font-family: var(--ff-italic);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 200px;
  line-height: 1.5;
}

.about-text p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text p strong { color: var(--cream); }

.about-text blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--gold-dim);
  font-size: 1.05rem;
  margin-top: 2rem;
}

.challenge-grid {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 5rem;
}

.challenge-head { margin-bottom: 2rem; }

.challenge-head h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.challenge-sub {
  color: var(--text-dim);
  font-style: italic;
  font-size: 1.05rem;
}

.challenges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.challenge-item {
  font-size: .9rem;
  color: var(--text-dim);
  padding: .6rem 1rem .6rem 1.5rem;
  background: rgba(201,168,76,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.challenge-item::before {
  content: '—';
  position: absolute;
  left: .5rem;
  color: var(--gold-dim);
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.impact-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
  transition: border-color .3s, transform .3s;
}

.impact-item:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.impact-num {
  font-family: var(--ff-italic);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.impact-label {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.4;
  font-family: var(--ff-display);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════
   VISION
══════════════════════════════════════════ */
#vision {
  background: var(--dark-mid);
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 70%);
}

.vision-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--text-dim);
  font-style: italic;
}

.vision-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.vision-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 2rem 1.5rem;
  min-width: 130px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(201,168,76,.03);
  transition: border-color .3s, background .3s;
}

.vision-feature:hover {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,.06);
}

.vf-icon { font-size: 1.75rem; }

.vf-label {
  font-family: var(--ff-display);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  text-align: center;
}

.vision-render {
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201,168,76,.04) 0%, transparent 50%), var(--dark-card);
  padding: 5rem 2rem;
  text-align: center;
}

.render-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold-dim);
  border: 1px solid var(--border);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.render-name {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: .1em;
  color: var(--cream);
  margin-bottom: .75rem;
}

.render-location {
  font-size: .85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ══════════════════════════════════════════
   PROGRESS
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   BUILDING DESIGN SECTION
══════════════════════════════════════════ */
#building {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.building-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(100,50,10,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Main render frame ── */
/* ══════════════════════════════════════════
   BUILDING DESIGN — multi-angle carousel
══════════════════════════════════════════ */
.bd-carousel {
  margin-bottom: 3.5rem;
  user-select: none;
}

/* Main viewport */
.bd-viewport {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.08),
    0 32px 80px rgba(0,0,0,.7);
  background: var(--dark-card);
  aspect-ratio: 16 / 7;
  margin-bottom: 1rem;
}

/* Slides container */
.bd-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slide */
.bd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.bd-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.bd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.bd-slide.active img {
  transform: scale(1.025);
}

/* Slide label overlay (bottom-left) */
.bd-slide-overlay {
  position: absolute;
  bottom: 0; left: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  pointer-events: none;
}

.bd-slide-label {
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,.9);
}

.bd-slide-sub {
  font-family: var(--ff-display);
  font-size: .55rem;
  letter-spacing: .14em;
  color: var(--text-dim);
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
}

/* Prev / Next arrows */
.bd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  background: rgba(10,8,6,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, opacity .25s;
  z-index: 10;
  opacity: .75;
}

.bd-arrow:hover {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
  opacity: 1;
}

.bd-prev { left: 1rem; }
.bd-next { right: 1rem; }

/* Hidden when only 1 slide */
.bd-arrow[hidden], .bd-dots[hidden] { display: none; }

/* Bottom gradient + center name */
.building-render-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 1.25rem;
  background: linear-gradient(to top, rgba(5,3,2,.92) 0%, rgba(5,3,2,.5) 60%, transparent 100%);
  text-align: center;
  pointer-events: none;
  z-index: 5;
}

/* Thumbnail strip */
.bd-thumbstrip {
  display: flex;
  gap: .6rem;
  margin-bottom: .75rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: none;
}

.bd-thumbstrip::-webkit-scrollbar { display: none; }

.bd-thumb {
  flex: 0 0 110px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--dark-card);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: border-color .25s;
  display: flex;
  flex-direction: column;
}

.bd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
  min-height: 0;
}

.bd-thumb span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .2rem .35rem;
  background: rgba(5,3,2,.75);
  font-family: var(--ff-display);
  font-size: .5rem;
  letter-spacing: .1em;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bd-thumb.active,
.bd-thumb:hover {
  border-color: var(--gold);
}

.bd-thumb.active span { color: var(--gold); }

/* Dot strip */
.bd-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.bd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.25);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}

.bd-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Floating feature callouts ── */
.building-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(10,8,6,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 100px;
  padding: .45rem 1rem .45rem .7rem;
  font-family: var(--ff-display);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--cream);
  white-space: nowrap;
  pointer-events: none;
}

.bc-icon {
  font-size: .9rem;
  line-height: 1;
}

.bc-top-left    { top: 1.25rem;    left: 1.25rem; }
.bc-top-right   { top: 1.25rem;    right: 1.25rem; }
.bc-bottom-left { bottom: 4.5rem;  left: 1.25rem; }
.bc-bottom-right{ bottom: 4.5rem;  right: 1.25rem; }

/* ── Bottom overlay with center name ── */
.building-render-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 1.25rem;
  background: linear-gradient(to top, rgba(5,3,2,.92) 0%, rgba(5,3,2,.5) 60%, transparent 100%);
  text-align: center;
}

.building-render-name {
  font-family: var(--ff-display);
  font-size: clamp(.65rem, 1.8vw, .85rem);
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: .25rem;
}

.building-render-location {
  font-family: var(--ff-display);
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--text-dim);
}

/* ── 5 pillars strip ── */
.building-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-card);
}

.building-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.75rem .5rem;
  transition: background .3s;
}

.building-pillar:hover {
  background: rgba(201,168,76,.06);
}

.bp-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.bp-name {
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--cream);
  text-transform: uppercase;
}

.building-pillar-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Stats row ── */
.building-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.building-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
}

.bs-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.bs-num span {
  font-size: 60%;
  color: var(--gold-dim);
}

.bs-label {
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--text-dim);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── 3D placeholder ── */
.building-3d-placeholder {
  border: 1px dashed rgba(201,168,76,.25);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.03) 0%, rgba(0,0,0,0) 100%);
  padding: 3.5rem 2rem;
  text-align: center;
}

.b3d-inner {
  max-width: 480px;
  margin: 0 auto;
}

.b3d-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  opacity: .6;
}

.b3d-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cream);
  margin-bottom: .75rem;
}

.b3d-desc {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.b3d-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 100px;
  padding: .35rem 1rem;
  text-transform: uppercase;
}

/* Mobile overrides for building section */
@media (max-width: 600px) {
  .bd-viewport { aspect-ratio: 4 / 3; }
  .bc-top-right, .bc-bottom-right { display: none; }
  .bc-top-left { top: .75rem; left: .75rem; font-size: .55rem; }
  .bc-bottom-left { bottom: 3.5rem; left: .75rem; font-size: .55rem; }
  .bd-thumb { flex: 0 0 80px; height: 52px; }
  .bd-arrow { width: 36px; height: 36px; font-size: .9rem; }
  .building-pillars { flex-wrap: wrap; }
  .building-pillar { flex: 0 0 calc(33.33% - 1px); }
  .building-pillar-sep:nth-child(6),
  .building-pillar-sep:nth-child(8) { display: none; }
  .building-stats { grid-template-columns: repeat(2, 1fr); }
  .building-3d-placeholder { padding: 2.5rem 1.25rem; }
}

/* ══════════════════════════════════════════
   PROGRESS
══════════════════════════════════════════ */
#progress { background: var(--black); }

.progress-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.progress-raised {
  font-family: var(--ff-italic);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

/* ETB sub-amount shown in smaller text inline */
.progress-raised-etb {
  font-family: var(--ff-display);
  font-size: clamp(.7rem, 2vw, .9rem);
  font-weight: 400;
  color: var(--gold-dim);
  letter-spacing: .08em;
  vertical-align: middle;
  display: block;
  margin-top: .2rem;
}

.progress-label {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.progress-label strong { color: var(--cream); }

.progress-label-etb {
  font-size: .8rem;
  color: var(--text-dim);
  opacity: .7;
}

/* TeleBirr row — visually separated from bank accounts */
.bank-row-telebirr {
  margin-top: .4rem;
  border-color: rgba(201,168,76,.25);
  background: rgba(201,168,76,.06);
}

.progress-track {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  height: 8px;
  background: rgba(201,168,76,.1);
  border-radius: 100px;
  overflow: visible;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 20px rgba(201,168,76,.4);
  position: relative;
  width: 0;
  transition: width 2.2s cubic-bezier(.4,0,.2,1);
}

.progress-pct-label {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translate(50%, -50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-display);
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 100px;
}

.progress-remaining {
  font-size: .85rem;
  color: var(--text-dim);
  font-style: italic;
}

.progress-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pb-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
  transition: border-color .3s;
}

.pb-item:hover { border-color: var(--gold-dim); }

.pb-icon { font-size: 1.5rem; flex-shrink: 0; }

.pb-title {
  font-family: var(--ff-display);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--cream);
  margin-bottom: .4rem;
}

.pb-sub { font-size: .85rem; color: var(--text-dim); }

/* ══════════════════════════════════════════
   UPDATES — GROUPED GALLERY
══════════════════════════════════════════ */
#updates {
  background: var(--dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.update-group {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.update-group > * {
  min-width: 0;
}

.update-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ug-date {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .62rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
  padding: .25rem .8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.ug-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ug-desc {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ug-photo-count {
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.ug-photo-count::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gold-dim);
}

/* Gallery right side */
.ug-gallery {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

/* Hero large image */
.ug-hero-slot {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: var(--dark-card);
  cursor: pointer;
}

.ug-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.ug-hero-img .gi-placeholder,
.ug-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prev/next nav overlay on hero */
.ug-hero-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  z-index: 5;
}

.ug-nav-btn {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.ug-nav-btn:hover {
  background: rgba(201,168,76,.3);
  border-color: var(--gold);
}

.ug-nav-counter {
  font-family: var(--ff-display);
  font-size: .62rem;
  letter-spacing: .15em;
  color: var(--text);
  min-width: 3.5rem;
  text-align: center;
}

/* Thumbnail strip */
.ug-thumbs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.ug-thumbs-wrap::-webkit-scrollbar { display: none; }

.ug-thumbs {
  display: flex;
  gap: .5rem;
  width: max-content;
}

.ug-thumb {
  flex: 0 0 80px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color .2s, opacity .2s;
  opacity: .6;
}

.ug-thumb img,
.ug-thumb .gi-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ug-thumb .gi-placeholder {
  font-size: .5rem;
}
.ug-thumb .gi-placeholder .gi-icon { font-size: 1.2rem; }

.ug-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.ug-thumb:hover {
  opacity: .9;
}

/* Expand / open lightbox hint on hero */
.ug-hero-slot::after {
  content: '⤢';
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .85rem;
  width: 32px; height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 4;
  pointer-events: none;
}
.ug-hero-slot:hover::after { opacity: 1; }

/* ══════════════════════════════════════════
   VISITORS SECTION
══════════════════════════════════════════ */
#visitors {
  background: var(--dark-mid);
  overflow: hidden;
}

.visitors-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(201,168,76,.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(100,50,10,.08) 0%, transparent 70%);
}

.visitors-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
  color: var(--text-dim);
  font-style: italic;
}

.visitors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.visitor-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.visitor-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.visitor-img-wrap {
  height: 200px;
  overflow: hidden;
}

.visitor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.visitor-card:hover .visitor-img-wrap img {
  transform: scale(1.04);
}

.visitor-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(201,168,76,.02));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-dim);
  font-family: var(--ff-display);
  font-size: .68rem;
  letter-spacing: .1em;
}

.visitor-icon { font-size: 2rem; }

.visitor-body {
  padding: 1.25rem 1.5rem;
}

.visitor-date {
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold-dim);
  display: block;
  margin-bottom: .4rem;
}

.visitor-card h4 {
  font-family: var(--ff-display);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--cream);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.visitor-card p {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.visitors-cta {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(201,168,76,.02);
}

.visitors-cta p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.visitors-cta strong { color: var(--cream); }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
#gallery { background: var(--black); }

.gallery-filter {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gf-btn {
  font-family: var(--ff-display);
  font-size: .68rem;
  letter-spacing: .15em;
  padding: .5rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
}

.gf-btn:hover, .gf-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color .3s;
}

.gallery-item:hover { border-color: var(--gold-dim); }
.gallery-item.large { grid-column: span 2; }

.gi-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, hsla(calc(var(--hue)), 60%, 15%, .3) 0%, transparent 70%),
    var(--dark-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-dim);
  font-family: var(--ff-display);
  font-size: .68rem;
  letter-spacing: .1em;
  text-align: center;
  transition: transform .5s;
}

.gallery-item:hover .gi-placeholder { transform: scale(1.04); }

.gi-icon { font-size: 2.5rem; }

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .35s;
}

.gallery-item:hover .gi-overlay { opacity: 1; }

.gi-overlay span {
  font-family: var(--ff-display);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--cream);
}

.gallery-item.hidden { display: none; }

/* ── LIGHTBOX ────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,4,3,.97);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--text-dim);
  font-size: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}

.lb-close:hover { border-color: var(--gold); color: var(--gold); }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 10;
}

.lb-arrow:hover {
  background: rgba(201,168,76,.25);
  border-color: var(--gold);
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-arrow.hidden { display: none; }

.lb-inner {
  max-width: min(90vw, 900px);
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lb-inner img,
.lb-inner .gi-placeholder {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  object-fit: contain;
  width: 700px;
  height: 500px;
}

.lb-footer {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lb-caption {
  font-family: var(--ff-display);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  text-align: center;
}

.lb-dots {
  display: flex;
  gap: .4rem;
}

.lb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,.3);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
}

.lb-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════
   SUPPORT
══════════════════════════════════════════ */
#support { background: var(--dark); }

.support-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,168,76,.06) 0%, transparent 70%);
}

.support-desc {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 1rem;
  font-style: italic;
  color: var(--gold-dim);
  font-size: 1.05rem;
}

.support-sub {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 4rem;
  color: var(--text-dim);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: start;
}

.support-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color .3s;
}

.support-card:hover { border-color: var(--gold-dim); }

.support-card.primary {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, var(--dark-card) 60%);
}

.sc-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-display);
  font-size: .58rem;
  letter-spacing: .18em;
  padding: .25rem .8rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.sc-icon { font-size: 2rem; margin-bottom: 1rem; }

.support-card h3 {
  font-family: var(--ff-display);
  font-size: .9rem;
  letter-spacing: .12em;
  color: var(--cream);
  margin-bottom: .75rem;
}

.support-card > p {
  font-size: .9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bank-list { display: flex; flex-direction: column; gap: .6rem; }

.bank-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: rgba(201,168,76,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bank-name {
  font-family: var(--ff-display);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--gold-dim);
  min-width: 65px;
}

.bank-acc {
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  color: var(--text);
  flex: 1;
  word-break: break-all;
}

.copy-btn {
  font-family: var(--ff-display);
  font-size: .55rem;
  letter-spacing: .12em;
  padding: .25rem .6rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold-dim);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.copy-btn.copied {
  background: rgba(100,200,100,.15);
  border-color: rgba(100,200,100,.3);
  color: #7dda7d;
}

.mobile-note {
  margin-top: 1.25rem;
  font-size: .8rem;
  color: var(--text-dim);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.support-progress {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.sp-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-display);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: .5rem;
}

.sp-bar {
  height: 6px;
  background: rgba(201,168,76,.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sp-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  width: 0;
  transition: width 2s .3s cubic-bezier(.4,0,.2,1);
}

.sp-cta {
  font-style: italic;
  color: var(--text-dim);
  font-size: .95rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--ff-display);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.footer-sub {
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--text-dim);
  margin-top: .2rem;
}

.footer-verse {
  font-style: italic;
  color: var(--gold-dim);
  font-size: .95rem;
  max-width: 520px;
}

.footer-copy {
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  opacity: .6;
}

/* Social links in footer */
.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-display);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color .25s, border-color .25s, background .25s;
  text-decoration: none;
  white-space: nowrap;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(201,168,76,.05);
}

.social-icon { font-size: 1rem; line-height: 1; }

/* ══════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════ */
#video { background: var(--black); }

.video-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  color: var(--text-dim);
  font-style: italic;
}

.video-container {
  max-width: 860px;
  margin: 0 auto;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 0 60px rgba(201,168,76,.08);
  background: var(--dark-card);
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder shown when no video ID is set */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--dark-card);
  color: var(--text-dim);
  font-family: var(--ff-display);
  font-size: .72rem;
  letter-spacing: .12em;
}

.video-placeholder-icon { font-size: 3rem; }

.video-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-style: italic;
  font-size: .9rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(4rem);
  background: var(--dark-card);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: .72rem;
  letter-spacing: .15em;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 1000;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════
   BRAND MARK
══════════════════════════════════════════ */
.brand-mark {
  height: 48px;
  width: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* L&C logo — slightly smaller, same height */
.brand-mark-lnc {
  height: 40px;
}

/* Thin gold vertical divider between the two logos */
.nav-logo-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Hero is always in viewport on load */
#hero .reveal,
#hero .reveal-left,
#hero .reveal-right {
  opacity: 1;
  transform: translate(0);
}


/* ══════════════════════════════════════════
   LEARN MORE DRAWER
══════════════════════════════════════════ */
.learn-more-trigger {
  text-align: center;
  padding: 5rem 1.5rem 5.5rem;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.learn-more-trigger::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  opacity: .6;
}

.learn-more-trigger::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.lm-eyebrow {
  font-family: var(--ff-display);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.lm-heading {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--cream);
  margin-bottom: .6rem;
  font-weight: 300;
}

.lm-prompt {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 2.2rem;
  letter-spacing: .03em;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lm-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  letter-spacing: .12em;
  padding: .9rem 2.4rem;
  transition: gap .3s, box-shadow .3s;
}

.lm-btn:hover {
  gap: 1rem;
  box-shadow: 0 0 24px rgba(201,168,76,.15);
}

.lm-chevron {
  display: inline-block;
  transition: transform .4s ease;
  font-size: 1rem;
}

.lm-btn[aria-expanded="true"] .lm-chevron {
  transform: rotate(180deg);
}

/* Drawer — hidden by default, animates open */
.learn-more-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.2s cubic-bezier(.4, 0, .2, 1);
}

.learn-more-drawer.open {
  max-height: 9999px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
  .support-card.primary { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .impact-numbers { grid-template-columns: repeat(2, 1fr); }
  .progress-breakdown { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .visitors-grid { grid-template-columns: repeat(2, 1fr); }
  .update-group { grid-template-columns: 220px 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px (TABLET / MOBILE)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 4.5rem 0; }

  /* ── Navigation ─────────────────────── */
  .nav-inner { padding: 1rem 1.25rem; overflow: hidden; }
  .hamburger { display: flex; }
  .nav-logo { flex-shrink: 1; min-width: 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: rgba(10,8,6,.98);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 150;
    transition: right .35s cubic-bezier(.25,.8,.25,1);
    overflow-y: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem .25rem;
    font-size: .8rem;
    letter-spacing: .18em;
  }

  .nav-links .nav-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    border-radius: var(--radius);
  }

  .nav-links.open { right: 0; }

  /* ── Hero ────────────────────────────── */
  #hero { min-height: 100dvh; }
  .hero-content {
    padding: 5.5rem 1.25rem 2rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-pre { font-size: .55rem; letter-spacing: .22em; }
  .hero-pre::before, .hero-pre::after { width: 20px; }
  .hero-title-img { max-height: clamp(80px, 28vw, 130px); }
  .hero-verse { font-size: .88rem; padding: 0 .25rem; }
  .hero-verse::before { font-size: 2.2rem; }
  .hero-scroll-hint { display: none; }
  .hero-progress-wrap { padding: 0; }
  .hero-cta-main { max-width: 100%; min-width: 0; width: 100%; }
  .hero-cta-ghost { font-size: .58rem; }

  /* ── Section ────────────────────────── */
  .section-inner { padding: 0 1.25rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-header { margin-bottom: 2.5rem; }

  /* ── About ───────────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .challenge-grid { padding: 1.75rem; }
  .challenges { grid-template-columns: 1fr 1fr; }
  .impact-numbers { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── Updates ─────────────────────────── */
  .updates-list { gap: 3.5rem; }
  .update-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
  }
  .ug-thumb { flex: 0 0 72px; height: 52px; }
  .ug-hero-slot { aspect-ratio: 4 / 3; }

  /* ── Visitors ─────────────────────────── */
  .visitors-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .visitor-img-wrap { height: 160px; }

  /* ── Video ────────────────────────────── */
  .video-container { max-width: 100%; }

  /* ── Gallery ─────────────────────────── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.large { grid-column: span 1; }

  /* ── Lightbox ─────────────────────────── */
  .lb-arrow { width: 42px; height: 42px; font-size: 1rem; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .lb-inner img,
  .lb-inner .gi-placeholder { width: 90vw; height: 60vw; }

  /* ── Support ─────────────────────────── */
  .support-grid { grid-template-columns: 1fr; }
  .support-card.primary { grid-column: auto; }
  .bank-row { flex-wrap: wrap; gap: .4rem; }
  .bank-acc { font-size: .75rem; }

  /* ── Footer socials ─────────────────── */
  .footer-socials { gap: .6rem; }
  .social-link { font-size: .58rem; padding: .35rem .7rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 480px (SMALL PHONE)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 3.5rem 0; overflow-x: hidden; }
  .section-inner { padding: 0 1rem; }

  /* Hero — hard containment */
  #hero {
    align-items: center;
    width: 100vw;
    overflow: hidden;
  }
  .hero-bg,
  .hero-bg-img,
  .hero-overlay,
  .particles {
    width: 100%;
    max-width: 100vw;
  }
  .hero-content {
    padding: 5rem .875rem 2rem;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
  }
  .hero-pre {
    font-size: .5rem;
    letter-spacing: .16em;
    margin-bottom: .9rem;
  }
  .hero-pre::before, .hero-pre::after { width: 16px; }
  .hero-title-img { max-height: clamp(70px, 24vw, 110px); }
  .hero-verse {
    font-size: .82rem;
    padding: 0 .1rem;
    margin-bottom: 1.4rem;
  }
  .hero-verse::before { font-size: 2rem; }
  .hero-progress-wrap {
    padding: 0;
    max-width: 100%;
    margin-bottom: 1.75rem;
  }
  .hero-progress-labels { font-size: .62rem; letter-spacing: .04em; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    padding: 0;
  }
  .hero-cta-main {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: .95rem .5rem;
    font-size: .75rem;
  }
  .hero-cta-ghost { text-align: center; }

  /* About */
  .impact-numbers { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .impact-item { padding: 1.5rem 1rem; }
  .challenges { grid-template-columns: 1fr; }
  .challenge-grid { padding: 1.25rem; }

  /* Progress */
  .progress-breakdown { grid-template-columns: 1fr; gap: 1rem; }
  .pb-item { padding: 1.25rem; gap: 1rem; }

  /* Updates */
  .ug-thumb { flex: 0 0 64px; height: 48px; }
  .ug-hero-slot { aspect-ratio: 1; }
  .ug-title { font-size: .95rem; }

  /* Visitors */
  .visitors-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.large { grid-column: span 1; }
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
  }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .gf-btn { flex-shrink: 0; }

  /* Vision features */
  .vision-features { gap: .75rem; }
  .vision-feature { min-width: 100px; padding: 1.25rem 1rem; }

  /* Lightbox */
  .lb-inner img,
  .lb-inner .gi-placeholder {
    width: 100vw;
    height: 65vw;
    border-radius: 0;
    max-height: 60vh;
  }
  .lb-prev { left: .25rem; }
  .lb-next { right: .25rem; }
  .lb-arrow { width: 38px; height: 38px; font-size: .9rem; }

  /* Support */
  .support-card { padding: 1.75rem 1.25rem; }
  .bank-row { padding: .5rem; }

  /* Footer socials */
  .footer-socials { gap: .4rem; }
  .social-link span:not(.social-icon) { display: none; } /* icon only on tiny screens */
  .social-link { padding: .5rem .7rem; }
  .social-icon { font-size: 1.2rem; }
}
/* ══════════════════════════════════════════
 WORSHIP DUALITY — Redesigned Modern Cards
 Moved below hero: two feature cards with
 animated accent lines, icon glow, hover lift
══════════════════════════════════════════ */
.worship-duality-section {
position: relative;
background: var(--dark);
padding: 5rem 1.5rem 5.5rem;
overflow: hidden;
}

/* subtle gold grain texture overlay */
.worship-duality-section::before {
content: '';
position: absolute;
inset: 0;
background:
  radial-gradient(ellipse 80% 60% at 20% 100%, rgba(201,168,76,.05) 0%, transparent 60%),
  radial-gradient(ellipse 60% 50% at 80% 0%,   rgba(201,168,76,.04) 0%, transparent 60%);
pointer-events: none;
}

.wd-section-inner {
max-width: 860px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.wd-section-tag {
display: block;
font-family: var(--ff-display);
font-size: .6rem;
font-weight: 700;
letter-spacing: .28em;
text-transform: uppercase;
color: var(--gold);
text-align: center;
margin-bottom: .9rem;
opacity: .8;
}

.wd-section-title {
font-family: var(--ff-display);
font-size: clamp(1.6rem, 4vw, 2.1rem);
font-weight: 700;
font-style: normal;
color: var(--cream);
text-align: center;
margin-bottom: 3rem;
letter-spacing: -.01em;
}

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

.worship-duality {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
position: relative;
}

/* Remove the old divider element from grid flow */
.worship-duality .wd-divider {
display: none;
}

.wd-card {
position: relative;
padding: 2.5rem 2rem 2rem;
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
transition: border-color .4s ease, transform .35s ease, box-shadow .4s ease;
background: rgba(16,13,8,.7);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
cursor: default;
}

/* Animated top accent bar */
.wd-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold) 50%, var(--gold-dim) 70%, transparent 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform .5s cubic-bezier(.25,.8,.25,1);
}

.wd-card:hover::before {
transform: scaleX(1);
}

/* Corner number decoration — removed */
.wd-card::after { display: none; }

/* Remove old card-specific borders */
.wd-card:first-child { border-radius: 16px; border-right: 1px solid var(--border); }
.wd-card:last-child  { border-radius: 16px; border-left: 1px solid var(--border); }

.wd-card-glow {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity .5s ease;
pointer-events: none;
border-radius: 16px;
}
.wd-card--singing .wd-card-glow {
background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.wd-card--action .wd-card-glow {
background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(180,120,60,.16) 0%, transparent 70%);
}
.wd-card:hover .wd-card-glow { opacity: 1; }
.wd-card:hover {
border-color: rgba(201,168,76,.35);
transform: translateY(-4px);
box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.08);
}

/* Icon */
.wd-icon-row {
display: flex;
align-items: center;
gap: .75rem;
margin-bottom: 1.25rem;
}

.wd-icon {
font-size: 2rem;
line-height: 1;
opacity: .75;
transition: opacity .3s, transform .4s cubic-bezier(.34,1.56,.64,1);
filter: drop-shadow(0 0 8px rgba(201,168,76,.3));
}
.wd-card:hover .wd-icon {
opacity: 1;
transform: scale(1.15) rotate(-5deg);
}

.wd-lnc-logo {
height: 28px;
width: auto;
opacity: .65;
transition: opacity .3s;
filter: brightness(1.1);
}
.wd-card:hover .wd-lnc-logo { opacity: 1; }

/* Label */
.wd-label {
display: inline-block;
font-family: var(--ff-display);
font-size: .55rem;
font-weight: 600;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold-dim);
margin-bottom: .75rem;
opacity: .85;
}

/* Thin animated rule */
.wd-rule {
width: 24px;
height: 1.5px;
background: linear-gradient(90deg, var(--gold), transparent);
margin-bottom: 1rem;
transition: width .45s cubic-bezier(.25,.8,.25,1);
}
.wd-card:hover .wd-rule { width: 52px; }

/* Heading-size card title */
.wd-card-heading {
font-family: var(--ff-display);
font-size: clamp(1.1rem, 2.8vw, 1.4rem);
font-weight: 700;
color: var(--cream);
margin-bottom: 1rem;
line-height: 1.25;
letter-spacing: -.01em;
}

.wd-body p {
font-size: .87rem;
line-height: 1.8;
color: var(--text-dim);
transition: color .35s;
}
.wd-card:hover .wd-body p { color: var(--text); }

.wd-verse {
margin-top: 1.25rem;
padding: .9rem 1.1rem;
border-left: 2px solid var(--gold-dim);
background: rgba(201,168,76,.05);
border-radius: 0 8px 8px 0;
font-style: italic;
font-size: .82rem;
color: var(--cream);
line-height: 1.7;
transition: background .35s, border-color .35s, transform .35s;
}
.wd-card:hover .wd-verse {
background: rgba(201,168,76,.09);
border-color: var(--gold);
transform: translateX(2px);
}

.wd-verse cite {
display: block;
margin-top: .45rem;
font-style: normal;
font-size: .65rem;
letter-spacing: .12em;
color: var(--gold);
font-family: var(--ff-display);
font-weight: 600;
text-transform: uppercase;
opacity: .85;
}

/* ── Mobile ── */
@media (max-width: 640px) {
.worship-duality {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.wd-card { padding: 2rem 1.5rem 1.75rem; }
.wd-card:hover { transform: translateY(-2px); }
.worship-duality-section { padding: 3.5rem 1.25rem 4rem; }
}

/* Keep the old .wd-divider rule but hidden */
.wd-divider { display: none !important; }


/* ══════════════════════════════════════════
 VISITORS — PER-GROUP CAROUSEL WITH DOTS
══════════════════════════════════════════ */
.vgc-groups {
display: flex;
flex-direction: column;
gap: 4rem;
}

/* Each group: image on left, meta+dots on right (desktop)
 Stacked on mobile */
.vgc-group {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 2.5rem;
align-items: start;
}

@media (max-width: 768px) {
.vgc-group {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
}

/* ── Track wrap: the image carousel ── */
.vgc-track-wrap {
position: relative;
border-radius: 10px;
overflow: hidden;
background: var(--dark-card);
aspect-ratio: 16 / 10;
box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.vgc-track {
position: relative;
width: 100%;
height: 100%;
}

.vgc-slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity .55s ease;
pointer-events: none;
}

.vgc-slide.active {
opacity: 1;
pointer-events: all;
}

.vgc-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* Arrow buttons — only show on multi-image groups */
.vgc-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(10,8,6,.6);
border: 1px solid rgba(201,168,76,.25);
color: var(--gold);
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 1rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background .2s, opacity .2s;
z-index: 3;
opacity: 0;
backdrop-filter: blur(4px);
}

.vgc-track-wrap:hover .vgc-arrow { opacity: 1; }
.vgc-arrow:hover { background: rgba(201,168,76,.2); }
.vgc-prev { left: .75rem; }
.vgc-next { right: .75rem; }

/* Hide arrows when only 1 slide */
.vgc-track-wrap[data-single="true"] .vgc-arrow { display: none; }

/* Caption bar at bottom of image */
.vgc-caption-bar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: .6rem 1rem;
background: linear-gradient(transparent, rgba(5,4,2,.82));
display: flex;
align-items: center;
justify-content: space-between;
z-index: 2;
}

.vgc-caption-text {
font-size: .72rem;
color: rgba(245,237,216,.75);
line-height: 1.4;
flex: 1;
}

.vgc-counter {
font-family: var(--ff-display);
font-size: .62rem;
font-weight: 700;
letter-spacing: .1em;
color: var(--gold-dim);
margin-left: .75rem;
white-space: nowrap;
}

/* ── Meta block: dots + title + desc ── */
.vgc-meta {
padding-top: .5rem;
}

/* Dot navigation */
.vgc-dots {
display: flex;
gap: .45rem;
align-items: center;
margin-bottom: 1.1rem;
min-height: 10px;
}

.vgc-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--border-mid);
border: none;
cursor: pointer;
transition: background .25s, transform .25s, width .25s;
padding: 0;
flex-shrink: 0;
}

.vgc-dot.active {
background: var(--gold);
width: 22px;
border-radius: 4px;
transform: none;
}

/* Hide dots when only 1 slide */
.vgc-dots:empty,
.vgc-dots[data-single="true"] { display: none; }

.vgc-date {
display: inline-block;
font-family: var(--ff-display);
font-size: .62rem;
font-weight: 700;
letter-spacing: .15em;
text-transform: uppercase;
color: var(--gold-dim);
border: 1px solid var(--border);
padding: .18rem .55rem;
border-radius: 3px;
margin-bottom: .7rem;
}

.vgc-title {
font-family: var(--ff-display);
font-size: 1.1rem;
font-weight: 700;
color: var(--cream);
margin-bottom: .65rem;
line-height: 1.3;
}

.vgc-desc {
font-size: .875rem;
color: var(--text-dim);
line-height: 1.75;
}

/* Mobile: image fills width nicely, meta below */
@media (max-width: 768px) {
.vgc-track-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}
.vgc-arrow { opacity: 1; width: 34px; height: 34px; font-size: .85rem; }
.vgc-meta { padding-top: 0; }
.vgc-dots { margin-bottom: .85rem; }
}

/* Fix visitors CTA spacing */
.visitors-cta { margin-top: 3rem; }

/* ══════════════════════════════════════════
 WEEKLY UPDATE TABS  (.uw-*)
 Used by JSON-rendered updates with mode:"weekly"
══════════════════════════════════════════ */

/* Tab bar */
.uw-tabs {
display: flex;
gap: .5rem;
flex-wrap: wrap;
margin-bottom: 1.25rem;
}

.uw-tab {
background: transparent;
border: 1px solid var(--border-mid);
color: var(--text-dim);
font-family: var(--ff-display);
font-size: .75rem;
font-weight: 600;
letter-spacing: .08em;
text-transform: uppercase;
padding: .45rem 1.1rem;
border-radius: 2px;
cursor: pointer;
transition: background .25s, color .25s, border-color .25s;
}

.uw-tab:hover {
border-color: var(--gold-dim);
color: var(--gold-dim);
}

.uw-tab.active {
background: var(--gold);
border-color: var(--gold);
color: var(--black);
}

/* Panels */
.uw-panels {
width: 100%;
}

.uw-panel[hidden] {
display: none;
}

/* ── Mobile tweaks ── */
@media (max-width: 600px) {
.uw-tabs { gap: .35rem; }
.uw-tab  { font-size: .7rem; padding: .4rem .85rem; }
}