/* ── RESET & BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1A2E1A;
  --green-mid:  #2E4A2E;
  --green-light:#8BC34A;
  --gold:       #D4A227;
  --gold-dark:  #b88a1f;
  --cream:      #F5F0E8;
  --cream-dark: #EDE5D8;
  --earth:      #8B6914;
  --text-dark:  #1C1208;
  --text-mid:   #5a5a3a;
  --text-light: #9a9a7a;
  --white:      #ffffff;
  --red:        #8B1A1A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--green-dark); }
.section-earth { background: var(--cream); }
.section-cta { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: white; }
.section-cta h2 { color: white; }
.section-cta p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; line-height: 1.15; }
h1 { font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 6px; }
p { color: var(--text-mid); line-height: 1.75; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { max-width: 560px; margin: 12px auto 0; font-size: 1.05rem; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(139,195,74,.15); color: var(--green-light); font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: .92rem; font-weight: 700; cursor: pointer; border: none; text-decoration: none; transition: all .2s; white-space: nowrap; font-family: 'Inter', sans-serif; }
.btn-green { background: #228B22; color: white; }
.btn-green:hover { background: #1a6b1a; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ── NAVIGATION ──────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--green-dark); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-cross { font-size: 1.3rem; color: var(--green-light); }
.logo-text { font-family: 'Playfair Display', serif; color: white; font-size: 1.1rem; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all .15s; }
.site-nav a:hover { color: white; background: rgba(255,255,255,.1); }
.nav-cta { background: var(--gold) !important; color: white !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, #0f1f0f 0%, #1A2E1A 40%, #2E4A2E 100%); overflow: hidden; }
.hero::before { 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='%238BC34A' 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"); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(139,195,74,.08) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 40px 24px; margin: 0 auto; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--green-light); font-size: .82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { color: white; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO ──────────────────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1.05rem; }

/* ── SERVICES ────────────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; align-items: stretch; }
.service-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--cream-dark); transition: all .25s; box-shadow: 0 2px 12px rgba(0,0,0,.06); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); border-color: #2E5A1C; }
.service-card-img { width: 100%; height: 220px; object-fit: cover; display: block; flex-shrink: 0; }
.service-card-img-placeholder { width: 100%; height: 220px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.service-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { color: var(--green-dark); margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: .9rem; margin-bottom: 20px; flex: 1; }
.service-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.service-list { list-style: none; padding: 0; margin-bottom: 20px; }
.service-list li { padding: 6px 0; border-bottom: 1px solid var(--cream-dark); font-size: .88rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '✓'; color: #228B22; font-weight: 700; font-size: .85rem; }

.service-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 28px; }
.service-detail-card { display: flex; gap: 20px; background: var(--cream); border-radius: 14px; padding: 28px; border: 2px solid var(--cream-dark); }
.service-detail-icon { font-size: 2.4rem; flex-shrink: 0; }
.service-detail-content h3 { color: var(--green-dark); margin-bottom: 10px; }
.service-detail-content p { font-size: .92rem; margin-bottom: 14px; }
.service-detail-content ul { padding-left: 20px; }
.service-detail-content ul li { font-size: .88rem; color: var(--text-mid); margin-bottom: 5px; }

/* ── WHY US ──────────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { color: white; }
.why-text p { color: rgba(255,255,255,.75); }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat { background: rgba(255,255,255,.07); border-radius: 12px; padding: 24px; text-align: center; border: 1px solid rgba(255,255,255,.1); }
.why-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-light); font-weight: 700; }
.why-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

/* ── ABOUT ───────────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card { background: var(--cream); border-radius: 12px; padding: 20px; border: 2px solid var(--cream-dark); }
.value-icon { width: 52px; height: 52px; background: var(--cream-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-card h4 { color: var(--green-dark); margin-bottom: 6px; }
.value-card p { font-size: .85rem; }

/* ── SCRIPTURE ───────────────────────────────────────────────────────────────── */
.scripture { background: rgba(139,195,74,.1); border-left: 4px solid var(--green-light); border-radius: 0 10px 10px 0; padding: 16px 20px; margin-top: 24px; }
.scripture span { display: block; font-style: italic; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.7; }
.section:not(.section-dark) .scripture span { color: var(--text-mid); }
.scripture cite { display: block; margin-top: 10px; font-size: .8rem; font-weight: 700; color: var(--green-light); letter-spacing: .5px; }

/* ── GALLERY ─────────────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-card { border-radius: 12px; overflow: hidden; background: var(--cream); border: 2px solid var(--cream-dark); }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; }
.gallery-placeholder { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--cream-dark); }
.gallery-info { padding: 16px; }
.gallery-info h4 { color: var(--green-dark); margin-bottom: 6px; }
.gallery-info p { font-size: .85rem; }
.badge-service { display: inline-block; background: rgba(26,46,26,.1); color: var(--green-dark); font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 8px; }

/* ── CONTACT ─────────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form label { display: block; font-weight: 600; font-size: .88rem; color: var(--green-dark); margin-bottom: 6px; }
.form-row-pub { margin-bottom: 18px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; border: 2px solid var(--cream-dark); border-radius: 8px; font-size: .95rem; font-family: 'Inter', sans-serif; outline: none; transition: border .2s; background: white; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-dark); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.alert-success-pub { background: #e8f5e9; color: #1a5c2c; border: 1px solid #b3dfc2; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .9rem; }
.contact-info-card { background: var(--cream); border-radius: 12px; padding: 20px; margin-bottom: 14px; border: 2px solid var(--cream-dark); }
.contact-info-icon { font-size: 1.6rem; margin-bottom: 10px; }
.contact-info-card h4 { color: var(--green-dark); margin-bottom: 6px; }
.contact-info-card p { font-size: .88rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--green-dark); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-heading { color: var(--green-light); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { color: rgba(255,255,255,.4); font-size: .82rem; }

/* ── HERO SLIDER ─────────────────────────────────────────────────────────────── */
.hero-slider { position: relative; height: 92vh; overflow: hidden; }
.slides { width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,.1) 75%, rgba(0,0,0,0) 100%); }
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 0 0 80px; }
.slide-content-inner { max-width: 580px; }
.slide-content h1 { color: white; margin-bottom: 16px; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1.05; }
.slide-content p { color: rgba(255,255,255,.92); font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; line-height: 1.75; }
.hero-tag { color: #D4A227; font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); color: white; width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: all .2s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: rgba(255,255,255,.3); border-color: white; }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background: transparent; cursor: pointer; transition: all .2s; }
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }

/* ── SERVICE PAGES ───────────────────────────────────────────────────────────── */
.service-hero { position: relative; height: 65vh; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%); }
.service-hero-content { position: relative; z-index: 2; padding-bottom: 60px; }
.service-hero-tag { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.service-hero-content h1 { color: white; margin-bottom: 14px; }
.service-hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin-bottom: 24px; }
.service-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.service-page-content h2 { color: var(--green-dark); margin-bottom: 16px; }
.service-page-content h3 { color: var(--green-dark); }
.service-page-content p { font-size: .95rem; line-height: 1.8; }
.service-sidebar-card { background: var(--cream); border-radius: 14px; padding: 24px; border: 2px solid var(--cream-dark); }
.service-sidebar-card h4 { color: var(--green-dark); margin-bottom: 10px; font-size: 1rem; }
.service-sidebar-card p { font-size: .88rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--green-dark); padding: 16px; gap: 4px; }
  .site-nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .hero-content { padding: 60px 24px 80px; }
  .section { padding: 50px 0; }
}
