/* ── Global Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sky-top: #1a0e2e; --sky-mid: #3b1f5c; --sky-low: #c4583b; --horizon: #f0a04b;
    --gold: #e8a849; --gold-light: #f5d88e; --cream: #FDF8F2; --white: #fff;
    --meadow: #3a6b35; --meadow-light: #5a9c4e; --meadow-dark: #1e3d1a;
    --bark: #2c1810; --earth: #5c3a28; --text: #2c1810; --muted: #7a6b5e;
    --petal: #f2d9d5; --sunrise: #e8734a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', sans-serif;
    --max-w: 1100px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Navigation ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 3rem; display: flex; align-items: center; justify-content: space-between; transition: all .4s; }
.nav.scrolled { background: rgba(44, 24, 16, .93); backdrop-filter: blur(16px); padding: .8rem 3rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .04em; }
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--bark); padding: .55rem 1.4rem; border-radius: 2rem; font-size: .82rem; font-weight: 700; transition: all .25s; letter-spacing: .02em; }
.nav-cta:hover { background: var(--gold-light); transform: scale(1.05); }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

/* ── Page Hero (Inner Pages) ── */
.page-hero { padding: 10rem 3rem 5rem; text-align: center; position: relative; overflow: hidden; background: linear-gradient(160deg, var(--bark) 0%, var(--earth) 40%, var(--meadow-dark) 100%); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff06'/%3E%3C/svg%3E"); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-light); font-weight: 700; margin-bottom: .8rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3.5rem); color: var(--white); font-weight: 700; text-shadow: 0 4px 20px rgba(0,0,0,.3); line-height: 1.1; margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300; }
.page-hero-img { margin-top: 3rem; border-radius: 1.5rem; overflow: hidden; max-height: 420px; max-width: 900px; margin-left: auto; margin-right: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.page-hero-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── Section Shared ── */
.section-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--sunrise); font-weight: 700; margin-bottom: .5rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.6rem); color: var(--bark); font-weight: 700; line-height: 1.15; }
.section-desc { font-size: .95rem; color: var(--muted); max-width: 540px; margin: .6rem auto 0; line-height: 1.6; font-weight: 300; }
.section-center { text-align: center; margin-bottom: 3rem; }

/* ── Shared Components: Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.card { background: var(--cream); border-radius: 1.5rem; padding: 2.5rem 2rem; transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(0,0,0,.04); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--sunrise)); transform: scaleX(0); transition: transform .4s; transform-origin: left; }
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; display: inline-block; width: 64px; height: 64px; line-height: 64px; border-radius: 50%; background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.06); text-align: center; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--bark); margin-bottom: .6rem; font-weight: 600; }
.card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Two Column Layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-text h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--bark); font-weight: 700; margin-bottom: 1.2rem; line-height: 1.2; }
.two-col-text p { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-weight: 300; }
.two-col-img { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── Credentials Tags ── */
.tag-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.tag { background: rgba(232,168,73,.12); color: var(--earth); padding: .35rem .9rem; border-radius: 2rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; border: 1px solid rgba(232,168,73,.25); }

/* ── Scripture Banner ── */
.scripture-banner { background: var(--meadow-dark); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.scripture-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--meadow-dark), #0f2a0f); }
.scripture-banner blockquote { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--gold-light); line-height: 1.5; max-width: 700px; margin: 0 auto 1rem; position: relative; z-index: 1; }
.scripture-banner cite { font-style: normal; font-family: var(--font-body); font-size: .85rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; position: relative; z-index: 1; }

/* ── Content Sections ── */
.content-section { padding: 5rem 3rem; background: var(--cream); }
.content-section.white { background: var(--white); }
.content-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── Forms ── */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: 1.5rem; padding: 3rem; box-shadow: 0 8px 40px rgba(0,0,0,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--bark); margin-bottom: .5rem; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .85rem 1.1rem; border: 1.5px solid rgba(0,0,0,.1); border-radius: .75rem; font-family: var(--font-body); font-size: .9rem; background: var(--cream); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-submit { width: 100%; padding: 1.1rem; background: var(--bark); color: var(--gold-light); border: none; border-radius: 2rem; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .3s; }
.form-submit:hover { background: var(--earth); transform: translateY(-2px); }
.form-messages { margin-bottom: 1rem; padding: 1rem 1.2rem; border-radius: .75rem; font-size: .9rem; }
.form-messages.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); padding: 1.6rem 0; }
.faq-q { font-family: var(--font-display); font-size: 1.2rem; color: var(--bark); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: start; gap: 1rem; line-height: 1.35; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: .93rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .4s ease, margin .3s; }
.faq-item.open .faq-a { max-height: 500px; margin-top: .9rem; }

/* ── Volunteer Section ── */
.volunteer-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); }
.vol-panel { padding: 5rem 4rem; }
.vol-panel.dark { background: var(--bark); color: rgba(255,255,255,.75); }
.vol-panel.dark h2 { color: var(--white); }
.vol-panel h2 { font-family: var(--font-display); font-size: 2.4rem; color: var(--bark); font-weight: 700; margin-bottom: 1rem; }
.vol-panel p { font-size: .93rem; line-height: 1.75; margin-bottom: 1.4rem; font-weight: 300; }
.vol-panel ul { list-style: none; margin-bottom: 1.8rem; }
.vol-panel ul li { padding: .4rem 0; font-size: .9rem; display: flex; align-items: center; gap: .6rem; }
.vol-panel ul li::before { content: '✦'; color: var(--gold); font-size: .7rem; }

/* ── Buttons ── */
.btn { padding: .9rem 2.2rem; border-radius: 2rem; font-weight: 700; font-size: .9rem; transition: all .3s; cursor: pointer; border: none; display: inline-block; }
.btn-gold { background: var(--gold); color: var(--bark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,168,73,.35); }
.btn-outline { border: 2px solid var(--meadow); color: var(--meadow); background: transparent; padding: .75rem 1.8rem; border-radius: 2rem; font-weight: 700; transition: all .3s; display: inline-block; }
.btn-outline:hover { background: var(--meadow); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--earth); padding: 1rem 2.5rem; border-radius: 2rem; font-weight: 700; transition: all .3s; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.btn-dark { background: var(--bark); color: var(--gold-light); padding: .9rem 2.2rem; border-radius: 2rem; font-weight: 700; transition: all .3s; display: inline-block; }
.btn-dark:hover { background: var(--earth); transform: translateY(-2px); }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--sunrise), var(--gold)); padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { font-family: var(--font-display); font-size: 2.8rem; color: var(--white); margin-bottom: .8rem; text-shadow: 0 2px 12px rgba(0,0,0,.15); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.9); max-width: 480px; margin: 0 auto 2rem; line-height: 1.6; }

/* ── Footer ── */
.footer { background: var(--bark); color: rgba(255,255,255,.65); padding: 3.5rem 3rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; font-size: .85rem; }
.footer h4 { color: var(--gold-light); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-bar { background: var(--bark); padding: 1.2rem 3rem; border-top: 1px solid rgba(255,255,255,.06); text-align: center; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media(max-width:960px){
    .two-col, .volunteer-section { grid-template-columns: 1fr; }
    .footer { grid-template-columns: 1fr 1fr; }
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
}
@media(max-width:600px){
    .cards-grid { grid-template-columns: 1fr; }
    .footer { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}