/* --- CSS VARIABLES FROM REFERENCE --- */
:root {
  --green: #224931;
  --green-mid: #2d6140;
  --green-lt: #3e8347;
  --green-pale: #a8c5b0;
  --cream: #f2f4f2;
  --cream-dk: #e6e9e6;
  --white: #ffffff;
  --text: #1a2e22;
  --muted: #6b8070;
  --border: #dde8e1;
  --accent: #3e8347;
}

/* --- NAV --- */
nav.new-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #224931 !important;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Red Hat Text', sans-serif;
  font-size: 13px;
  color: #224931 !important;
  text-decoration: none !important;
  padding: 7px 13px;
  border-radius: 5px;
  font-weight: 500;
  transition: color .15s, background .15s;
  line-height: 1.2;
  display: inline-block;
}

.nav-link:hover {
  background: var(--cream);
}

.nav-cta {
  background: #224931 !important;
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: -.01em;
  transition: background .15s, transform .1s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: #2d6140 !important;
  transform: translateY(-1px);
}

.nav-signin {
  font-family: 'Red Hat Text', sans-serif;
  font-size: 13px;
  color: #224931 !important;
  text-decoration: none !important;
  padding: 7px 13px;
  font-weight: 500;
  transition: color .15s;
  line-height: 1.2;
}


.nav-signin:hover {
  color: #224931 !important;
}

/* --- MOBILE & RESPONSIVE --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 1024px) {
  nav.new-nav {
    padding: 0 20px;
  }
  .desktop-only {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
}

/* Full Screen Mobile Menu */
.new-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(180deg, rgba(26, 46, 34, 0.95) 0%, rgba(34, 73, 49, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
}

.new-mobile-menu.open {
  visibility: visible;
  transform: translateY(0);
}

.nmm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nmm-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nmm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 24px 80px;
  text-align: center;
}

.nmm-link {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  padding: 14px 16px;
  transition: color 0.2s, transform 0.2s;
  display: block;
}

.nmm-link:hover {
  color: #ffffff !important;
}

.nmm-link:active {
  transform: scale(0.96);
}

.nmm-signin {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  padding: 14px 16px;
  transition: color 0.2s, transform 0.2s;
  display: block;
}

.nmm-cta {
  background: #ffffff;
  color: #224931 !important;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 18px 32px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 320px;
  transition: transform 0.2s;
}

.nmm-cta:active {
  transform: scale(0.96);
}




/* --- FOOTER --- */
footer {
  background: var(--green);
  border-top: 1px solid rgba(168, 197, 176, .15);
  padding: 48px 48px 32px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  max-width: 280px;
}

.footer-mission {
  font-size: 13px;
  color: var(--green-pale);
  line-height: 1.7;
  margin-top: 12px;
  font-style: italic;
}

.footer-col-h {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 24px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(168, 197, 176, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all .15s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(168, 197, 176, .4);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 197, 176, .12);
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-bottom-links {
  display: flex; gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  text-decoration: none;
  transition: color .15s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .5);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-links .nav-link {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
