@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0A1628;
  --navy-light: #112240;
  --navy-mid: #1a3560;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #f5e9c8;
  --green: #3B6D11;
  --green-light: #4d8c17;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray: #e8e4d9;
  --text-muted: #8a8070;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,134,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(59,109,17,0.08) 0%, transparent 50%);
}

.hero-cross {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,134,11,0.3), transparent);
  height: 60%;
  left: 50%;
  top: 20%;
}

.hero-cross::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 200px;
  background: linear-gradient(to right, transparent, rgba(184,134,11,0.3), transparent);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-verse {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
}

.hero-verse span {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* SECTION */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* PREDICATION */
.predication {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.predication::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(184,134,11,0.08), transparent);
}

.predication-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.predication-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.predication-ref {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.predication-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

.predication-cta {
  margin-top: 2rem;
}

.predication-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.predication-cross {
  width: 120px;
  height: 160px;
  position: relative;
  opacity: 0.25;
}

.predication-cross::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 100%;
  background: var(--gold);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.predication-cross::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 70%;
  background: var(--gold);
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* SCHEDULE */
.schedule { background: var(--white); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.schedule-card {
  border: 1px solid var(--gray);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
  background: var(--off-white);
  transition: var(--transition);
}

.schedule-card:hover {
  border-top-color: var(--green);
  transform: translateY(-2px);
}

.schedule-day {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.schedule-event {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* VALUES */
.values { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray);
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.value-card:hover::before { width: 100%; }

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PASTOR */
.pastor { background: var(--white); }

.pastor-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.pastor-photo {
  aspect-ratio: 3/4;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pastor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pastor-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(184,134,11,0.4);
  background: var(--navy-light);
  min-height: 300px;
}

.pastor-role {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.pastor-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.pastor-bio {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.pastor-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-mid);
  line-height: 1.7;
  margin: 1.5rem 0;
}

/* AIDE */
.aide { background: var(--navy); }

.aide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.aide-card {
  padding: 2.5rem;
  border: 1px solid rgba(184,134,11,0.2);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.aide-card:hover {
  border-color: rgba(184,134,11,0.5);
  background: rgba(255,255,255,0.05);
}

.aide-card .section-label { color: var(--gold); }

.aide-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.aide-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* CONTACT */
.contact { background: var(--off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

/* FORM */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: var(--green);
  border: 1px solid var(--green);
}

.form-status.error {
  display: block;
  background: #fdecea;
  color: #c62828;
  border: 1px solid #c62828;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(184,134,11,0.2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand-slogan {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(184,134,11,0.2);
    gap: 1.25rem;
  }

  .predication-inner,
  .pastor-inner,
  .aide-grid,
  .contact-inner,
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .values-grid { grid-template-columns: 1fr; }

  .predication-art { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
.hero-verse { animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.3s both; }
