/* ==========================================================================
   10K2ZERO — Child Suicide Prevention
   Design system extracted from HOME.pdf / ABOUT US.pdf (1920pt canvas)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette — values taken from the Figma file */
  --sky:        #75BEF3;
  --ink:        #1C2033;
  --ink-soft:   #222F3F;
  --purple:     #5D45A8;
  --purple-dark:#4B3690;
  --mist:       #EDF5FA;
  --white:      #FFFFFF;
  --grey:       #D9D9D9;
  --rule:       rgba(28, 32, 51, .18);
  --rule-light: rgba(255, 255, 255, .35);

  /* Type */
  /* One variable family throughout. Headings are the condensed bold end of its
     axes (wdth 75 / wght 700); body copy is the default width at regular. */
  --font-display: "Special Gothic", "Arial Narrow", sans-serif;
  --font-head: "Special Gothic", "Arial Narrow", sans-serif;
  --font-body: "Special Gothic", "Helvetica Neue", Arial, sans-serif;
  --head-width: 75%;
  --head-weight: 700;

  /* Layout — design canvas is 1920 wide with a 1600 content column */
  --container: 1600px;
  --gutter: clamp(20px, 4vw, 60px);
  --header-h: 116px;

  /* Rhythm */
  --section-y: clamp(52px, 5vw, 96px);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.146vw, 22px);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--purple); }

button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font: 700 14px/1 var(--font-body); letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y) calc(var(--section-y) * 1.6); }
.section--mist  { background: var(--mist); }
.section--tight { padding-block: clamp(48px, 5vw, 90px); }
/* Panels carry their own inner padding, so the wrapper only needs the gap below */
.section--flush { padding-block: 0 clamp(60px, 10.2vw, 196px); }
/* The events block opens with a rule, which supplies its own top space */
.section--events { padding-top: 0; }

/* The Our Work hero: left-aligned title over a short lede, on white */
.workhero { padding-block: clamp(42px, 5.83vw, 112px) clamp(46px, 5vw, 97px); }
.workhero .lede { max-width: 21.5em; margin-top: clamp(8px, .63vw, 12px); }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
/* Full-strength dividers: 1px above the Events grid, 2px between About's sections */
.rule--strong { border-top-color: var(--ink); margin-bottom: clamp(30px, 2.9vw, 56px); }
.rule--section { border-top: 2px solid var(--ink); margin-block: clamp(60px, 7.34vw, 141px) 0; }
.section--flush-b { padding-bottom: 0; }
/* About opens its prose sections with a deeper top margin than the standard rhythm */
.section--deep-t { padding-top: clamp(60px, 6.56vw, 126px); }
.section--flush-t { padding-top: clamp(24px, 2.66vw, 51px); }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.display,
.display--m,
.display--s,
.section-title {
  font-family: var(--font-display);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  text-transform: uppercase;
  /* Special Gothic Condensed One, sized so cap heights match the artwork. */
  letter-spacing: -.018em;
  line-height: .905;
  margin: 0;
  color: var(--ink);
}

.display       { font-size: clamp(44px, 8.9vw, 171px); line-height: .895; letter-spacing: -.023em; }
.display--m    { font-size: clamp(38px, 6.2vw, 119px); letter-spacing: -.012em; }
.display--s    { font-size: clamp(32px, 4.38vw, 84px); }
.section-title { font-size: clamp(32px, 4.38vw, 84px); }

h2, h3, h4 { font-family: var(--font-head); margin: 0; }

.head-l, .head-m, .head-s {
  font-family: var(--font-head);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
}

.head-l { font-size: clamp(26px, 2.55vw, 49px); line-height: 1.1; }
.head-m { font-size: clamp(22px, 2.08vw, 40px); line-height: 1.12; }
.head-s { font-size: clamp(19px, 1.56vw, 30px); line-height: 1.2; }

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(13px, .89vw, 17px); font-weight: 700; letter-spacing: .04em;
  color: var(--ink); margin: 0;
  text-transform: uppercase;
}

/* Larger section label, as used above the partner grids */
.eyebrow--lg {
  font-family: var(--font-display);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  font-size: clamp(18px, 1.61vw, 31px);
  letter-spacing: .008em;
}

.lede {
  font-size: clamp(22px, 1.88vw, 36px);
  line-height: 1.15;
  margin: 0;
}

.body-lg { font-size: clamp(19px, 1.35vw, 26px); line-height: 1.4; margin: 0; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.measure    { max-width: 30em; }
.measure-sm { max-width: 22em; }

/* Inline link style used throughout the design: purple, underlined, bold */
.link {
  color: var(--purple);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .025em;
  font-size: clamp(16px, 1.09vw, 21px);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.link:hover { color: var(--ink); }

.link-inline {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-inline:hover { color: var(--ink); }

/* Bulleted lists in the design use a small mid-dot marker */
.list {
  list-style: none;
  margin: 0; padding: 0;
}
.list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: .06em;
}
.list li::before {
  content: "";
  position: absolute; left: 2px; top: .62em;
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .003em;
  font-size: clamp(15px, 1.146vw, 22px);
  line-height: 1;
  padding: clamp(14px, 1.09vw, 21px) clamp(20px, 1.67vw, 32px);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn--primary { background: var(--purple); color: #fff; }
.btn--primary:hover { background: var(--purple-dark); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--sky);
  position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { width: 232px; }

.nav { display: flex; align-items: center; gap: clamp(24px, 2.3vw, 44px); }
.nav a {
  font-family: var(--font-head);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  font-size: clamp(20px, 1.64vw, 31px);
  letter-spacing: .007em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--ink); }
.nav a[aria-current="page"] { color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 30px; height: 30px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }

@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .site-header__logo img { width: 176px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--sky);
    flex-direction: column; align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 28px;
    border-top: 1px solid rgba(28,32,51,.15);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 16px 0; font-size: 20px; }
}

/* --------------------------------------------------------------------------
   7. Hero (Home)
   -------------------------------------------------------------------------- */
.hero {
  background: var(--sky);
  text-align: center;
  padding-block: clamp(44px, 4.9vw, 94px) clamp(56px, 9.1vw, 175px);
}
.hero .display { max-width: 6.5em; margin-inline: auto; }
.hero__lede {
  max-width: 21.3em;
  margin: clamp(18px, 1.2vw, 23px) auto 0;
  font-size: clamp(22px, 1.88vw, 36px);
  line-height: 1.19;
}
.hero .btn-row { margin-top: clamp(26px, 2.4vw, 46px); }

/* --------------------------------------------------------------------------
   8. Statistic slider over photo
   -------------------------------------------------------------------------- */
.statband {
  position: relative;
  background: var(--ink-soft);
  min-height: clamp(380px, 41.4vw, 794px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(48px, 5vw, 90px) var(--gutter);
  overflow: hidden;
}
.statband__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transform: scale(1.75);
  transform-origin: 50% 45%;
}
.statband::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(34, 47, 63, .46);
}
.statband__card {
  position: relative; z-index: 1;
  background: #fff;
  width: min(100%, 508px);
  min-height: clamp(330px, 27.4vw, 526px);
  padding: clamp(28px, 2.4vw, 46px) clamp(22px, 2.3vw, 44px) clamp(30px, 3.4vw, 66px);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.statband__slide { display: none; }
.statband__slide.is-active { display: block; }
.statband__stat {
  font-family: var(--font-head);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  letter-spacing: .018em;
  font-size: clamp(26px, 2.6vw, 50px);
  line-height: .92;
  margin: 0;
}
.statband__source {
  margin: clamp(20px, 1.83vw, 35px) 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .77em;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.5;
}
.statband__nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 26px;
  margin-top: clamp(22px, 2.2vw, 36px);
}
.statband__btn {
  background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ink);
  line-height: 0;
}
.statband__btn svg { width: 30px; height: 18px; }
.statband__btn:hover { color: var(--purple); }
.statband__count {
  font-family: var(--font-body);
  font-weight: 700; font-size: .8em; letter-spacing: .04em;
  min-width: 46px; text-align: center;
}
/* The nav is pinned to the foot of the card, as in the design */
.statband__card .statband__nav { margin-top: auto; padding-top: clamp(26px, 2.6vw, 50px); }

/* --------------------------------------------------------------------------
   9. Generic two-column split
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.split--narrow-left { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }

@media (max-width: 900px) {
  .split, .split--narrow-left { grid-template-columns: minmax(0, 1fr); }
}

/* Document thumbnail cards (policy brief / concept note) */
.docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 36px);
}
.doc { text-decoration: none; display: block; }
.doc__label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--purple);
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: .025em; font-size: clamp(16px, 1.09vw, 21px);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px;
}
.doc__thumb {
  border: 1px solid var(--rule);
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.doc:hover .doc__thumb { box-shadow: 0 10px 30px rgba(28,32,51,.14); transform: translateY(-3px); }
.doc:hover .doc__label { color: var(--ink); }

/* --------------------------------------------------------------------------
   10. Three focus areas
   -------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 64px);
  margin-top: clamp(34px, 3.1vw, 60px);
  text-align: center;
}
.pillar__icon {
  width: clamp(78px, 6.8vw, 130px);
  height: auto;
  margin: 0 auto clamp(18px, 1.5vw, 28px);
  color: var(--sky);
}
.pillar__icon .shadow { fill: var(--sky); }
.pillar__icon .shape  { fill: var(--mist); stroke: var(--sky); stroke-width: 4;
                        stroke-linejoin: round; stroke-linecap: round; }
.pillar__icon .rule   { fill: none; stroke: var(--sky); stroke-width: 3; stroke-linecap: round; }
.pillar p {
  margin: 16px auto 0;
  max-width: 19em;
  line-height: 1.5;
}
@media (max-width: 780px) {
  .pillars { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   11. Timeline / milestone cards
   -------------------------------------------------------------------------- */
/* Three equal columns separated by a hairline centred in the gap, so every
   column gets the same measure (the artwork puts them at 160 / 704 / 1248). */
.milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(30px, 3.6vw, 69px);
  margin-top: clamp(34px, 3.6vw, 62px);
}
.milestone {
  position: relative;
  display: flex; flex-direction: column;
}
.milestone + .milestone::before {
  content: "";
  position: absolute; top: 0; bottom: 0;
  left: calc(clamp(30px, 3.6vw, 69px) / -2);
  width: 1px;
  background: var(--rule);
}
.milestone__date {
  align-self: flex-start;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700; font-size: .82em; letter-spacing: .015em;
  line-height: 1;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 20px;
}
/* Dated milestones use an outlined chip; open-ended ones a filled chip */
.milestone__date--outline {
  background: none;
  box-shadow: inset 0 0 0 1px var(--ink);
}
.milestone .head-l { margin-bottom: 14px; }
.milestone p { line-height: 1.5; }
.milestone__media {
  background: var(--grey);
  aspect-ratio: 16 / 9;
  margin: clamp(22px, 2.1vw, 40px) 0 8px;
  width: 100%;
  object-fit: cover;
}
.milestone__links {
  margin-top: clamp(18px, 1.46vw, 28px);
  display: flex; flex-wrap: wrap; gap: 22px;
}
@media (max-width: 900px) {
  .milestones { grid-template-columns: minmax(0, 1fr); row-gap: 40px; }
  .milestone + .milestone {
    border-top: 1px solid var(--rule);
    padding-top: 32px;
  }
  .milestone + .milestone::before { content: none; }
}

/* --------------------------------------------------------------------------
   12. Closing call to action
   -------------------------------------------------------------------------- */
.cta {
  background: var(--sky);
  text-align: center;
  padding-block: clamp(60px, 7vw, 120px) clamp(48px, 5vw, 84px);
}
.cta .display--s { max-width: 6.8em; margin-inline: auto; }
.cta__lede {
  max-width: 22.5em;
  margin: clamp(22px, 2.2vw, 36px) auto 0;
  font-size: clamp(21px, 1.82vw, 35px);
  line-height: 1.19;
}
.cta .btn-row { margin-top: clamp(26px, 2.6vw, 42px); }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--sky); padding-bottom: clamp(40px, 4vw, 70px); }
/* Used where no closing CTA precedes the footer, so no divider is needed */
.site-footer--plain { padding-top: clamp(48px, 6.5vw, 125px); }
.site-footer__rule {
  border: 0; border-top: 1px solid rgba(28,32,51,.45);
  margin: 0 0 clamp(38px, 4vw, 66px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 3vw, 56px);
  align-items: start;
}
.site-footer__logo img { width: min(100%, 470px); }
.site-footer__initiative .eyebrow { margin-bottom: 16px; }
.org-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.org-logos img { height: clamp(64px, 6.5vw, 125px); width: auto; }
.site-footer__contact { justify-self: end; text-align: left; }
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .site-footer__contact { justify-self: start; }
}

.socials { display: flex; gap: clamp(10px, 1.1vw, 21px); margin-bottom: clamp(20px, 2.2vw, 42px); }
.socials a {
  width: clamp(44px, 4.2vw, 80px); height: clamp(44px, 4.2vw, 80px); border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background-color .18s ease, color .18s ease;
}
.socials a:hover { background: var(--ink); color: var(--sky); }
.socials svg { width: 42%; height: 42%; }

.site-footer__mail {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.25vw, 43px);
  color: var(--purple);
  text-decoration: none;
  letter-spacing: .01em;
}
.site-footer__mail:hover { text-decoration: underline; }

.site-footer__legal {
  margin-top: clamp(38px, 4vw, 64px);
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  justify-content: space-between;
  font-size: .8em;
  color: rgba(28,32,51,.8);
}
.site-footer__legal a { color: rgba(28,32,51,.8); text-decoration: underline; }
.site-footer__legal a:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   14. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.pagehero {
  display: grid;
  grid-template-columns: minmax(0, 29.5fr) minmax(0, 70.5fr);
  background: var(--mist);
  align-items: stretch;
}
.pagehero__title {
  display: flex; align-items: flex-end;
  padding: clamp(40px, 4.6vw, 88px) clamp(20px, 2.2vw, 42px) clamp(34px, 4.3vw, 82px);
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.pagehero__title .display {
  font-size: clamp(38px, 5.78vw, 111px);
  line-height: .9;
}
.pagehero__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1.9; }
@media (max-width: 860px) {
  .pagehero { grid-template-columns: minmax(0, 1fr); }
  .pagehero__title { padding-inline: var(--gutter); }
}

/* --------------------------------------------------------------------------
   15. About-page specifics
   -------------------------------------------------------------------------- */
.prose-col { max-width: 780px; margin-inline: auto; }
.prose-col .section-title { margin-bottom: clamp(18px, 1.8vw, 30px); }
.prose-col .head-l { margin: clamp(30px, 3vw, 50px) 0 14px; }
.prose-col .head-m { margin: clamp(26px, 2.6vw, 42px) 0 14px; }
.prose-col .list { margin-top: 18px; }

.stakeholders {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--mist);
  align-items: stretch;
}
.stakeholders__text { padding: clamp(44px, 5vw, 92px) clamp(20px, 4.3vw, 82px); }
.stakeholders__text p { max-width: 25.8em; line-height: 1.5; }
.stakeholders__text .head-l { line-height: 1.0; }
.stakeholders__img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.stakeholder-cols {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px clamp(24px, 3vw, 56px);
  margin-top: 26px;
}
.stakeholder-cols p {
  font-family: var(--font-display);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  text-transform: uppercase;
  color: var(--sky);
  font-size: clamp(26px, 2.55vw, 49px);
  letter-spacing: -.012em;
  line-height: .94;
  max-width: none;
}
@media (max-width: 900px) {
  .stakeholders { grid-template-columns: minmax(0, 1fr); }
  .stakeholders__text { padding-inline: var(--gutter); }
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--rule);
  margin-top: clamp(24px, 2.6vw, 44px);
}
.org-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.org-cell {
  border-left: 1px solid var(--rule);
  padding: clamp(26px, 3vw, 52px);
  display: grid; place-items: center; min-height: clamp(190px, 25.7vw, 493px);
}
.org-cell:first-child { border-left: 0; }
.org-cell img { max-height: clamp(78px, 11.6vw, 223px); width: auto; }
.org-cell--filled {
  background: var(--purple); color: #fff;
  place-items: start; align-content: start; text-align: left;
}
.org-cell--filled .head-m { color: #fff; margin-bottom: 12px; }
.org-cell--filled p { font-size: .88em; line-height: 1.5; }
.org-cell--filled .link { color: #fff; margin-top: 18px; }
.org-cell--filled .link:hover { color: var(--sky); }
@media (max-width: 780px) {
  .org-grid, .org-grid--3 { grid-template-columns: minmax(0, 1fr); }
  .org-cell { border-left: 0; border-top: 1px solid var(--rule); }
  .org-cell:first-child { border-top: 0; }
}

/* --------------------------------------------------------------------------
   16. Our Work — pillar panels
   -------------------------------------------------------------------------- */
.wpanels { display: grid; gap: clamp(24px, 2.9vw, 56px); }

.wpanel {
  background: var(--mist);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(0px, 49.5vw, 950px);
  padding-block: clamp(38px, 3.44vw, 66px);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.wpanel__aside {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-right: 1px solid var(--ink);
  padding-inline: clamp(20px, 2vw, 38px);
}
.wpanel__aside .section-title { margin: 0; }

.wpanel__icon {
  width: min(100%, clamp(150px, 23.6vw, 454px));
  height: auto;
  margin: auto;
  color: var(--sky);
  fill: currentColor;
}

.wpanel__body {
  padding-left: clamp(20px, 3.33vw, 64px);
  padding-right: clamp(20px, 3.44vw, 66px);
}
.wpanel__body > p, .wsub p { max-width: 30em; }
.wpanel__body > p:first-child { margin-bottom: 0; }

.wsub { margin-top: clamp(22px, 1.88vw, 36px); }
.wsub .head-l { margin-bottom: 0; }
.wsub + .wsub { margin-top: clamp(12px, .83vw, 16px); }

@media (max-width: 860px) {
  .wpanel {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding-inline: clamp(20px, 5vw, 40px);
  }
  .wpanel__aside {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding: 0 0 clamp(26px, 5vw, 40px);
  }
  .wpanel__icon { width: min(70%, 300px); }
  .wpanel__body { padding: clamp(26px, 5vw, 40px) 0 0; }
}

/* --------------------------------------------------------------------------
   17. Get Involved
   -------------------------------------------------------------------------- */
/* Hero: title, full-width photo, then the standfirst */
.gihero { padding-block: clamp(42px, 5.83vw, 112px) clamp(56px, 6.82vw, 131px); }
.gihero .display--m { margin: 0; }
.gihero__img {
  width: 100%;
  aspect-ratio: 1600 / 897;
  object-fit: cover;
  object-position: 50% 100%;
  margin-top: clamp(26px, 3.9vw, 75px);
}
.gihero__lede {
  max-width: 30em;
  margin-top: clamp(24px, 5.5vw, 106px);
}

/* The three route-in cards. Row two carries a single card, as in the artwork. */
.gi-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 42px) clamp(16px, 1.72vw, 33px);
  margin-top: clamp(34px, 4.3vw, 83px);
}
.gi-card {
  border: 1px solid var(--ink);
  min-height: clamp(0px, 51.4vw, 987px);
  padding: clamp(28px, 3.13vw, 60px) clamp(24px, 3.8vw, 73px) clamp(30px, 3.54vw, 68px);
  display: flex;
  flex-direction: column;
}
.gi-card__icon {
  width: clamp(76px, 6.1vw, 117px);
  height: auto;
  color: var(--sky);
  margin-bottom: clamp(22px, 2.55vw, 49px);
}
.gi-card__icon .shadow { fill: var(--sky); }
.gi-card__icon .shape  { fill: #fff; stroke: var(--sky); stroke-width: 4;
                         stroke-linejoin: round; stroke-linecap: round; }
.gi-card__icon .rule   { fill: none; stroke: var(--sky); stroke-width: 3; stroke-linecap: round; }
.gi-card .section-title { margin: 0; }

.gi-card__sub {
  border-top: 1px solid var(--ink);
  margin-top: clamp(24px, 2.55vw, 49px);
  padding-top: clamp(12px, 1.15vw, 22px);
}
.gi-card__sub:first-of-type { margin-top: clamp(30px, 3.02vw, 58px); }
.gi-card__label {
  font-family: var(--font-display);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  font-size: clamp(20px, 1.64vw, 31px);
  letter-spacing: .008em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 clamp(5px, .42vw, 8px);
}
.gi-card__sub p { margin: 0; }

.gi-card__intro { margin: clamp(24px, 3.44vw, 66px) 0 0; }

.gi-card__list {
  list-style: none;
  margin: clamp(22px, 2.4vw, 46px) 0 0;
  padding: 0;
}
.gi-card__list li {
  position: relative;
  padding-left: clamp(18px, 1.72vw, 33px);
  margin-bottom: clamp(10px, 1.15vw, 22px);
  font-family: var(--font-display);
  font-stretch: var(--head-width);
  font-weight: var(--head-weight);
  font-size: clamp(20px, 1.64vw, 31px);
  letter-spacing: .02em;
  line-height: .94;
  text-transform: uppercase;
}
.gi-card__list li::before {
  content: "";
  position: absolute; left: 2px; top: .38em;
  width: 5px; height: 5px;
  background: currentColor;
}

.gi-card__foot {
  margin-top: auto;
  padding-top: clamp(26px, 3vw, 58px);
  text-align: right;
}
.gi-card__foot p { margin: 0 0 4px; }
.gi-card__foot .link { font-size: clamp(16px, 1.14vw, 22px); letter-spacing: .015em; }

/* Share targets — flat circles until the destinations are decided */
.gi-share {
  display: flex; justify-content: flex-end;
  gap: clamp(9px, .94vw, 18px);
}
.gi-share span {
  width: clamp(30px, 2.66vw, 51px);
  height: clamp(30px, 2.66vw, 51px);
  border-radius: 50%;
  background: var(--purple);
}

/* Enquiry band. The form itself is not built yet — the space is reserved. */
.gi-band {
  background: var(--mist);
  padding-block: clamp(40px, 2.86vw, 55px);
  min-height: clamp(360px, 94.4vw, 1812px);
}
.gi-band .display--s {
  text-align: center;
  max-width: 8em;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .gi-cards { grid-template-columns: minmax(0, 1fr); }
  .gi-card { min-height: 0; }
  .gi-band { min-height: 0; padding-block: clamp(48px, 8vw, 90px); }
}

/* --------------------------------------------------------------------------
   18. Utilities
   -------------------------------------------------------------------------- */
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: clamp(30px, 3.4vw, 56px); }
.center { text-align: center; }
.stack > * + * { margin-top: 18px; }
