/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1F4D3A;
  --green-mid:   #2E6B50;
  --green-light: #3D8A65;
  --gold:        #C8A24A;
  --gold-light:  #E2C07A;
  --white:       #FFFFFF;
  --off-white:   #F7F5F0;
  --text-dark:   #1A2E23;
  --text-mid:    #3A4E40;
  --text-light:  #6B7F72;
  --shadow:      0 4px 24px rgba(31,77,58,0.10);
  --shadow-lg:   0 12px 48px rgba(31,77,58,0.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.tag {
  display: inline-block;
  background: rgba(200,162,74,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--green);
  margin-bottom: 1.1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.divider {
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}
.center { text-align: center; }
.center .divider { margin-left: auto; margin-right: auto; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(31,77,58,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,162,74,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px; max-width: 1200px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200,162,74,0.3);
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); line-height: 1.15;
}
.nav-logo .logo-text span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--green) !important;
  padding: 9px 20px; border-radius: 6px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--green) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0D2E20 0%, #1F4D3A 40%, #2E6B50 75%, #1A4533 100%);
  min-height: 92vh;
  display: flex; align-items: center;
}
/* Vine decorative circles */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,138,101,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-light {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(200,162,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 4rem 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,162,74,0.15); border: 1px solid rgba(200,162,74,0.3);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white); margin-bottom: 1.5rem;
  font-weight: 700; line-height: 1.2;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold); color: var(--green);
  box-shadow: 0 4px 20px rgba(200,162,74,0.4);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(200,162,74,0.55); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: var(--shadow);
}
.btn-green:hover { background: var(--green-mid); box-shadow: var(--shadow-lg); }

/* Hero graphic side */
.hero-graphic {
  display: flex; justify-content: center; align-items: center;
}
.logo-shield {
  position: relative;
  width: 340px; height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.shield-svg {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
}
.shield-content {
  position: relative; z-index: 2;
  text-align: center; padding: 1rem;
}
.shield-icon { font-size: 3.5rem; line-height: 1; }
.shield-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.shield-llc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.5rem;
}
.shield-tagline {
  font-size: 0.75rem; font-style: italic;
  color: rgba(255,255,255,0.65); letter-spacing: 0.08em;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-light); font-weight: 700; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Welcome ── */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.welcome-visual {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 20px; padding: 3.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; text-align: center;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  position: relative; overflow: hidden;
}
.welcome-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(200,162,74,0.12);
}
.welcome-visual-icon { font-size: 4rem; }
.welcome-visual-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--white);
  font-style: italic; line-height: 1.4;
}
.welcome-visual-quote {
  font-size: 0.85rem; color: var(--gold-light);
  border-top: 1px solid rgba(200,162,74,0.3);
  padding-top: 1rem; width: 100%;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(31,77,58,0.1);
  border-radius: 14px; padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,162,74,0.3); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green); margin-bottom: 0.5rem; font-weight: 600; }
.service-desc { font-size: 0.85rem; color: var(--text-light); }
.services-goal {
  margin-top: 3rem; text-align: center;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(31,77,58,0.06), rgba(200,162,74,0.08));
  border: 1px solid rgba(31,77,58,0.12);
  border-radius: 12px; font-size: 1rem;
  color: var(--text-mid); font-style: italic;
}
.services-goal strong { color: var(--green); font-style: normal; }

/* ── Why It Matters ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-card {
  background: var(--white); border-radius: 14px;
  padding: 2.5rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  margin-bottom: 1.25rem;
}
.why-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.9rem; color: var(--text-mid); }
.why-quote-box {
  background: linear-gradient(135deg, var(--green), #0D2E20);
  border-radius: 16px; padding: 3rem 2.5rem;
  text-align: center; color: var(--white);
  box-shadow: var(--shadow-lg);
}
.why-quote-box .q-icon { font-size: 3rem; color: var(--gold-light); margin-bottom: 1rem; }
.why-quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; line-height: 1.5;
  color: var(--white); margin-bottom: 1.5rem;
  font-style: italic;
}
.why-quote-box .q-sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ── Faith & Values ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.value-pill {
  background: var(--white); border: 1px solid rgba(31,77,58,0.15);
  border-radius: 12px; padding: 1.5rem 1rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.value-pill:hover { transform: translateY(-4px); border-color: var(--gold); }
.value-pill .v-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.value-pill .v-text { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--green); font-weight: 600; }
.faith-scripture {
  margin-top: 3rem; text-align: center;
  padding: 2rem 3rem;
  background: rgba(200,162,74,0.08);
  border: 1px solid rgba(200,162,74,0.25);
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--green);
}
.faith-scripture span { display: block; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-style: normal; color: var(--text-light); margin-top: 0.5rem; }

/* ── Who We Serve ── */
.serve-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.serve-card {
  background: var(--white); border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; gap: 1rem; align-items: flex-start;
}
.serve-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.serve-card .sc-icon { font-size: 2rem; flex-shrink: 0; }
.serve-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green); margin-bottom: 0.3rem; }
.serve-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0D2E20 0%, var(--green) 50%, #1A4533 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,162,74,0.15) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 2.5rem; }
.cta-contacts {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
  margin: 2.5rem 0;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 12px 20px;
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  transition: background 0.2s;
}
.cta-contact-item:hover { background: rgba(255,255,255,0.18); }
.cta-contact-item a { color: var(--white); }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ── Footer ── */
footer {
  background: #0A1F16; color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.footer-brand .logo-text { color: var(--white); margin-bottom: 0.75rem; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.footer-brand p { font-size: 0.87rem; max-width: 280px; line-height: 1.65; }
.footer-brand .tagline { color: var(--gold-light); font-style: italic; font-size: 0.82rem; margin-top: 0.5rem; }
.footer-col h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center; margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  max-width: 1100px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-graphic { display: none; }
  .hero-stats { justify-content: center; }
  .welcome-grid,
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .why-grid .why-quote-box { margin-top: 0; }
  .hero h1 { font-size: 1.9rem; }
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
