:root {
  --green-deep: #009444;
  --green-dark: #00522A;
  --green-darker: #003D1F;
  --royal-blue: #003399;
  --royal-blue-dark: #002266;
  --crimson: #CC0000;
  --crimson-dark: #A30000;
  --meadow: #008000;
  --gold: #D4A017;
  --gold-light: #E8C766;
  --white: #FFFFFF;
  --ink: #14201A;
  --neutral: #F6F7F4;
  --green-tint: #E5F5EB;
  --blue-tint: #E8EEFB;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { font-size: 18px; scroll-behavior:smooth; }
body { font-family:'Manrope', sans-serif; color:var(--ink); background:var(--white); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,.display { font-family:'Fraunces', serif; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { max-width:1180px; margin:0 auto; padding:0 24px; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in { opacity:1; transform:none; }

/* Header brand */
header { position:sticky; top:0; z-index:50; background:rgba(255,255,255,0.9); backdrop-filter:blur(10px); border-bottom:1px solid #EAEAE6; }
.nav-row { display:flex; align-items:center; justify-content:space-between; padding:18px 24px; max-width:1180px; margin:0 auto; }
.brand { font-family:'Fraunces', serif; font-weight:600; font-size:1.4rem; color:var(--green-dark); }
.brand span { color:var(--gold); font-style:italic; font-weight:500; }
nav ul { display:flex; gap:30px; list-style:none; }
nav a { font-size:1.02rem; font-weight:600; color:var(--ink); position:relative; }
nav a::after { content:''; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--gold); transition:width .25s; }
nav a:hover { color:var(--green-dark); }
nav a:hover::after { width:100%; }
nav a.active { color:var(--green-dark); }
nav a.active::after { width:100%; }
.visit-btn { background:var(--royal-blue); color:#fff; padding:13px 24px; border-radius:999px; font-weight:700; transition:background .2s, transform .2s; }
.visit-btn:hover { background:var(--royal-blue-dark); transform:translateY(-1px); }
.nav-desktop { display:flex; align-items:center; gap:34px; }
.menu-toggle { display:none; background:none; border:none; font-size:1.6rem; cursor:pointer; color:var(--green-dark); }
.mobile-menu { display:none; flex-direction:column; background:#fff; border-top:1px solid #EAEAE6; padding:12px 24px 20px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { padding:12px 0; font-weight:600; border-bottom:1px solid #F0F0EC; }

/* Page hero (interior pages) */
.page-hero { background:linear-gradient(190deg, var(--royal-blue-dark), var(--royal-blue)); color:#fff; text-align:center; padding:90px 24px 70px; }
.page-hero .eyebrow { color:var(--gold-light); }
.page-hero h1 { font-size:clamp(2.2rem,5vw,3.2rem); font-weight:600; margin-top:10px; }
.page-hero p { margin-top:14px; font-size:1.15rem; color:#E9F7EE; max-width:560px; margin-left:auto; margin-right:auto; }

/* Home hero */
.hero { position:relative; min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#fff; overflow:hidden; padding:80px 24px 90px;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, #0044CC 0%, transparent 60%), linear-gradient(190deg, var(--royal-blue-dark) 0%, var(--royal-blue) 50%, #0033AA 100%); }
.particle-canvas { position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; }
.rays { position:absolute; inset:0; opacity:.25; pointer-events:none; background:repeating-linear-gradient(100deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 90px); z-index:1; }

.denom-heading { position:relative; z-index:2; font-family:'Fraunces', serif; font-weight:600; font-size:clamp(1.5rem,3.2vw,2rem); line-height:1.3; margin-bottom:26px; }

.stats-caption { position:relative; z-index:2; font-size:.85rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); font-weight:800; margin-bottom:6px; }
.stats-source { position:relative; z-index:2; font-size:.85rem; color:rgba(255,255,255,0.55); margin-top:10px; font-style:italic; }
.hero-divider { position:relative; z-index:2; width:120px; height:1px; background:rgba(255,255,255,0.2); margin:38px auto; }

/* Weekly banner — premium swappable flyer frame */
.weekly-banner { position:relative; z-index:2; max-width:520px; margin:38px auto 0; }
.wb-tag { display:inline-block; background:linear-gradient(135deg, var(--gold-light), var(--gold)); color:#1A1400; font-weight:800; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; padding:7px 18px; border-radius:999px; margin-bottom:14px; }
.wb-frame { position:relative; aspect-ratio:4/5; border-radius:22px; overflow:hidden; background:rgba(255,255,255,0.06); backdrop-filter:blur(6px); border:1.5px solid rgba(232,199,102,0.5); box-shadow:0 20px 50px rgba(0,17,68,0.35), inset 0 0 0 1px rgba(255,255,255,0.06); }
.wb-frame img { width:100%; height:100%; object-fit:cover; }
.wb-placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; height:100%; padding:32px; }
.wb-icon { font-size:2.4rem; margin-bottom:12px; opacity:.85; }
.wb-placeholder p { color:#DCE6FA; font-size:.95rem; max-width:300px; line-height:1.6; }
.wb-placeholder strong { color:var(--gold-light); }

.parish-name { position:relative; z-index:2; font-family:'Fraunces', serif; font-weight:600; font-size:clamp(2.6rem,6vw,4.4rem); letter-spacing:-0.02em; line-height:1.05; margin-top:18px; margin-bottom:44px; }
.parish-name em { color:var(--gold-light); font-style:italic; font-weight:500; }

/* Blank slot reserved for the RCCG logo — replace background with your logo image */
.logo-placeholder { width:120px; height:120px; margin:0 auto 26px; border-radius:50%; background:rgba(255,255,255,0.06); border:2px dashed rgba(255,255,255,0.25); position:relative; z-index:2; }
.logo-placeholder img { width:100%; height:100%; object-fit:contain; border-radius:50%; }
.verse-mark { font-family:'Fraunces', serif; font-size:3.2rem; color:var(--gold-light); line-height:0; position:relative; z-index:2; opacity:.8; }
.verse { font-family:'Fraunces', serif; font-style:italic; font-weight:300; font-size:clamp(1.35rem,2.7vw,1.75rem); max-width:720px; margin:6px auto 12px; color:#F5FBF7; line-height:1.55; position:relative; z-index:2; }
.verse-ref { font-size:1.02rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); font-weight:700; margin-bottom:44px; position:relative; z-index:2; }
.hero h1 { font-size:clamp(3rem,7vw,5.4rem); font-weight:600; letter-spacing:-0.02em; line-height:1.02; position:relative; z-index:2; }
.hero h1 em { color:var(--gold-light); font-style:italic; font-weight:500; }
.hero-sub { margin-top:20px; font-size:1.25rem; color:#E9F7EE; font-weight:500; max-width:560px; margin-left:auto; margin-right:auto; position:relative; z-index:2; }
.hero-cta { margin-top:38px; position:relative; z-index:2; }
.identity-strip { position:relative; z-index:2; display:flex; justify-content:center; flex-wrap:wrap; font-size:1.05rem; font-weight:700; letter-spacing:.05em; color:#EAF9F0; margin-bottom:20px; }
.identity-strip span { padding:0 18px; border-right:1px solid rgba(255,255,255,.25); }
.identity-strip span:last-child { border-right:none; color:var(--gold-light); }
.wave { display:block; width:100%; height:80px; margin-top:-2px; }

/* Impact stats block */
.impact-stats { position:relative; z-index:2; display:flex; justify-content:center; gap:0; flex-wrap:wrap; margin-bottom:2px; }
.impact-stat { padding:0 26px; text-align:center; border-right:1px solid rgba(255,255,255,.2); }
.impact-stat:last-child { border-right:none; }
.impact-stat .num { font-family:'Fraunces', serif; font-weight:700; font-size:clamp(1.8rem,4vw,2.6rem); color:#fff; line-height:1; }
.impact-stat .num span { color:var(--gold-light); }
.impact-stat .lbl { margin-top:8px; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; color:#CFDBF5; font-weight:700; }

/* Congregation photo section */
/* Congregation photo — removed per request, no reserved slot */

/* Gallery teaser */
.gallery-teaser { background:var(--neutral); padding:90px 24px; text-align:center; }
.teaser-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; max-width:900px; margin:40px auto 34px; }
.teaser-tile { aspect-ratio:1/1; border-radius:14px; background:linear-gradient(135deg, var(--green-tint), #E0EDE4); display:flex; align-items:center; justify-content:center; color:var(--green-dark); font-size:1.4rem; }
.tap-more-btn { display:inline-flex; align-items:center; gap:10px; background:var(--green-dark); color:#fff; padding:16px 34px; border-radius:999px; font-weight:800; font-size:1.05rem; transition:background .2s, transform .2s; }
.tap-more-btn:hover { background:var(--green-deep); transform:translateY(-2px); }

/* Weekly banner — premium, swappable image slot */
.weekly-banner-section { background:#fff; padding:80px 24px 90px; text-align:center; }
.banner-frame { max-width:900px; margin:40px auto 0; border-radius:26px; overflow:hidden; position:relative; aspect-ratio:16/10; background:linear-gradient(135deg, var(--blue-tint), #fff); border:2px solid var(--royal-blue); box-shadow:0 24px 60px rgba(0,51,153,.14); }
.banner-frame::before { content:''; position:absolute; inset:8px; border-radius:20px; border:1px dashed rgba(0,51,153,.3); pointer-events:none; }
.banner-frame-inner { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:30px; text-align:center; }
.banner-frame-inner .icon { font-size:3rem; margin-bottom:14px; }
.banner-frame-inner p { color:#3A4A66; font-size:1.05rem; max-width:420px; }
.banner-frame img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* Leadership — horizontal majestic layout */
.leader-row { display:flex; align-items:center; gap:36px; max-width:680px; margin:0 auto 28px; background:linear-gradient(120deg,#fff, var(--green-tint)); border:1px solid #E1E5DF; border-radius:22px; padding:28px 34px; box-shadow:0 16px 40px rgba(0,82,42,.08); text-align:left; }
.leader-row.reverse { flex-direction:row-reverse; text-align:right; }
.leader-photo-lg { width:170px; height:170px; border-radius:50%; flex-shrink:0; background:linear-gradient(135deg, var(--green-tint), #fff); border:4px solid var(--gold); display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-size:2.6rem; color:var(--green-dark); font-weight:600; box-shadow:0 14px 34px rgba(0,82,42,.16); position:relative; overflow:hidden; }
.leader-photo-lg::before { content:''; position:absolute; inset:-9px; border-radius:50%; border:1px solid rgba(212,160,23,.4); }
.leader-photo-lg img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.leader-text .rank { font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); font-weight:800; margin-bottom:4px; }
.leader-text h3 { font-size:1.4rem; font-weight:700; margin-bottom:3px; }
.leader-text p { color:#5C6660; }

.btn-gold { display:inline-block; background:linear-gradient(135deg, var(--crimson), var(--crimson-dark)); color:#fff; padding:18px 38px; border-radius:999px; font-weight:800; font-size:1.15rem; box-shadow:0 12px 32px rgba(204,0,0,.4); transition:transform .25s, box-shadow .25s; }
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(204,0,0,.55); }
.btn-gold.small { padding:14px 28px; font-size:1rem; }

/* Leadership */
.leaders { background:#fff; padding:90px 24px 100px; text-align:center; }
.eyebrow { font-size:.95rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); font-weight:800; margin-bottom:12px; }
.section-title { font-size:2.3rem; font-weight:600; }
.section-sub { color:#5C6660; font-size:1.08rem; max-width:480px; margin:14px auto 0; }
.diptych { display:flex; justify-content:center; align-items:center; gap:0; margin-top:56px; flex-wrap:wrap; }
.leader-card { max-width:220px; padding:0 40px; text-align:center; }
.diptych-divider { width:1px; height:170px; background:linear-gradient(180deg, transparent, #D8DED9, transparent); }
.circle { width:150px; height:150px; border-radius:50%; background:linear-gradient(135deg, var(--green-tint), #fff); border:3px solid var(--gold); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; box-shadow:0 14px 34px rgba(0,82,42,.16); font-family:'Fraunces', serif; font-size:2.1rem; color:var(--green-dark); font-weight:600; position:relative; overflow:hidden; }
.circle::before { content:''; position:absolute; inset:-8px; border-radius:50%; border:1px solid rgba(212,160,23,.4); }
.circle img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.leader-card h3 { font-size:1.25rem; font-weight:700; margin-bottom:4px; }
.leader-card p { font-size:1rem; color:#5C6660; }

/* Gatherings / program */
.gatherings { background:var(--neutral); padding:90px 24px 100px; }
.gatherings .section-head { text-align:center; max-width:600px; margin:0 auto 50px; }
.program { max-width:920px; margin:0 auto; border:1px solid #E1E5DF; border-radius:20px; overflow:hidden; background:#fff; box-shadow:0 20px 50px rgba(0,82,42,.06); }
.program-row { display:grid; grid-template-columns:130px 1fr auto; align-items:center; gap:20px; padding:30px 34px; border-bottom:1px solid #ECEEE9; transition:background .2s; }
.program-row:last-child { border-bottom:none; }
.program-row:hover { background:var(--green-tint); }
.program-day { font-family:'Fraunces', serif; font-weight:700; font-size:1.35rem; color:var(--green-dark); }
.program-info h3 { font-size:1.25rem; margin-bottom:4px; }
.program-info p { font-size:.98rem; color:#5C6660; }
.program-time { font-weight:800; color:var(--gold); background:var(--green-tint); padding:8px 16px; border-radius:999px; font-size:.98rem; white-space:nowrap; }
.program-row:hover .program-time { background:#fff; }

/* Giving banner */
.giving-banner { position:relative; background:linear-gradient(120deg, var(--green-dark), var(--green-darker)); color:#fff; padding:76px 24px; text-align:center; overflow:hidden; }
.giving-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 30%, rgba(232,199,102,.15), transparent 45%), radial-gradient(circle at 80% 70%, rgba(232,199,102,.12), transparent 45%); }
.giving-banner h2 { font-size:2.1rem; margin-bottom:12px; font-weight:600; position:relative; }
.giving-banner p { color:#E5F5EB; max-width:520px; margin:0 auto 28px; font-size:1.12rem; position:relative; }
.giving-banner .btn-gold { position:relative; }

/* Generic content section */
.section { padding:80px 24px; }
.section.tint { background:var(--neutral); }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; max-width:1000px; margin:0 auto; }
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; max-width:1180px; margin:0 auto; }
.card { background:#fff; border:1px solid #ECECE9; border-radius:16px; padding:26px; transition:transform .2s, border-color .2s; }
.card:hover { transform:translateY(-3px); border-color:var(--green-deep); }
.tag { display:inline-block; font-size:.75rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--green-dark); background:var(--green-tint); padding:5px 12px; border-radius:6px; margin-bottom:12px; }

/* Forms */
.form { max-width:600px; margin:0 auto; }
.form label { display:block; font-weight:700; margin-bottom:6px; margin-top:18px; }
.form input, .form select, .form textarea { width:100%; padding:14px 16px; border:1.5px solid #E1E5DF; border-radius:10px; font-family:inherit; font-size:1rem; }
.form input:focus, .form select:focus, .form textarea:focus { outline:none; border-color:var(--green-deep); }
.form textarea { min-height:140px; resize:vertical; }
.form button { margin-top:26px; }
.form-note { background:var(--green-tint); border-radius:12px; padding:16px 20px; margin-top:24px; font-size:.95rem; color:var(--green-dark); }

/* Gallery */
.gallery-filters { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:40px; }
.gallery-filters button { padding:10px 20px; border-radius:999px; border:1.5px solid #E1E5DF; background:#fff; font-weight:600; cursor:pointer; }
.gallery-filters button.active { background:var(--green-dark); color:#fff; border-color:var(--green-dark); }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:18px; }
.gallery-item { position:relative; border-radius:14px; overflow:hidden; aspect-ratio:4/3; background:var(--green-tint); display:flex; align-items:center; justify-content:center; color:var(--green-dark); font-weight:700; cursor:pointer; }
.gallery-item .badge { position:absolute; top:10px; right:10px; background:rgba(0,0,0,.55); color:#fff; font-size:.75rem; padding:4px 10px; border-radius:999px; }
.gallery-item .download { position:absolute; bottom:10px; right:10px; background:#fff; color:var(--green-dark); font-size:.8rem; font-weight:700; padding:6px 12px; border-radius:999px; opacity:0; transition:opacity .2s; }
.gallery-item:hover .download { opacity:1; }

/* Giving categories */
.give-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; max-width:900px; margin:40px auto 0; }
.give-card { border:1.5px solid #E1E5DF; border-radius:16px; padding:26px; text-align:center; cursor:pointer; transition:border-color .2s, transform .2s; }
.give-card:hover { border-color:var(--green-deep); transform:translateY(-3px); }
.give-card h3 { font-size:1.15rem; margin-bottom:8px; }
.give-card p { font-size:.9rem; color:#5C6660; }

/* Bank transfer card */
.bank-card { max-width:600px; margin:56px auto 0; background:linear-gradient(135deg, var(--blue-tint), #fff); border:1.5px solid #C9D8F2; border-radius:20px; padding:36px 30px; box-shadow:0 16px 40px rgba(0,51,153,.08); }
.bank-details { background:#fff; border-radius:14px; overflow:hidden; border:1px solid #E1E5DF; }
.bank-row { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:16px 20px; border-bottom:1px solid #EFEFEC; }
.bank-row:last-child { border-bottom:none; }
.bank-label { font-size:.85rem; font-weight:700; color:#8a938d; letter-spacing:.03em; text-transform:uppercase; flex-shrink:0; }
.bank-value { font-weight:700; text-align:right; color:var(--ink); }
.bank-note { text-align:center; color:#5C6660; font-size:.92rem; margin-top:18px; }

/* Footer */
footer { background:var(--ink); color:#ccc; padding:60px 24px 26px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; max-width:1180px; margin:0 auto 40px; }
footer h4 { color:#fff; font-size:.98rem; margin-bottom:16px; letter-spacing:.05em; text-transform:uppercase; }
footer .brand-foot { font-family:'Fraunces', serif; color:#fff; font-size:1.4rem; margin-bottom:12px; }
footer p, footer li { font-size:1.02rem; color:#b7bdb9; line-height:1.95; }
footer ul { list-style:none; }
footer a:hover { color:#fff; }
footer .label { color:#8a938d; font-weight:700; }
.footer-bottom { border-top:1px solid #2A332D; padding-top:24px; text-align:center; font-size:.95rem; color:#9aa39d; max-width:1180px; margin:0 auto; }
.footer-bottom a { color:var(--gold-light); font-weight:800; }

@media (max-width:820px) {
  .nav-desktop { display:none; }
  .menu-toggle { display:block; }
  .diptych { flex-direction:column; gap:36px; }
  .diptych-divider { display:none; }
  .program-row { grid-template-columns:1fr; text-align:left; gap:10px; }
  .footer-grid { grid-template-columns:1fr; }
  .identity-strip span { padding:5px 14px; border-right:none; }
  .two-col { grid-template-columns:1fr; }
  .leader-row, .leader-row.reverse { flex-direction:column; text-align:center; gap:18px; padding:28px 22px; }
  .leader-photo-lg { width:140px; height:140px; font-size:2.1rem; }
}
@media (prefers-reduced-motion:reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
}
