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

:root {
  --white:   #fefefe;
  --purple:  #6c3375;
  --purple-dark: #4e2556;
  --purple-light: #8a4494;
  --gold:    #f39a1a;
  --gold-light: #f9bf6a;
  --text-dark: #1a0d1e;
  --text-mid:  #5a3d62;
  --text-light: #9b7ea3;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'DM Sans', sans-serif;
  --elegant: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(254,254,254,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108,51,117,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(108,51,117,0.12); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.nav-logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--purple);
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--purple-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(108,51,117,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(78,37,86,0.8) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(243,154,26,0.15) 0%, transparent 40%),
    linear-gradient(135deg, #1a0d1e 0%, #4e2556 40%, #6c3375 70%, #3a1640 100%);
}

.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px; height: 220px;
  opacity: 0.08;
}
.hero-cross::before, .hero-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 4px;
}
.hero-cross::before { width: 24px; height: 100%; left: 50%; transform: translateX(-50%); }
.hero-cross::after  { width: 100%; height: 24px; top: 35%; }

.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(254,254,254,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 5vw;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 6px 20px;
  border: 1px solid rgba(243,154,26,0.35);
  border-radius: 50px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--elegant);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: rgba(254,254,254,0.7);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.1s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,154,26,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(254,254,254,0.4);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(254,254,254,0.08); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fadeUp 1.4s 0.5s ease both;
}
.hero-scroll span {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(254,254,254,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(254,254,254,0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ─── ADDRESS STRIP ─── */
.strip {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.strip a { color: var(--gold); text-decoration: none; font-weight: 600; }
.strip a:hover { text-decoration: underline; }

/* ─── SECTIONS ─── */
.section { padding: 6rem 5vw; }
.section-sm { padding: 4rem 5vw; }

.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 780px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--purple-dark);
  margin-bottom: 1.2rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

/* ─── WELCOME ─── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.img-placeholder {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder.tall { grid-row: span 2; }
.img-placeholder svg { opacity: 0.25; }
.img-ph-1 { height: 280px; }
.img-ph-2 { height: 134px; }
.img-ph-3 { height: 134px; }

.img-placeholder.ph1 {
  background: linear-gradient(135deg, #6c3375 0%, #8a4494 100%);
  position: relative;
}
.img-placeholder.ph2 { background: linear-gradient(135deg, #4e2556 0%, #6c3375 100%); }
.img-placeholder.ph3 { background: linear-gradient(135deg, #3a1640 0%, #4e2556 100%); }

.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.img-icon {
  position: relative; z-index: 1;
  font-size: 3rem; opacity: 0.3;
}

.welcome-text .btn-primary { margin-top: 2rem; }
.stat-row {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── SERVICES ─── */
.services { background: #faf6fb; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-body { margin: 0 auto; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(108,51,117,0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(108,51,117,0.12); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,51,117,0.08);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-time {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.9rem; color: var(--text-light); }

/* ─── MINISTRIES ─── */
.ministries-header { margin-bottom: 3.5rem; }
.min-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.min-card {
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
}
.min-card:hover { transform: translateY(-6px); }
.min-card.purple { background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%); color: var(--white); }
.min-card.gold   { background: linear-gradient(135deg, #c47b10 0%, var(--gold) 100%); color: var(--white); }
.min-card.light  { background: #faf6fb; color: var(--text-dark); border: 1px solid rgba(108,51,117,0.12); }
.min-card.dark   { background: var(--text-dark); color: var(--white); }

.min-icon { font-size: 2rem; margin-bottom: 1rem; }
.min-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.min-sub { font-size: 0.82rem; opacity: 0.75; }
.min-freq {
  position: absolute; bottom: 1.5rem; right: 1.8rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.55;
}

/* ─── ABOUT BANNER ─── */
.about-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #8a4494 100%);
  position: relative; overflow: hidden;
}
.about-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.about-quote {
  font-family: var(--elegant);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
}
.about-quote strong {
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}
.about-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── GIVE ─── */
.give-section { background: #fff9f0; text-align: center; }
.give-section .section-title { color: var(--purple-dark); }
.give-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.give-icon svg { width: 28px; height: 28px; fill: white; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(254,254,254,0.7);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px; margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-family: var(--elegant);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: rgba(254,254,254,0.5);
}
.footer-contact { font-size: 0.88rem; line-height: 2; }
.footer-contact a { color: var(--gold); text-decoration: none; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; text-decoration: none;
  color: rgba(254,254,254,0.6); font-size: 0.9rem;
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(254,254,254,0.35);
}
.social-row { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer;
}
.social-link:hover { border-color: var(--gold); background: rgba(243,154,26,0.15); }
.social-link svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-images { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
