:root {
  --ink: #404040;
  --heading: #202020;
  --muted: #a4a4a4;
  --paper: #fff;
  --header: #2a2a2a;
  --dark: #303030;
  --cream: #e9e3dd;
  --quote: #f4f1ee;
  --accent: #ff9646;
  --font: "Poppins", sans-serif;
  --display: "Yanone Kaffeesatz", sans-serif;
  --nav: "Oswald", sans-serif;
  --max: 1100px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--dark);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

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

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 10vh;
  padding: 0.85rem 3.8%;
  background: var(--header);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: clamp(28px, 4vh, 36px);
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
  /* Native logo is ~2560×293 — keep that ratio, never force both axes */
  aspect-ratio: 2560 / 293;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0.85rem;
}

.site-nav a {
  font-family: var(--nav);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span:not(.sr-only) {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: #fff;
}

.nav-toggle::before { top: 0.7rem; }
.nav-toggle::after { bottom: 0.7rem; }
.nav-toggle span:not(.sr-only) { top: 50%; transform: translateY(-50%); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  box-shadow: 0 0 42px -8px rgba(238,191,155,.47);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  background: #fff !important;
  color: #242424 !important;
  border-color: #000;
}

.btn--ghost {
  background: transparent;
  color: var(--heading) !important;
  border-color: var(--heading);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--heading) !important;
  color: #fff !important;
}

.btn--donate-header {
  flex: 0 0 auto;
  padding: 0.7rem 1.15rem;
  font-size: 14px;
}

.btn--donate-header,
.hero .btn:not(.btn--ghost-light) {
  animation: donate-pulse 2.4s ease-in-out infinite;
  box-shadow:
    0 0 0 0 rgba(255, 150, 70, 0.55),
    0 0 28px 4px rgba(255, 150, 70, 0.45);
}

.btn--donate-header:hover,
.hero .btn:not(.btn--ghost-light):hover {
  animation: none;
  background: #fff !important;
  color: var(--accent) !important;
  border-color: transparent;
  box-shadow:
    0 0 0 0 rgba(255, 255, 255, 0.65),
    0 0 36px 10px rgba(255, 255, 255, 0.55);
}

@keyframes donate-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 150, 70, 0.55),
      0 0 22px 2px rgba(255, 150, 70, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(255, 150, 70, 0),
      0 0 36px 10px rgba(255, 150, 70, 0.55);
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--donate-header,
  .hero .btn:not(.btn--ghost-light) {
    animation: none;
  }
}

.btn--ghost-light {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  animation: none;
}

.btn--ghost-light:hover {
  background: #fff !important;
  color: #242424 !important;
  border-color: #fff;
  box-shadow: none;
  animation: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  /* Scale past edges so YouTube chrome / control bleed is cropped */
  transform: translate(-50%, -50%) scale(1.12);
  border: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.35) 0%,
    rgba(18, 18, 18, 0.22) 28%,
    rgba(48, 48, 48, 0.55) 58%,
    rgba(48, 48, 48, 0.88) 78%,
    #303030 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.25rem, 4vw, 3.8%) 3rem;
  max-width: min(1100px, 100%);
  width: auto;
  margin: 0;
  text-align: left;
  align-self: flex-start;
}

.hero h1 {
  font-size: clamp(4.2rem, 14vw, 10.5rem);
  letter-spacing: 0.01em;
  line-height: 0.82;
  margin: 0;
  text-align: left;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.hero__line {
  display: block;
  animation: rise 0.9s ease both;
}

.hero__line:nth-child(1) { animation-delay: 0.05s; }
.hero__line:nth-child(2) { animation-delay: 0.18s; }
.hero__line:nth-child(3) { animation-delay: 0.3s; }

.hero p {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  text-align: left;
  animation: rise 0.9s ease 0.42s both;
}

.hero__actions {
  margin-top: 1.5rem;
  animation: rise 0.9s ease 0.55s both;
}

.hero .btn {
  align-self: flex-start;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee strips */
.strip {
  background: var(--dark);
  padding: 1.25rem 0 1.75rem;
  overflow: hidden;
}

.strip__track,
.partners__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.strip figure {
  margin: 0;
  flex: 0 0 auto;
  width: min(420px, 72vw);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.strip figure:hover img {
  transform: scale(1.05);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .strip__track,
  .partners__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .hero__line,
  .hero p,
  .hero__actions { animation: none; }
}

/* Bands */
.band {
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

.band--dark { background: var(--dark); color: #fff; }
.band--light { background: #fff; color: var(--heading); }
.band--cream {
  background:
    radial-gradient(ellipse 70% 55% at 85% 30%, rgba(255, 150, 70, 0.12), transparent 60%),
    var(--cream);
  color: var(--heading);
}

.band h2,
.page-hero h1,
.contact h2,
.partners h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.kicker {
  margin: 0 0 0.65rem;
  font-family: var(--nav);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker--on-dark {
  color: var(--accent);
}

.home-break__lead {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split--flip { grid-template-columns: 1fr 1.1fr; }

.copy-right { text-align: right; }
.copy-right .btn { margin-left: auto; }
.copy-right .kicker { text-align: right; }

.band--dark .copy-right h2,
.band--dark .copy-right p {
  color: var(--cream);
}

.band--dark .copy-right .accent-inline {
  color: var(--accent);
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  margin: 0;
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.55s ease;
}

.photo:hover img {
  transform: scale(1.04);
}

.quote {
  position: relative;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(255, 150, 70, 0.1), transparent 70%),
    var(--dark);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
  text-align: center;
  overflow: hidden;
}

.quote blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 820px;
}

.quote__mark {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 7rem);
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.quote p {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.quote cite {
  display: block;
  margin-top: 1.15rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

/* MVA — match walkingwithswager.com overlay + cards */
.mva {
  position: relative;
  padding: 0 1.25rem 3rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, #303030 13%, rgba(255, 255, 255, 0.6) 44%),
    var(--mva-bg) center / cover no-repeat;
}

.mva__grid {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.25rem;
  justify-items: stretch;
  align-items: start;
}

.mva h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.mva .card p {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.card {
  border-radius: 25px;
  padding: 1.75rem 20px;
  text-align: center;
}

.mva .card {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .mva .card {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

.card--orange {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 7px 0 var(--accent);
  text-align: left;
}

.mva .card--orange,
.mva .card--orange h2,
.mva .card--orange p {
  text-align: left;
}

.card--white {
  background: var(--cream);
  color: #333;
  grid-column: 1 / -1;
  padding: 2.75rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 0;
  text-align: left;
}

.card--white h2 {
  color: #202020;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.card--white p {
  max-width: 46rem;
  margin-left: 0;
  margin-right: auto;
  color: #404040;
  text-align: left;
}

.card--white p strong {
  font-weight: 700;
  color: #202020;
}

.card--white .btn--join {
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 7px;
  box-shadow: none;
  background: #202020 !important;
  color: #fff !important;
  border-color: #202020;
}

.card--white .btn--join .btn__icon {
  color: var(--accent);
}

.card--white .btn--join:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent);
}

.card--white .btn--join:hover .btn__icon {
  color: #fff;
}

.card--white .btn--text {
  background: transparent;
  color: #292929 !important;
  border: none;
  box-shadow: none;
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  gap: 0.4rem;
}

.card--white .btn--text:hover {
  background: transparent !important;
  color: var(--accent) !important;
  border: none;
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn__arrow {
  font-size: 1.15em;
  line-height: 1;
}

.mva .cta-row {
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 1.75rem;
}

/* News */
.news {
  background:
    radial-gradient(ellipse 60% 45% at 12% 0%, rgba(255, 150, 70, 0.08), transparent 55%),
    #fff;
}

.news__header {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.news__header h2 {
  margin: 0;
}

.news__all-top {
  flex: 0 0 auto;
  display: none;
}

@media (min-width: 901px) {
  .news__all-top { display: inline-flex; }
  .news .more { display: none; }
}

.news h2 {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  text-align: left;
}

.news-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 0 0 1.15rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.news-card:hover h3 {
  color: var(--accent);
}

.news-card__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  margin: 0 0 0.85rem;
}

.news-card h3,
.news-card p {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card__media img {
    transition: none;
  }
  .news-card:hover {
    transform: none;
  }
  .news-card:hover .news-card__media img {
    transform: none;
  }
}

.badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
}

.news-card h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  text-transform: none;
  margin: 0 0 0.35rem;
  transition: color 0.28s ease;
}

.news-card p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.more { text-align: center; margin: 1.75rem 0 0; }

/* Partners */
.partners {
  padding: clamp(3rem, 7vw, 4.5rem) 1.25rem clamp(4rem, 9vw, 6rem);
  color: var(--heading);
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.partners__intro {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  text-align: left;
}

.partners h2 {
  max-width: none;
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
}

.partners__track { animation-duration: 35s; }

.partners figure {
  margin: 0;
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partners img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Contact / footer */
.contact {
  background: var(--dark);
  border-radius: 50px 50px 0 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -18px 40px rgba(0,0,0,.25);
  padding: clamp(3rem, 7vw, 4.5rem) 1.25rem 2rem;
  color: #fff;
}

.contact__layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact__info .kicker {
  color: var(--accent);
}

.contact__info p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.35rem 0 0;
  max-width: 22rem;
}

.contact__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-size: 0.98rem;
}

.contact__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  color: var(--accent);
}

.contact__list a {
  color: #fff;
  text-decoration: none;
}

.contact__list a:hover { color: var(--accent); }

.contact__form {
  display: grid;
  gap: 0.85rem;
}

.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: none;
  background: #fff;
  color: #333;
  border-radius: 7px;
  padding: 0.75rem 1rem;
  font: inherit;
  box-shadow: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #9a9a9a;
}

.contact__form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact__form .btn--submit {
  justify-self: start;
  margin-top: 0.35rem;
  border-radius: 999px;
  padding: 0.95rem 3.5rem;
  box-shadow: none;
  animation: none;
}

.contact__form .btn--submit:hover {
  animation: none;
  box-shadow: none;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.25rem 1.5rem;
}

.site-footer__inner {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: block;
  flex: 0 0 auto;
}

.footer-brand img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  aspect-ratio: 2560 / 293;
}

.footer-copy {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.wws-admin-entry {
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.wws-admin-entry:hover,
.wws-admin-entry:focus-visible {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}

.wws-editor-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1a1a;
  font-family: var(--nav);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.wws-editor-fab:hover {
  filter: brightness(1.05);
}

.badge--featured {
  background: var(--accent);
  color: #1a1a1a;
}

.news-card__placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #ff9646, #303030);
}

/* Inner pages */
.page-hero {
  background: linear-gradient(160deg, #2a2a2a 0%, #3a3129 50%, #303030 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
}

.page-hero--photo {
  min-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(20,20,20,.15), rgba(20,20,20,.78)),
    var(--hero-image) center / cover no-repeat;
}

/* About Us */
.about-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--nav);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.accent-inline {
  color: var(--accent);
  font-weight: 600;
}

.about-purpose {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(90vh, 980px);
  color: #fff;
  background: var(--about-bg) center / cover no-repeat;
  padding: clamp(3.5rem, 6vw, 4rem) clamp(1.25rem, 6vw, 5rem) clamp(4.5rem, 9vw, 6.5rem);
}

.about-purpose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 18, 18, 0.82) 0%, rgba(18, 18, 18, 0.55) 48%, rgba(18, 18, 18, 0.72) 100%);
  pointer-events: none;
}

.about-purpose__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-areas:
    "video title"
    "video copy";
  row-gap: 0.45rem;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.about-purpose__video {
  grid-area: video;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
  align-self: center;
}

.about-purpose h1 {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  align-self: end;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.about-purpose__copy {
  grid-area: copy;
  display: grid;
  gap: 0.9rem;
  padding: 1.55rem 1.45rem;
  border-radius: 18px;
  background: rgba(32, 32, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
  align-self: start;
  backdrop-filter: blur(6px);
}

.about-purpose__copy p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.about-purpose__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.about-purpose__wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 90px);
  transform: scaleY(-1);
}

.about-history,
.about-achievements {
  min-height: 420px;
}

.about-history {
  background: #fff;
}

.about-history__wrap {
  max-width: 46rem;
  margin: 0 auto;
}

.about-history h2 {
  margin: 0 0 1.75rem;
  color: #404040;
}

.about-history__copy {
  display: grid;
  gap: 0;
  position: relative;
}

.about-history__copy::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 150, 70, 0.15));
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0 1.15rem 1.75rem;
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
}

.history-item:last-child {
  border-bottom: 0;
}

.history-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 150, 70, 0.18);
}

.history-item strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.history-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #404040;
}

.about-achievements {
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 18% 40%, rgba(255, 150, 70, 0.12), transparent 60%),
    #f3eee8;
}

.about-achievements__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-achievements__collage {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 1.35rem;
  align-items: end;
}

.ach-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  will-change: transform;
}

.ach-col--a { padding-top: 5rem; }
.ach-col--b { padding-bottom: 2.5rem; }

.ach-shot {
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
  background: #ddd;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease var(--delay, 0ms),
    transform 0.75s ease var(--delay, 0ms);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.ach-shot.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ach-shot:hover img {
  transform: scale(1.04);
}

.ach-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ach-shot--a {
  width: 72%;
  margin-left: auto;
  aspect-ratio: 5 / 4;
}

.ach-shot--b { aspect-ratio: 1 / 0.92; }
.ach-shot--c { aspect-ratio: 5 / 4.3; }

.ach-shot--d {
  width: 48%;
  aspect-ratio: 16 / 10;
}

.about-achievements__card {
  margin: 0;
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1.4rem, 3vw, 2.1rem);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.about-achievements h2 {
  margin: 0 0 1.25rem;
  color: #404040;
  text-align: left;
}

.about-achievements__copy {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-achievements__copy li {
  position: relative;
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #404040;
}

.about-achievements__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
}

.about-volunteer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(88vh, 820px);
  padding: clamp(5rem, 12vw, 8rem) 1.25rem;
  text-align: center;
  color: #fff;
  background: var(--vol-bg) center / cover no-repeat;
  overflow: hidden;
}

.about-volunteer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.55), rgba(16, 16, 16, 0.78));
  pointer-events: none;
}

.about-volunteer__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.about-volunteer h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 4rem);
  line-height: 0.95;
}

.about-volunteer .kicker,
.about-volunteer .about-kicker {
  color: var(--accent);
}

.about-volunteer h2 + p {
  margin: 0 auto 1.85rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.about-volunteer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.about-volunteer__actions .btn:first-child {
  box-shadow:
    0 0 0 0 rgba(255, 150, 70, 0.45),
    0 0 28px 4px rgba(255, 150, 70, 0.35);
}

.btn--on-light {
  background: #fff !important;
  color: #292929 !important;
  border-color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.btn--on-light:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent);
}

.about-volunteer__wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.about-volunteer__wave svg {
  display: block;
  width: calc(150% + 1.3px);
  max-width: none;
  height: clamp(56px, 8vw, 77px);
  margin-left: -25%;
}

.about-volunteer__wave--top {
  top: -1px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .ach-shot {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.brand-mark {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent);
}

.prose-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.prose p { font-size: 1.05rem; max-width: 46rem; }

.collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.collage img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(32,32,32,.1);
}

.timeline strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
}

.checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checks li {
  position: relative;
  padding-left: 1.5rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--accent);
}

.programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.programs article {
  padding: 1.25rem 0;
  border-top: 2px solid var(--accent);
}

.programs h3 {
  font-family: var(--display);
  font-size: 1.8rem;
}

.ramp-cta { text-align: center; padding: 1rem 0 0; }

/* News & Events page */
.events-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(52vh, 520px);
  padding: clamp(4rem, 10vw, 7rem) 1.25rem clamp(5rem, 11vw, 7.5rem);
  text-align: center;
  color: #fff;
  background: var(--events-bg) center 28% / cover no-repeat;
  overflow: hidden;
}

.events-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.42) 0%, rgba(16, 16, 16, 0.58) 45%, rgba(16, 16, 16, 0.8) 100%);
  pointer-events: none;
}

.events-hero__inner {
  position: relative;
  z-index: 1;
}

.events-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.events-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.events-hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 90px);
  transform: scaleY(-1);
}

.events-feed {
  background: #fff;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.events-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.75rem;
}

.events-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events-card .news-card__media {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.events-card h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.55rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.events-card p {
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #666;
}

.events-card__more {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0 1rem 1.15rem;
  font-family: var(--nav);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.events-card:hover .events-card__more {
  color: var(--heading);
}

/* Single news post (match live wws post layout) */
body.is-post {
  background: #fff;
}

.post-top {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 10vh;
  padding: 0.85rem 3.8%;
  background: var(--header);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.post-top__actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
}

.post-top__back {
  font-family: var(--nav);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.post-top__back:hover {
  color: var(--accent);
}

.post-band {
  --post-hero-max: min(680px, 86vw);
  --post-hero-h: calc(var(--post-hero-max) * 10 / 16);
  color: #fff;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem 0;
  overflow: visible;
  /* Paint dark only through the vertical midpoint of the hero */
  background-color: transparent;
  background-image: linear-gradient(var(--header), var(--header));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% calc(100% - (var(--post-hero-h) * 0.5));
}

.post-meta {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
}

.post-meta .badge {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.post-title {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 0.95;
}

.post-date {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.post-hero {
  position: relative;
  z-index: 2;
  max-width: var(--post-hero-max, min(680px, 86vw));
  margin: 0 auto;
}

.post-hero__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px;
  background: #1a1a1a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

video.post-hero__media {
  background: #000;
}

.post-hero__controls {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(6px);
}

.post-hero__nav,
.post-hero__open {
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--nav);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.post-hero__nav:hover,
.post-hero__open:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.post-hero__count {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-page {
  overflow: visible;
  background: #fff;
}

.post-shell {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 2.5rem;
}

.post-body {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

.post-body p {
  margin: 0 0 1.1rem;
}

.post-body__link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.post-body__link:hover {
  color: var(--heading);
}

.post-tags {
  margin: 1.5rem 0 0;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.post-related {
  padding: 1rem 1.25rem clamp(3rem, 7vw, 4.5rem);
  background: #fff;
}

.post-related__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.post-related h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--heading);
}

.post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-related__card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-related__media {
  position: relative;
  margin: 0 0 0.85rem;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
}

.post-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-related__card:hover .post-related__media img {
  transform: scale(1.04);
}

.post-related__card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.post-related__card:hover h3 {
  color: var(--accent);
}

.post-related__card p {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

.post-site-footer {
  background: var(--dark);
  color: #fff;
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}

.post-site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.35rem;
  margin-bottom: 1rem;
}

.post-site-footer__nav a {
  font-family: var(--nav);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}

.post-site-footer__nav a:hover {
  color: var(--accent);
}

.post-site-footer .footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* What We Do */
.wwd-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(88vh, 920px);
  color: #fff;
  background: var(--wwd-bg) center / cover no-repeat;
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(4.5rem, 9vw, 6.5rem);
}

.wwd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(16, 16, 16, 0.78) 0%, rgba(16, 16, 16, 0.5) 48%, rgba(16, 16, 16, 0.72) 100%);
  pointer-events: none;
}

.wwd-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.wwd-hero__photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
  aspect-ratio: 3 / 4;
  max-height: min(640px, 70vh);
}

.wwd-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.wwd-hero__copy h1 {
  margin: 0 0 1.15rem;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.9;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.wwd-hero__body {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem 1.25rem;
  max-width: 36rem;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.wwd-hero__body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
}

.wwd-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.wwd-hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 90px);
  transform: scaleY(-1);
}

.wwd-paths {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.wwd-paths__intro {
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.wwd-paths__intro h2 {
  margin: 0 0 0.75rem;
  color: #404040;
  max-width: 28rem;
}

.wwd-paths__intro > p:last-child {
  margin: 0;
  max-width: 40rem;
  color: #666;
  font-size: 1.02rem;
  line-height: 1.65;
}

.wwd-tabs {
  max-width: 1180px;
  margin: 0 auto;
}

.wwd-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.wwd-tabs__tab {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(32, 32, 32, 0.12);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  background: #f3eee8;
  color: #303030;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wwd-tabs__tab:hover {
  border-color: var(--accent);
  color: #202020;
}

.wwd-tabs__tab.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.wwd-tabs__panel {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.wwd-tabs__panel.is-active {
  display: grid;
}

.wwd-tabs__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ddd;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.wwd-tabs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.wwd-tabs__panel.is-active .wwd-tabs__media img {
  animation: wwd-media-in 0.55s ease both;
}

@keyframes wwd-media-in {
  from { transform: scale(1.04); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

.wwd-tabs__copy h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #202020;
  line-height: 0.95;
}

.wwd-tabs__copy > p {
  margin: 0 0 1rem;
  color: #404040;
  line-height: 1.65;
}

.wwd-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.wwd-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #404040;
  line-height: 1.5;
}

.wwd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.wwd-tabs__note {
  margin: 0 0 1.35rem !important;
  font-size: 0.98rem;
  color: #555 !important;
}

.wwd-ramp {
  position: relative;
  min-height: min(70vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
  text-align: center;
  color: #fff;
  background: var(--ramp-bg) center / cover no-repeat;
  overflow: hidden;
}

.wwd-ramp::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.55), rgba(16, 16, 16, 0.78));
  pointer-events: none;
}

.wwd-ramp__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.wwd-ramp h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.95;
}

.wwd-ramp blockquote {
  margin: 0 0 1.75rem;
}

.wwd-ramp blockquote p {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.wwd-ramp cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.wwd-ramp .btn {
  box-shadow:
    0 0 0 0 rgba(255, 150, 70, 0.45),
    0 0 28px 4px rgba(255, 150, 70, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .wwd-tabs__panel.is-active .wwd-tabs__media img {
    animation: none;
  }
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery__item {
  margin: 0;
  padding: 0;
  border: 0;
  background: #1a1a1a;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: #fff;
  color: #000;
  font: inherit;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(5.6rem, 20vw, 8.5rem);
    line-height: 0.8;
  }

  .nav-toggle { display: inline-block; order: 2; margin-left: auto; }
  .brand { order: 1; }
  .btn--donate-header {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 120;
    order: unset;
    margin: 0;
    width: auto;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    font-size: 15px;
    border-radius: 999px;
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.35),
      0 0 24px 2px rgba(255, 150, 70, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    animation: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  body.is-past-hero .btn--donate-header {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    animation: donate-pulse 2.4s ease-in-out infinite;
  }

  body.is-past-hero {
    padding-bottom: 5.5rem;
  }

  /* Post pages: Go Back + Donate sit together in the bottom bar */
  body.is-post {
    padding-bottom: 5.5rem;
  }

  body.is-post .post-top__actions {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 0.65rem;
    align-items: stretch;
  }

  body.is-post .post-top__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.95rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(28, 28, 28, 0.94);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }

  body.is-post .post-top__back:hover {
    color: var(--accent);
    border-color: rgba(255, 150, 70, 0.65);
  }

  body.is-post .post-top__actions .btn--donate-header {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    animation: donate-pulse 2.4s ease-in-out infinite;
  }

  .site-nav {
    order: 4;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--header);
    padding: 0.5rem 1.25rem 1rem;
    margin: 0;
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

  .split,
  .split--flip {
    grid-template-columns: 1fr;
  }

  .mva {
    padding-bottom: 2rem;
  }

  .band--cream .split .video,
  .split--flip .photo {
    order: -1;
  }

  .about-achievements__layout {
    grid-template-columns: 1fr;
  }

  .about-achievements__collage {
    display: none;
  }

  .mva__grid,
  .contact__layout,
  .programs { grid-template-columns: 1fr; }

  .wwd-hero {
    min-height: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .wwd-hero__layout,
  .wwd-tabs__panel.is-active {
    grid-template-columns: 1fr;
  }

  .wwd-hero__photo {
    aspect-ratio: 16 / 10;
    max-height: none;
    order: -1;
  }

  .wwd-tabs__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .events-hero {
    min-height: min(42vh, 420px);
  }

  .post-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .post-hero {
    margin-bottom: 0;
  }

  .post-shell {
    padding-top: 1.75rem;
  }

  .copy-right { text-align: left; }
  .copy-right .btn { margin-left: 0; }
  .copy-right .kicker { text-align: left; }

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

  .collage,
  .gallery { grid-template-columns: 1fr 1fr; }

  .contact { border-radius: 28px 28px 0 0; margin-top: -28px; }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-purpose {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    min-height: 0;
  }

  .about-purpose__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "video"
      "copy";
    gap: 1.25rem;
  }

  .about-purpose h1 {
    align-self: start;
    margin: 0;
  }

  .about-purpose__copy p {
    max-width: none;
  }

  .history-item {
    grid-template-columns: 4.25rem 1fr;
    gap: 0.75rem;
    padding-left: 1.5rem;
  }

  .history-item strong {
    font-size: 1.45rem;
  }

  .about-achievements__card {
    text-align: left;
  }

  .strip figure { width: min(280px, 70vw); }
  .strip img { height: 170px; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .post-related__grid { grid-template-columns: 1fr; }
  .post-top__back { font-size: 12px; }
}
