:root {
  --green: #123b63;
  --green-dark: #0a2850;
  --green-deep: #071c38;
  --gold: #c99723;
  --gold2: #edbb3a;
  --soft: #f8f8f7;
  --text: #17251d;
  --muted: #667168;
  --border: #e1e6e3;
  --shadow: 0 10px 30px rgba(0, 55, 31, 0.12);
  --container: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--container), calc(100% - 36px));
  margin: auto;
}

.topbar {
  background: var(--green-deep);
  color: white;
  font-size: 0.82rem;
}
.topbar-inner {
  min-height: 47px;
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.2fr;
  gap: 16px;
  align-items: center;
}
.social,
.contact-mini {
  display: flex;
  gap: 14px;
  align-items: center;
}
.verse {
  text-align: center;
  font-style: italic;
}
.contact-mini {
  justify-content: flex-end;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.nav-wrap {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}
.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  gap: 3px;
  max-width: 190px;
}
.brand-copy strong {
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.12;
  text-transform: uppercase;
}
.brand-copy small {
  color: #84630e;
  font-size: 0.69rem;
  font-style: italic;
  line-height: 1.2;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.89rem;
  font-weight: 800;
}
.nav a {
  position: relative;
  padding: 12px 0;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 3px;
  background: var(--green);
  transition: 0.2s;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.search {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}
.search:after,
.donate:after {
  display: none;
}
.donate {
  padding: 14px 20px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.8rem;
}

.hero {
  position: relative;
  height: 455px;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.18);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 17, 10, 0.98) 0%,
    rgba(0, 19, 11, 0.86) 34%,
    rgba(0, 0, 0, 0.18) 66%,
    rgba(0, 0, 0, 0.06) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3.2rem, 5.4vw, 5.3rem);
  line-height: 1.04;
  margin: 0 0 16px;
}
.hero h1 span {
  color: var(--gold2);
}
.hero p {
  max-width: 520px;
  font-size: 1.1rem;
  color: #f0f4f1;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 900;
  border: 0;
}
.btn-green {
  background: var(--green);
  border: 1px solid var(--gold);
  color: white;
}
.btn-dark {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold);
  color: white;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: white;
}
.slider-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 73px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
}
.slider-dots span:first-child {
  background: var(--gold);
}

.quick-wrap {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quick {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.quick:last-child {
  border-right: 0;
}
.quick-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.quick:nth-child(even) .quick-icon {
  background: var(--gold);
}
.quick h3 {
  font-family: Georgia, serif;
  margin: 0 0 4px;
  font-size: 1.08rem;
}
.quick p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.stats {
  margin-top: 12px;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  color: var(--gold2);
  font-size: 1.28rem;
}
.stat span {
  font-size: 0.84rem;
}

.home-panels {
  padding: 18px 0 66px;
  background: #fafafa;
}
.panel-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.05fr 1fr;
  gap: 18px;
}
.panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 19px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.panel-head h2 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin: 0;
}
.panel-head a {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 800;
}
.devotion-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
}
.devotion-row img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 9px;
}
.panel h3 {
  font-family: Georgia, serif;
  color: var(--green);
  margin: 7px 0;
}
.panel p {
  color: var(--muted);
  font-size: 0.9rem;
}
.event-row {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.event-date {
  background: var(--green);
  color: white;
  border-radius: 7px;
  padding: 8px;
  text-align: center;
}
.event-date strong {
  display: block;
  font-size: 1.2rem;
}
.sermon-img {
  position: relative;
}
.sermon-img img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2rem;
}

.page-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--green-deep);
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
  transform: scale(1.12);
}
.page-banner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.page-banner h1 {
  color: white;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  margin: 0;
}
.page-banner p {
  color: var(--gold2);
  margin: 8px 0 0;
}

.content {
  padding: 52px 0;
}
.page-grid {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 26px;
}
.sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  height: max-content;
}
.sidebar a,
.sidebar span {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 6px;
}
.sidebar a:hover,
.sidebar a.active,
.sidebar span.active {
  background: var(--green);
  color: white;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card h3 {
  font-family: Georgia, serif;
  margin: 0 0 7px;
}
.card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.list-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  margin-bottom: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.list-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
}
.list-card h3 {
  font-family: Georgia, serif;
  margin: 0 0 7px;
}
.list-card p {
  color: var(--muted);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 38px;
}
.about-image {
  height: 340px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.18);
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.partner-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
}
.value h3 {
  font-family: Georgia, serif;
}
.form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--green-dark);
}
input,
select,
textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font: inherit;
}
.form-message {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.full {
  grid-column: 1/-1;
}
.search-page {
  max-width: 850px;
}
.search-page > label {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.search-page input[type="search"] {
  padding: 15px 17px;
  border: 2px solid var(--green);
  font-size: 1rem;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.search-results .value {
  display: block;
}
.search-results [hidden] {
  display: none !important;
}
.search-results h2 {
  font-family: Georgia, serif;
  color: var(--green);
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.search-results p {
  margin: 0;
  color: var(--muted);
}
.footer {
  background: var(--green-deep);
  color: #dce7e1;
  padding: 50px 0 22px;
  margin-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer img {
  width: 150px;
  filter: none;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.card-actions .btn {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.86rem;
}
.whatsapp-btn {
  background: #168b4a;
  color: #fff;
}
.section-intro {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
}
.status-note {
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 4px solid var(--gold);
  background: #fff8e7;
  color: #5c4915;
}
.footer h3 {
  color: white;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}
.whatsapp,
.totop {
  position: fixed;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  z-index: 30;
  box-shadow: var(--shadow);
}
.whatsapp {
  left: 20px;
  background: #20a55a;
}
.totop {
  right: 20px;
  background: var(--green);
}

@media (max-width: 1050px) {
  .topbar-inner {
    grid-template-columns: 1fr;
  }
  .verse,
  .contact-mini {
    display: none;
  }
  .menu {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 108px;
    left: 18px;
    right: 18px;
    background: white;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }
  .brand img {
    width: 74px;
    height: 74px;
  }
  .brand-copy {
    display: none;
  }
  .hero {
    height: 520px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .quick-links,
  .stats-grid,
  .panel-grid,
  .page-grid,
  .card-grid,
  .two-col,
  .values,
  .partner-options,
  .footer-grid,
  .search-results {
    grid-template-columns: 1fr;
  }
  .devotion-row,
  .list-card {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  .page-banner {
    height: 180px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
