:root {
  /* Prairie Chapel palette — Mar 2026 */
  --red: #931F1D; --dark-red: #6E1715; --brown: #937B63;
  --mid-brown: #7A6652; --cream: #F7F5F0; --light-cream: #FAFAF6;
  --text: #2E2820; --text-light: #6B5F52; --white: #FFFFFF;
  --green: #8A9B68; --dark-green: #6B7D4E;
  --sage: #B6C197; --beige: #D5DDBC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); }

/* ── NAV ── */
nav {
  background: var(--white); border-bottom: 3px solid var(--red);
  padding: 0 2rem; display: flex; align-items: center;
  justify-content: space-between; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 52px; padding: 0.6rem 0; }
.nav-links { display: flex; gap: 0; }
.nav-links a {
  text-decoration: none; color: var(--brown); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 1.2rem 1rem; border-bottom: 3px solid transparent;
  margin-bottom: -3px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-links a.sprouts { color: var(--green); }
.nav-links a.sprouts:hover, .nav-links a.sprouts.active { color: var(--dark-green); border-bottom-color: var(--green); }

/* ── HAMBURGER ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 200; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--brown); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--white);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1rem 1.5rem; border-bottom: 1px solid #eee;
    margin-bottom: 0; font-size: 1rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  body { font-size: 16px; }
  p { font-size: 1rem; line-height: 1.8; }
  .page-header { padding: 2.5rem 1.5rem 2rem; }
  .page-header h1 { font-size: 1.8rem; }
  section { padding: 2.5rem 1.25rem; }
  .two-col { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .cards-grid { grid-template-columns: 1fr !important; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  .ministry-block { grid-template-columns: 1fr !important; }
  .pastor-bio { grid-template-columns: 1fr !important; text-align: center; }
  .pastor-avatar { margin: 0 auto; }
  .schedule-item { grid-template-columns: 1fr !important; gap: 0.5rem; }
  .timeline-item { grid-template-columns: 1fr !important; margin-left: 20px; gap: 0.5rem; }
  .btn { padding: 1rem 2rem; font-size: 1rem; min-height: 48px; }
  .callout-box { padding: 2rem 1.5rem; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.5rem; }
  footer { padding: 2rem 1rem; }
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--brown) 100%);
  color: var(--white); text-align: center; padding: 4rem 2rem 3.5rem;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem;
}
.page-header-sub { font-size: 1rem; color: rgba(255,255,255,0.75); font-style: italic; }

/* ── SECTIONS ── */
section { padding: 4.5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.5rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--brown); margin-bottom: 1rem; line-height: 1.2; }
h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark-red); margin-bottom: 0.5rem; }
p { line-height: 1.8; color: var(--text-light); font-size: 1rem; margin-bottom: 1rem; }
.divider { width: 60px; height: 3px; background: var(--red); margin-bottom: 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 3px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; transition: all 0.2s;
}
.btn-white { background: var(--white); color: var(--dark-red); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--dark-red); transform: translateY(-1px); }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* ── CALLOUT BOX ── */
.callout-box {
  background: var(--red); color: var(--white); padding: 2.5rem; position: relative;
}
.callout-box::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem;
  color: rgba(255,255,255,0.2); position: absolute; top: 0.5rem; left: 1rem; line-height: 1;
}
.callout-box p { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--white); line-height: 1.7; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); padding: 2rem; border-top: 4px solid var(--red); }
.card h3 { color: var(--brown); }

/* ── PASTOR BIO ── */
.pastor-bio { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 600px) { .pastor-bio { grid-template-columns: 1fr; } }
.pastor-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--cream); border: 4px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; flex-shrink: 0;
}
.pastor-role { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.3rem; }

/* ── TIMELINE ── */
.timeline { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding-bottom: 2.5rem; border-left: 2px solid rgba(255,255,255,0.15); padding-left: 2rem; margin-left: 40px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); border: 2px solid var(--white); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: rgba(255,220,200,0.9); text-align: right; padding-top: 2px; }

/* ── MINISTRY BLOCK ── */
.ministry-block { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 600px) { .ministry-block { grid-template-columns: 1fr; } }
.ministry-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); flex-shrink: 0; }
.info-pill { display: inline-block; background: var(--cream); border: 1px solid #ddd; padding: 0.4rem 1rem; font-size: 0.85rem; color: var(--brown); font-weight: 600; border-radius: 2px; }

/* ── SCHEDULE ── */
.schedule-grid { display: flex; flex-direction: column; gap: 0; }
.schedule-item { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid #e8e0d8; align-items: start; }
.schedule-item:last-child { border-bottom: none; }
.schedule-time { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--red); }
.schedule-detail strong { display: block; color: var(--brown); font-size: 1rem; margin-bottom: 0.3rem; }
.schedule-detail p { margin-bottom: 0; font-size: 0.9rem; }

/* ── GIVE BOX ── */
.give-box { background: var(--red); color: var(--white); padding: 2.5rem; text-align: center; }
.give-box h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.75rem; }
.give-box p { color: rgba(255,255,255,0.82); margin-bottom: 1.25rem; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,0.55); text-align: center; padding: 2rem; font-size: 0.85rem; }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.5; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
