:root {
  --blue: #0869c9;
  --blue-deep: #064f9c;
  --green: #2c8c1f;
  --green-deep: #0d3a24;
  --green-dark: #031f18;
  --yellow: #ffc400;
  --yellow-deep: #e5aa00;
  --ink: #071327;
  --muted: #5f6b7a;
  --line: #d9e1e8;
  --panel: #ffffff;
  --soft: #f5f8fb;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(6, 31, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 58px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(4, 26, 54, 0.1);
  box-shadow: 0 6px 22px rgba(4, 26, 54, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 410px;
}

.brand-logo {
  width: 100px;
  height: 70px;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 98px;
  height: 68px;
  object-fit: contain;
}

.brand-rule {
  width: 1px;
  height: 52px;
  background: #aeb8c2;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: clamp(1.6rem, 2.35vw, 2.35rem);
  line-height: 1;
  color: var(--green);
  font-weight: 900;
}

.brand-copy strong span {
  color: var(--blue);
}

.brand-copy small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #12223a;
  font-size: 0.98rem;
}

.brand-copy svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  fill: var(--green);
  stroke-width: 2.6;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 34px);
  font-weight: 700;
  color: #081226;
}

.site-nav > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.site-nav svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  padding: 0 22px;
  border-radius: 5px;
  background: var(--yellow);
  border: 1px solid var(--yellow-deep);
  box-shadow: 0 7px 0 #d19600;
  color: #071327;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(2px);
  box-shadow: 0 5px 0 #d19600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

.menu-toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-toggle svg {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(600px, 47%) 1fr;
  min-height: 455px;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 455px;
  padding: 52px 24px 74px 60px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    linear-gradient(135deg, #021f18 0%, #02291f 100%);
  background-size: 28px 28px, 42px 42px, auto;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0 54px 0 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(28deg, transparent 0 22px, rgba(155, 212, 112, 0.2) 23px 24px, transparent 25px 58px),
    repeating-linear-gradient(-20deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px, transparent 37px 70px);
  mix-blend-mode: screen;
}

.accent-marks {
  position: absolute;
  top: 58px;
  right: 86px;
  width: 82px;
  height: 64px;
  transform: rotate(12deg);
}

.accent-marks span {
  position: absolute;
  display: block;
  width: 12px;
  height: 48px;
  border-radius: 999px;
  background: #8bd13a;
  transform-origin: bottom center;
}

.accent-marks span:nth-child(1) {
  left: 8px;
  top: 14px;
  transform: rotate(18deg);
}

.accent-marks span:nth-child(2) {
  left: 32px;
  top: 4px;
  transform: rotate(4deg);
}

.accent-marks span:nth-child(3) {
  left: 55px;
  top: 12px;
  transform: rotate(-20deg);
}

.accent-marks span:nth-child(4) {
  left: 72px;
  top: 32px;
  height: 30px;
  transform: rotate(-48deg);
}

.kicker,
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kicker {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.6vw, 5.55rem);
  line-height: 0.88;
  color: #ffffff;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
}

.hero h1 {
  max-width: 620px;
  line-height: 0.86;
  font-size: clamp(4.5rem, 7vw, 7.7rem);
}

.hero-leading {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  transform: rotate(-4deg);
  transform-origin: left center;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.18);
}

.hero-leading::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 4px;
  bottom: 6px;
  height: 9px;
  background: var(--yellow);
  transform: rotate(1deg);
  box-shadow: 0 8px 0 rgba(255, 196, 0, 0.18);
}

.hero h1 span:last-child {
  display: block;
  color: #ffffff;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 18px 0 18px;
  font-size: clamp(1.18rem, 1.7vw, 1.62rem);
  line-height: 1.12;
  font-weight: 800;
}

.hero-text strong {
  color: #9adb4d;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 7px;
  border: 2px solid #79d43f;
  background: #ffffff;
  color: #09233f;
  font-weight: 900;
  font-size: 0.86rem;
  white-space: nowrap;
  box-shadow: 0 6px 0 rgba(121, 212, 63, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-actions a:nth-child(3) {
  border-color: #0098df;
  box-shadow: 0 6px 0 rgba(0, 152, 223, 0.28);
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(121, 212, 63, 0.35);
}

.hero-actions svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 1.9;
}

.hero-actions a:nth-child(3) svg {
  color: var(--blue);
}

.hero-photo {
  position: relative;
  min-height: 455px;
  margin-left: -112px;
  background: #dfeaf3;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 31, 24, 0.35), rgba(2, 31, 24, 0) 20%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(1.08) contrast(1.04);
}

.impact-strip {
  position: relative;
  z-index: 5;
  max-width: 1390px;
  width: calc(100% - 96px);
  margin: -26px auto 0;
}

.impact-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 96px;
  overflow: hidden;
  border: 1px solid rgba(4, 26, 54, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 36px;
  border-right: 1px solid #cdd6df;
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
}

.stat-icon.blue {
  background: linear-gradient(135deg, #0a73d8, #095bb2);
}

.stat-icon.green {
  background: linear-gradient(135deg, #45a832, #1f7e19);
}

.stat-icon.yellow {
  background: linear-gradient(135deg, #ffc400, #f0b000);
}

.stat-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.stat small,
.stat em {
  display: block;
  font-style: normal;
}

.stat small {
  color: #071327;
  font-size: 0.77rem;
  text-transform: uppercase;
  font-weight: 900;
}

.stat strong {
  display: block;
  margin-top: -4px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  color: #143a38;
  font-weight: 900;
  white-space: nowrap;
}

.stat em {
  margin-top: 2px;
  color: #2d394a;
  font-size: 0.95rem;
  font-weight: 500;
}

.campaigns {
  max-width: 1390px;
  width: calc(100% - 96px);
  margin: 18px auto 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding: 0 12px;
}

.section-heading h2,
.fieldwork h2 {
  margin: 0;
  color: #081226;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.02;
  font-weight: 900;
}

.section-heading p {
  margin: 4px 0 0;
  color: #42516b;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #005fc7;
  font-weight: 800;
  white-space: nowrap;
}

.text-link svg {
  width: 19px;
  height: 19px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.campaign-card {
  min-height: 214px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border: 1px solid #d9e1e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(4, 26, 54, 0.08);
}

.campaign-image {
  position: relative;
  overflow: hidden;
  background: #dce6ed;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  object-position: center;
}

.campaign-card:nth-child(1) .campaign-image img {
  object-position: center 58%;
}

.campaign-card:nth-child(2) .campaign-image img {
  object-position: center 42%;
}

.image-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: 72%;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.campaign-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 2px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-topline.ongoing span {
  background: #2e8f23;
}

.card-topline > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #d7e1d2;
  border-radius: 50%;
  color: var(--green);
}

.campaign-content h3 {
  margin: 4px 0 4px;
  color: #071327;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1.05;
  font-weight: 900;
}

.campaign-content p {
  margin: 0 0 8px;
  color: #273448;
  font-size: 0.94rem;
  line-height: 1.35;
}

.campaign-content ul {
  display: grid;
  gap: 2px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #172233;
  font-size: 0.88rem;
}

.campaign-content li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaign-content li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--green);
  fill: var(--green);
}

.learn-more {
  align-self: flex-start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 0 15px;
  border-radius: 4px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.87rem;
  font-weight: 900;
  box-shadow: 0 5px 0 #034f9c;
}

.learn-more svg {
  width: 16px;
  height: 16px;
}

.movement {
  max-width: 1390px;
  width: calc(100% - 96px);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 3.1fr 1.15fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #1f7e18, #329321);
  box-shadow: var(--shadow);
}

.solution-panel,
.movement-cta {
  background: var(--yellow);
  color: #071327;
}

.solution-panel {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 26px;
}

.solution-panel svg {
  width: 54px;
  height: 54px;
  color: #051c33;
  stroke-width: 2.2;
}

.solution-panel strong,
.solution-panel span,
.movement-actions strong,
.movement-actions small {
  display: block;
}

.solution-panel strong {
  font-size: 1.2rem;
  font-weight: 900;
}

.solution-panel span {
  font-size: 0.86rem;
}

.movement-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.movement-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.movement-actions a:last-child {
  border-right: 0;
}

.movement-actions svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.1;
}

.movement-actions strong {
  font-size: 1rem;
  font-weight: 900;
}

.movement-actions small {
  font-size: 0.82rem;
}

.movement-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 16px 22px;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 900;
  box-shadow: 0 5px 0 #c99300;
}

.movement-cta svg {
  width: 20px;
  height: 20px;
}

.fieldwork {
  max-width: 1390px;
  width: calc(100% - 96px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 26px;
  align-items: stretch;
  padding: 28px;
  border-radius: 8px;
  background: #f3f8f4;
  border: 1px solid #dce8dc;
}

.fieldwork-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: #dff4d9;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.fieldwork-copy p {
  max-width: 560px;
  color: #415166;
  font-size: 1.02rem;
}

.fieldwork-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
}

.fieldwork-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.fieldwork-gallery img:first-child {
  object-position: center;
}

.fieldwork-gallery img:last-child {
  object-position: center;
}

.site-footer {
  max-width: 1390px;
  width: calc(100% - 96px);
  margin: 24px auto 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px;
  border-radius: 8px;
  background: #061b31;
  color: #ffffff;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
}

.site-footer img {
  width: 76px;
  height: 56px;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
}

.site-footer p {
  margin: 0;
  color: #d7e7f7;
}

.site-footer address {
  display: grid;
  gap: 4px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 26px;
    gap: 14px;
  }

  .brand {
    min-width: 350px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .hero {
    grid-template-columns: minmax(450px, 50%) 1fr;
  }

  .hero-copy {
    padding-left: 34px;
  }

  .impact-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid #cdd6df;
  }

  .campaign-grid,
  .fieldwork {
    grid-template-columns: 1fr;
  }

  .movement {
    grid-template-columns: 1fr;
  }

  .movement-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100vw;
    max-width: 100vw;
    padding: 0 16px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 8px;
    overflow: hidden;
  }

  .brand-logo {
    width: 58px;
    height: 50px;
  }

  .brand-logo img {
    width: 58px;
    height: 46px;
  }

  .brand-rule {
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    grid-column: 2;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    border-color: #071327;
    border-width: 2px;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a {
    justify-content: space-between;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 6px;
  }

  .site-nav > a:hover {
    background: #f2f7fb;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy,
  .hero-photo {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .hero-copy {
    min-height: auto;
    padding: 42px 22px 36px;
    clip-path: none;
    overflow: hidden;
    max-width: 100vw;
  }

  .accent-marks {
    right: 26px;
    top: 26px;
    opacity: 0.72;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 4.25rem;
  }

  .hero h1 span:last-child {
    max-width: 315px;
  }

  .hero-text {
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    max-width: 346px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-photo {
    min-height: 330px;
    margin-left: 0;
  }

  .impact-strip,
  .campaigns,
  .movement,
  .fieldwork,
  .site-footer {
    width: calc(100% - 28px);
  }

  .impact-strip {
    margin-top: 14px;
  }

  .impact-card,
  .movement-actions,
  .campaign-card,
  .fieldwork-gallery {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid #cdd6df;
    padding: 16px 22px;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .campaign-card {
    min-height: 0;
  }

  .campaign-image img {
    height: 250px;
    min-height: 0;
  }

  .movement-actions a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }

  .movement-actions a:last-child {
    border-bottom: 0;
  }

  .movement-cta {
    margin: 14px;
  }

  .fieldwork {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer address {
    text-align: left;
  }
}

/* Latest requested refinements: clean hero type, fingerprint mark, and professional mobile drawer. */
.hero-fingerprint {
  position: absolute;
  top: 48px;
  right: 112px;
  z-index: 2;
  color: var(--logo-green);
  font-size: 76px;
  line-height: 1;
  opacity: 0.96;
  transform: rotate(10deg);
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.18));
}

.hero .accent-marks,
.chalk-line {
  display: none !important;
}

.kicker {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 4vw, 4.15rem);
  line-height: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 4.8vw, 5.45rem);
  line-height: 1;
}

.hero-leading {
  display: block;
  margin: 5px 0 13px;
  font-size: 1.08em;
  line-height: 0.92;
  transform: rotate(-2.5deg) scaleX(1.02);
}

.hero-final {
  margin-top: 0;
  line-height: 0.92;
}

.hero-text {
  margin-top: 16px;
}

.page-hero-card strong {
  overflow-wrap: anywhere;
}

.registration-card strong {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.donation-panel .learn-more {
  margin-top: 20px;
}

.media-item {
  position: relative;
  display: block;
  color: inherit;
}

.card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-deep);
  box-shadow: 0 10px 22px rgba(7, 19, 39, 0.14);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.card-arrow svg {
  width: 21px;
  height: 21px;
}

.media-item:hover .card-arrow,
.media-item:focus-visible .card-arrow {
  transform: translate(3px, -3px);
  background: var(--logo-green);
  color: #062117;
}

.gallery-hero {
  background:
    linear-gradient(135deg, rgba(3, 31, 24, 0.94), rgba(2, 41, 31, 0.88)),
    url("assets/gallery-crowd.jpg") center/cover;
}

.gallery-nav {
  margin-bottom: 22px;
}

.gallery-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: #e7f6df;
  color: var(--green-deep);
  font-weight: 900;
}

.gallery-nav svg {
  width: 18px;
  height: 18px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.photo-gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 19, 39, 0.12);
}

@media (max-width: 850px) {
  .site-header {
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    width: 100vw;
    max-width: 100vw;
  }

  .brand {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .brand-copy,
  .brand-rule {
    display: none !important;
  }

  .brand-logo,
  .brand-logo img {
    width: 94px !important;
    height: 58px !important;
  }

  .menu-toggle {
    display: grid !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px;
    place-items: center;
    margin: 0 !important;
    border: 2px solid #cbd9e2;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(7, 19, 39, 0.08);
    opacity: 1;
    visibility: visible;
    z-index: 110;
  }

  .menu-toggle::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.menu-open .menu-toggle::before {
    box-shadow: none;
    transform: rotate(45deg);
  }

  body.menu-open .menu-toggle::after {
    opacity: 1;
    transform: rotate(-45deg);
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 70;
    background: rgba(7, 19, 39, 0.38);
  }

  .site-nav {
    position: fixed !important;
    top: 86px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 100;
    width: auto !important;
    max-height: calc(100vh - 104px);
    display: grid !important;
    gap: 6px !important;
    overflow: auto;
    padding: 14px !important;
    border: 1px solid rgba(7, 19, 39, 0.12) !important;
    border-radius: 8px !important;
    background: var(--yellow) !important;
    box-shadow: 0 24px 70px rgba(7, 19, 39, 0.26) !important;
    transform: translateY(-10px) scale(0.98) !important;
    transform-origin: top right;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav > a {
    min-height: 46px !important;
    justify-content: space-between !important;
    padding: 0 13px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    font-size: 0.98rem !important;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a.active:not(.nav-cta) {
    background: #f1f8ee !important;
  }

  .nav-cta {
    justify-content: center !important;
    min-width: 0 !important;
    width: 100%;
    box-shadow: 0 4px 0 var(--yellow-deep) !important;
  }

  .hero-copy {
    padding: 42px 22px 46px;
  }

  .hero-fingerprint {
    top: 32px;
    right: 24px;
    font-size: 58px;
    opacity: 0.72;
  }

  .kicker {
    margin-bottom: 12px;
    font-size: clamp(2.75rem, 12vw, 3.35rem);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 4.05rem);
    line-height: 1.02;
  }

  .hero-leading {
    margin: 8px 0 14px;
    line-height: 0.96;
    transform: rotate(-2deg) scaleX(1);
  }

  .hero-final {
    line-height: 0.95;
    transform: scaleX(0.9);
  }

  .hero-text,
  .hero-actions {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .registration-card strong {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .photo-gallery-grid,
  .media-grid {
    grid-template-columns: 1fr !important;
  }

  .photo-gallery-grid img {
    height: 260px;
  }
}

@media (max-width: 520px) {
  .brand-rule,
  .brand-copy small {
    display: none;
  }

  .kicker {
    font-size: 3.2rem;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .hero-text {
    font-size: 1.12rem;
  }

  .solution-panel {
    padding: 14px 18px;
  }
}

/* Visual refinement pass: match the selected campaign mockup more closely. */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  min-height: 88px;
  padding: 0 58px;
}

.brand-logo {
  width: 94px;
}

.brand-copy strong {
  font-size: clamp(1.85rem, 2.05vw, 2.35rem);
  letter-spacing: -0.02em;
}

.site-nav {
  gap: clamp(18px, 2.1vw, 34px);
}

.nav-cta {
  min-width: 158px;
  justify-content: center;
}

.hero {
  grid-template-columns: minmax(660px, 43%) 1fr;
  min-height: 482px;
}

.hero-copy {
  min-height: 482px;
  padding: 44px 44px 74px 58px;
  clip-path: polygon(
    0 0,
    91% 0,
    88% 6%,
    93% 15%,
    89% 24%,
    92% 35%,
    88% 48%,
    91% 59%,
    87% 73%,
    92% 86%,
    88% 100%,
    0 100%
  );
  background:
    radial-gradient(circle at 14% 13%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px),
    linear-gradient(135deg, #02251d 0%, #001b16 100%);
  background-size: 32px 32px, 55px 55px, auto;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 44px 0 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(27deg, transparent 0 34px, rgba(143, 209, 88, 0.26) 35px 36px, transparent 37px 84px),
    repeating-linear-gradient(-18deg, transparent 0 44px, rgba(255, 255, 255, 0.1) 45px 46px, transparent 47px 92px);
}

.hero-copy::after {
  inset: 0 38px 0 0;
  opacity: 0.18;
}

.kicker,
.hero h1 {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  filter: url("#chalk-distress");
}

.kicker {
  font-size: clamp(3.15rem, 4.55vw, 4.65rem);
  line-height: 0.96;
  transform: scaleX(0.88);
  transform-origin: left center;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.28);
}

.hero h1 {
  max-width: 620px;
  margin-top: -2px;
  font-size: clamp(4.9rem, 5.25vw, 5.95rem);
  line-height: 0.92;
  transform: scaleX(0.98);
  transform-origin: left center;
}

.hero-leading {
  padding-right: 10px;
  font-size: 1.32em;
  line-height: 0.8;
  transform: rotate(-5deg) scaleX(1.08);
}

.hero-leading::before,
.hero-final::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(0, 0, 0, 0.22);
  transform: translate(3px, 5px);
}

.hero-leading::after {
  left: 0;
  right: 0;
  bottom: 4px;
  height: 13px;
  border-radius: 999px;
  transform: rotate(0.7deg);
  background:
    radial-gradient(circle at 8px 4px, rgba(2, 31, 24, 0.34) 0 1px, transparent 1.4px),
    linear-gradient(90deg, #ffc400, #ffd129);
  background-size: 13px 8px, auto;
  box-shadow:
    0 8px 0 rgba(255, 196, 0, 0.22),
    0 -2px 0 rgba(2, 31, 24, 0.12) inset;
}

.hero-final {
  position: relative;
  display: block;
  max-width: none;
  white-space: nowrap;
  transform: scaleX(0.82);
  transform-origin: left center;
}

.hero-text {
  max-width: 410px;
  margin: 14px 0 16px;
  font-size: clamp(1.16rem, 1.6vw, 1.5rem);
  line-height: 1.16;
}

.accent-marks {
  top: 45px;
  right: 116px;
  transform: rotate(17deg);
}

.accent-marks span {
  width: 9px;
  height: 44px;
  border-radius: 12px;
  background: #8bd83c;
  box-shadow: 0 2px 0 rgba(2, 31, 24, 0.18);
}

.hero-actions {
  gap: 14px;
  margin-top: 20px;
}

.hero-actions a {
  min-width: 166px;
  min-height: 54px;
  border-radius: 7px;
  font-size: 0.92rem;
  box-shadow: 0 5px 0 #1f7e19;
}

.hero-actions a:nth-child(3) {
  min-width: 172px;
  box-shadow: 0 5px 0 #0875b4;
}

.hero-actions svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.65;
}

.hero-photo {
  min-height: 482px;
  margin-left: -95px;
}

.hero-photo::after {
  background: linear-gradient(90deg, rgba(2, 31, 24, 0.18), rgba(2, 31, 24, 0) 14%);
}

.hero-photo img {
  object-position: center bottom;
}

.impact-strip {
  width: calc(100% - 108px);
  margin-top: -25px;
}

.impact-card {
  min-height: 101px;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 19, 39, 0.16);
}

.stat {
  padding: 14px 42px;
}

.stat-icon {
  width: 72px;
  height: 72px;
}

.stat-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.45;
}

.stat-icon .fa-solid {
  font-size: 34px;
}

.stat strong {
  font-size: clamp(2.02rem, 3.2vw, 2.72rem);
  letter-spacing: -0.03em;
}

.campaigns,
.movement,
.fieldwork,
.site-footer,
.about-section,
.program-pillars,
.focus-band,
.partner-cta,
.partners-section,
.team-section,
.journey-section,
.faq-section {
  max-width: 1430px;
  width: calc(100% - 108px);
}

.section-heading {
  padding: 0 10px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading.centered > div {
  max-width: 790px;
}

.section-heading h2,
.fieldwork h2,
.about-copy h2,
.program-pillars h2,
.partner-cta h2,
.faq-copy h2 {
  letter-spacing: -0.035em;
}

.about-section {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7efe8;
  box-shadow: 0 18px 38px rgba(7, 19, 39, 0.14);
}

.about-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.about-badge strong {
  font-weight: 900;
}

.about-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-copy h2,
.partner-cta h2,
.faq-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.65vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
}

.about-copy > p,
.partner-cta p,
.faq-copy p {
  color: #435167;
  font-size: 1.05rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mission-grid article {
  min-height: 166px;
  padding: 22px;
  border: 1px solid #d8e5d8;
  border-radius: 8px;
  background: #f8fbf7;
}

.mission-grid svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.mission-grid h3,
.pillar-grid h3,
.team-grid h3,
.journey-grid h3 {
  margin: 10px 0 6px;
  line-height: 1.08;
  font-weight: 900;
}

.mission-grid p,
.pillar-grid p,
.team-grid p,
.journey-grid p {
  margin: 0;
  color: #4b5a6b;
}

.program-pillars,
.partners-section,
.team-section,
.journey-section,
.faq-section {
  margin: 64px auto 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.pillar-grid article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dce6e0;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
}

.pillar-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -52px auto;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(44, 140, 31, 0.08);
}

.pillar-grid span {
  color: #b7c2cf;
  font-weight: 900;
}

.pillar-grid svg {
  display: block;
  width: 42px;
  height: 42px;
  margin: 16px 0 18px;
  color: var(--blue);
}

.focus-band {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #061b31;
  color: #ffffff;
}

.focus-band div {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-band div:last-child {
  border-right: 0;
}

.focus-band strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  color: var(--yellow);
  font-weight: 900;
}

.focus-band span {
  display: block;
  margin-top: 6px;
  color: #d7e7f7;
  font-weight: 700;
}

.partner-cta {
  margin: 54px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 46px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 31, 24, 0.92), rgba(13, 58, 36, 0.84)),
    url("assets/community-training.jpg") center/cover;
  color: #ffffff;
}

.partner-cta div {
  max-width: 820px;
}

.partner-cta p {
  color: #e5f0e4;
}

.partner-cta a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 6px 0 #c99300;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.partner-grid span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  background: #ffffff;
  color: #18324a;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 19, 39, 0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1.35fr;
  gap: 16px;
  margin-top: 24px;
}

.team-grid article {
  padding: 24px;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
}

.team-photo.initials {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
}

.team-grid a {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-field-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.team-field-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.journey-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dce5ec;
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
}

.journey-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.journey-grid span,
.journey-grid h3 {
  margin-left: 18px;
  margin-right: 18px;
}

.journey-grid span {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-grid h3 {
  margin-bottom: 22px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #dce5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 19, 39, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 18px;
  color: #4b5a6b;
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(575px, 48%) 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions a {
    min-width: 150px;
  }

  .pillar-grid,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 76px;
    display: flex;
    padding: 0 16px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .menu-toggle {
    position: static;
    transform: none;
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 40px 22px 34px;
    clip-path: none;
  }

  .kicker {
    font-size: 3.35rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-final {
    max-width: 320px;
  }

  .hero-actions {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    min-width: 0;
  }

  .hero-photo {
    margin-left: 0;
  }

  .impact-strip,
  .campaigns,
  .movement,
  .fieldwork,
  .site-footer,
  .about-section,
  .program-pillars,
  .focus-band,
  .partner-cta,
  .partners-section,
  .team-section,
  .journey-section,
  .faq-section {
    width: calc(100% - 28px);
  }

  .about-section,
  .fieldwork,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 320px;
    height: 320px;
  }

  .mission-grid,
  .pillar-grid,
  .focus-band,
  .partner-grid,
  .team-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 22px;
  }

  .team-field-card {
    grid-template-columns: 1fr;
  }
}

/* Final polish pass: logo palette, real page footer, chalk strokes, and subpage system. */
:root {
  --logo-blue: #38b8f8;
  --logo-green: #80c048;
  --blue: #149ee4;
  --blue-deep: #087fc5;
  --green: #5faf35;
  --green-deep: #2f8427;
  --green-dark: #031f18;
  --yellow: #ffc400;
  --yellow-deep: #d99a00;
  --ink: #071327;
  --muted: #526173;
  --line: #d9e4ec;
}

.site-header {
  min-height: 82px;
  padding: 0 clamp(22px, 3.8vw, 58px);
  gap: clamp(16px, 2vw, 28px);
}

.brand {
  min-width: clamp(342px, 32vw, 430px);
  gap: 16px;
}

.brand-logo {
  width: 86px;
  height: 64px;
  background: transparent;
}

.brand-logo img {
  width: 86px;
  height: 64px;
  object-fit: contain;
  background: transparent;
}

.brand-rule {
  height: 48px;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  white-space: nowrap;
  overflow: visible;
  color: var(--logo-green);
  font-size: clamp(1.22rem, 1.55vw, 1.72rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.brand-copy strong span {
  color: var(--logo-blue);
}

.brand-copy small {
  color: #10263c;
  font-size: clamp(0.8rem, 1vw, 0.96rem);
}

.brand-copy svg {
  color: var(--green-deep);
  fill: var(--green-deep);
}

.site-nav {
  gap: clamp(14px, 1.75vw, 28px);
}

.site-nav > a {
  position: relative;
  letter-spacing: 0;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--logo-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after,
.site-nav > a.active:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-cta,
.movement-cta,
.partner-cta > a {
  background: var(--yellow);
  border-color: var(--yellow-deep);
  color: var(--ink);
}

.hero h1,
.kicker {
  letter-spacing: 0;
}

.hero-copy {
  background:
    radial-gradient(circle at 14% 13%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px),
    linear-gradient(135deg, #02251d 0%, #001b16 100%);
}

.accent-marks {
  top: 47px;
  right: 112px;
  width: 88px;
  height: 70px;
  overflow: visible;
  transform: rotate(12deg);
}

.accent-marks path {
  fill: none;
  stroke: var(--logo-green);
  stroke-width: 8.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url("#chalk-distress");
  opacity: 0.96;
}

.accent-marks path:nth-child(2) {
  stroke-width: 7.2;
  opacity: 0.88;
}

.accent-marks path:nth-child(3) {
  stroke-width: 6.8;
  opacity: 0.9;
}

.accent-marks span {
  display: none;
}

.hero-leading {
  overflow: visible;
}

.hero-leading::after {
  display: none;
}

.chalk-line {
  position: absolute;
  left: -2px;
  right: 0;
  bottom: -0.02em;
  z-index: 2;
  width: 102%;
  height: 0.26em;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-1.2deg);
}

.chalk-line path {
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url("#chalk-distress");
}

.chalk-line path:first-child {
  stroke-width: 9;
  opacity: 0.98;
}

.chalk-line path:last-child {
  stroke-width: 5.5;
  opacity: 0.72;
}

.hero-actions {
  display: flex;
}

.hero-actions a {
  min-width: 192px;
  min-height: 56px;
  border-color: var(--logo-green);
  color: var(--ink);
  box-shadow: 0 6px 0 #3c8c22;
}

.hero-actions a svg {
  width: 25px;
  height: 25px;
  color: var(--green-deep);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 72px 0 0;
  display: block;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(3, 31, 24, 0.98), rgba(4, 44, 35, 0.98)),
    radial-gradient(circle at 18% 12%, rgba(128, 192, 72, 0.16), transparent 34%);
  color: #ffffff;
}

.site-footer > div {
  max-width: none;
}

.footer-main {
  width: min(1430px, calc(100% - 108px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(160px, 0.75fr) minmax(190px, 0.9fr) minmax(240px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 58px 0 42px;
}

.footer-brand,
.footer-col {
  display: grid;
  gap: 13px;
}

.footer-brand img,
.site-footer img {
  width: 118px;
  height: 82px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.footer-brand p,
.footer-col span,
.footer-contact span,
.site-footer p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col h2,
.footer-contact h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a,
.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-contact {
  font-style: normal;
  text-align: left;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--logo-green);
  color: #062117;
}

.footer-bottom {
  width: min(1430px, calc(100% - 108px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-main {
  background: #ffffff;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(28px, 6vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 31, 24, 0.94), rgba(2, 41, 31, 0.88)),
    url("assets/community-training.jpg") center/cover;
  color: #ffffff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(28deg, transparent 0 32px, rgba(128, 192, 72, 0.28) 33px 34px, transparent 35px 78px),
    repeating-linear-gradient(-18deg, transparent 0 42px, rgba(255, 255, 255, 0.12) 43px 44px, transparent 45px 86px);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.25);
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
}

.page-hero-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.page-hero-card strong {
  color: var(--yellow);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 900;
}

.page-section,
.split-section,
.project-list,
.media-section,
.contact-section,
.team-page-section,
.donate-section {
  width: min(1430px, calc(100% - 108px));
  margin: 70px auto 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.split-section img,
.feature-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 19, 39, 0.14);
}

.content-block h2,
.page-section h2,
.project-detail h2,
.contact-card h2,
.donation-panel h2,
.media-section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.content-block p,
.page-section p,
.project-detail p,
.contact-card p,
.donation-panel p,
.media-section p {
  color: #435167;
  font-size: 1.04rem;
}

.feature-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #24344a;
  font-weight: 700;
}

.feature-list i,
.check-list i,
.feature-list svg,
.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--green-deep);
  flex: 0 0 auto;
}

.cards-grid,
.support-grid,
.leader-grid,
.contact-grid,
.project-grid,
.media-grid {
  display: grid;
  gap: 18px;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-grid,
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leader-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.support-card,
.leader-card,
.contact-card,
.project-detail,
.media-item,
.donation-panel,
.timeline-card {
  border: 1px solid #dce6e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
}

.info-card,
.support-card,
.leader-card,
.contact-card,
.project-detail,
.donation-panel,
.timeline-card {
  padding: 26px;
}

.info-card i,
.support-card i,
.contact-card i,
.project-detail > i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #e7f6df;
  color: var(--green-deep);
  font-size: 1.2rem;
}

.info-card h3,
.support-card h3,
.leader-card h3,
.timeline-card h3,
.project-detail h3,
.media-item h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.08;
  font-weight: 900;
}

.info-card p,
.support-card p,
.leader-card p,
.timeline-card p,
.project-detail p,
.media-item p {
  margin: 0;
  color: #4b5a6b;
}

.project-detail {
  display: grid;
  gap: 16px;
}

.project-detail img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.project-detail .learn-more,
.support-card .learn-more,
.donation-panel .learn-more {
  width: fit-content;
  margin-top: 6px;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.donation-amounts button {
  min-height: 52px;
  border: 1px solid #cbded0;
  border-radius: 6px;
  background: #f8fbf7;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.donation-amounts button.active,
.donation-amounts button:hover,
.donation-amounts button:focus-visible {
  border-color: var(--green-deep);
  background: #e7f6df;
}

.bank-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #f4f8fb;
  color: #26384e;
}

.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.media-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #ccdbe4;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.media-tabs button.active,
.media-tabs button:hover,
.media-tabs button:focus-visible {
  border-color: var(--blue-deep);
  background: #e8f7ff;
  color: var(--blue-deep);
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-item {
  overflow: hidden;
}

.media-item img,
.video-placeholder {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(3, 31, 24, 0.85), rgba(8, 127, 197, 0.56)),
    url("assets/gallery-crowd.jpg") center/cover;
  color: #ffffff;
  font-size: 3rem;
}

.media-item div {
  padding: 20px;
}

.media-item[hidden] {
  display: none;
}

.contact-card a {
  color: var(--blue-deep);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #26384e;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cddae3;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--yellow-deep);
}

.leader-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.leader-avatar {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-green));
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 900;
}

.leader-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-deep);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .brand {
    min-width: clamp(300px, 34vw, 360px);
  }

  .brand-copy strong {
    font-size: 1.18rem;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .footer-main,
  .cards-grid,
  .support-grid,
  .project-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    padding: 0 16px;
    width: 100vw;
    max-width: 100vw;
  }

  .brand {
    min-width: 0;
    width: 100%;
    gap: 10px;
    overflow: hidden;
    padding-right: 56px;
  }

  .brand-logo,
  .brand-logo img {
    width: 74px;
    height: 54px;
  }

  .brand-copy strong {
    max-width: min(210px, 52vw);
    font-size: 1.02rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy {
    max-width: min(220px, 52vw);
    overflow: hidden;
  }

  .menu-toggle {
    display: grid !important;
    width: 44px;
    height: 44px;
    place-items: center;
    position: absolute !important;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) !important;
    justify-self: end;
    grid-column: 2;
    margin-left: 0;
    border: 2px solid var(--ink);
    background: #ffffff;
    color: var(--ink);
    opacity: 1;
    visibility: visible;
    z-index: 80;
  }

  .menu-toggle::before {
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .hero-copy {
    min-height: 0;
    padding: 38px 22px 46px;
  }

  .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: min(100%, 330px);
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-actions a {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .accent-marks {
    top: 28px;
    right: 28px;
    width: 68px;
    opacity: 0.72;
  }

  .chalk-line {
    bottom: -0.04em;
  }

  .page-hero,
  .split-section,
  .donate-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .page-section,
  .split-section,
  .project-list,
  .media-section,
  .contact-section,
  .team-page-section,
  .donate-section,
  .footer-main,
  .footer-bottom {
    width: calc(100% - 28px);
  }

  .cards-grid,
  .support-grid,
  .leader-grid,
  .contact-grid,
  .project-grid,
  .media-grid,
  .timeline-list,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-copy small,
  .brand-rule {
    display: none;
  }

  .brand-logo,
  .brand-logo img {
    width: 76px;
    height: 56px;
  }

  .brand-copy strong {
    max-width: min(165px, 43vw);
    font-size: 0.94rem;
  }

  .brand-copy {
    max-width: min(165px, 43vw);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.15rem);
  }

  .kicker {
    font-size: clamp(2.95rem, 14vw, 3.35rem);
  }

  .hero-actions a {
    width: 100%;
  }

  .donation-amounts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 122px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 76px auto;
    padding: 0;
  }

  .brand {
    width: 100%;
    padding: 0 16px;
  }

  .menu-toggle {
    display: none !important;
  }

  .site-nav {
    position: static;
    inset: auto;
    grid-row: 2;
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 16px 11px;
    border-top: 1px solid rgba(4, 26, 54, 0.09);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a {
    min-height: 36px;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #dbe6ee;
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.88rem;
  }

  .site-nav > a.active:not(.nav-cta) {
    border-color: var(--logo-green);
    background: #edf8e8;
  }

  .nav-cta {
    min-width: max-content;
    min-height: 36px;
    box-shadow: none;
  }

  .hero,
  .hero-copy {
    max-width: 100vw;
  }

  .hero-text {
    width: min(100%, 330px);
    max-width: 330px;
    font-size: 1.04rem;
    line-height: 1.22;
  }
}

/* Final mobile drawer override - intentionally last. */
@media (max-width: 850px) {
  .site-header {
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .brand {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .brand-copy,
  .brand-rule {
    display: none !important;
  }

  .brand-logo,
  .brand-logo img {
    width: 94px !important;
    height: 58px !important;
  }

  .menu-toggle {
    display: grid !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    place-items: center !important;
    margin: 0 !important;
    border: 2px solid #cbd9e2 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: var(--ink) !important;
    box-shadow: 0 8px 20px rgba(7, 19, 39, 0.08) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 110 !important;
  }

  .menu-toggle::before {
    content: "" !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor !important;
    transition: transform 180ms ease, box-shadow 180ms ease !important;
  }

  .menu-toggle::after {
    content: "" !important;
    position: absolute !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    opacity: 0 !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  body.menu-open .menu-toggle::before {
    box-shadow: none !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .menu-toggle::after {
    opacity: 1 !important;
    transform: rotate(-45deg) !important;
  }

  body.menu-open::before {
    content: "" !important;
    position: fixed !important;
    inset: 74px 0 0 !important;
    z-index: 70 !important;
    background: rgba(7, 19, 39, 0.38) !important;
  }

  .site-nav {
    position: fixed !important;
    top: 86px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 100 !important;
    width: auto !important;
    max-height: calc(100vh - 104px) !important;
    display: grid !important;
    gap: 6px !important;
    overflow: auto !important;
    padding: 14px !important;
    border: 1px solid rgba(7, 19, 39, 0.12) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(7, 19, 39, 0.26) !important;
    transform: translateY(-10px) scale(0.98) !important;
    transform-origin: top right !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  body.menu-open .site-nav {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav > a {
    min-height: 46px !important;
    flex: none !important;
    justify-content: space-between !important;
    padding: 0 13px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    font-size: 0.98rem !important;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a.active:not(.nav-cta) {
    background: #f1f8ee !important;
  }

  .nav-cta {
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    box-shadow: 0 4px 0 var(--yellow-deep) !important;
  }

  .hero-copy {
    padding: 42px 22px 46px !important;
  }

  .hero-fingerprint {
    top: 32px !important;
    right: 24px !important;
    font-size: 58px !important;
    opacity: 0.72 !important;
  }

  .kicker {
    margin-bottom: 12px !important;
    font-size: clamp(2.75rem, 12vw, 3.35rem) !important;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 4.05rem) !important;
    line-height: 1.02 !important;
  }

  .hero-leading {
    margin: 8px 0 14px !important;
    line-height: 0.96 !important;
    transform: rotate(-2deg) scaleX(1) !important;
  }

  .hero-final {
    line-height: 0.95 !important;
    transform: scaleX(0.9) !important;
  }

  .hero-text,
  .hero-actions {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
  }

  .registration-card strong {
    font-size: clamp(1.8rem, 10vw, 2.7rem) !important;
  }

  .photo-gallery-grid,
  .media-grid {
    grid-template-columns: 1fr !important;
  }

  .photo-gallery-grid img {
    height: 260px !important;
  }
}

@media (max-width: 850px) {
  .menu-toggle {
    position: fixed !important;
    top: 14px !important;
    right: 16px !important;
    left: auto !important;
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 2px solid #071327 !important;
    background: #ffffff !important;
    color: #071327 !important;
  }
}

.menu-toggle {
  display: grid !important;
  position: fixed !important;
  top: 14px !important;
  right: 16px !important;
  left: auto !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  place-items: center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 2px solid #071327 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #071327 !important;
  z-index: 120 !important;
}

@media (min-width: 851px) {
  .menu-toggle {
    display: none !important;
  }
}

.nav-toggle-check {
  display: none;
}

.mobile-menu-label {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 130;
  width: 46px;
  height: 46px;
  display: grid !important;
  place-items: center;
  border: 2px solid #071327;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 19, 39, 0.08);
  cursor: pointer;
}

.mobile-menu-label span {
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #071327;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-label span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-label span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle-check:checked + .mobile-menu-label span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle-check:checked + .mobile-menu-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-check:checked + .mobile-menu-label span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-toggle-check:checked + .mobile-menu-label strong {
  display: none;
}

.nav-toggle-check:checked + .mobile-menu-label::before {
  content: "X";
  color: #071327;
  font: 900 22px/1 Arial, sans-serif;
}

.registration-card strong {
  font-size: clamp(1.8rem, 2.15vw, 2.45rem) !important;
  white-space: nowrap;
}

@media (min-width: 851px) {
  .mobile-menu-label {
    display: none !important;
  }
}

@media (max-width: 850px) {
  .mobile-menu-label {
    position: static !important;
    display: grid !important;
    flex: 0 0 46px !important;
    margin-left: auto !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-toggle-check {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-menu-label {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 130;
    width: 46px;
    height: 46px;
    display: grid !important;
    place-items: center;
    border: 2px solid #071327;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 19, 39, 0.08);
    cursor: pointer;
  }

  .mobile-menu-label span {
    grid-area: 1 / 1;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #071327;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-label span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-label span:nth-child(3) {
    transform: translateY(7px);
  }

  .nav-toggle-check:checked + .mobile-menu-label span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle-check:checked + .mobile-menu-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-check:checked + .mobile-menu-label span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-toggle-check:checked ~ .site-nav {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
