/* =====================================================================
   BOACSDHR — Public site stylesheet
   ---------------------------------------------------------------------
   Modern government style:
     • Primary green    #1B5E20  (Borno institutional green)
     • Accent gold      #D4A017  (highlighted actions, decoration)
     • Deep ink         #0F2417  (headings, deep contrast text)
     • Cool gray        #5C6E73  (secondary text)
     • Soft surface     #F7F9F8  (page background tint)
     • Border           #E2E8E5  (subtle dividers)
     • White            #FFFFFF  (cards, header surface)
   Typography:
     • Headings:  "Plus Jakarta Sans" 700/800  (modern, authoritative)
     • Body:      "Inter" 400/500/600         (highly legible)
   Layout:
     • Generous whitespace (8/16/24/40/64/96 px spacing scale)
     • 12-column max-width: 1200px
     • Cards with subtle shadows + 12px radius
     • Mobile-first, responsive at 1024 / 768 / 580 / 400
   ===================================================================== */

/* ---------------------- 1. RESET & BASE ---------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2A3A40;
  background: #F7F9F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  color: #0F2417;
  line-height: 1.25;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p  { margin: 0 0 1rem; }
a  { color: #1B5E20; text-decoration: none; transition: color .15s; }
a:hover { color: #0F3B14; }

img, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem 1.25rem; padding: 0; }
li { margin-bottom: 0.35rem; }

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: #1B5E20; color: #fff; padding: 8px 14px;
  border-radius: 0 0 6px 6px; z-index: 2000; font-size: 14px;
}
.skip-link:focus { top: 0; color: #fff; }

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

/* ---------------------- 2. TOP UTILITY BAR ---------------------- */
.topbar {
  background: #0F3B14;
  color: #D7E5DA;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px;
}
.topbar__left { display: flex; align-items: center; gap: 12px; }
.topbar__link {
  color: #D4A017; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.topbar__link:hover { color: #E8C158; }
.topbar__text { color: #D7E5DA; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__right a {
  color: #D7E5DA; font-size: 16px; line-height: 1;
  transition: color .15s;
}
.topbar__right a:hover { color: #D4A017; }
.topbar__sign-in {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; padding: 4px 12px;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 999px;
  color: #D4A017 !important;
}
.topbar__sign-in:hover { background: rgba(212,160,23,0.15); color: #fff !important; }

/* ---------------------- 3. SITE HEADER ---------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #E2E8E5;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(15,36,23,0.02);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: #0F2417; }
.brand:hover { color: #1B5E20; }
.brand__logo { display: inline-flex; align-items: center; justify-content: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 22px;
  color: #1B5E20; letter-spacing: -0.02em;
}
.brand__sub {
  font-size: 11px; color: #5C6E73;
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* Primary nav */
.primary-nav { position: relative; }
.primary-nav ul {
  display: flex; gap: 4px; margin: 0; padding: 0;
  list-style: none; flex-wrap: wrap;
}
.primary-nav a {
  display: block; padding: 10px 14px;
  font-size: 14px; font-weight: 500; color: #2A3A40;
  border-radius: 8px;
  letter-spacing: -0.005em;
}
.primary-nav a:hover { background: #F2F5F4; color: #1B5E20; }
.primary-nav a.is-active {
  background: #1B5E20; color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: #EAF2EC; border: 1.5px solid #1B5E20;
  border-radius: 10px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: background .15s, transform .15s;
}
.nav-toggle:hover { background: #D4E4D8; transform: scale(1.05); }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: #1B5E20; border-radius: 2px;
  transition: transform .25s, opacity .25s, background .15s;
}
.nav-toggle.is-open { background: #1B5E20; border-color: #1B5E20; }
.nav-toggle.is-open span { background: #fff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* ---------------------- 4. BREADCRUMB ---------------------- */
.breadcrumb { padding: 14px 0 0; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; margin: 0; padding: 0;
  font-size: 13px; color: #5C6E73;
}
.breadcrumb li::after { content: "›"; margin-left: 6px; color: #B3C1C5; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: #5C6E73; }
.breadcrumb a:hover { color: #1B5E20; }

/* ---------------------- 5. BUTTONS ---------------------- */
.btn, .button, button[type=submit], button[type=button] {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .1s;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn:hover, .button:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary, .button--primary {
  background: #1B5E20; color: #fff;
  box-shadow: 0 1px 2px rgba(15,36,23,0.08), 0 4px 8px rgba(15,36,23,0.06);
}
.btn--primary:hover { background: #0F3B14; color: #fff; }
.btn--accent {
  background: #D4A017; color: #0F2417;
  box-shadow: 0 1px 2px rgba(212,160,23,0.16);
}
.btn--accent:hover { background: #C19114; color: #0F2417; }
.btn--ghost, .button--ghost {
  background: transparent; color: #1B5E20;
  border-color: #C5D5C9;
}
.btn--ghost:hover { background: #F2F5F4; }
.btn--danger { background: #C53030; color: #fff; }
.btn--danger:hover { background: #A02626; color: #fff; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------------------- 6. SECTIONS ---------------------- */
.section { padding: 64px 0; }
.section--tint  { background: #F7F9F8; }
.section--dark  { background: #0F2417; color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--green { background: #1B5E20; color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }

.section__head { max-width: 760px; margin-bottom: 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #1B5E20; margin: 0 0 12px;
}
.section__eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 2px; background: #D4A017;
}
.section--dark .section__eyebrow, .section--green .section__eyebrow { color: #D4A017; }
.section--dark .section__eyebrow::before, .section--green .section__eyebrow::before { background: #D4A017; }

.section__title { margin-bottom: 12px; }
.section__lead { color: #5C6E73; font-size: 1.05rem; line-height: 1.7; margin: 0; }
.section--dark .section__lead, .section--green .section__lead { color: rgba(255,255,255,0.85); }

/* ---------------------- 7. HERO ---------------------- */
.hero {
  position: relative; padding: 80px 0 96px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212,160,23,0.12), transparent 50%),
    linear-gradient(135deg, #1B5E20 0%, #0F3B14 60%, #0A2A0E 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; background: rgba(212,160,23,0.16);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #D4A017;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1;
  max-width: 900px; margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: #D4A017; }
.hero__subtitle {
  font-size: 1.125rem; line-height: 1.7;
  max-width: 720px; color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800; color: #D4A017;
  line-height: 1;
}
.hero__stat__label {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-top: 6px; letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------------------- 7b. HERO SLIDER ---------------------- */
.hero-slider {
  position: relative;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
  background: #0F2417;
}
.hero-slider__track {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex; align-items: center;
  padding: 80px 0 80px;   /* bottom padding is for dots; stats are now a separate block */
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-slide__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,36,23,0.92) 0%, rgba(15,36,23,0.7) 50%, rgba(15,36,23,0.4) 100%),
    linear-gradient(180deg, rgba(15,36,23,0.2) 0%, rgba(15,36,23,0.6) 70%, rgba(15,36,23,0.95) 100%);
  z-index: 0;
}
.hero-slide__inner {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero-slide__title {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}

/* Hero stats band — kept as a SIBLING block below the slider so it never
   overlaps slide content or the dots indicator. Sits as a clean separate
   dark-green block immediately below the slider on ALL screen sizes. */
.hero-stats-band {
  position: relative;
  z-index: 4;
  background: #0F2417;
  padding: 36px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-band .hero__stats {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Navigation arrows — default (desktop) styles */
.hero-slider__arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(15,36,23,0.35);              /* was 0.55 — more transparent so text shows through */
  border: 1.5px solid rgba(255,255,255,0.55);    /* brighter border for visibility */
  border-radius: 50%;
  color: #fff;
  cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .15s, transform .15s, border-color .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  touch-action: manipulation;            /* eliminates 300ms double-tap zoom delay on mobile */
  -webkit-tap-highlight-color: transparent;  /* removes gray tap flash on mobile */
}
.hero-slider__arrow svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));  /* crisp white chevron on any background */
  pointer-events: none;                /* CRITICAL: lets taps pass through SVG to the button */
}
.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: rgba(212,160,23,0.95);
  border-color: #D4A017;
  color: #0F2417;
  transform: translateY(-50%) scale(1.08);
  outline: none;
}
.hero-slider__arrow--prev { left: 24px; }
.hero-slider__arrow--next { right: 24px; }

/* Dot indicators */
.hero-slider__dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 8px;
  z-index: 5;
}
.hero-slider__dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  border: none; border-radius: 50%;
  cursor: pointer; padding: 0;
  transition: background .15s, width .25s;
}
.hero-slider__dot:hover { background: rgba(255,255,255,0.7); }
.hero-slider__dot.is-active {
  background: #D4A017;
  width: 32px; border-radius: 5px;
}

/* Responsive — desktop tablet */
@media (max-width: 1024px) {
  .hero-slider { min-height: 560px; }
  .hero-slide { padding: 64px 0 80px; }
  .hero-slider__arrow { width: 48px; height: 48px; }
  .hero-slider__arrow--prev { left: 16px; }
  .hero-slider__arrow--next { right: 16px; }
}

/* Responsive — mobile: move arrows to BOTTOM corners so they don't overlap slide text */
@media (max-width: 880px) {
  .hero-slider { min-height: 520px; }
  .hero-slide { padding: 56px 0 72px; }
  /* Stats band: smaller padding on mobile (was 32px 0 36px) */
  .hero-stats-band {
    padding: 28px 0 32px;
  }
  .hero-stats-band .hero__stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .hero-stats-band .hero__stat__value { font-size: 1.65rem; }
  .hero-stats-band .hero__stat__label { font-size: 11px; }
  /* Arrows: same visual style as desktop (dark green semi-transparent +
     white chevron), but positioned at bottom-left and bottom-right corners
     so they don't overlap slide text on mobile. */
  .hero-slider__arrow {
    width: 44px; height: 44px;         /* slightly smaller than desktop's 52px */
    top: auto;                          /* override desktop's top: 50% */
    bottom: 14px;                       /* sit at the bottom edge */
    transform: none;                    /* override desktop's translateY(-50%) */
    /* Visual style matches desktop — inherited from the base rule:
       background: rgba(15,36,23,0.35), border: 1.5px solid rgba(255,255,255,0.55),
       color: #fff, backdrop-filter: blur(4px), box-shadow */
  }
  /* Override the hover transform (no translateY needed at bottom) */
  .hero-slider__arrow:hover,
  .hero-slider__arrow:focus-visible {
    transform: scale(1.1);
  }
  /* NEW — only arrows hidden, dots stay visible */
.hero-slider__arrow { display: none !important; }
/* Dots: larger and easier to tap on mobile */
.hero-slider__dots { bottom: 20px; gap: 10px; }
.hero-slider__dot { width: 12px; height: 12px; }
.hero-slider__dot.is-active { width: 36px; }
}

/* Responsive — small mobile */
@media (max-width: 580px) {
  .hero-slider { min-height: 480px; }
  .hero-slide { padding: 44px 0 64px; }
  .hero-slide__title { font-size: 1.6rem; line-height: 1.2; }
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero__actions .btn { padding: 5px 13px; font-size: 13px; }
  /* Arrows: same desktop style, just slightly smaller for tiny screens */
  .hero-slider__arrow { width: 38px; height: 38px; }
  .hero-slider__arrow--prev { left: 12px; }
  .hero-slider__arrow--next { right: 12px; }
  .hero-slider__dots { bottom: 22px; }
  .hero-stats-band .hero__stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .hero-stats-band .hero__stat__value { font-size: 1.4rem; }
  .hero-stats-band .hero__stat__label { font-size: 10px; }
}

/* Responsive — extra-small mobile (phones <380px) */
@media (max-width: 380px) {
  .hero-slider { min-height: 440px; }
  .hero-slide { padding: 36px 0 56px; }
  .hero-slide__title { font-size: 1.4rem; }
  .hero__subtitle { font-size: 0.9rem; }
  .hero-stats-band .hero__stat__value { font-size: 1.2rem; }
  .hero-stats-band .hero__stat__label { font-size: 9px; letter-spacing: 0.03em; }
}

@media print {
  .hero-slider { min-height: auto; }
  .hero-slider__arrow, .hero-slider__dots { display: none; }
}

/* ---------------------- 8. CARDS GRID ---------------------- */
.cards-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.cards-grid--2 { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
.cards-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid #E2E8E5;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(15,36,23,0.08);
  transform: translateY(-3px);
  border-color: #D4A017;
}
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1B5E20, #0F3B14);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 48px;
}
.card__media--placeholder::after {
  content: "BO"; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800;
  color: rgba(212,160,23,0.45);
  letter-spacing: -0.04em;
}
.card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: #1B5E20;
}
.card__body {
  padding: 22px 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.card__date {
  font-size: 12px; color: #5C6E73;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.card__title {
  font-size: 1.0625rem; font-weight: 700;
  color: #0F2417; line-height: 1.35;
  margin: 0 0 10px;
}
.card__excerpt {
  color: #5C6E73; font-size: 14px;
  line-height: 1.55; margin: 0 0 16px;
  flex: 1;
}
.card__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid #F0F4F2;
}
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #1B5E20; font-weight: 600; font-size: 14px;
}
.card__link:hover { color: #D4A017; gap: 10px; }
.card__meta { font-size: 12px; color: #5C6E73; }

/* ---------------------- 10. DEV PILLARS GRID ---------------------- */
.pillars-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.pillar-card {
  background: #fff;
  border: 1px solid #E2E8E5;
  border-radius: 12px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,36,23,0.08);
}
.pillar-card__number {
  position: absolute; top: 16px; right: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: #F0E8C8; line-height: 1;
}
.pillar-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: #EAF2EC; color: #1B5E20;
  border-radius: 10px; font-size: 24px;
  margin-bottom: 14px;
}
.pillar-card__title {
  font-size: 0.95rem; font-weight: 700; color: #0F2417;
  margin: 0 0 6px; line-height: 1.35;
}
.pillar-card__summary {
  font-size: 13px; color: #5C6E73; line-height: 1.5; margin: 0;
}

/* What-we-do / functions list */
.functions-list {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.function-card {
  background: #fff; border: 1px solid #E2E8E5; border-radius: 12px;
  padding: 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.function-card:hover { border-color: #1B5E20; box-shadow: 0 6px 20px rgba(15,36,23,0.06); }
.function-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: #1B5E20; color: #fff;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.function-card__body h4 { font-size: 1rem; margin: 0 0 4px; color: #0F2417; }
.function-card__body p { font-size: 13px; color: #5C6E73; margin: 0; line-height: 1.5; }

/* ---------------------- 11. TEAM ---------------------- */
.team-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.team-card {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 14px; overflow: hidden;
  text-align: center; padding: 32px 22px;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,36,23,0.08); }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, #1B5E20, #D4A017);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 38px;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 700;
  color: #0F2417; margin: 0 0 4px;
}
.team-card__title {
  font-size: 13px; color: #1B5E20;
  font-weight: 600; margin: 0 0 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.team-card__bio {
  font-size: 13px; color: #5C6E73; line-height: 1.55; margin: 0;
}

/* ---------------------- 12. EVENTS ---------------------- */
.event-list { display: grid; gap: 16px; }
.event-item {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 96px 1fr;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.event-item:hover { border-color: #D4A017; box-shadow: 0 6px 18px rgba(15,36,23,0.06); }
.event-item__date {
  background: linear-gradient(135deg, #1B5E20, #0F3B14);
  color: #fff; padding: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.event-item__date-day {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800; line-height: 1;
}
.event-item__date-month {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}
.event-item__body { padding: 18px 22px; }
.event-item__title { margin: 0 0 6px; font-size: 1.0625rem; }
.event-item__meta { font-size: 13px; color: #5C6E73; margin: 0 0 8px; }
.event-item__meta i { color: #1B5E20; margin-right: 6px; }
.event-item__desc { font-size: 14px; color: #2A3A40; margin: 0; }

/* ---------------------- 13. PARTNERS LIST ---------------------- */
.partner-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.partner-card {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 12px; padding: 22px;
  display: flex; gap: 16px; align-items: center;
  transition: box-shadow .2s, border-color .2s;
}
.partner-card:hover { box-shadow: 0 6px 18px rgba(15,36,23,0.06); border-color: #1B5E20; }
.partner-card__logo {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: #F2F5F4; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #1B5E20; font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}
.partner-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.partner-card__name { margin: 0 0 4px; font-size: 1rem; color: #0F2417; }
.partner-card__type {
  display: inline-block; padding: 2px 8px;
  background: #EAF2EC; color: #1B5E20;
  border-radius: 4px; font-size: 11px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.partner-card__meta { font-size: 12px; color: #5C6E73; margin: 0; }

/* ---------------------- 14. GALLERY ---------------------- */
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; background: #1B5E20;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,36,23,0.7));
  display: flex; align-items: flex-end; padding: 14px;
  color: #fff; font-size: 13px; line-height: 1.4;
}

.album-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.album-card {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.album-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,36,23,0.08); }
.album-card__cover { aspect-ratio: 16 / 10; background: #1B5E20; }
.album-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.album-card__body { padding: 20px; }
.album-card__title { margin: 0 0 6px; font-size: 1.0625rem; }
.album-card__meta { font-size: 13px; color: #5C6E73; margin: 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,36,23,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 90vh; border-radius: 8px; }
.lightbox__close {
  position: absolute; top: 18px; right: 24px;
  background: transparent; color: #fff; border: none;
  font-size: 32px; cursor: pointer; line-height: 1;
}
.lightbox__caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.85);
  font-size: 14px; padding: 0 24px;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); color: #fff;
  border: none; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ---------------------- 15. DOWNLOADS ---------------------- */
.download-list { display: grid; gap: 12px; }
.download-item {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 12px; padding: 18px 22px;
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 16px; align-items: center;
  transition: border-color .2s, box-shadow .2s;
}
.download-item:hover { border-color: #1B5E20; box-shadow: 0 4px 12px rgba(15,36,23,0.04); }
.download-item__icon {
  width: 44px; height: 44px;
  background: #EAF2EC; color: #1B5E20;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.download-item__title { margin: 0 0 4px; font-size: 0.95rem; color: #0F2417; }
.download-item__meta { font-size: 12px; color: #5C6E73; margin: 0; }

/* ---------------------- 16. CONTACT ---------------------- */
.contact-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info { display: grid; gap: 20px; }
.contact-info__item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: #fff;
  border: 1px solid #E2E8E5; border-radius: 12px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: #1B5E20; color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.contact-info__label {
  font-size: 12px; color: #5C6E73;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 4px;
}
.contact-info__value { margin: 0; font-weight: 500; color: #0F2417; }
.contact-info__value a { color: #0F2417; }
.contact-info__value a:hover { color: #1B5E20; }

/* Forms */
.form-card {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 16px; padding: 32px;
}
.form-row {
  display: grid; gap: 18px; margin-bottom: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .form-row--two { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 6px;
  font-weight: 500; font-size: 14px; color: #0F2417;
}
.form-group label .req { color: #C53030; }
.form-group .help { font-size: 12px; color: #5C6E73; margin-top: 4px; }

input[type=text], input[type=email], input[type=password],
input[type=tel], input[type=url], input[type=date], input[type=datetime-local],
input[type=number], select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C5D5C9;
  border-radius: 10px;
  font-family: inherit; font-size: 14px;
  background: #fff;
  color: #0F2417;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: #1B5E20;
  box-shadow: 0 0 0 3px rgba(27,94,32,0.15);
}
textarea { min-height: 120px; resize: vertical; }

.field-error {
  border-color: #C53030 !important;
  box-shadow: 0 0 0 3px rgba(197,48,48,0.15) !important;
}
.field-error-msg { color: #C53030; font-size: 12px; margin-top: 4px; }

/* ---------------------- 17. ABOUT / CONTENT PAGE ---------------------- */
.content-page { padding: 64px 0; }
.content-page__layout {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .content-page__layout { grid-template-columns: 2fr 1fr; }
}
.content-page__main {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 16px; padding: 40px;
}
.content-page__main p { line-height: 1.8; color: #2A3A40; }
.content-page__main h2 { margin-top: 32px; }
.content-page__main h3 { margin-top: 24px; }
.content-page__main ul, .content-page__main ol { line-height: 1.8; }
.content-page__sidebar { display: grid; gap: 24px; align-content: start; }

.sidebar-card {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 14px; padding: 22px;
}
.sidebar-card h3 {
  font-size: 1rem; margin: 0 0 14px;
  padding-bottom: 12px; border-bottom: 1px solid #F0F4F2;
}

.value-block {
  padding: 24px; background: #fff;
  border: 1px solid #E2E8E5; border-radius: 14px;
  display: flex; gap: 16px; align-items: flex-start;
}
.value-block__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800; color: #D4A017;
  flex-shrink: 0; line-height: 1;
}
.value-block__title { margin: 0 0 6px; font-size: 1rem; color: #0F2417; }
.value-block__text { font-size: 14px; color: #5C6E73; margin: 0; line-height: 1.55; }

/* ---------------------- 18. ARTICLE / EVENT DETAIL ---------------------- */
.article {
  background: #fff; border: 1px solid #E2E8E5;
  border-radius: 16px; padding: 40px;
  max-width: 820px; margin: 0 auto;
}
.article__meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; color: #5C6E73;
  margin-bottom: 16px;
}
.article__meta .badge { background: #EAF2EC; color: #1B5E20; padding: 4px 10px; border-radius: 4px; }
.article__title { margin: 0 0 16px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.article__featured { margin: 24px 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; background: #1B5E20; }
.article__featured img { width: 100%; height: 100%; object-fit: cover; }
.article__body { font-size: 1.0625rem; line-height: 1.8; color: #2A3A40; }
.article__body p { margin: 0 0 18px; }
.article__body h2 { margin-top: 36px; }
.article__body img { border-radius: 8px; margin: 18px 0; }

.article-share {
  display: flex; gap: 14px; align-items: center;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid #F0F4F2;
}
.article-share__label { font-size: 14px; font-weight: 600; color: #5C6E73; }

/* ---------------------- 19. STAT BAND (about page) ---------------------- */
.stat-band {
  background: #1B5E20; color: #fff; padding: 48px 0;
}
.stat-band__grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat-band__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: #D4A017;
  line-height: 1;
}
.stat-band__label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 6px; }

/* ---------------------- 20. ALERTS ---------------------- */
.alert {
  padding: 14px 20px; border-radius: 10px;
  margin: 0 0 24px; font-size: 14px;
  border-left: 4px solid;
}
.alert-success { background: #EAF2EC; color: #1B5E20; border-color: #1B5E20; }
.alert-error   { background: #FBEAEA; color: #C53030; border-color: #C53030; }
.alert-warning { background: #FDF6E3; color: #8A6D1F; border-color: #D4A017; }
.alert-info    { background: #E8F2F6; color: #1B5E78; border-color: #1B5E78; }

/* ---------------------- 21. BADGES ---------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-published  { background: #EAF2EC; color: #1B5E20; }
.badge-draft      { background: #F2F5F4; color: #5C6E73; }
.badge-archived   { background: #ECEFF1; color: #607D8B; }
.badge-upcoming   { background: #E8F2F6; color: #1B5E78; }
.badge-completed  { background: #EAF2EC; color: #1B5E20; }
.badge-cancelled  { background: #FBEAEA; color: #C53030; }
.badge-pending    { background: #FDF6E3; color: #8A6D1F; }
.badge-approved   { background: #EAF2EC; color: #1B5E20; }
.badge-rejected   { background: #FBEAEA; color: #C53030; }
.badge-suspended  { background: #ECEFF1; color: #607D8B; }
.badge-active     { background: #EAF2EC; color: #1B5E20; }
.badge-new        { background: #D4A017; color: #0F2417; }
.badge-read       { background: #F2F5F4; color: #5C6E73; }
.badge-replied    { background: #E8F2F6; color: #1B5E78; }
.badge-default    { background: #F2F5F4; color: #5C6E73; }

/* ---------------------- 22. PAGINATION ---------------------- */
.pagination {
  display: flex; gap: 4px; justify-content: center;
  margin: 40px 0 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid #E2E8E5; border-radius: 8px;
  font-size: 14px; color: #0F2417;
  text-decoration: none;
}
.pagination a:hover { background: #F2F5F4; border-color: #1B5E20; color: #1B5E20; }
.pagination .current { background: #1B5E20; color: #fff; border-color: #1B5E20; }
.pagination .ellipsis { border: none; }

/* ---------------------- 23. FOOTER ---------------------- */
.site-footer {
  background: #0F2417;
  color: #D7E5DA;
  padding-top: 64px;
  margin-top: 80px;
}
.site-footer__top {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: #fff; }
.footer-brand__sub  { font-size: 11px; color: #8FA898; text-transform: uppercase; letter-spacing: 0.12em; }

.footer-about { font-size: 14px; line-height: 1.7; color: #B3C1C5; margin: 0 0 18px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border-radius: 8px;
  color: #fff; font-size: 16px;
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: #D4A017; color: #0F2417; }

.footer-col__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #B3C1C5; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: #D4A017; }
.footer-links a::before { content: "›"; color: #D4A017; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px; font-size: 14px; color: #B3C1C5;
}
.footer-contact i { color: #D4A017; margin-top: 4px; }
.footer-contact a { color: #B3C1C5; }
.footer-contact a:hover { color: #D4A017; }

.site-footer__bottom { padding: 22px 0; }
.site-footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #8FA898;
}
.footer-credit a { color: #D4A017; }

/* ---------------------- 24. BACK TO TOP ---------------------- */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: #1B5E20; color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  box-shadow: 0 4px 12px rgba(15,36,23,0.2);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, background .15s, transform .15s;
  z-index: 99;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: #D4A017; transform: translateY(-2px); }

/* ---------------------- 25. EMPTY STATES ---------------------- */
.empty-state {
  text-align: center; padding: 60px 20px;
  background: #fff; border: 1px dashed #D5DDD7;
  border-radius: 14px;
  color: #5C6E73;
}
.empty-state i { font-size: 48px; color: #B3C1C5; margin-bottom: 12px; }
.empty-state h3 { margin: 0 0 6px; color: #0F2417; }
.empty-state p { margin: 0; }

/* ---------------------- 26. UTILITY CLASSES ---------------------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 40px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 40px !important; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 12px; }
.gap-3 { gap: 24px; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.section-divider { height: 1px; background: #E2E8E5; margin: 64px 0; border: 0; }

/* ---------------------- 27. RESPONSIVE ---------------------- */
@media (max-width: 1024px) {
  .primary-nav a { padding: 10px 10px; font-size: 13px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  /* Mobile nav uses OVERLAY behavior with high z-index.
     Position: absolute takes it OUT of the flex layout so the hamburger
     naturally aligns to the right edge of the header.
     When closed: completely invisible — no padding, no border, no shadow
     (this fixes the green strip leak the user reported). */
  .primary-nav {
    position: absolute;          /* out of flex flow — hamburger goes right */
    top: 100%;                   /* sits just below the header */
    left: 0; right: 0;
    background: #fff;
    /* Closed state — all visual properties zeroed to prevent any leak */
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    transition: max-height .3s ease, padding .3s ease, box-shadow .3s ease;
    z-index: 200;                /* always above hero */
  }
  .primary-nav.is-open {
    max-height: 600px;
    padding: 14px 24px 24px;
    border-bottom: 1px solid #E2E8E5;
    box-shadow: 0 12px 24px rgba(15,36,23,0.08);
  }
  .primary-nav ul { flex-direction: column; gap: 4px; }
  .primary-nav a { padding: 12px 14px; border-radius: 8px; }
  .primary-nav a.is-active { background: #1B5E20; color: #fff; }
  .topbar__left { display: none; }
  /* Hide topbar social icons on mobile — only Admin Sign In remains, declutters the bar */
  .topbar__right > a:not(.topbar__sign-in) { display: none; }
  .section { padding: 48px 0; }
  .hero { padding: 56px 0 64px; }
  .hero__stats { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .cards-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 80px 1fr; }
  .form-card, .content-page__main, .article { padding: 24px; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .topbar__right { gap: 12px; }
  .topbar__sign-in { padding: 4px 10px; font-size: 12px; }
  .brand__sub { display: none; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .article__title { font-size: 1.5rem; }
  .event-item__date { padding: 12px 8px; }
  .event-item__date-day { font-size: 22px; }
  .event-item__body { padding: 14px 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------------------- 28. PRINT ---------------------- */
@media print {
  .topbar, .site-header, .breadcrumb, .site-footer, .back-to-top, .nav-toggle { display: none; }
  body { background: #fff; }
  .hero { padding: 32px 0; background: #fff; color: #0F2417; }
  .hero h1, .hero__subtitle { color: #0F2417; }
}
