@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a2f5a;
  --navy-light: #243d72;
  --gold: #c8952a;
  --gold-light: #e8b84b;
  --gold-pale: #f5dfa0;
  --cream: #fdf6e8;
  --white: #ffffff;
  --gray-light: #f0ede6;
  --gray-mid: #8a8a8a;
  --text-dark: #1a1a2e;
  --green-accent: #2d6a4f;
  --purple-accent: #6b3fa0;
  --orange-accent: #e07b29;
  --teal-accent: #1a7a8a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,31,61,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px; width: 52px; border-radius: 50%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--gold-pale);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: #cdd8f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--gold-light); background: rgba(200,149,42,0.12); }

.nav-donate-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 25px !important;
}
.nav-donate-btn:hover { background: var(--gold-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2847 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,149,42,0.08) 0%, transparent 70%);
}

.hero-faith-symbols {
  display: flex; gap: 1.5rem; margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.faith-dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  animation: pulse 3s ease-in-out infinite;
}
.faith-dot:nth-child(1) { background: #c8952a; animation-delay: 0s; }
.faith-dot:nth-child(2) { background: #6b3fa0; animation-delay: 0.4s; }
.faith-dot:nth-child(3) { background: #2d8a4e; animation-delay: 0.8s; }
.faith-dot:nth-child(4) { background: #1a6fa0; animation-delay: 1.2s; }
.faith-dot:nth-child(5) { background: #e07b29; animation-delay: 1.6s; }

@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-logo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease both 0.2s;
  filter: drop-shadow(0 8px 30px rgba(200,149,42,0.3));
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease both 0.3s;
}

.hero h1 span { color: var(--gold-light); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold-pale);
  font-style: italic;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both 0.5s;
  font-family: 'Playfair Display', serif;
}

.hero-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.75rem;
  animation: fadeIn 0.8s ease both 0.6s;
}

.hero-text {
  max-width: 680px;
  font-size: 1.1rem;
  color: #cdd8f0;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease both 0.7s;
}

.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.8s ease both 0.9s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(200,149,42,0.4);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,149,42,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: linear-gradient(135deg, #8b1a1a, #b22222);
  color: white;
  padding: 1.25rem 2rem;
  text-align: center;
  position: relative;
}

.alert-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.alert-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.alert-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.alert-text strong { font-weight: 700; }

.alert-link {
  color: var(--gold-pale);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  color: #4a4a6a;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ── MISSION CARDS ── */
.mission-section { background: var(--white); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(15,31,61,0.12);
}

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

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.mission-card p { color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ── FEATURED PROJECT ── */
.featured-project {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
}

.project-card-featured {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,149,42,0.3);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #b22222;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card-featured h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.project-card-featured p {
  color: #cdd8f0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.project-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.project-stat {
  text-align: center;
}

.project-stat .number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.project-stat .label {
  font-size: 0.8rem;
  color: #9aabc8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-visual {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(200,149,42,0.2);
  text-align: center;
}

.church-icon-large {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}

.progress-container { margin-top: 1.5rem; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: #9aabc8; margin-bottom: 0.5rem;
}
.progress-bar {
  height: 10px; background: rgba(255,255,255,0.1); border-radius: 5px; overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 5px;
  width: 0%;
  transition: width 1.5s ease;
}

/* ── DONATE ── */
.donate-section { background: var(--cream); }

.donate-toggle {
  display: flex;
  background: var(--white);
  border-radius: 35px;
  padding: 4px;
  border: 2px solid #ddd;
  width: fit-content;
  margin-bottom: 2.5rem;
}

.toggle-btn {
  padding: 0.6rem 1.75rem;
  border-radius: 30px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-mid);
  transition: all 0.25s;
}

.toggle-btn.active {
  background: var(--navy);
  color: white;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.tier-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.tier-card:hover, .tier-card.selected {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,149,42,0.2);
}

.tier-card.featured-tier {
  background: var(--navy);
  color: white;
}

.tier-card.featured-tier .tier-name,
.tier-card.featured-tier .tier-desc { color: #cdd8f0; }

.tier-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.tier-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.tier-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0.25rem 0;
}

.tier-desc {
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-style: italic;
  line-height: 1.4;
}

.donate-action {
  margin-top: 2.5rem;
  text-align: center;
}

.donate-note {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 0.75rem;
}

/* ── FORMS ── */
.form-section { background: var(--white); }
.dark-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  max-width: 640px;
  box-shadow: 0 8px 40px rgba(15,31,61,0.1);
}

.form-card.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,149,42,0.25);
  color: white;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.dark-card label { color: #cdd8f0; }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0d8c8;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.dark-card input, .dark-card select, .dark-card textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,149,42,0.3);
  color: white;
}

.dark-card input::placeholder { color: rgba(255,255,255,0.4); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2rem;
  border-radius: 35px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Source Sans 3', sans-serif;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,42,0.4);
}

/* ── ROLE SELECTOR ── */
.role-selector { margin: 1.5rem 0; }
.role-selector-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.dark-card .role-selector-label { color: #cdd8f0; }

.role-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.role-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.role-circle input[type="checkbox"] { display: none; }

.role-circle-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(200,149,42,0.35);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
}

.role-circle input:checked + .role-circle-btn {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,149,42,0.4);
  transform: scale(1.08);
}

.role-circle-name {
  font-size: 0.72rem;
  color: #9aabc8;
  text-align: center;
  max-width: 68px;
  line-height: 1.3;
}

.dark-card .role-circle-btn {
  background: rgba(255,255,255,0.07);
}

/* ── EDUCATION ── */
.education-section { background: var(--gray-light); }

.faith-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.faith-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  border-top: 4px solid;
  transition: transform 0.25s, box-shadow 0.25s;
}

.faith-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.faith-card:nth-child(1) { border-color: var(--gold); }
.faith-card:nth-child(2) { border-color: var(--purple-accent); }
.faith-card:nth-child(3) { border-color: var(--green-accent); }
.faith-card:nth-child(4) { border-color: var(--teal-accent); }
.faith-card:nth-child(5) { border-color: var(--orange-accent); }
.faith-card:nth-child(6) { border-color: #c0392b; }

.faith-card-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }

.faith-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faith-card p { font-size: 0.88rem; color: #555; line-height: 1.7; }

.shared-values {
  margin-top: 3.5rem;
  background: var(--navy);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  text-align: center;
}

.shared-values h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.value-pill {
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.3);
  color: var(--gold-pale);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── PROJECTS PAGE ── */
.projects-section { background: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(200,149,42,0.15);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15,31,61,0.15);
}

.project-card-header {
  padding: 1.5rem;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-faith-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.project-card-header h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.05rem;
  line-height: 1.3;
}

.project-card-header .location {
  font-size: 0.8rem;
  color: var(--gold-pale);
}

.project-card-body { padding: 1.5rem; }

.project-card-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-active { background: #fff3cd; color: #856404; }
.status-complete { background: #d4edda; color: #155724; }
.status-upcoming { background: #cce5ff; color: #004085; }

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-block p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.quote-block {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  position: relative; z-index: 1;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-pale);
  font-style: normal;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #9aabc8;
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: #9aabc8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-tagline {
  color: var(--gold-pale);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAGE HERO VARIANTS ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: #cdd8f0;
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .project-card-featured { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0.25rem; border-bottom: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-faith-symbols { gap: 0.75rem; }
  .faith-dot { width: 36px; height: 36px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .role-circles { gap: 0.5rem; }
  .role-circle-btn { width: 54px; height: 54px; font-size: 1.2rem; }
}

/* ── HERO WITH REAL IMAGE ── */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.12;
}

.hero > * { position: relative; z-index: 1; }

/* ── LARGER LOGO EVERYWHERE ── */
.nav-logo img {
  height: 62px !important;
  width: 62px !important;
}

.hero-logo {
  width: 200px !important;
  height: 200px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 8px 30px rgba(200,149,42,0.25)) !important;
  background: transparent !important;
}

footer .footer-brand img {
  height: 56px !important;
  width: 56px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

/* ── PHOTO SECTIONS ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 320px;
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-strip-item:hover img { transform: scale(1.05); }

.photo-strip-item .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,31,61,0.85));
  color: white;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── ABOUT PAGE IMAGE ── */
.about-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15,31,61,0.2);
}

/* ── PROJECT CARD PHOTO ── */
.project-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ── HERO OVERLAY TWEAK ── */
.hero {
  background: linear-gradient(160deg, rgba(15,31,61,0.97) 0%, rgba(26,47,90,0.97) 50%, rgba(13,40,71,0.97) 100%) !important;
}

/* ── ICON SYSTEM ── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

.icon-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mission card icons */
.mission-card .icon-circle {
  width: 52px; height: 52px;
  background: rgba(200,149,42,0.12);
  border: 1.5px solid rgba(200,149,42,0.3);
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.mission-card .icon-circle svg { width: 22px; height: 22px; }

/* Role circle icons */
.role-circle-btn .icon svg { width: 22px; height: 22px; }

/* Project faith icon */
.project-faith-icon .icon svg { width: 22px; height: 22px; color: var(--navy); }

/* Contact reason icons */
.contact-reason-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(200,149,42,0.2);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-reason-icon svg { width: 22px; height: 22px; }

/* Faith card icons */
.faith-card-symbol {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.faith-card-symbol svg { width: 24px; height: 24px; }

/* ── PROJECTS: REMOVE RED, USE AMBER/GOLD ACTIVE STATE ── */
.featured-project-active {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2245 100%);
  padding: 4rem 2rem;
}

.project-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,149,42,0.2);
  border: 1px solid rgba(200,149,42,0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-active-dot {
  width: 7px; height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* Status badges - no red */
.status-active { background: rgba(200,149,42,0.15); color: #a07020; border: 1px solid rgba(200,149,42,0.3); }
.status-complete { background: rgba(45,106,79,0.12); color: #1a5c3a; border: 1px solid rgba(45,106,79,0.3); }
.status-upcoming { background: rgba(26,122,138,0.12); color: #0f6070; border: 1px solid rgba(26,122,138,0.3); }

/* Alert banner - navy gold instead of red */
.alert-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy)) !important;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(200,149,42,0.3);
}
.alert-badge {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── PHOTO FIX ── */
.photo-strip-item img {
  background: var(--gray-light);
}

/* Role circle SVG icon rendering */
.role-circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.role-circle-btn svg {
  stroke: rgba(200,149,42,0.8);
  transition: stroke 0.2s;
}
.role-circle input:checked + .role-circle-btn svg {
  stroke: var(--navy);
}

/* Mission card icon-circle */
.mission-card .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}
