/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1F2937;
  background: #F7F5F0;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: #0B3B42; line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
a { color: #0B6E7A; text-decoration: none; transition: color .2s; }
a:hover { color: #F4A261; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== HEADER ========== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 24px;
  flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: #0B3B42;
}
.brand-sub { font-size: .78rem; color: #5b6b70; letter-spacing: .3px; }

.site-nav .nav-list {
  display: flex; flex-wrap: nowrap; white-space: nowrap;
  list-style: none; margin: 0; padding: 0; gap: 4px;
}
.site-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: #1F2937;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: #0B6E7A; border-bottom-color: #F4A261;
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 3px; background: #0B3B42; border-radius: 2px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(11,110,122,.88), rgba(11,59,66,.75)), center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}
.hero.hero-home { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (1).jpg'); }
.hero.hero-about { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (2).jpg'); }
.hero.hero-programs { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (4).jpg'); }
.hero.hero-community { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (6).jpg'); }
.hero.hero-resources { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (8).jpg'); }
.hero.hero-volunteer { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (10).jpg'); }
.hero.hero-news { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (11).jpg'); }
.hero.hero-contact { background-image: linear-gradient(135deg, rgba(11,110,122,.82), rgba(11,59,66,.7)), url('../../images/image (13).jpg'); }

.hero h1 { color: #fff; max-width: 820px; }
.hero p.lead { font-size: 1.2rem; max-width: 720px; opacity: .95; }
.hero .cta-row { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: .9rem;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: #F4A261; color: #0B3B42; }
.btn-primary:hover { background: #e08e4d; color: #0B3B42; }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #0B6E7A; }
.btn-solid { background: #0B6E7A; color: #fff; }
.btn-solid:hover { background: #0B3B42; color: #fff; }

/* ========== SECTIONS ========== */
section.block { padding: 72px 0; }
section.block.alt { background: #fff; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block; color: #0B6E7A;
  text-transform: uppercase; letter-spacing: 2px; font-size: .82rem;
  font-weight: 600; margin-bottom: 12px;
}
.section-head::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: #F4A261; margin: 18px auto 0;
}

/* ========== GRID / CARDS ========== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; flex: 1; }
.card-body h3 { margin-top: 0; color: #0B6E7A; }

/* ========== STATS ========== */
.stats { background: #0B6E7A; color: #fff; padding: 60px 0; }
.stats .grid-4 { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: #F4A261; font-weight: 700; }
.stat-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem; opacity: .9; }

/* ========== SPLIT / IMAGE-TEXT ========== */
.split img { border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.split h2 { color: #0B3B42; }
.split .eyebrow { color: #0B6E7A; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; font-weight: 600; margin-bottom: 12px; display: block; }

/* ========== QUOTE ========== */
.quote-block {
  background: #F7F5F0; border-left: 5px solid #F4A261;
  padding: 30px 34px; border-radius: 6px; margin: 30px 0;
  font-style: italic; color: #3a4a4d;
}
.quote-block cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: #0B6E7A; }

/* ========== LISTS ========== */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 10px 0 10px 32px; position: relative;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: #F4A261; font-weight: 700; font-size: 1.2rem;
}

/* ========== NEWS LIST ========== */
.news-item {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid #e6e2d8;
}
.news-item:last-child { border-bottom: 0; }
.news-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.news-item .meta { color: #7a8a8d; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }
.news-item h3 { margin: 6px 0 10px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { color: #0B6E7A; margin-top: 24px; }
.contact-form label { display: block; margin: 14px 0 6px; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d3cdbf;
  border-radius: 6px; font: inherit; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: #0B6E7A; box-shadow: 0 0 0 3px rgba(11,110,122,.15);
}
.contact-form .honeypot { position: absolute; left: -9999px; }
.form-msg { padding: 14px; border-radius: 6px; margin-bottom: 20px; }
.form-msg.ok { background: #d4edda; color: #155724; }
.form-msg.err { background: #f8d7da; color: #721c24; }

/* ========== FOOTER ========== */
.site-footer { background: #0B3B42; color: #d5dcdd; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 60px 24px 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo { height: 56px; width: auto; background: #fff; padding: 6px; border-radius: 6px; }
.footer-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 0; line-height: 1.3; }
.footer-title span { font-size: .85rem; font-weight: 400; color: #a4b3b5; }
.footer-blurb { font-size: .92rem; color: #a4b3b5; margin-top: 10px; }
.site-footer h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: .9rem; margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #d5dcdd; font-size: .92rem; }
.footer-links a:hover { color: #F4A261; }
.footer-contact { font-style: normal; font-size: .92rem; color: #d5dcdd; }
.footer-contact a { color: #F4A261; }
.footer-bottom {
  border-top: 1px solid #1c545e;
  padding: 20px 0;
  font-size: .85rem; text-align: center;
  color: #a4b3b5;
}

/* ========== PAGE HEADING (non-hero pages) ========== */
.page-lead { padding: 50px 0 20px; }
.page-lead h1 { color: #0B3B42; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .site-nav a { padding: 10px 10px; font-size: .85rem; }
  .brand-sub { display: none; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.1);
    max-height: 0; overflow: hidden; transition: max-height .3s;
  }
  .site-nav.open { max-height: 600px; }
  .site-nav .nav-list { flex-direction: column; padding: 12px 0; }
  .site-nav a { display: block; padding: 12px 24px; border-bottom: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .brand-title { font-size: 1rem; }
  .brand-logo { height: 46px; }
  section.block { padding: 50px 0; }
  .hero { min-height: 400px; padding: 60px 0; }
}
