/* ═══════════════════════════════════════════════════════════
   NGO Structure v6 — Totally new layout system
   Diagonal splits · Zigzag bands · Typographic headers · Rails
   ═══════════════════════════════════════════════════════════ */

/* ── Pill header ── */
.site-header--pill {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  height: auto;
}
.site-header--pill .site-header__inner {
  height: auto;
}
.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sand-dark);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.1);
}
.header-pill__nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  background: var(--sand);
  border-radius: 9999px;
}
@media (min-width: 1024px) { .header-pill__nav { display: flex; } }
.header-pill__link {
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.header-pill__link:hover { color: var(--primary); background: #fff; }
.header-pill__link.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.header-pill .site-header__brand-text { font-size: 0.875rem; line-height: 1.2; }
.header-pill .site-header__tagline {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 0.1rem;
}
.header-pill .site-header__logo { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }
.header-pill__brand-text { max-width: 11rem; }
@media (min-width: 1280px) { .header-pill__brand-text { display: block; max-width: 14rem; } }
.header-pill__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-pill__donate { display: none; }
@media (min-width: 640px) { .header-pill__donate { display: inline-flex; } }
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-pill__donate { display: none; }
}
:root { --header-h: 5.25rem; }
@media (max-width: 1023px) { :root { --header-h: 4.75rem; } }
@media (max-width: 639px) { :root { --header-h: 4.25rem; } }

/* ── Split diagonal hero ── */
.split-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: calc(var(--header-h) + 1rem);
  overflow: hidden;
  background: var(--warm-white);
}
@media (min-width: 1024px) {
  .split-hero {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.split-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--gutter) 5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) { .split-hero__content { padding: 3rem 4rem 5.5rem var(--gutter); } }
.split-hero__index {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary-50);
  -webkit-text-stroke: 2px var(--primary-100);
  color: transparent;
  -webkit-text-stroke-color: var(--primary-100);
  margin-bottom: -1rem;
  user-select: none;
}
.split-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
}
.split-hero__title span {
  color: var(--primary);
  display: block;
}
.split-hero__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .split-hero__visual {
    min-height: auto;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -8%;
  }
}
.split-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) { .split-hero__visual img { min-height: 100%; } }
.split-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), transparent 60%);
  pointer-events: none;
}
.split-hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(90deg, #0F0D2E 0%, #1E1B4B 35%, #312E81 65%, #1E1B4B 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
}
.split-hero__marquee::before,
.split-hero__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.split-hero__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0F0D2E 20%, transparent);
}
.split-hero__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #1E1B4B 20%, transparent);
}
.split-hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  padding-inline: var(--gutter);
}
.split-hero__marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  opacity: 0.95;
}
.split-hero__marquee-track span::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .split-hero__marquee-track { animation: none; }
}

/* ── Quote band ── */
.quote-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #5B52E8 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '"';
  position: absolute;
  top: -0.2em; left: var(--gutter);
  font-family: 'Outfit', serif;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.quote-band__inner {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.quote-band__text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}
.quote-band__meta {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Numbered rows (mission etc) ── */
.numbered-rows { display: flex; flex-direction: column; }
.numbered-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem var(--gutter);
  border-bottom: 1px solid var(--sand-dark);
  align-items: start;
}
@media (min-width: 768px) {
  .numbered-row {
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    padding: 3.5rem var(--gutter);
  }
}
.numbered-row:nth-child(odd) { background: #fff; }
.numbered-row:nth-child(even) { background: var(--sand); }
.numbered-row__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary-100);
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
  -webkit-text-stroke-color: var(--primary);
}
.numbered-row__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.75rem;
}
.numbered-row__text {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40rem;
}

/* ── Zigzag bands ── */
.zigzag-band {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 400px;
}
@media (min-width: 1024px) {
  .zigzag-band { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .zigzag-band--flip .zigzag-band__media { order: 2; }
  .zigzag-band--flip .zigzag-band__body { order: 1; }
}
.zigzag-band__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.zigzag-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s ease;
}
.zigzag-band:hover .zigzag-band__media img { transform: scale(1.05); }
.zigzag-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem var(--gutter);
  background: #fff;
}
.zigzag-band:nth-child(even) .zigzag-band__body { background: var(--primary-50); }
.zigzag-band__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.zigzag-band__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}
.zigzag-band__text {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
}
.zigzag-band__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.25s ease;
}
.zigzag-band__link:hover { gap: 0.85rem; }

/* ── Impact rail ── */
.impact-rail {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 0;
  color: #fff;
}
.impact-rail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .impact-rail__grid { grid-template-columns: repeat(4, 1fr); } }
.impact-rail__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.impact-rail__item:last-child { border-right: none; }
@media (max-width: 767px) {
  .impact-rail__item:nth-child(2) { border-right: none; }
  .impact-rail__item { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .impact-rail__item:nth-last-child(-n+2) { border-bottom: none; }
}
.impact-rail__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.impact-rail__label {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ── Horizontal scroll programs ── */
.hscroll-section {
  padding: 4rem 0;
  overflow: hidden;
  background: var(--sand);
}
.hscroll-section__head {
  padding: 0 var(--gutter);
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}
.hscroll-section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
}
.hscroll-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0 var(--gutter) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hscroll-rail::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex: 0 0 min(85vw, 340px);
  scroll-snap-align: start;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hscroll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hscroll-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hscroll-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hscroll-card:hover .hscroll-card__img img { transform: scale(1.06); }
.hscroll-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.hscroll-card__date { font-size: 0.75rem; color: var(--accent); font-weight: 700; }
.hscroll-card__title {
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--heading);
}

/* ── Typographic page header (inner pages) ── */
.type-header {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  background: #fff;
  border-bottom: 3px solid var(--primary);
  position: relative;
}
.type-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}
.type-header__breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.type-header__breadcrumb a { color: var(--primary); text-decoration: none; }
.type-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  max-width: 16ch;
}
.type-header__desc {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}
.type-header__actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── News timeline list ── */
.news-timeline { padding: 3rem 0; }
.news-timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand-dark);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}
@media (min-width: 768px) {
  .news-timeline__item {
    grid-template-columns: 140px 200px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0;
  }
}
.news-timeline__item:hover { background: var(--primary-50); margin: 0 calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter); }
.news-timeline__date {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-timeline__thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--sand);
}
.news-timeline__thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-timeline__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--heading);
  transition: color 0.2s;
}
.news-timeline__item:hover .news-timeline__title { color: var(--primary); }
.news-timeline__excerpt {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-timeline__cat {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--primary-50);
  color: var(--primary);
}

/* ── Featured story block (news) ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--heading);
  color: #fff;
}
@media (min-width: 1024px) {
  .feature-block { grid-template-columns: 1.3fr 1fr; min-height: 420px; }
}
.feature-block__media { min-height: 280px; position: relative; }
.feature-block__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; opacity: 0.85; }
.feature-block__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-block__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

/* ── Donation split layout ── */
.donate-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .donate-split { grid-template-columns: 1fr 1fr; }
}
.donate-split__story {
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  background: var(--sand);
}
.donate-split__form-panel {
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  background: #fff;
  border-left: 1px solid var(--sand-dark);
}
@media (min-width: 1024px) {
  .donate-split__form-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }
}

/* ── Contact page v7 ── */
.contact-v7__hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: calc(var(--header-h) + 1rem);
  background: var(--warm-white);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-v7__hero {
    grid-template-columns: 1fr 1fr;
    min-height: min(72vh, 640px);
    align-items: stretch;
  }
}
.contact-v7__hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--gutter) 2.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .contact-v7__hero-text { padding: 3rem 3rem 3rem var(--gutter); }
}
.contact-v7__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.contact-v7__breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.contact-v7__index {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-100);
  margin-bottom: -0.5rem;
}
.contact-v7__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
}
.contact-v7__title span { color: var(--primary); }
.contact-v7__lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28rem;
}
.contact-v7__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-v7__hero-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-v7__hero-media {
    min-height: auto;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -6%;
  }
}
.contact-v7__hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .contact-v7__hero-media img { min-height: 100%; }
}
.contact-v7__hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), transparent 55%);
  pointer-events: none;
}
.contact-v7__alert { padding-top: 1rem; }

.contact-v7__methods { display: flex; flex-direction: column; }
.contact-v7__method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem var(--gutter);
  border-bottom: 1px solid var(--sand-dark);
  align-items: start;
}
@media (min-width: 768px) {
  .contact-v7__method {
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 3rem var(--gutter);
  }
}
.contact-v7__method:nth-child(odd) { background: #fff; }
.contact-v7__method:nth-child(even) { background: var(--sand); }
.contact-v7__method-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
}
.contact-v7__method-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.contact-v7__method-text {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 36rem;
}
.contact-v7__method-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  word-break: break-word;
}
a.contact-v7__method-link:hover { color: var(--accent); text-decoration: underline; }

.contact-v7__main {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
}
.contact-v7__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-v7__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-dark);
  }
}
.contact-v7__panel {
  background: linear-gradient(160deg, #1E1B4B 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact-v7__panel { min-height: 100%; }
}
.contact-v7__panel-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  opacity: 0.85;
}
@media (min-width: 1024px) {
  .contact-v7__panel-img { aspect-ratio: auto; max-height: 200px; }
}
.contact-v7__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-v7__panel-body { padding: 1.75rem; }
@media (min-width: 1024px) {
  .contact-v7__panel-body { padding: 2rem; }
}
.contact-v7__panel-title {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.contact-v7__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-v7__topics li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 1rem;
  border-left: 2px solid rgba(245, 158, 11, 0.6);
  line-height: 1.45;
}
.contact-v7__panel-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-v7__panel-social-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.contact-v7__form-wrap { background: #fff; }
@media (min-width: 1024px) {
  .contact-v7__form-wrap { padding: 0; }
}
.contact-v7__form-card {
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-v7__form-card { padding: 2.5rem 3rem; }
}
.contact-v7__form-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-v7__form-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}
.contact-v7__form-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-v7__form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-v7__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.35rem;
}
.contact-v7__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-v7__form-grid { grid-template-columns: 1fr 1fr; }
}
.contact-v7__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.contact-v7__error {
  color: #dc2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.contact-v7__map {
  background: var(--heading);
  color: #fff;
}
.contact-v7__map-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-v7__map-grid { grid-template-columns: 2fr 3fr; min-height: 420px; }
}
.contact-v7__map-info {
  padding: 3rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .contact-v7__map-info { padding: 3.5rem 3rem; }
}
.contact-v7__map-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.25rem;
}
.contact-v7__map-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28rem;
}
.contact-v7__map-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.contact-v7__map-info .contact-v7__method-link { color: var(--gold); }
.contact-v7__map-embed {
  min-height: 320px;
  background: #0f172a;
}
.contact-v7__map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
@media (min-width: 1024px) {
  .contact-v7__map-embed,
  .contact-v7__map-embed iframe { min-height: 100%; }
}

/* ── Contact page v6 (legacy) ── */
.contact-channels {
  padding: 0 0 2.5rem;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}
.contact-channels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .contact-channels__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.contact-channel-card {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
a.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.contact-channel-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-channel-card__icon svg { width: 1.25rem; height: 1.25rem; }
.contact-channel-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.contact-channel-card__value {
  font-weight: 800;
  font-size: 1rem;
  color: var(--heading);
  line-height: 1.35;
  word-break: break-word;
}
.contact-channel-card__note {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-page {
  padding: 0 0 4rem;
  background: var(--sand);
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-page__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}
.contact-page__form-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-page__form-card { padding: 2.5rem; }
}
.contact-page__form-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-50);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.contact-page__form-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}
.contact-page__form-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-page__form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-page__form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.35rem;
}
.contact-page__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-page__form-row { grid-template-columns: 1fr 1fr; }
}
.contact-page__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-page__image {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.contact-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-page__help,
.contact-page__social {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--sand-dark);
  padding: 1.5rem;
}
.contact-page__help-title {
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--heading);
  margin-bottom: 1rem;
}
.contact-page__help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-page__help-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.contact-page__help-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.contact-page__map {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid var(--sand-dark);
}
.contact-page__map-head {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.contact-page__map-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--heading);
}
.contact-page__map-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-page__map-embed {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow-card);
}

/* ── Contact split (legacy) ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-split { grid-template-columns: 2fr 3fr; min-height: 80vh; }
}
.contact-split__info {
  padding: 3rem var(--gutter);
  background: var(--primary-dark);
  color: #fff;
}
.contact-split__form {
  padding: 3rem var(--gutter);
  background: #fff;
}

/* ── News hub tabs (underline style) ── */
.news-hub-nav--tabs {
  background: #fff;
  border-bottom: 2px solid var(--sand-dark);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.news-hub-nav--tabs .news-hub-nav__inner {
  gap: 0;
  padding: 0;
}
.news-hub-nav--tabs .news-hub-nav__link {
  border-radius: 0;
  padding: 1rem 1.25rem;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  font-weight: 600;
}
.news-hub-nav--tabs .news-hub-nav__link.is-active {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--accent);
  box-shadow: none;
}
.news-hub-nav--tabs .news-hub-nav__link:hover {
  background: var(--primary-50);
  color: var(--primary);
}

/* ── CTA diagonal ── */
.cta-diagonal {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0 clamp(4.5rem, 9vw, 6rem);
  background: linear-gradient(135deg, #1E1B4B 0%, var(--primary-dark) 28%, var(--primary) 62%, #6366F1 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(48px, 6vw, 72px);
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 12%, 0 100%);
  z-index: 1;
}
.cta-diagonal::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(244, 63, 94, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(245, 158, 11, 0.14), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.cta-diagonal__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-diagonal__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff !important;
}
.cta-diagonal__desc {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-inline: auto;
}
.cta-diagonal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.cta-diagonal .btn-cta {
  background: #fff;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.cta-diagonal .btn-cta:hover {
  background: var(--primary-50);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.25);
}
.cta-diagonal .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.cta-diagonal .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
}

/* ── Footer v6 ── */
.site-footer--v6 {
  background: linear-gradient(180deg, #12102B 0%, #0A0818 100%) !important;
  color: rgba(255, 255, 255, 0.78);
}
.footer-v6__top {
  position: relative;
  overflow: hidden;
}
.footer-v6__top-line {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--primary-light), var(--accent));
  background-size: 200% 100%;
  animation: gradientShift 10s ease infinite;
}
.footer-v6__ticker {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.65rem 0;
}
.footer-v6__ticker::before,
.footer-v6__ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.footer-v6__ticker::before {
  left: 0;
  background: linear-gradient(90deg, #12102B, transparent);
}
.footer-v6__ticker::after {
  right: 0;
  background: linear-gradient(270deg, #12102B, transparent);
}
.footer-v6__ticker-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-inline: var(--gutter);
}
.footer-v6__ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
}
.footer-v6__ticker-track span::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .footer-v6__ticker-track { animation: none; }
  .footer-v6__top-line { animation: none; }
}
.footer-v6__body {
  padding: 3rem 0 1.5rem;
}
@media (min-width: 768px) {
  .footer-v6__body { padding: 4rem 0 2rem; }
}
.footer-v6__cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.22), rgba(244, 63, 94, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer-v6__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    margin-bottom: 3rem;
  }
}
.footer-v6__cta-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-v6__cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.footer-v6__cta-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 32rem;
}
.footer-v6__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}
.footer-v6__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-v6__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-v6__grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 2.5rem;
  }
}
.footer-v6__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-v6__brand-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}
.footer-v6__brand-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}
.footer-v6__brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
  margin-bottom: 1.25rem;
}
.footer-v6__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) {
  .footer-v6__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer--v6 .site-footer__mega-title { display: none; }
.site-footer--v6 .site-footer__grid { display: none; }

/* ── Scholarship steps ── */
.steps-list {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand-dark);
  counter-increment: step;
}
.step-item::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.step-item__title { font-weight: 800; font-size: 1.125rem; margin-bottom: 0.35rem; }
.step-item__text { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ── Activity filter pills (top) ── */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--sand-dark);
  position: sticky;
  top: calc(var(--header-h) + 49px);
  z-index: 30;
}

/* Gallery mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-mosaic__item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-mosaic__item:nth-child(4) { grid-column: span 2; }
}
.gallery-mosaic__item {
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}
.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-mosaic__item:hover img { transform: scale(1.08); }

/* ── Responsive: tablet & mobile ── */
@media (max-width: 1279px) {
  .header-pill__link {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }
  .header-pill__nav { gap: 0.05rem; }
}

@media (max-width: 1023px) {
  .site-header--pill { padding: 0.5rem 0; }
  .header-pill { gap: 0.65rem; }

  .split-hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .split-hero__content { padding-bottom: 2rem; }
  .split-hero__visual {
    min-height: 300px;
    clip-path: none;
    margin-left: 0;
  }
  .split-hero__marquee { position: relative; }

  .type-header {
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 2.25rem;
  }
  .type-header__title { max-width: none; }

  .numbered-row {
    padding: 2.25rem var(--gutter);
    grid-template-columns: 72px 1fr;
    gap: 1.25rem;
  }
  .numbered-row__num { font-size: 2.5rem; }

  .zigzag-band { min-height: auto; }
  .zigzag-band__body { padding: 2rem var(--gutter); }
  .zigzag-band__media { min-height: 240px; }

  .impact-rail { padding: 3rem 0; }
  .impact-rail__grid { gap: 1.5rem; }

  .hscroll-card { flex-basis: min(78vw, 300px); }

  .feature-block { margin-bottom: 2rem; }
  .feature-block__body { padding: 1.75rem; }

  .news-timeline__item:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .donate-split__story,
  .donate-split__form-panel {
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
  }
  .donate-split__form-panel {
    position: static;
    height: auto;
    overflow: visible;
    border-left: none;
    border-top: 1px solid var(--sand-dark);
  }

  .contact-split__info,
  .contact-split__form { padding: 2.5rem var(--gutter); }

  .filter-pills {
    top: calc(var(--header-h) + 46px);
    padding: 1rem var(--gutter);
  }

  .news-hub-nav--tabs .news-hub-nav__link {
    padding: 0.85rem 0.9rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 767px) {
  .quote-band { padding: 2.75rem 0; }
  .quote-band__text { font-size: 1.25rem; }

  .split-hero__title { font-size: 2.15rem; }
  .split-hero__index { font-size: 3.5rem; margin-bottom: -0.5rem; }

  .hscroll-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-timeline__thumb {
    width: 100%;
    max-width: none;
    aspect-ratio: 16/10;
  }
  .news-timeline__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-diagonal {
    padding: 3.5rem 0 4rem;
  }
  .cta-diagonal::before { height: 40px; }
  .cta-diagonal__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
  .cta-diagonal__actions .btn { width: 100%; }

  .site-footer--v6 .footer-v6__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-v6__cta-actions {
    flex-direction: column;
  }
  .footer-v6__cta-actions .btn { width: 100%; }

  .gallery-mosaic {
    grid-auto-rows: 140px;
  }

  .step-item {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .step-item::before { font-size: 1.5rem; }
}

@media (max-width: 639px) {
  .header-pill {
    border-radius: 1.25rem;
    padding: 0.35rem 0.35rem 0.35rem 0.5rem;
  }
  .header-pill__nav { display: none; }

  .type-header__title { font-size: 2rem; }
  .type-header__desc { font-size: 1rem; }
  .type-header__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .type-header__actions .btn { width: 100%; }

  .numbered-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .numbered-row__num { font-size: 2.25rem; }

  .impact-rail__value { font-size: 2rem; }

  .news-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .news-toolbar__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .news-filter-chip { flex-shrink: 0; }

  .feature-block__title { font-size: 1.35rem; }

  .contact-v7__hero-actions { flex-direction: column; }
  .contact-v7__hero-actions .btn { width: 100%; }
  .contact-v7__method { grid-template-columns: 1fr; }
  .contact-v7__form-actions { flex-direction: column; }
  .contact-v7__form-actions .btn { width: 100%; }
  .contact-v7__panel-body .btn { width: 100%; }
}

/* ── 1024px–1439px laptop tuning ── */
@media (min-width: 1024px) and (max-width: 1439px) {
  .split-hero__content { padding: 2.5rem 2rem 3rem var(--gutter); }
  .split-hero__title { font-size: 3rem; }

  .type-header__title { font-size: 3rem; }

  .zigzag-band__body { padding: 2.5rem 2rem; }

  .cta-diagonal__inner { max-width: 44rem; }
}

/* ── 1440px desktop polish ── */
@media (min-width: 1440px) {
  :root { --gutter: 2.5rem; }

  .split-hero__content { padding: 3rem 3.5rem 4rem; }
  .split-hero__title { font-size: 3.5rem; }
  .split-hero__visual { min-height: 100%; }

  .type-header { padding-bottom: 3.5rem; }
  .type-header__title { font-size: 3.75rem; max-width: 18ch; }
  .type-header__desc { font-size: 1.25rem; max-width: 42rem; }

  .numbered-row { padding: 4rem var(--gutter); }
  .zigzag-band { min-height: 520px; }
  .zigzag-band__body { padding: 3.5rem 3rem; }

  .impact-rail { padding: 5rem 0; }
  .impact-rail__value { font-size: 3rem; }

  .hscroll-section__head,
  .hscroll-rail { padding-inline: calc((100vw - var(--maxw)) / 2 + var(--gutter)); }

  .news-timeline__item {
    grid-template-columns: 160px 220px 1fr;
    gap: 2.5rem;
  }

  .cta-diagonal { padding: 6rem 0 6.5rem; }
  .cta-diagonal__inner { max-width: 48rem; }
  .cta-diagonal__title { font-size: 3rem; }
  .cta-diagonal__desc { font-size: 1.2rem; }

  .donate-split__story,
  .donate-split__form-panel { padding-inline: 3rem; }

  .contact-v7__form-card { padding: 2rem var(--gutter); }
  .contact-v7__main { padding: 3rem 0; }

  .site-footer--v6 .footer-v6__cta-title { font-size: 1.5rem; }
}
