/* ============================================================
   LIVING LOVE GLOBAL MINISTRIES — style.css
   All files flat in root. No subfolders.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #1a2f5e;
  --navy-light: #2a4080;
  --gold:       #b8922a;
  --gold-light: #d4a93c;
  --gold-pale:  rgba(184,146,42,0.15);
  --cream:      #f8f5ef;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --border:     #e8e4da;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --shadow:    0 4px 24px rgba(13,27,62,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); border: none; cursor: pointer; }
textarea, input, select { font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 760px; }
section { padding: 5rem 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.gold-rule--left { margin-left: 0; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,146,42,0.35);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost::after { content: ' →'; }
.btn--ghost:hover { color: var(--gold-light); letter-spacing: 0.06em; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: #fff;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(13,27,62,0.1);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.2rem;
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo-main { color: var(--navy); }
#navbar.scrolled .nav-logo-sub  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: #fff; }
#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover { color: var(--navy); }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
}
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f5e 50%, #0f2248 100%);
  z-index: -2;
}
body > section:first-of-type,
.hero-wrapper {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f5e 50%, #0f2248 100%);
}
/* Global hero bg */
.hero-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f5e 50%, #0f2248 100%);
  z-index: -2;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(184,146,42,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(42,64,128,0.4) 0%, transparent 50%);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 0.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50%       { transform: scaleX(1.4); opacity: 0.7; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f5e 60%, #0f2248 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 30%, rgba(184,146,42,0.1) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(42,64,128,0.3) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-top: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; }

/* ── Welcome Band ── */
.welcome-band { background: var(--white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.welcome-img-wrap { position: relative; }
.welcome-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;
}
.welcome-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founders-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.founders-badge-icon { color: var(--gold); font-size: 1.1rem; }
.founders-badge-text strong { display: block; font-size: 0.88rem; color: var(--navy); }
.founders-badge-text span { font-size: 0.78rem; color: var(--text-light); }

/* ── Stats / Service Times Grid ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-item { text-align: center; padding: 0.5rem 0; }

/* ── Features Grid ── */
.features-section { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }

/* ── CTA Band ── */
.cta-band {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.cta-band .container { max-width: 680px; }
.cta-band h2 { color: var(--white); margin: 0.5rem 0 1rem; }
.cta-band p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* ── Testimonies ── */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border);
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.testi-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Full testimonies page */
.testi-full-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}
.testi-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}
.testi-full-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testi-full-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── About Story Grid ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}
.story-img-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── Founders ── */
.founders-section { background: var(--cream); }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border: 1px solid var(--border);
}
.founder-info h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.founder-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.founder-info p { font-size: 0.9rem; }

/* ── Values ── */
.values-section { background: var(--navy); }
.values-section .section-header h2 { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.08); }
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ── Mission Items ── */
.mission-items { display: flex; flex-direction: column; gap: 1rem; }
.mission-item { display: flex; align-items: flex-start; gap: 1rem; }
.mission-item-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.mission-item-text { font-size: 0.9rem; margin: 0; }

/* ── Departments ── */
.dept-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.dept-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dept-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.dept-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.dept-card p { font-size: 0.9rem; }

/* ── Missions ── */
.what-we-do-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.do-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.do-icon { font-size: 2rem; flex-shrink: 0; }
.do-text h4 { margin-bottom: 0.4rem; }
.do-text p { font-size: 0.9rem; margin: 0; }
.mission-report {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.mission-report .eyebrow { color: var(--gold-light); }
.mission-report h3 { color: var(--white); margin-bottom: 0.75rem; }
.mission-report p { color: rgba(255,255,255,0.65); }

/* ── Give Page ── */
.give-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.bank-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.bank-card h3 { color: var(--white); margin: 0.5rem 0 1.75rem; }
.bank-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bank-detail:last-of-type { border-bottom: none; }
.bank-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.bank-detail-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.giving-options-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.give-option {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.give-option:hover { border-color: var(--gold); background: var(--white); }
.give-option-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.give-option h4 { font-size: 0.95rem; color: var(--navy); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-item-text p { font-size: 0.9rem; margin: 0; color: var(--text-mid); }
.map-placeholder {
  background: var(--cream);
  border-radius: var(--radius);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  border: 2px dashed var(--border);
}

/* ── Blog ── */
.blog-full-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cat-pill {
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.cat-pill.active, .cat-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-list-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-list-thumb { min-height: 180px; background: var(--cream); }
.blog-list-body { padding: 1.5rem 1.5rem 1.5rem 0; }
.blog-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-list-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-list-body p { font-size: 0.88rem; margin-bottom: 1rem; }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-navy .form-group label { color: rgba(255,255,255,0.65); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

/* Navy form variant */
.form-navy .form-group input,
.form-navy .form-group textarea,
.form-navy .form-group select {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-navy .form-group input::placeholder,
.form-navy .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-navy .form-group input:focus,
.form-navy .form-group textarea:focus,
.form-navy .form-group select:focus { border-color: var(--gold); }
.form-navy .form-group select option { background: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-main { font-size: 1.2rem; display: block; margin-bottom: 0.25rem; }
.footer-brand .nav-logo-sub  { display: block; }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.45); }
footer h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-schedule { display: flex; flex-direction: column; gap: 0.65rem; }
.schedule-row { font-size: 0.82rem; }
.schedule-row strong { display: block; color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.schedule-row span { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Admin ── */
.admin-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--navy);
}
.login-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
}
.login-card h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.login-card > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 2rem; }
.login-card .nav-logo-main { color: var(--white); display: block; margin-bottom: 0.25rem; }
.login-card .nav-logo-sub  { color: var(--gold-light); display: block; margin-bottom: 2rem; }

/* Dashboard elements */
.dashboard-wrap { width: 100%; max-width: 860px; }
.dash-header {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.dash-header h3 { color: var(--white); font-size: 0.95rem; margin: 0; }
.dash-body { padding: 1.5rem; }
.dash-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.dash-tab {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
}
.dash-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.post-form-area { display: none; }
.post-form-area.active { display: block; }
.posts-list { display: none; }
.posts-list.active { display: block; }
.post-item {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}
.post-item-title { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.post-item-meta { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.post-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.post-actions button {
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-edit  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.btn-delete { background: rgba(200,50,50,0.2); color: #ff7777; }
.status-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.status-published { background: rgba(42,122,74,0.3); color: #7fffa0; }
.status-draft     { background: rgba(184,146,42,0.2); color: var(--gold-light); }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .story-grid,
  .welcome-grid,
  .give-grid,
  .contact-grid,
  .founders-grid,
  .blog-full-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .features-grid,
  .dept-grid,
  .values-grid,
  .testi-grid,
  .testi-full-grid { grid-template-columns: 1fr; }

  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-thumb { min-height: 160px; }
  .giving-options-grid { grid-template-columns: repeat(2,1fr); }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .testi-full-card[style*="grid-column"] { grid-column: unset !important; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1rem 4rem; }
  .page-hero { padding: 7rem 0 4rem; }
  .giving-options-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
