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

:root {
  --navy:       #1B2A4A;
  --navy-light: #243563;
  --gold:       #B8872A;
  --gold-light: #F0E6C8;
  --cream:      #F8F6F1;
  --text:       #2C2C2C;
  --text-mid:   #555;
  --text-light: #888;
  --white:      #FFFFFF;
  --border:     #E2DDD5;
  --shadow:     0 2px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --radius:     10px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── UTILITY ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title.centered { text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { height: 44px; width: auto; border-radius: 4px; }
.nav__logo-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 180px;
}
.nav__logo:hover { text-decoration: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links > li { position: relative; }
.nav__links > li > a,
.nav__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav__links > li > a:hover,
.nav__btn:hover,
.nav__links > li.open > .nav__btn {
  background: rgba(255,255,255,.12);
  color: var(--white);
  text-decoration: none;
}
.nav__btn svg { width: 12px; height: 12px; transition: transform .2s; }
.nav__links > li.open .nav__btn svg { transform: rotate(180deg); }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.nav__links > li.open .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
  text-decoration: none;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { background: var(--cream); color: var(--navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  overflow-y: auto;
  z-index: 800;
  padding: 24px;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,.88);
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .mobile-group-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 20px;
  margin-bottom: 4px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243563 50%, #1a3260 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  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='%23ffffff' fill-opacity='0.03'%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__content { position: relative; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  border: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,.2); text-decoration: none; }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--outline:hover { border-color: var(--white); }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── ANNOUNCEMENT BANNER ── */
.announcement {
  background: var(--gold);
  padding: 20px 0;
  text-align: center;
}
.announcement__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.announcement__badge {
  background: var(--white);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 50px;
}
.announcement p { color: var(--white); font-size: 1rem; font-weight: 500; }
.announcement strong { font-weight: 700; }

/* ── WELCOME ── */
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome__text p { color: var(--text-mid); margin-bottom: 20px; }
.welcome__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* ── SERVICE TIMES ── */
.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.time-card__time {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.time-card__label {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── INFO STRIP ── */
.info-strip { background: var(--navy); padding: 56px 0; }
.info-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.info-strip__item h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.info-strip__item p { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; }
.info-strip__item a { color: rgba(255,255,255,.85); text-decoration: none; }
.info-strip__item a:hover { color: var(--white); text-decoration: underline; }

/* ── ONLINE GIVING ── */
.giving { background: var(--cream); padding: 56px 0; text-align: center; }
.giving p { color: var(--text-mid); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.giving img { display: inline-block; width: 300px; max-width: 300px; border-radius: 8px; box-shadow: var(--shadow); }

/* ── QUICK LINKS ── */
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.quick-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--navy);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background .15s, border-color .15s, transform .15s;
  text-decoration: none;
}
.quick-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  text-decoration: none;
}
.quick-link__icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ── LEADERSHIP ── */
.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leader-card__photo { width: 280px; height: 360px; object-fit: cover; object-position: top center; }
.leader-card__body { padding: 40px 40px 40px 0; }
.leader-card__role {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.leader-card__name { font-size: 2rem; margin-bottom: 20px; }
.leader-card__body p { color: var(--text-mid); margin-bottom: 16px; }

/* ── BELIEVE ── */
.believe-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.believe-nav a {
  padding: 8px 18px;
  background: var(--cream);
  border-radius: 50px;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.believe-nav a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.believe-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.believe-section:last-child { border-bottom: none; }
.believe-section h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--navy); }
.believe-section p { color: var(--text-mid); margin-bottom: 16px; }
.believe-section p:last-child { margin-bottom: 0; }

/* ── EXPECT ── */
.expect-content { max-width: 760px; }
.expect-content p { color: var(--text-mid); margin-bottom: 20px; }
.expect-highlight {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.expect-highlight strong { color: var(--navy); }

/* ── MAP ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 40px; }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }
.map-phone {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: inline-block;
}
.map-phone h3 { color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.map-phone p { font-size: 1.5rem; font-weight: 300; }

/* ── PRAYER FORM ── */
.prayer-intro { max-width: 560px; margin-bottom: 40px; }
.prayer-intro p { color: var(--text-mid); }
.form-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.form-wrap iframe { display: block; width: 100%; height: 600px; border: none; }

/* ── MISSIONS ── */
.missions-content { max-width: 760px; }
.missions-content p { color: var(--text-mid); margin-bottom: 20px; }
.missions-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: 40px 0; max-width: 600px; }
.missions-orgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.missions-org { background: var(--cream); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.missions-org h4 { font-size: 1rem; margin-bottom: 8px; }
.missions-org p { font-size: .875rem; color: var(--text-mid); }

/* ── FACEBOOK STRIP ── */
.fb-strip { background: #1877F2; padding: 20px 0; text-align: center; }
.fb-strip a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fb-strip a:hover { opacity: .85; text-decoration: none; }
.fb-icon {
  width: 28px; height: 28px; background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1877F2;
  font-weight: 900;
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer { background: #111E36; color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 52px; margin-bottom: 16px; }
.footer__brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.footer__col a { display: block; color: rgba(255,255,255,.7); font-size: .875rem; padding: 5px 0; text-decoration: none; transition: color .15s; }
.footer__col a:hover { color: var(--white); text-decoration: none; }
.footer__col p { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: .8rem; text-align: center; }

/* ── PAGE HEADER ── */
.page-header { background: linear-gradient(135deg, var(--navy), #243563); padding: 64px 0; text-align: center; }
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-header .breadcrumb { color: rgba(255,255,255,.6); font-size: .875rem; }
.page-header .breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .welcome__grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome__image { order: -1; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card__photo { width: 100%; height: 320px; }
  .leader-card__body { padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .times-grid { grid-template-columns: 1fr; }
  .info-strip__grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 48px 0; }
}
