:root {
  --navy: #1b2a4a;
  --navy-deep: #12203c;
  --gold: #d9a441;
  --gold-soft: #f3e3c0;
  --cream: #faf6ee;
  --ink: #23293a;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); line-height: 1.2; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1.2rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(27,42,74,.08);
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--navy); font-size: 1.05rem; }
.brand b { font-weight: 700; }
.brand-mark { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 1.1rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand { gap: .3rem; }
.nav-links a:hover { color: var(--navy); }
.mission { font-style: italic; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 6px 24px rgba(18,32,60,.10); transition: transform .15s ease; }
.gallery img:hover { transform: translateY(-3px); }
.footer-logo { height: 56px; width: auto; background: #fff; padding: 5px 8px; border-radius: 10px; margin-bottom: .9rem; }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: .45rem 1rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-deep); }
.nav-watch { color: var(--gold) !important; font-weight: 700; }
.nav-watch:hover { color: #b3832d; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--navy); cursor: pointer; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem 1.2rem; gap: .9rem;
    box-shadow: 0 8px 24px rgba(18,32,60,.12);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
}

/* HERO */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,32,60,.55) 0%, rgba(18,32,60,.35) 45%, rgba(18,32,60,.75) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 46rem; padding: 6rem 1.5rem 5rem; color: #fff; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 600;
  color: var(--gold-soft); margin-bottom: .8rem;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 1rem; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-sub { font-size: 1.1rem; max-width: 34rem; margin-bottom: 1.8rem; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: .75rem 1.5rem; border-radius: 999px; transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #e6b455; }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.65); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-sm { padding: .45rem 1rem; font-size: .88rem; }
.section .btn-ghost, .contact-card .btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.section .btn-ghost:hover, .contact-card .btn-ghost:hover { background: var(--navy); color: #fff; }

/* SECTIONS */
.section { padding: 4.5rem 1.5rem; max-width: 68rem; margin: 0 auto; }
.section-alt { max-width: none; background: #fff; }
.section-alt > * { max-width: 68rem; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-sub { color: var(--muted); margin-top: .4rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 1.6rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: 0 6px 24px rgba(18,32,60,.08);
  border-top: 4px solid var(--gold);
  text-align: center;
}
.card-day { text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; font-weight: 700; color: var(--muted); }
.card-time { font-family: Georgia, serif; font-size: 2.4rem; color: var(--navy); margin: .5rem 0; }
.card-note { color: var(--muted); font-size: .95rem; }
.note { text-align: center; color: var(--muted); }
.note b { color: var(--ink); }

/* SPLIT */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; padding: 0 1.5rem; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; gap: 2rem; } }
.split h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.split p { margin-bottom: .9rem; }
.portrait { text-align: center; }
.portrait img {
  width: 100%; max-width: 320px; border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18,32,60,.15);
}
.portrait figcaption { margin-top: .8rem; color: var(--muted); font-size: .95rem; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.step { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: 0 6px 24px rgba(18,32,60,.08); }
.step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--navy); color: var(--gold-soft); font-weight: 700; margin-bottom: .8rem;
}
.step h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* GIVE */
.give-box {
  background: var(--cream); border: 1.5px dashed var(--gold);
  border-radius: var(--radius); padding: 1.8rem 2rem;
}
.give-lead { font-weight: 600; margin-bottom: .6rem; }
.give-box ul { list-style: none; }
.give-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .6rem; }
.give-box li { padding: .35rem 0; color: var(--muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: 0 6px 24px rgba(18,32,60,.08);
}
.contact-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.contact-card a { color: var(--navy); font-weight: 600; }
.muted { color: var(--muted); }

/* TODO markers (demo only) */
.todo { color: #b3701e; font-size: .85em; background: #fdf3e3; padding: .05em .45em; border-radius: 6px; }

/* PRAYER FORM */
.prayer-lead { margin-bottom: 1.6rem; }
.prayer-form label { display: block; margin-bottom: 1.1rem; font-weight: 600; color: var(--navy); }
.prayer-form label .muted { font-weight: 400; }
.prayer-form input[type="text"], .prayer-form textarea {
  width: 100%; margin-top: .35rem; padding: .75rem .9rem;
  border: 1.5px solid #d5cfc0; border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.prayer-form input:focus, .prayer-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,65,.25); }
.prayer-form textarea { resize: vertical; }
.radio-row { display: flex; gap: 1.4rem; margin-top: .4rem; flex-wrap: wrap; }
.radio { display: flex; align-items: center; gap: .4rem; font-weight: 400; color: var(--ink); }
.radio input { accent-color: var(--navy); width: 1.05rem; height: 1.05rem; }
.btn-submit { border: 0; cursor: pointer; font-size: 1rem; }
.form-status { margin-top: .8rem; font-weight: 600; }
.prayer-alt { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px dashed #d5cfc0; }
.prayer-alt a { color: var(--navy); font-weight: 600; }

/* FOOTER */
.footer { background: var(--navy-deep); color: #dfe6f5; text-align: center; padding: 3rem 1.5rem; }
.footer b { color: #fff; }
.footer-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }
.footer .muted { color: #9fb0d4; font-size: .92rem; margin-top: .35rem; }

/* MOBILE — keep the real photography prominent without making the page feel endless. */
@media (max-width: 760px) {
  .nav { padding: .55rem .9rem; }
  .brand-logo { height: 46px; }

  .hero {
    min-height: 34rem;
    align-items: flex-end;
  }
  .hero-img {
    transform: scale(1.28);
    transform-origin: 50% 72%;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(18,32,60,.25) 0%, rgba(18,32,60,.38) 38%, rgba(18,32,60,.9) 100%);
  }
  .hero-content { padding: 3.5rem 1.15rem 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero-sub { font-size: 1rem; line-height: 1.5; }
  .hero-actions { gap: .6rem; }
  .hero-actions .btn { flex: 1 1 9.5rem; text-align: center; padding: .68rem 1rem; }

  .section { padding: 3.25rem 1rem; }
  .section-head { margin-bottom: 1.75rem; }
  .split { padding: 0; }
  .card { padding: 1.5rem 1.1rem; }
  .step { padding: 1.45rem 1.2rem; }
  .give-box { padding: 1.4rem 1.1rem; }
  .give-actions { flex-direction: column; }
  .give-actions .btn { width: 100%; text-align: center; }

  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .gallery img { height: 12rem; }
  .gallery img:nth-child(2) { object-position: 48% 62%; }
  .gallery img:nth-child(3) { object-position: 50% 56%; }

  .footer { padding: 2.5rem 1rem; }
}

@media (max-width: 380px) {
  .brand-logo { height: 42px; }
  .hero { min-height: 32rem; }
  .gallery img { height: 10.5rem; }
}
