/* ===================================================================
   SAVE — shared site stylesheet
   Base reset, layout primitives, and the global header (.nav) and
   footer (.footer) used identically across every page. Page-specific
   sections (hero, article body, topic content, etc.) live in each
   page's own <style> block.
   =================================================================== */

:root {
  --ink:     #16201a;
  --green:   #1f6b45;
  --green-d: #185437;
  --pale:    #dde9e1;
  --paper:   #ffffff;
  --soft:    #f5f8f5;
  --line:    #e7eae5;
  --muted:   #5e6660;
}

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Libre Franklin', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.022em; line-height: 1.08; }

.wrap         { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 760px;  margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Header / nav ---------- */

.brand      { display: inline-flex; flex-shrink: 0; text-decoration: none; }
.brand__img { height: 48px; width: auto; display: block; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
}

.nav__inner { display: flex; align-items: center; flex-wrap: wrap; }

.nav__bar { display: flex; align-items: center; width: 100%; height: 68px; gap: 12px; }

.nav__toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink);
  border-radius: 8px;
  flex-shrink: 0;
}
.nav__toggle:hover { background: var(--soft); }
.nav__toggle-icon--close { display: none; }
.nav--open .nav__toggle-icon--menu  { display: none; }
.nav--open .nav__toggle-icon--close { display: block; }

.nav__links {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 8px 0 16px;
  border-top: 1px solid var(--line);
}
.nav--open .nav__links { display: flex; }

.nav__link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background 0.15s;
}
.nav__link:hover { background: var(--soft); }
.nav__link--current { background: var(--pale); color: var(--green-d); }

.nav__cta {
  display: block;
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-top: 8px;
  transition: background 0.15s;
}
.nav__cta:hover { background: var(--green-d); }

@media (min-width: 900px) {
  .wrap         { padding: 0 56px; }
  .wrap--narrow { padding: 0 32px; }

  .nav__bar    { height: 84px; width: auto; }
  .nav__inner  { flex-wrap: nowrap; height: 84px; gap: 6px; }
  .nav__toggle { display: none; }

  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: auto;
    padding: 0;
    border-top: none;
    margin-left: auto;
    flex-basis: auto;
  }

  .nav__link {
    display: inline-block;
    font-size: 15px;
    padding: 9px 16px;
    border-radius: 999px;
  }

  .nav__cta {
    display: inline-block;
    padding: 11px 22px;
    margin-top: 0;
    margin-left: 6px;
  }

  .brand__img { height: 58px; }
}

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 40px 0 24px; margin-top: auto; }

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 28px;
}

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__logo { height: 48px; width: auto; flex: none; }
.footer__brand p { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 40ch; }

.footer__col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; font-weight: 600; }
.footer__col a:hover { color: var(--green-d); text-decoration: underline; }

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.footer__legal a { color: var(--green); font-weight: 600; }
.footer__legal a:hover { text-decoration: underline; }

@media (min-width: 700px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }

  .footer__legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .footer { padding: 64px 0 32px; }
  .footer__logo { height: 58px; }
}

.cky-btn.cky-btn-customize {
  color: #1f6b45 !important;
  border-color: #1f6b45 !important;
}
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-accept,
.cky-btn.cky-btn-preferences {
  background-color: #1f6b45 !important;
  border-color: #1f6b45 !important;
}
.cky-btn-revisit-wrapper,
.cky-switch input[type="checkbox"]:checked {
  background-color: #1f6b45 !important;
}
[data-cky-tag="powered-by"] {
  display: none !important;
}

.announce {
  display: none;
  position: relative;
  background: #1f6b45;
  color: #fff;
  padding: 13px 48px;
  text-align: center;
  text-wrap: balance;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.announce a {
  color: #bfe6cf;
  text-transform: uppercase;
  text-decoration: none;
}
.announce__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.announce__close:hover { color: #fff; }