@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:wght@400;600;700;800;900&family=Permanent+Marker&display=swap");

:root {
  color-scheme: light;
  --ink: #111715;
  --ink-2: #17201d;
  --cream: #fbf5ef;
  --paper: #fffaf4;
  --muted: #5f625f;
  --line: rgba(17, 23, 21, 0.16);
  --yellow: #f5c943;
  --purple: #c875e9;
  --pink: #ff6c93;
  --teal: #74d5d2;
  --green: #a8e486;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  background: rgba(251, 245, 239, 0.88);
  border-bottom: 1px solid rgba(17, 23, 21, 0.1);
  backdrop-filter: blur(16px);
}

body[data-page="home"] .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom: 0;
  color: #fff;
}

.header-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  width: 164px;
  height: auto;
}

body[data-page="home"] .brand img,
.mock-footer .site-footer img,
.mock-footer img,
.site-footer img {
  filter: brightness(0) invert(1);
}

.brand span {
  display: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-size: 0.92rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(17, 23, 21, 0.72);
}

body[data-page="home"] .site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transition: left 160ms ease, right 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
body[data-page="home"] [data-nav="home"]::after,
body[data-page="projects"] [data-nav="projects"]::after,
body[data-page="volunteer"] [data-nav="volunteer"]::after,
body[data-page="about"] [data-nav="about"]::after,
body[data-page="resources"] [data-nav="resources"]::after,
body[data-page="contact"] [data-nav="contact"]::after {
  left: 0;
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 950;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.donate-pill,
.primary-pill,
.button-sun {
  background: var(--yellow);
  color: #10110d;
  box-shadow: 0 12px 28px rgba(245, 201, 67, 0.28);
}

.outline-pill,
.view-all-pill,
.button-glass {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.view-all-pill,
.button-light {
  border-color: rgba(17, 23, 21, 0.45);
  color: var(--ink);
  background: transparent;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.page-hero .button-glass {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.14);
}

body:not([data-page="home"]) .language-switcher {
  border-color: rgba(17, 23, 21, 0.16);
  background: #fff;
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 950;
}

.lang-button.is-active {
  background: rgba(255, 255, 255, 0.2);
}

body:not([data-page="home"]) .lang-button.is-active {
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

body:not([data-page="home"]) .menu-toggle {
  border-color: var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mock-hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  color: #fff;
  background: #101512;
}

.mock-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.04);
}

.mock-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 45%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 46%, rgba(0, 0, 0, 0.42) 70%, rgba(0, 0, 0, 0.16) 100%);
}

.mock-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(540px, 0.95fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 34px;
  padding-top: 86px;
}

.mock-hero-copy {
  width: min(760px, 100%);
  padding-top: 22px;
}

.mock-hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4.45rem, 6.15vw, 7.15rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.16), 0 2px 16px rgba(0, 0, 0, 0.28);
}

.mock-hero h1 span {
  display: block;
}

.mock-hero h1 .mobile-phrase {
  display: none;
}

.mock-hero h1 .yellow {
  color: var(--yellow);
}

.mock-hero-copy p {
  max-width: 510px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  font-weight: 800;
}

.mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-top: 68px;
}

.hero-feature-photo {
  width: min(560px, 42vw);
  overflow: hidden;
  border: 4px solid rgba(255, 250, 244, 0.92);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: rotate(1.6deg);
}

.hero-feature-photo img {
  width: 100%;
  aspect-ratio: 1600 / 954;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.03);
}

.brush-note {
  margin-right: 28px;
  transform: rotate(-7deg);
}

.brush-note span {
  display: inline-block;
  min-width: 270px;
  padding: 18px 34px 20px;
  background: linear-gradient(92deg, rgba(199, 117, 233, 0.8), rgba(199, 117, 233, 0.62));
  color: #21131f;
  font-family: "Permanent Marker", "Comic Sans MS", cursive;
  font-size: 1.92rem;
  line-height: 0.95;
  clip-path: polygon(4% 8%, 100% 0, 92% 18%, 100% 32%, 93% 48%, 100% 66%, 88% 82%, 98% 100%, 0 91%, 8% 72%, 0 56%, 7% 41%, 0 25%);
}

.mock-doodle {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: "Permanent Marker", cursive;
  line-height: 1;
  opacity: 0.96;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.28));
}

.mock-doodle.spark {
  left: 36px;
  top: 250px;
  width: 42px;
  height: 42px;
  color: var(--teal);
}

.mock-doodle.spark::before,
.mock-doodle.spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.mock-doodle.spark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mock-doodle.heart-one {
  left: 48%;
  top: 455px;
  color: var(--yellow);
}

.mock-doodle.heart-two {
  right: 130px;
  top: 475px;
  color: var(--purple);
}

.mock-doodle.heart-one::before,
.mock-doodle.heart-two::before {
  content: "\2661";
  display: block;
  font-size: 3.9rem;
  transform: rotate(-13deg);
}

.mock-doodle.heart-two::before {
  font-size: 3.4rem;
  transform: rotate(12deg);
}

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
}

.wave-divider path {
  fill: var(--cream);
}

.hero-wave {
  bottom: -1px;
  height: 92px;
  z-index: 4;
}

.what-section {
  position: relative;
  padding: 38px 0 76px;
  background: var(--cream);
}

.script-title {
  position: relative;
  display: inline-block;
  font-family: "Permanent Marker", "Comic Sans MS", cursive;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
}

.script-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 130px;
  height: 6px;
  border-radius: 999px;
  background: var(--purple);
  transform: rotate(-2deg);
}

.script-title.light {
  color: #fff;
}

.script-title.light::after {
  display: none;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  margin-top: 54px;
  text-align: center;
}

.what-card img {
  width: 142px;
  height: 142px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.what-card h3 {
  max-width: 210px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 950;
}

.what-card p {
  max-width: 230px;
  margin: 24px auto 16px;
  color: #404540;
  font-weight: 700;
}

.what-card a {
  font-size: 0.92rem;
  font-weight: 900;
}

.impact-section {
  position: relative;
  padding: 86px 0 86px;
  overflow: hidden;
  background: #0e1512;
  color: #fff;
}

.impact-wave-top {
  top: -1px;
  height: 78px;
  transform: rotate(180deg);
}

.impact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 92px;
  align-items: center;
}

.impact-photo-wrap {
  position: relative;
  transform: rotate(-5deg);
}

.impact-photo {
  width: 375px;
  height: 270px;
  object-fit: cover;
  object-position: center 48%;
  border: 12px solid #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.youth-badge {
  position: absolute;
  top: -64px;
  right: -26px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border: 6px solid #ece9df;
  border-radius: 50%;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-5deg);
  box-shadow: 0 16px 18px rgba(0, 0, 0, 0.35);
}

.impact-copy {
  text-align: center;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
}

.impact-stats div {
  min-height: 168px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 26px;
}

.impact-stats div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.line-icon {
  font-size: 2rem;
  line-height: 1;
}

.turquoise {
  color: var(--teal);
}

.pink {
  color: var(--pink);
}

.yellow {
  color: var(--yellow);
}

.impact-stats strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 4.1rem;
  line-height: 0.92;
}

.impact-stats p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.story-pill {
  margin-top: 26px;
  min-width: 260px;
}

.latest-section {
  padding: 54px 0 72px;
  background: var(--cream);
}

.latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.latest-head .script-title::after {
  background: var(--teal);
}

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

.latest-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 4px solid #f5efe8;
  border-radius: 24px;
  background: #111;
  color: #fff;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.latest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.latest-card:nth-child(2) img {
  object-position: 52% center;
}

.latest-card:nth-child(3) img {
  object-position: 34% center;
}

.latest-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14) 40%, rgba(0, 0, 0, 0.84));
}

.project-chip {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 18px;
  color: #111;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-chip.purple {
  background: #c888df;
}

.project-chip.teal {
  background: var(--teal);
}

.project-chip.yellow {
  background: var(--yellow);
}

.latest-card h3,
.latest-card p,
.latest-card a {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
}

.latest-card h3 {
  bottom: 132px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.3rem;
  line-height: 0.92;
}

.latest-card p {
  bottom: 70px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.latest-card a {
  bottom: 28px;
  color: #fff;
  font-weight: 950;
}

.latest-card a::after {
  content: "";
  color: var(--yellow);
}

.cta-strip {
  position: relative;
  padding: 58px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.96), rgba(10, 14, 12, 0.8)),
    url("assets/facebook/fb-home-hero.jpg") center / cover;
  color: #fff;
}

.cta-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.cta-message h2 {
  font-family: "Permanent Marker", "Comic Sans MS", cursive;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.05;
  font-weight: 400;
}

.cta-message span {
  display: block;
  width: 240px;
  height: 8px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-2deg);
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-cta {
  min-height: 190px;
  border-radius: 18px;
  padding: 22px 18px;
  background: rgba(255, 250, 244, 0.96);
  color: #171c18;
  text-align: center;
  box-shadow: var(--shadow);
}

.mini-cta strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #e9d3f5;
  font-size: 1.4rem;
}

.mini-cta:nth-child(2) strong {
  background: #bdecea;
}

.mini-cta:nth-child(3) strong {
  background: #f9d877;
}

.mini-cta:nth-child(4) strong {
  background: #ffc1d1;
}

.mini-cta h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 950;
}

.mini-cta p {
  color: #555c55;
  font-weight: 700;
}

.mini-cta span {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 950;
}

.site-footer {
  background: #101512;
  color: #fff;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 42px;
  align-items: start;
}

.site-footer img {
  width: 170px;
  height: auto;
  margin-bottom: 22px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 950;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-brand {
  max-width: 320px;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links h3 {
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  margin: 0;
  font-weight: 950;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.privacy-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.privacy-note a {
  display: inline;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 950;
}

/* Contact */
.contact-hero,
.legal-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(52px, 7vw, 88px);
  background: #d9f3f1;
}

.contact-intro {
  max-width: 850px;
}

.contact-intro h1,
.legal-hero h1 {
  max-width: 12ch;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-intro > p:last-child,
.legal-hero .container > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: #46514d;
  font-size: 1.15rem;
  font-weight: 750;
}

.contact-details-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-details-grid article {
  min-width: 0;
  min-height: 250px;
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.contact-details-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 950;
}

.contact-details-grid h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.contact-details-grid article > p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  font-weight: 900;
}

/* Privacy and GDPR */
.legal-hero {
  background: #f7dce6;
}

.legal-hero h1 {
  max-width: 10ch;
}

.legal-content-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--yellow);
  padding-left: 18px;
}

.legal-toc strong {
  margin-bottom: 6px;
}

.legal-toc a {
  color: #5b6561;
  font-size: 0.88rem;
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
}

.legal-article {
  min-width: 0;
}

.legal-article section {
  scroll-margin-top: 120px;
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.legal-article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-article h2 {
  margin-bottom: 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.45rem, 4.4vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.legal-article p,
.legal-article li {
  color: #48514e;
  font-weight: 700;
}

.legal-article p + p {
  margin-top: 14px;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-article a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 900;
}

.legal-article code {
  border-radius: 4px;
  padding: 2px 5px;
  background: #ece7df;
}

.legal-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.legal-table div {
  display: grid;
  gap: 6px;
  min-height: 150px;
  align-content: start;
  padding: 22px;
  background: #fff;
}

.legal-table span {
  color: var(--muted);
  font-weight: 700;
}

/* Inner pages keep the simpler in-depth structure. */
.page-hero {
  padding: 90px 0 64px;
}

.page-hero-grid,
.split-feature,
.about-story,
.official-layout,
.contact-layout,
.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  max-width: 780px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.9rem, 4.9vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 12px;
  color: #65706b;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow),
.split-feature p,
.about-story p,
.resource-card p,
.project-card p,
.journey-step p,
.fit-card li,
.team-grid p,
.contact-layout p {
  color: var(--muted);
  font-weight: 700;
}

.hero-object,
.hero-duo img,
.feature-collage img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.hero-object {
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
}

.photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contain-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.volunteer-hero .contain-image {
  background: #101512;
  border-color: rgba(17, 23, 21, 0.28);
}

.section-band {
  padding: 70px 0;
}

.light-strip {
  background: rgba(255, 255, 255, 0.55);
}

.compact-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.compact-heading h2,
.split-feature h2,
.official-layout h2,
.contact-layout h2,
.apply-grid h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 0.96;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
}

.filter-button.is-active {
  background: var(--ink);
  color: #fff;
}

.project-grid,
.resource-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card,
.resource-card,
.featured-card,
.journey-step,
.fit-card,
.team-grid article,
.official-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-card[data-hidden="true"] {
  display: none;
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f7f0e8;
}

.project-media img {
  width: 100%;
  height: 100%;
}

.project-media[data-fit="contain"] img {
  object-fit: contain;
  padding: 28px;
}

.project-media[data-fit="photo"],
.project-media[data-fit="wide"] {
  background: #111;
}

.project-media[data-fit="photo"] img,
.project-media[data-fit="wide"] img {
  object-fit: cover;
}

.project-brand-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: min(38%, 132px);
  height: 56px;
  place-items: center;
  border: 1px solid rgba(17, 23, 21, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.project-brand-mark img {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  padding: 0 !important;
}

.project-card[data-id="sprout"] .project-brand-mark,
.project-card[data-id="armaname"] .project-brand-mark {
  width: min(42%, 142px);
  height: 78px;
  padding: 9px 12px;
}

.project-card[data-id="credem-in-tineri"] .project-brand-mark {
  width: min(52%, 210px);
  height: 78px;
  padding: 9px 12px;
}

.project-card[data-id="sprout"] .project-media,
.project-card[data-id="armaname"] .project-media,
.project-card[data-id="credem-in-tineri"] .project-media {
  aspect-ratio: 4 / 3;
}

.project-card[data-id="credem-in-tineri"] .project-media > img {
  object-position: center 38%;
}

.project-tag,
.project-meta span {
  border-radius: 999px;
  padding: 7px 11px;
  background: #f6d64c;
  color: #111;
  font-size: 0.74rem;
  font-weight: 950;
}

.project-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
}

.project-body,
.resource-card,
.featured-card-body {
  padding: 20px;
}

.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-kicker {
  color: #65706b;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-body h3,
.resource-card h3,
.featured-card h3 {
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 950;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.project-body .button {
  align-self: flex-start;
  margin-top: 18px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.project-body .project-meta + .button {
  margin-top: auto;
}

.project-page-hero-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  object-position: center 44%;
}

.project-impact-strip {
  background: var(--ink);
  color: #fff;
}

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

.project-impact-grid div {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.project-impact-grid div:last-child {
  border-right: 0;
}

.project-impact-grid strong {
  display: block;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
}

.project-impact-grid span {
  display: block;
  max-width: 18ch;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.quality-section {
  background: #dff3f1;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.quality-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 10px solid #fff;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.quality-layout h2 {
  max-width: 16ch;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.quality-layout p:not(.eyebrow) {
  max-width: 66ch;
  margin-top: 18px;
  color: #34413d;
  font-weight: 700;
}

.quality-layout .button {
  margin-top: 24px;
}

.archive-section {
  border-top: 1px solid var(--line);
  background: #fffaf4;
}

.archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.archive-grid .project-card {
  box-shadow: none;
}

.archive-details summary {
  display: flex;
  width: min(100%, 360px);
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px 12px 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  list-style: none;
  cursor: pointer;
}

.archive-details summary::-webkit-details-marker {
  display: none;
}

.archive-details summary span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.archive-details[open] summary span:last-child {
  transform: rotate(45deg);
}

.projects-field-gallery .compact-heading {
  max-width: 680px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-caption {
  padding: 12px 14px;
  color: #545d59;
  font-size: 0.78rem;
  font-weight: 850;
}

.project-detail-hero {
  padding: 74px 0 78px;
  background: #fffaf4;
}

.project-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.project-back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: #59625f;
  font-weight: 900;
}

.project-detail-status,
.project-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-detail-status span,
.project-detail-tags span {
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #27312d;
  font-size: 0.76rem;
  font-weight: 950;
}

.project-detail-status span:first-child {
  background: var(--yellow);
  color: #111;
}

.project-detail-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4rem, 6.3vw, 7.1rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.project-detail-copy > p {
  max-width: 62ch;
  margin-top: 22px;
  color: #46504c;
  font-size: 1.12rem;
  font-weight: 750;
}

.project-detail-tags {
  margin-top: 24px;
}

.project-detail-tags span:nth-child(3n + 1) {
  background: #d7f1ef;
}

.project-detail-tags span:nth-child(3n + 2) {
  background: #f3d4fb;
}

.project-detail-tags span:nth-child(3n + 3) {
  background: #ffe5a4;
}

.project-detail-visual {
  position: relative;
  margin: 0;
}

.project-detail-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 10px solid #fff;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.project-detail-brand {
  position: absolute;
  right: -14px;
  bottom: 50px;
  display: grid;
  width: min(44%, 220px);
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(17, 23, 21, 0.14);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transform: rotate(2deg);
}

.project-detail-brand[hidden] {
  display: none;
}

.project-detail-brand img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.project-detail-visual figcaption {
  max-width: 70ch;
  margin-top: 14px;
  color: #737b77;
  font-size: 0.78rem;
  font-weight: 700;
}

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.project-story-grid h2,
.project-actions-layout h2,
.project-funding-layout h2,
.project-detail-cta h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.project-story-grid article > p:not(.eyebrow),
.project-detail-two-up p:not(.eyebrow),
.project-funding-layout > div > p:not(.eyebrow) {
  margin-top: 18px;
  color: #4e5753;
  font-weight: 700;
}

.project-need-card {
  border-left: 5px solid var(--purple);
  padding: 8px 0 8px 28px;
}

.project-actions-section {
  background: var(--ink);
  color: #fff;
}

.project-actions-section .eyebrow {
  color: var(--teal);
}

.project-actions-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.project-actions-layout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: activities;
}

.project-actions-layout li {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  counter-increment: activities;
}

.project-actions-layout li::before {
  content: "0" counter(activities);
  display: block;
  margin-bottom: 24px;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
}

.project-journey-section {
  background: #fff;
}

.project-journey-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  column-gap: clamp(36px, 7vw, 94px);
  align-items: end;
  margin-bottom: 36px;
}

.project-journey-heading .eyebrow {
  grid-column: 1 / -1;
}

.project-journey-heading h2,
.project-downloads-copy h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.project-journey-heading > p:last-child,
.project-downloads-copy > p:not(.eyebrow) {
  color: #505a56;
  font-weight: 750;
}

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

.project-journey-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #fffaf4;
}

.project-journey-grid article:nth-child(2) {
  background: #e7f7f6;
}

.project-journey-step {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(17, 23, 21, 0.1);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 5.8rem;
  line-height: 1;
}

.project-journey-grid h3 {
  position: relative;
  margin-top: 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.65rem;
  line-height: 0.95;
}

.project-journey-grid strong {
  position: relative;
  display: block;
  margin-top: 12px;
  color: #5e6864;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.project-journey-grid article > p:last-child {
  position: relative;
  margin-top: 18px;
  color: #4d5753;
  font-weight: 700;
}

.project-detail-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-detail-two-up article {
  min-width: 0;
  padding: 34px 42px 34px 0;
}

.project-detail-two-up article + article {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 42px;
}

.project-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.project-numbers div {
  min-width: 0;
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.project-numbers strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
}

.project-numbers span {
  display: block;
  margin-top: 8px;
  color: #5a635f;
  font-size: 0.82rem;
  font-weight: 900;
}

.project-gallery-section {
  background: #e7f7f6;
}

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

.project-photo-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 21, 0.12);
  border-radius: 14px;
  background: #fff;
}

.project-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-photo-grid .is-contain img {
  object-fit: contain;
  padding: 32px;
  background: #fff;
}

.project-photo-grid .is-guide-cover img {
  padding: 10px;
}

body[data-project="credem-in-tineri"] .project-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-photo-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.project-photo-grid figcaption strong {
  font-size: 0.9rem;
}

.project-photo-grid figcaption span {
  color: #707975;
  font-size: 0.72rem;
  font-weight: 700;
}

.project-downloads-section {
  background: #f8deef;
}

.project-downloads-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: start;
}

.project-downloads-copy > p:not(.eyebrow) {
  max-width: 66ch;
  margin-top: 20px;
}

.project-guide-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.project-guide-topics span {
  border: 1px solid rgba(17, 23, 21, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #333d39;
  font-size: 0.76rem;
  font-weight: 900;
}

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

.project-download-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  min-height: 152px;
  border: 1px solid rgba(17, 23, 21, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 23, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(17, 23, 21, 0.13);
}

.language-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #141a18;
  border-radius: 50%;
  color: #111;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem;
}

.language-symbol-ro {
  background: linear-gradient(90deg, #1f56a8 0 33%, #f4d13c 33% 66%, #d63849 66%);
}

.language-symbol-ar {
  background: #f4c746;
}

.language-symbol-en {
  background: #d9f3f0;
}

.language-symbol-mk {
  background: #ef4459;
}

.project-download-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.project-download-body strong {
  font-size: 0.98rem;
}

.project-download-body small {
  margin-top: 5px;
  color: #68716d;
  font-weight: 800;
}

.project-download-action {
  margin-top: auto;
  padding-top: 18px;
  color: #2f5752;
  font-size: 0.78rem;
  font-weight: 950;
}

body[data-project="sprout"] .project-detail-brand,
body[data-project="armaname"] .project-detail-brand {
  width: min(46%, 240px);
  min-height: 112px;
}

body[data-project="credem-in-tineri"] .project-detail-brand {
  width: min(58%, 320px);
  min-height: 100px;
}

body[data-project="sprout"] .project-detail-brand img,
body[data-project="armaname"] .project-detail-brand img,
body[data-project="credem-in-tineri"] .project-detail-brand img {
  max-height: 106px;
}

body[data-project="sprout"] .project-detail-photo,
body[data-project="armaname"] .project-detail-photo,
body[data-project="credem-in-tineri"] .project-detail-photo {
  aspect-ratio: 4 / 3;
}

.project-funding-section {
  background: #fffaf4;
}

.project-funding-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.funding-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.funding-card > img {
  width: min(100%, 360px);
  height: auto;
}

.funding-card dl {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
}

.funding-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.funding-card dt {
  color: #69716e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.funding-card dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.funding-disclaimer {
  margin-top: 22px;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f6f0e8;
  color: #626a66;
  font-size: 0.76rem;
  font-weight: 750;
}

.project-detail-cta {
  padding: 58px 0;
  background: var(--ink);
  color: #fff;
}

.project-detail-cta .eyebrow {
  color: var(--yellow);
}

.project-detail-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.project-detail-cta h2 {
  max-width: 15ch;
}

.project-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-duo,
.feature-collage {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
  align-items: end;
}

.hero-duo img:first-child,
.feature-collage img:first-child {
  aspect-ratio: 16 / 10;
}

.hero-duo img:last-child,
.feature-collage img:last-child {
  aspect-ratio: 1;
}

.journey-grid,
.team-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.journey-step,
.fit-card,
.team-grid article {
  padding: 22px;
}

.journey-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--yellow);
  font-weight: 950;
}

.life-board,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.life-board div {
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.life-board strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.4rem;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.team-strip {
  background: var(--ink);
  color: #fff;
}

.team-strip .eyebrow,
.team-strip p {
  color: rgba(255, 255, 255, 0.76);
}

.team-strip .team-grid article {
  color: var(--ink);
}

.team-strip .team-grid article p {
  color: var(--muted);
}

.apply-actions,
.contact-list {
  display: grid;
  gap: 12px;
}

.apply-actions .button,
.contact-list a,
.resource-card a {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.apply-actions .button:first-child {
  background: var(--yellow);
  border-color: transparent;
}

.official-list {
  display: grid;
  gap: 10px;
}

.official-list div,
.resource-card {
  padding: 18px;
}

.official-list dt {
  color: #68736e;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.official-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.resource-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.resource-card strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #d8f1ef;
}

.resource-card a {
  margin-top: auto;
  font-weight: 950;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100svh - 44px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--cream);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
}

.modal-media {
  aspect-ratio: 16 / 8.4;
  background: #111;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.modal-media[data-fit="photo"] img,
.modal-media[data-fit="wide"] img {
  object-fit: cover;
  padding: 0;
}

.modal-content {
  padding: 28px;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.modal-facts li {
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  font-weight: 800;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 36px, 1280px);
  }

  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 18px;
    justify-self: end;
    color: #fff;
  }

  body:not([data-page="home"]) .menu-toggle {
    color: var(--ink);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
  }

  .site-header[data-menu-open="true"] .site-nav,
  .site-header[data-menu-open="true"] .header-actions {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-bottom: 12px;
  }

  body[data-page="home"] .site-header[data-menu-open="true"] {
    background: rgba(16, 21, 18, 0.94);
  }

  .header-actions {
    justify-content: center;
    padding-bottom: 16px;
  }

  .mock-hero-inner,
  .impact-layout,
  .cta-layout,
  .page-hero-grid,
  .split-feature,
  .about-story,
  .official-layout,
  .contact-layout,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .mock-hero-inner {
    gap: 30px;
  }

  .hero-visual-stack {
    justify-self: center;
    width: 100%;
    max-width: 620px;
    align-items: center;
    padding-top: 0;
  }

  .hero-feature-photo {
    width: min(100%, 620px);
    transform: rotate(0.8deg);
  }

  .brush-note {
    margin-right: 0;
  }

  .impact-layout,
  .cta-layout {
    display: grid;
  }

  .impact-photo-wrap {
    max-width: 420px;
  }

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

@media (max-width: 820px) {
  .brand img {
    width: 132px;
  }

  .contact-details-grid,
  .legal-shell,
  .legal-table {
    grid-template-columns: 1fr;
  }

  .contact-details-grid article {
    min-height: 220px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 12px;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .mock-hero {
    min-height: auto;
  }

  .mock-hero-inner {
    min-height: 0;
    align-items: start;
    padding: 118px 0 96px;
  }

  .mock-hero-bg {
    opacity: 0.72;
    filter: saturate(0.96) contrast(1.02) blur(1px);
  }

  .mock-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.42));
  }

  .mock-hero h1 {
    font-size: 3.55rem;
  }

  .mock-hero h1 .desktop-phrase {
    display: none;
  }

  .mock-hero h1 .mobile-phrase {
    display: block;
  }

  .mock-hero-copy p {
    font-size: 1.08rem;
    max-width: 32ch;
  }

  .hero-feature-photo {
    max-width: 520px;
    transform: rotate(0deg);
  }

  .page-hero h1 {
    font-size: 3.35rem;
  }

  .brush-note {
    display: none;
  }

  .mock-actions,
  .modal-actions {
    flex-direction: column;
  }

  .button,
  .mock-actions .button {
    width: 100%;
  }

  .what-grid,
  .latest-grid,
  .cta-cards,
  .impact-stats,
  .project-grid,
  .resource-grid,
  .featured-grid,
  .journey-grid,
  .team-grid,
  .impact-grid,
  .life-board,
  .fit-grid,
  .hero-duo,
  .feature-collage,
  .modal-facts {
    grid-template-columns: 1fr;
  }

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

  .project-impact-grid div:nth-child(2) {
    border-right: 0;
  }

  .project-impact-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quality-layout {
    grid-template-columns: 1fr;
  }

  .quality-layout > img {
    max-width: 560px;
    transform: none;
  }

  .project-detail-hero-grid,
  .project-story-grid,
  .project-actions-layout,
  .project-funding-layout,
  .project-journey-heading,
  .project-downloads-layout {
    grid-template-columns: 1fr;
  }

  .project-journey-heading {
    align-items: start;
    row-gap: 18px;
  }

  .project-detail-visual {
    width: min(100%, 760px);
  }

  .project-detail-copy h1 {
    font-size: 5.2rem;
  }

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

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

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

  .project-detail-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .what-section {
    padding-top: 28px;
  }

  .impact-layout {
    gap: 34px;
  }

  .impact-photo-wrap {
    justify-self: center;
    width: min(100%, 360px);
    transform: rotate(-3deg);
  }

  .impact-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 270;
  }

  .youth-badge {
    top: -48px;
    right: 0;
    width: 124px;
    height: 124px;
  }

  .impact-stats div,
  .impact-stats div:last-child {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 20px 0;
    min-height: auto;
  }

  .latest-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-layout {
    gap: 28px;
  }

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

  .mock-doodle.spark,
  .mock-doodle.heart-two,
  .mock-doodle.heart-one {
    display: none;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .site-header {
    min-height: 76px;
  }

  .contact-intro h1,
  .legal-hero h1 {
    font-size: 3.55rem;
  }

  .contact-details-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .contact-details-grid article > span {
    margin-bottom: 28px;
  }

  .contact-details-grid h2 {
    font-size: 1.6rem;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

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

  .project-impact-grid div,
  .project-impact-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 8px;
  }

  .project-impact-grid div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .project-impact-grid div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .project-impact-grid strong {
    font-size: 2.7rem;
  }

  .quality-layout h2 {
    font-size: 2.7rem;
  }

  .project-detail-hero {
    padding: 46px 0 58px;
  }

  .project-detail-hero-grid {
    gap: 34px;
  }

  .project-back-link {
    margin-bottom: 24px;
  }

  .project-detail-copy h1 {
    font-size: 3.45rem;
  }

  .project-detail-copy > p {
    font-size: 1rem;
  }

  .project-detail-photo {
    border-width: 6px;
  }

  .project-detail-brand {
    right: 8px;
    bottom: 54px;
    width: min(44%, 156px);
    min-height: 60px;
    padding: 10px;
    transform: none;
  }

  .project-story-grid h2,
  .project-actions-layout h2,
  .project-funding-layout h2,
  .project-detail-cta h2 {
    font-size: 2.75rem;
  }

  .project-need-card {
    padding-left: 20px;
  }

  .project-actions-layout ul,
  .project-detail-two-up,
  .project-numbers,
  .project-photo-grid,
  .project-journey-grid,
  .project-downloads-grid {
    grid-template-columns: 1fr;
  }

  body[data-project="armaname"] .project-detail-copy h1 {
    font-size: 3rem;
  }

  body[data-project="sprout"] .project-detail-brand,
  body[data-project="armaname"] .project-detail-brand {
    width: min(46%, 170px);
    min-height: 78px;
  }

  body[data-project="credem-in-tineri"] .project-detail-brand {
    width: min(62%, 220px);
    min-height: 70px;
  }

  body[data-project="sprout"] .project-detail-brand img,
  body[data-project="armaname"] .project-detail-brand img,
  body[data-project="credem-in-tineri"] .project-detail-brand img {
    max-height: 72px;
  }

  body[data-project="credem-in-tineri"] .project-photo-grid {
    grid-template-columns: 1fr;
  }

  .project-journey-heading h2,
  .project-downloads-copy h2 {
    font-size: 2.75rem;
  }

  .project-journey-grid article {
    padding: 24px 20px;
  }

  .project-download-card {
    min-height: 132px;
  }

  .mini-gallery {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mini-gallery .gallery-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .project-actions-layout li {
    min-height: 0;
  }

  .project-detail-two-up article,
  .project-detail-two-up article + article {
    padding: 26px 0;
    border-left: 0;
  }

  .project-detail-two-up article + article {
    border-top: 1px solid var(--line);
  }

  .funding-card {
    padding: 20px;
  }

  .header-grid {
    min-height: 76px;
  }

  .brand img {
    width: 116px;
  }

  .mock-hero,
  .mock-hero-inner {
    min-height: 0;
  }

  .mock-hero-bg {
    object-position: center;
  }

  .mock-hero h1 {
    font-size: clamp(2.88rem, 15vw, 3.28rem);
  }

  .mock-hero-inner {
    padding: 110px 0 82px;
    gap: 24px;
  }

  .mock-hero-copy p {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .latest-card {
    min-height: 330px;
  }

  .latest-card h3 {
    font-size: 2.75rem;
  }
}

@media (max-width: 820px) {
  .site-header .menu-toggle {
    display: block !important;
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 70;
  }
}
/* Blog and lightweight CMS access */
.site-nav {
  gap: clamp(12px, 1.45vw, 26px);
}

.blog-page,
.article-page {
  background: #fbf8f4;
}

.blog-hero {
  padding: 150px 0 70px;
  color: #fff;
  background:
    linear-gradient(110deg, rgb(14 21 19 / 96%), rgb(14 21 19 / 78%)),
    url("assets/facebook/fb-international.jpg") center 42% / cover;
}

.blog-hero-inner {
  max-width: 820px;
}

.blog-hero .eyebrow {
  color: #70d9d2;
}

.blog-hero h1 {
  margin: 8px 0 12px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(64px, 9vw, 118px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
}

.blog-hero p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.blog-list-section {
  min-height: 50vh;
  padding: 68px 0 100px;
}

.blog-latest {
  margin: 14px 0 70px;
}

.blog-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7ddd9;
  border-radius: 8px;
}

.blog-card.is-featured {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.blog-card-media {
  min-height: 260px;
  display: block;
  overflow: hidden;
  background: #131a18;
}

.blog-card.is-featured .blog-card-media {
  min-height: 440px;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.025);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  color: #ffc935;
  background: #111715;
  font-size: 64px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 48px);
}

.blog-card-body h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
}

.blog-card:not(.is-featured) .blog-card-body h2 {
  font-size: 27px;
}

.blog-card-body h2 a,
.blog-read-link {
  color: #101614;
  text-decoration: none;
}

.blog-card-body > p:not(.blog-date) {
  margin: 0 0 24px;
  color: #525e59;
  line-height: 1.65;
}

.blog-date {
  margin: 0;
  color: #68736e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-read-link {
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 2px solid #ffc935;
  font-weight: 800;
}

.blog-all-label {
  margin-top: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.blog-empty {
  max-width: 720px;
  margin: 34px auto 60px;
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid #d7ddd9;
  border-bottom: 1px solid #d7ddd9;
}

.blog-empty > span {
  color: #29c5be;
  font-size: 40px;
}

.blog-empty h2 {
  margin: 10px 0 6px;
  font-size: clamp(26px, 4vw, 42px);
}

.blog-empty p {
  margin: 0;
  color: #5c6762;
}

.article-shell {
  max-width: 980px;
  padding-top: 140px;
  padding-bottom: 110px;
}

.article-back {
  display: inline-block;
  margin-bottom: 46px;
  color: #101614;
  font-weight: 800;
}

.article-header {
  max-width: 840px;
}

.article-header h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

.article-lead {
  margin: 0;
  color: #4f5a55;
  font-size: clamp(19px, 2.5vw, 27px);
  line-height: 1.5;
}

.article-cover {
  margin: 48px 0;
}

.article-cover img {
  width: 100%;
  max-height: 680px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  color: #252d2a;
  font-size: 18px;
  line-height: 1.78;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.article-body h3 {
  margin: 1.8em 0 0.5em;
  font-size: 25px;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 22px;
  border-left: 4px solid #29c5be;
  font-size: 22px;
  font-weight: 700;
}

.article-body a {
  color: #075f5b;
  text-decoration-thickness: 2px;
}

.home-blog-feature {
  padding: 76px 0 92px;
  background: #e8f8f6;
}

.home-blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.home-blog-head .eyebrow {
  margin: 0 0 5px;
}

.home-blog-head .script-title {
  margin: 0;
}

.home-blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  background: #111715;
  border-radius: 8px;
}

.home-blog-media {
  min-height: 430px;
  overflow: hidden;
}

.home-blog-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-blog-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 60px);
  color: #fff;
}

.home-blog-copy .blog-date {
  color: #70d9d2;
}

.home-blog-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.home-blog-copy > p:not(.blog-date) {
  margin: 0 0 26px;
  color: #d9e0dd;
  line-height: 1.6;
}

.cms-login-trigger {
  position: fixed;
  z-index: 90;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgb(255 255 255 / 42%);
  background: rgb(16 22 20 / 55%);
  font-size: 16px;
  line-height: 1;
  opacity: 0.55;
}

.cms-login-trigger:hover,
.cms-login-trigger:focus-visible {
  opacity: 1;
}

.cms-login-dialog {
  width: min(92vw, 380px);
  padding: 0;
  border: 1px solid #5d6863;
  border-radius: 7px;
  color: #fff;
  background: #111715;
  box-shadow: 0 24px 90px rgb(0 0 0 / 46%);
}

.cms-login-dialog::backdrop {
  background: rgb(0 0 0 / 62%);
  backdrop-filter: blur(3px);
}

.cms-login-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.cms-login-form h2 {
  margin: 0;
  font-size: 24px;
}

.cms-login-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.cms-login-form input {
  width: 100%;
  padding: 11px;
  border: 1px solid #56615c;
  border-radius: 5px;
  color: #fff;
  background: #1b2421;
}

.cms-dialog-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 24px;
}

.cms-login-error {
  margin: 0;
  color: #ffb5b0;
  font-size: 13px;
}

@media (max-width: 920px) {
  .blog-card.is-featured,
  .home-blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card.is-featured .blog-card-media,
  .home-blog-media {
    min-height: 340px;
  }

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

@media (max-width: 620px) {
  .blog-hero {
    padding: 116px 0 52px;
  }

  .blog-hero h1 {
    font-size: 64px;
  }

  .blog-list-section {
    padding: 48px 0 70px;
  }

  .blog-card.is-featured .blog-card-media,
  .home-blog-media {
    min-height: 250px;
  }

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

  .home-blog-feature {
    padding: 56px 0 66px;
  }

  .home-blog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-shell {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .article-back {
    margin-bottom: 30px;
  }

  .article-header h1 {
    font-size: 42px;
  }

  .article-cover {
    margin: 32px 0;
  }

  .article-body {
    font-size: 17px;
  }
}
