:root {
  --primary: #1f4d3b;
  --primary-dark: #183c2e;
  --secondary: #c79a3b;
  --accent: #f4ecdc;
  --light: #f8f8f8;
  --dark: #1a1a1a;
  --white: #ffffff;
  --muted: #666666;
  --border: #e7e2d8;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max-width: 1180px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: #f6f7f4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.alt-bg {
  background: #fbfaf7;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-tag,
.eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section-heading h2,
.hero-text h1 {
  line-height: 1.15;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 600;
  color: #26332d;
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(31, 77, 59, 0.95), rgba(24, 60, 46, 0.9));
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(199, 154, 59, 0.22), transparent 35%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 110px 0 90px;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-card,
.content-card,
.info-box,
.service-card,
.member-card,
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  color: var(--dark);
  padding: 28px;
}

.hero-card h3 {
  margin-bottom: 10px;
}

.impact-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-grid,
.vision-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-item {
  padding: 28px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.content-card,
.info-box,
.member-card {
  padding: 28px;
}

.content-card p + p,
.member-card p + p {
  margin-top: 14px;
}

.service-grid,
.committee-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
}

.service-card h3 {
  margin: 10px 0 14px;
}

.service-icon {
  font-size: 1.8rem;
}

.service-photo-placeholder,
.gallery-photo-placeholder,
.member-photo {
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  border: 2px dashed #c8c1b4;
  background: linear-gradient(135deg, #f8f5ee, #efe8da);
  color: #7b715f;
  font-weight: 700;
}

.service-photo-placeholder {
  min-height: 200px;
  margin: 8px 0 16px;
  padding: 20px;
}

.gallery-photo-placeholder {
  aspect-ratio: 4 / 3;
  padding: 20px;
}

.member-photo {
  min-height: 180px;
  margin-bottom: 18px;
}

.info-box.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.values-list li + li {
  margin-top: 8px;
}

.member-role {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer {
  background: #142b22;
  color: var(--white);
  padding: 42px 0;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero-content,
  .two-column,
  .impact-grid,
  .vision-grid,
  .footer-grid,
  .service-grid,
  .committee-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero-content,
  .impact-grid,
  .vision-grid,
  .footer-grid,
  .service-grid,
  .committee-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}
