:root {
  --ink: #18201d;
  --muted: #5d675f;
  --green: #23513f;
  --leaf: #6e8c43;
  --gold: #c49a45;
  --cream: #fbf8ef;
  --paper: #ffffff;
  --line: #e5decd;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.hero {
  min-height: 92vh;
  padding: 22px clamp(18px, 5vw, 72px) 52px;
  background:
    linear-gradient(90deg, rgba(24, 32, 29, .88), rgba(35, 81, 63, .72)),
    url("equipe.jpg") center/cover;
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.nav-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a { text-decoration: none; }

.hero-grid {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 13px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.primary { background: var(--gold); color: #1d1606; }
.secondary { border: 1px solid rgba(255,255,255,.65); }

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 8px;
}

.seal {
  width: 180px;
  display: block;
  margin: 0 auto 18px;
}

.hero-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.15;
}

.hero-card span { color: rgba(255,255,255,.82); }

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.story, .split, .team {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 42px;
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.feature-photo, .wide-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(33, 39, 32, .18);
}

.feature-photo { aspect-ratio: 4 / 5; }
.wide-photo { aspect-ratio: 5 / 3.5; }

.scripture-band {
  padding: 56px clamp(18px, 8vw, 120px);
  background: var(--green);
  color: white;
  text-align: center;
}

.scripture-band p {
  margin-bottom: 8px;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 800;
}

.scripture-band span { color: #ead092; font-weight: 700; }

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px) 76px;
}

.three-columns article, .ministry-grid div, .goal-box, .giving, .contact-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.three-columns article, .goal-box {
  padding: 26px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ministry-grid div {
  padding: 20px;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 clamp(18px, 5vw, 72px) 76px;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.radio-section {
  background:
    linear-gradient(135deg, rgba(35, 81, 63, .94), rgba(24, 32, 29, .94)),
    url("pastores.jpg") center/cover;
  color: white;
}

.radio-section .section-heading p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.radio-frame {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .24);
}

.radio-frame h3 {
  font-size: clamp(25px, 3vw, 34px);
  margin-bottom: 8px;
}

.radio-frame p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
}

.radio-logo {
  width: 100%;
  max-width: 170px;
  object-fit: contain;
}

.radio-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ead092;
  font-weight: 800;
  text-decoration: none;
}

.schedule {
  background: #eef2ec;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-list p {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid #cfd8ce;
}

.team ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 18px;
}

.goal-box {
  border-left: 6px solid var(--gold);
}

.contact {
  padding: 76px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.contact p { color: rgba(255,255,255,.78); }

.contact-grid {
  margin: 28px 0;
}

.contact-grid a {
  flex: 1 1 230px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
}

.contact-grid span {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.giving {
  max-width: 560px;
  padding: 24px;
  color: var(--ink);
}

.giving p { color: var(--muted); margin-bottom: 6px; }

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: #111714;
  color: white;
  text-align: center;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid, .story, .split, .team, .three-columns {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 28px; padding-top: 42px; }

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

@media (max-width: 620px) {
  .nav { align-items: flex-start; }
  .nav-links { justify-content: flex-end; }
  .hero { min-height: auto; }
  .hero-card { padding: 20px; }
  .seal { width: 140px; }
  .radio-frame { grid-template-columns: 1fr; }
  .radio-logo { max-width: 132px; }
  .ministry-grid, .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 260px; }
  .schedule-list p { grid-template-columns: 1fr; gap: 4px; }
}
