:root {
  --header-h: 90px;
  --drawer-w: 360px;
  --accent: #06A383;
  --header-bg: rgba(10,12,16,.72);
  --drawer-bg: #161314;
  --line: rgba(255,255,255,.10);
  --text-on-dark: #F1F1F1;
  --muted-on-dark: #AAA8A8;
}

a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  line-height: 32px;
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 50;
  transform: translateY(0);
  transition: transform .25s ease;
  backdrop-filter: saturate(140%);
}

.site-header.is-hidden {
  transform: translateY(calc(var(--header-h) * -1));
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 64px;
  padding-right: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 22px;
  width: auto;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
}

.menu-btn-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.menu-btn-icon {
  width: 18px;
  height: 18px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.38);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(var(--drawer-w), 92vw);
  z-index: 70;
  background: var(--drawer-bg);
  color: var(--text-on-dark);
  transform: translateX(100%);
  transition: transform .28s ease;
  border-left: 1px solid rgba(255,255,255,.08);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-top {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.drawer-title {
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.drawer-close {
  border: 0;
  background: transparent;
  color: var(--text-on-dark);
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.drawer-nav {
  padding: 18px 22px 26px;
}

.drawer-group {
  display: flex;
  flex-direction: column;
}

.drawer-sep {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.drawer-link {
  position: relative;
  padding: 4px 0;
  color: var(--text-on-dark);
  font-size: 20px;
  letter-spacing: -4%;
  transition: color .18s ease;
}

.drawer-link:hover,
.drawer-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.drawer-link:hover::after,
.drawer-link:focus-visible::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--accent);
  border-radius: 2px;
}

.drawer-link.is-accent {
  color: var(--accent);
}

.drawer-link-2 {
  position: relative;
  padding: 4px 0;
  color: var(--muted-on-dark);
  font-size: 18px;
  letter-spacing: -4%;
  transition: color .18s ease;
}

.drawer-link-2:hover,
.drawer-link-2:focus-visible {
  color: var(--accent);
  outline: none;
}

.drawer-link-2:hover::after,
.drawer-link-2:focus-visible::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--accent);
  border-radius: 2px;
}

.drawer-link-2.is-accent {
  color: var(--accent);
}

.drawer-link-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--muted-on-dark);
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.donate-float {
  position: fixed;
  right: 0px;
  top: 56%;
  transform: translateY(-50%);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px 12px 20px;
  border-radius: 0px;
  background: rgba(10,12,16,.68);
  color: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}

.donate-float-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #ff5b7a;
  font-size: 16px;
}

.donate-float-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -2%;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.donate-float:hover {
  border-color: rgba(255,255,255,.28);
}

.donate-float:focus-visible {
  outline: 2px solid rgba(255,255,255,.35);
  outline-offset: 4px;
}

.site-footer {
  background: #141213;
  color: rgba(255,255,255,.86);
}

.footer-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 44px 20px 28px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}

.footer-news-title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-news-sub {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255,255,255,.62);
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-news-form {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}

.footer-news-input {
  height: 44px;
  width: 320px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: #ffffff;
  color: #0b0f19;
  font-size: 16px;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-news-input::placeholder {
  color: rgba(11,15,25,.55);
}

.footer-news-input:focus-visible {
  outline: 3px solid rgba(15,106,93,.34);
  outline-offset: 3px;
}

.footer-news-btn {
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  border: 0;
  background: #0f6a5d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.10px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  white-space: nowrap;
}

.footer-news-btn:focus-visible {
  outline: 3px solid rgba(15,106,93,.34);
  outline-offset: 4px;
}


.footer-main {
  display: grid;
  grid-template-columns: 340px 1fr 1fr 1.2fr;
  column-gap: 78px;
  align-items: start;
  padding-top: 72px;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255,255,255,.62);
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-col-title {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255,255,255,.68);
  font-weight: 400;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-link {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 400;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact .footer-link {
  font-weight: 400;
}

.footer-text {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255,255,255,.86);
  font-weight: 400;
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.16);
  margin-top: 64px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.footer-copy {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255,255,255,.56);
  font-family: "Inter","Apfel Grotezk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .80;
}

.footer-social-link:hover {
  opacity: 1;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 744px) and (max-width: 1279px) {
  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .donate-float {
    padding: 10px 20px 10px 16px;
  }
  
  .donate-float-text {
    font-size: 13px;
  }
  
  .footer-inner {
    padding: 40px 24px 24px;
  }
  
  .footer-top {
    gap: 20px;
  }
  
  .footer-news-form {
    max-width: 400px;
  }
  
  .footer-news-input {
    width: 220px;
    height: 46px;
    font-size: 15px;
  }
  
  .footer-news-btn {
    height: 46px;
    padding: 0 24px;
    font-size: 13px;
  }
  
  .footer-main {
    grid-template-columns: 280px 1fr 1fr 1.2fr;
    column-gap: 48px;
    padding-top: 64px;
  }
  
  .footer-divider {
    margin-top: 48px;
  }
}

@media (min-width: 320px) and (max-width: 743px) {
  :root {
    --header-h: 72px;
  }
  
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .brand-logo {
    height: 20px;
  }
  
  .menu-btn-text {
    font-size: 14px;
  }
  
  .menu-btn {
    padding: 8px 10px;
  }
  
  .drawer {
    width: 85vw;
  }
  
  .drawer-link {
    font-size: 20px;
  }
  
  .drawer-link-2 {
    font-size: 17px;
  }
  
  .donate-float {
    right: 0px;
    top: auto;
    bottom: 400px;
    transform: none;
    padding: 10px 16px 10px 12px;
  }
  
  .donate-float-text {
    font-size: 12px;
  }
  
  .footer-inner {
    padding: 32px 16px 20px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-news-title {
    font-size: 17px;
  }
  
  .footer-news-sub {
    font-size: 15px;
    margin-top: 4px;
  }
  
  .footer-news-form {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }
  
  .footer-news-input {
    width: auto;
    height: 44px;
    font-size: 15px;
  }
  
  .footer-news-btn {
    width: 100%;
    height: 44px;
    padding: 0 24px;
    font-size: 13px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding-top: 40px;
  }
  
  .footer-tagline {
    margin-top: 20px;
    font-size: 15px;
  }
  
  .footer-col-title {
    font-size: 13px;
  }
  
  .footer-link {
    margin-top: 12px;
    font-size: 15px;
  }
  
  .footer-text {
    margin-top: 12px;
    font-size: 15px;
  }
  
  .footer-divider {
    margin-top: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }
  
  .footer-copy {
    font-size: 14px;
  }
  
  .footer-social {
    gap: 20px;
  }
}