:root {
  --dark: #052f27;
  --dark-2: #0b4738;
  --green: #0f7a55;
  --mint: #e7f5ee;
  --gold: #f4b942;
  --cream: #fff9ee;
  --white: #ffffff;
  --text: #10231d;
  --muted: #63746c;
  --line: #dce9e1;
  --shadow: 0 22px 60px rgba(16, 35, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(5, 47, 39, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 70px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  align-items: center;
  background: var(--gold);
  border-radius: 8px;
  color: var(--dark);
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  letter-spacing: 0;
  width: 46px;
}

.brand strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.nav-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-menu a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 11px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 99px;
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 47, 39, 0.94), rgba(5, 47, 39, 0.62)),
    url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  color: var(--white);
  display: grid;
  gap: 38px;
  min-height: 95vh;
  padding: 152px clamp(20px, 5vw, 70px) 54px;
}

.hero-content {
  max-width: 850px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.tagline {
  color: #f8d98b;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 900;
  margin: 22px 0 0;
}

.hero-text {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

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

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-stats {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 860px;
  overflow: hidden;
}

.hero-stats article {
  border-right: 1px solid var(--line);
  padding: 22px;
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--green);
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 86px clamp(20px, 5vw, 70px);
}

.split,
.team-section {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.section-copy,
.section-head {
  max-width: 900px;
}

.section-label {
  color: var(--green);
}

h2 {
  color: var(--dark);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 20px;
}

h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.image-card,
.program-card,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div,
.program-card div {
  padding: 24px;
}

.mission-section {
  background: var(--mint);
}

.section-head {
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.mission-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  min-height: 78px;
  padding: 18px 18px 18px 48px;
  position: relative;
}

.mission-grid article::before {
  align-items: center;
  background: var(--green);
  border-radius: 6px;
  color: var(--white);
  content: "+";
  display: inline-flex;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 18px;
  width: 24px;
}

.program-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  box-shadow: 0 12px 34px rgba(16, 35, 29, 0.08);
}

.program-card img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.program-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

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

.team-section h2,
.team-section .section-copy p {
  color: var(--white);
}

.team-section .section-label {
  color: var(--gold);
}

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

.team-list article {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  padding: 17px 18px;
}

.team-list span {
  color: var(--gold);
  font-weight: 900;
}

.team-list strong {
  color: var(--white);
  font-size: 18px;
}

.social-section {
  background: var(--white);
}

.social-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 35, 29, 0.06);
  display: block;
  padding: 18px;
}

.social-grid a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.social-grid span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 4px;
}

.social-grid strong {
  color: var(--dark);
  overflow-wrap: anywhere;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(5, 47, 39, 0.9), rgba(15, 122, 85, 0.76)),
    url("https://images.unsplash.com/photo-1593113598332-cd288d649433?auto=format&fit=crop&w=1600&q=80")
      center / cover;
}

.contact-panel {
  max-width: 850px;
  padding: 36px;
}

.phone-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.phone-grid a {
  background: var(--dark);
  border-radius: 8px;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  padding: 15px;
  text-align: center;
}

.site-footer {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 70px);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
  .program-grid,
  .phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    gap: 6px;
    left: 0;
    padding: 14px 18px 20px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-stats,
  .split,
  .team-section,
  .mission-grid,
  .program-grid,
  .social-grid,
  .phone-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .section {
    padding: 62px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 12px;
  }

  .contact-panel {
    padding: 26px;
  }
}
