* {
  box-sizing: border-box;
}

:root {
  --red: #9d1b1f;
  --deep-red: #731216;
  --cream: #faf7f2;
  --text: #222;
  --muted: #666;
  --dark: #181818;
  --white: #fff;
  --border: #e8e1db;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 3px 15px rgba(0,0,0,.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 1px;
  border: 4px solid #f2d8d8;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
}

.brand-sub {
  color: var(--muted);
  font-size: .82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  background: var(--red);
  color: white;
  border: 0;
  font-size: 1.35rem;
  border-radius: 8px;
  padding: 8px 12px;
}

.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(93,8,12,.94), rgba(157,27,31,.82)),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 35%);
  overflow: hidden;
}

.hero::after {
  content: "✝";
  position: absolute;
  right: 7%;
  bottom: -90px;
  font-size: 420px;
  color: rgba(255,255,255,.07);
  font-family: Georgia, serif;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 850px;
  padding: 90px 0;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--red);
  font-size: .8rem;
}

.hero .eyebrow {
  color: #ffd9d9;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.03;
  margin: 12px 0 20px;
  max-width: 850px;
}

.tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.35;
  max-width: 850px;
  color: #fff4f4;
}

.hero-text {
  max-width: 720px;
  font-size: 1.1rem;
  color: #f6eaea;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: .95rem;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.hero .btn-primary {
  background: white;
  color: var(--red);
}

.btn-outline {
  border-color: white;
  color: white;
}

.full {
  width: 100%;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  background: var(--dark);
}

.light {
  color: white;
}

.light-muted {
  color: #ddd;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 10px 0 24px;
}

h3 {
  margin-top: 0;
}

.lead {
  font-size: 1.2rem;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 35px;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.card .icon {
  font-size: 2rem;
}

.big-time {
  color: var(--red);
  font-weight: 900;
  font-size: 1.25rem;
}

.dark-cards .card {
  background: #232323;
  border-color: #333;
  color: white;
}

.photo-placeholder {
  min-height: 220px;
  background:
    linear-gradient(135deg, #f2e3df, #fff),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(157,27,31,.03) 12px, rgba(157,27,31,.03) 24px);
  border: 2px dashed #d8b6b8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--red);
  font-weight: 800;
  padding: 20px;
}

.photo-placeholder.large {
  min-height: 370px;
}

.photo-placeholder small {
  color: var(--muted);
  font-weight: normal;
  margin-top: 8px;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 36px;
}

.event-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.event-card.muted {
  background: #fafafa;
}

.event-date {
  background: var(--red);
  color: white;
  border-radius: 12px;
  text-align: center;
  padding: 15px 10px;
}

.event-date span {
  display: block;
}

.event-date .month,
.event-date .year {
  font-size: .8rem;
  letter-spacing: 1px;
  font-weight: 800;
}

.event-date .day {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-photo {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

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

.gallery-photo-full img {
  object-fit: contain;
  background: #f4f1ed;
}

.gallery-photo figcaption {
  padding: 14px 16px;
  text-align: center;
  color: var(--red);
  font-weight: 800;
}

.video-placeholder {
  max-width: 850px;
  min-height: 430px;
  margin: 35px auto 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #252525, #0d0d0d);
  color: white;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 30px;
}

.play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.prayer-section {
  background: linear-gradient(135deg, var(--deep-red), var(--red));
}

.prayer-form {
  background: white;
  border-radius: 15px;
  padding: 30px;
}

.prayer-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 14px;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

.form-note {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 35px auto 0;
  border-top: 4px solid var(--red);
  padding: 35px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.07);
  border-radius: 12px;
}

.site-footer {
  background: #121212;
  color: #ddd;
  padding-top: 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.site-footer h3 {
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
}

.copyright {
  border-top: 1px solid #333;
  padding: 18px;
  text-align: center;
  font-size: .85rem;
  color: #999;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: white;
    padding: 22px 4%;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 3px solid var(--red);
  }

  .main-nav.open {
    display: flex;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .brand-sub {
    display: none;
  }

  .brand-name {
    max-width: 210px;
    line-height: 1.2;
  }

  .hero {
    min-height: 590px;
  }

  .section {
    padding: 62px 0;
  }

  .cards.three,
  .cards.four,
  .gallery-grid,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 82px 1fr;
    padding: 20px;
  }

  .video-placeholder {
    min-height: 320px;
  }
}


.church-photo-wrap {
  margin: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.13);
  border: 1px solid var(--border);
}

.church-photo {
  width: 100%;
  height: 440px;
  display: block;
  object-fit: cover;
  object-position: 58% 58%;
}

.church-photo-wrap figcaption {
  padding: 14px 18px;
  text-align: center;
  color: var(--deep-red);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  background: #fff;
}

@media (max-width: 700px) {
  .church-photo {
    height: 360px;
    object-position: 60% 58%;
  }
}


.leadership-section {
  background: #fff;
}

.pastor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 38px;
}

.pastor-photo-wrap {
  margin: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.13);
  border: 1px solid var(--border);
}

.pastor-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.pastor-photo-wrap figcaption {
  padding: 18px;
  text-align: center;
  color: var(--deep-red);
  background: #fff;
  line-height: 1.5;
}

.pastor-message {
  border-left: 5px solid var(--red);
  padding-left: 30px;
}

.welcome-scripture {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--deep-red);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
}

.pastor-signoff {
  margin-top: 25px;
  font-family: Georgia, 'Times New Roman', serif;
}

@media (max-width: 800px) {
  .pastor-grid {
    grid-template-columns: 1fr;
  }

  .pastor-photo-wrap {
    max-width: 430px;
    margin: 0 auto;
  }

  .pastor-message {
    border-left: 0;
    border-top: 5px solid var(--red);
    padding-left: 0;
    padding-top: 25px;
  }
}


.history-section {
  background: var(--cream);
}

.history-intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 45px;
}

.history-timeline {
  position: relative;
  margin-top: 35px;
}

.history-item {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 28px;
  padding: 0 0 38px;
  position: relative;
}

.history-item::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 48px;
  bottom: -2px;
  width: 2px;
  background: #d8b6b8;
}

.history-item:last-child::before {
  display: none;
}

.history-year {
  width: 112px;
  min-height: 58px;
  background: var(--red);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.history-item h3 {
  color: var(--deep-red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.history-item blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 5px solid var(--red);
  background: white;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--deep-red);
}

.history-item.present {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.history-leadership-note {
  margin-top: 30px;
  text-align: center;
  padding: 22px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
}

@media (max-width: 650px) {
  .history-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .history-item::before {
    display: none;
  }

  .history-year {
    width: max-content;
    min-width: 95px;
  }
}

.contact-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.08rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--muted);
  margin-top: 22px;
}

.giving-section {
  background: #fff;
  border-top: 1px solid var(--border);
}

.giving-note {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  border: 2px solid var(--red);
  border-radius: 8px;
  color: var(--deep-red);
}
