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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --plum:       #3D1F4E;
  --plum-dark:  #2A1236;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-muted: #6B6B6B;
  --border:     #E5DDD0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-light { background: var(--cream); }
.center     { text-align: center; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 1.5rem;
}

h2 em { font-style: italic; color: var(--gold); }
h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--plum-dark); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text); }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-dark        { background: var(--plum); color: var(--white); border-color: var(--plum); }
.btn-dark:hover  { background: var(--plum-dark); border-color: var(--plum-dark); }
.btn-light       { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-light:hover { background: #b8933a; border-color: #b8933a; }
.btn-outline-light       { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.full-width { display: block; width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: var(--plum-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
}
.nav-cta:hover { background: #b8933a !important; }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--plum-dark) 0%, #5C2D6E 50%, var(--plum) 100%);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42,18,54,0.6) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-content .btn { margin: 0.4rem; }

/* ===== SCRIPTURE BANNER ===== */
.scripture-banner {
  background: var(--gold);
  padding: 1.25rem 2rem;
  text-align: center;
}

.scripture-banner p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold-light), var(--border));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border: 2px dashed var(--gold-light);
}

.about-text p { color: var(--text-muted); }
.about-text p:first-of-type { font-size: 1.1rem; color: var(--text); font-weight: 400; }

/* ===== SERVICES / CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(61,31,78,0.12);
  transform: translateY(-4px);
}

.card-featured {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}

.card-featured h3 { color: var(--white); }
.card-featured p  { color: rgba(255,255,255,0.8); }
.card-featured ul li { color: rgba(255,255,255,0.75); }
.card-featured ul li::before { color: var(--gold-light); }

.card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.card-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.card-featured .card-icon { color: var(--gold-light); }

.card ul {
  list-style: none;
  margin: 1rem 0 1.75rem;
}

.card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}

.card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.card-featured ul li { border-color: rgba(255,255,255,0.15); }

/* ===== MISSION ===== */
.mission-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.value {
  display: flex; flex-direction: column;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.value strong { font-size: 0.95rem; font-weight: 700; color: var(--plum-dark); margin-bottom: 0.2rem; }
.value span   { font-size: 0.9rem; color: var(--text-muted); }

.mission-quote {
  background: var(--plum);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  position: relative;
}

.mission-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(201,168,76,0.2);
  position: absolute;
  top: -1.5rem; left: 1rem;
  line-height: 1;
}

blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 0.5rem; left: 1rem;
  line-height: 1;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}

.avatar {
  width: 42px; height: 42px;
  background: var(--plum);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--plum-dark); }
.testimonial-author span   { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact { background: var(--plum-dark); }
.contact .section-eyebrow { color: var(--gold-light); }
.contact h2 { color: var(--white); }
.contact h2 em { color: var(--gold-light); }
.contact-text p { color: rgba(255,255,255,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-details p { margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.contact-details strong { color: var(--gold-light); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group select option { background: var(--plum-dark); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.form-note {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-align: center;
  min-height: 1.2rem;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer { background: #1A0A25; padding: 3rem 0 0; }

.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin: 0;
}

.footer-links, .footer-social { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a, .footer-social a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .mission-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-image { max-width: 360px; margin: 0 auto; }
  .mission-quote { order: -1; }

  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 2rem auto 0; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links, .footer-social { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--plum-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: block; position: relative; z-index: 101; }

  .hero h1 { font-size: 3rem; }
  .section { padding: 4rem 0; }
}
