:root {
  --teal:        #1a7a7a;
  --teal-dark:   #0f5050;
  --teal-light:  #26b8b8;
  --accent:      #2ec4b6;
  --dark:        #0c1a1a;
  --dark2:       #122828;
  --text:        #2d2d2d;
  --text-light:  #666;
  --white:       #ffffff;
  --off-white:   #f4f9f9;
  --border:      #d8eaea;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

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

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-white:hover { background: var(--off-white); color: var(--teal-dark); }

.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0d3d3d 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../wp-content/uploads/2024/12/pexels-mental-1536x1024-1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 4rem 2rem;
  margin-left: 8%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content h1 span { color: var(--accent); }

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .8rem;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span { color: var(--teal); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 3rem;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--teal-dark);
  color: var(--white);
  padding: 3.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label { font-size: .95rem; opacity: .85; margin-top: .4rem; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }

.card-img { width: 100%; height: 220px; object-fit: cover; }

.card-body { padding: 1.6rem; }
.card-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.card-body p { color: var(--text-light); font-size: .96rem; }

/* ── 2-COL SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── STAT LIST ── */
.stat-list { list-style: none; margin-top: 1.5rem; }
.stat-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.stat-list li:last-child { border-bottom: none; }
.stat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ── DARK SECTION ── */
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.72); }

/* ── OFFERINGS ── */
.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offering-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background .2s, border-color .2s;
}
.offering-card:hover {
  background: rgba(38,184,184,0.12);
  border-color: var(--accent);
}

.offering-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.offering-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .6rem;
}
.offering-card p { color: rgba(255,255,255,0.75); font-size: .95rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── CRISIS BANNER ── */
.crisis-banner {
  background: #fff3cd;
  border-left: 5px solid #e6a817;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 1rem;
  color: #5a3e00;
}
.crisis-banner a { color: #0066cc; font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.footer-brand img { height: 52px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .93rem; line-height: 1.7; }

footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: rgba(255,255,255,0.65); font-size: .93rem; }
footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .87rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .8rem;
}
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto; }

/* ── BOARD ── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.board-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}

.board-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.board-role {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.board-card p { font-size: .93rem; color: var(--text-light); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-item h4 { font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: .97rem; }

.contact-form { background: var(--off-white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--dark); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .4rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── VALUES LIST ── */
.values-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.values-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}
.values-list li strong { color: var(--teal-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .9rem 1.5rem; }
  .nav-hamburger { display: flex; }

  .hero-content { margin-left: 0; padding: 3rem 1.5rem; }

  .split { grid-template-columns: 1fr; direction: ltr; }
  .split.reverse { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr; }

  section { padding: 3.5rem 1.2rem; }
}
