:root {
  --purple: #6460ac;
  --purple-dark: #293c98;
  --mauve: #b96aab;
  --orange: #f7b334;
  --orange-dark: #d98c00;
  --ink: #16151d;
  --paper: #fff8ef;
  --white: #ffffff;
  --shadow-blue: 13px 13px 0 #293c98;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: 96px;
  padding: 12px clamp(48px, 7vw, 118px);
  background: var(--purple);
  color: var(--white);
}

.brand {
  display: flex;
  width: clamp(190px, 15vw, 260px);
  height: 68px;
  align-items: center;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2.7vw, 46px);
  font-size: clamp(15px, 0.95vw, 19px);
  font-weight: 700;
}

.main-nav a,
.nav-item > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.main-nav svg,
.menu-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.has-menu {
  position: relative;
}

.has-menu > button svg {
  color: var(--orange);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(720px, 88vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(21, 17, 50, 0.28);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: 160ms ease;
}

.mega-menu.compact {
  width: min(520px, 88vw);
}

.has-menu.open .mega-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mega-menu a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: start;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.mega-menu strong {
  color: var(--purple-dark);
  font-size: 17px;
}

.mega-menu span {
  color: #4f4c5b;
  font-size: 14px;
  line-height: 1.45;
}

.main-nav .donate-button {
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 24px;
  background: var(--orange);
  box-shadow: inset 0 -3px 0 rgba(162, 91, 0, 0.25);
  font-size: clamp(17px, 1.05vw, 21px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.hero {
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
}

.hero h1 {
  margin: 0;
  padding: clamp(20px, 2.8vw, 34px) clamp(24px, 6vw, 92px) clamp(18px, 2vw, 28px);
  text-align: center;
  font-size: clamp(42px, 4.8vw, 84px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 strong {
  font-weight: 900;
}

.hero-stage {
  position: relative;
  height: clamp(500px, 34vw, 640px);
  overflow: hidden;
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 400%;
  height: 100%;
  animation: heroScroll 24s ease-in-out infinite;
}

.hero-photo {
  display: block;
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-friday {
  object-position: center 58%;
}

.hero-photo-girls {
  object-position: center 48%;
}

.hero-photo-football {
  object-position: center 52%;
}

@keyframes heroScroll {
  0%,
  21% {
    transform: translateX(0);
  }

  31%,
  52% {
    transform: translateX(-25%);
  }

  62%,
  83% {
    transform: translateX(-50%);
  }

  93%,
  100% {
    transform: translateX(-75%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track {
    animation: none;
  }
}

.help-orbit {
  position: absolute;
  right: clamp(28px, 5vw, 120px);
  bottom: clamp(18px, 2vw, 44px);
  width: clamp(500px, 34vw, 660px);
  height: clamp(500px, 34vw, 660px);
  border-radius: 50%;
  background: rgba(41, 60, 152, 0.44);
  padding: clamp(70px, 5.8vw, 108px);
}

.help-panel {
  display: grid;
  max-width: 470px;
  gap: 14px;
  color: var(--orange);
}

.help-panel h2 {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.05;
}

.help-panel p {
  margin: 0;
  color: var(--orange);
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 800;
  line-height: 1.45;
}

.help-panel label {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(20px, 1.35vw, 28px);
  font-weight: 900;
}

.help-panel select,
.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 4px solid var(--orange);
  border-radius: 9px;
  background: transparent;
  color: var(--white);
  outline: 0;
}

.help-panel select {
  max-width: 440px;
  min-height: 58px;
  padding: 0 14px;
}

.help-panel option,
.contact-form option {
  color: var(--ink);
}

.select-response {
  min-height: 22px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(74px, 7vw, 118px) clamp(48px, 7vw, 118px);
  background: var(--mauve);
  color: #fff;
}

.stats-band h2 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
}

.stat-card {
  display: grid;
  gap: 12px;
  align-content: center;
  text-align: center;
}

.stat-card span {
  color: #fff;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.95;
}

.stat-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  padding: clamp(90px, 8vw, 140px) clamp(48px, 7vw, 118px);
  background: var(--paper);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-blue);
}

.about-image img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
  object-position: center top;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--purple-dark);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy h2,
.programmes h2,
.session-gallery h2,
.how-copy h2,
.get-involved h2,
.contact-section h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.08;
}

.about-copy p:not(.section-kicker),
.how-copy p,
.get-involved p,
.contact-section p {
  color: #303044;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.68;
}

.text-link {
  color: var(--purple-dark);
  font-size: 18px;
  font-weight: 900;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding: 0 clamp(48px, 7vw, 118px) clamp(90px, 8vw, 140px);
  background: var(--paper);
}

.feature-cards article,
.method-grid article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 10px;
  background: var(--orange);
  box-shadow: var(--shadow-blue);
}

.feature-cards h3,
.method-grid h3 {
  margin: 0 0 18px;
  color: var(--purple-dark);
  font-size: clamp(28px, 4vw, 38px);
}

.feature-cards p,
.method-grid p {
  margin: 0;
  color: #242331;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.58;
}

.programmes {
  padding: clamp(90px, 8vw, 140px) clamp(48px, 7vw, 118px);
  background: var(--purple);
  color: #fff;
}

.programmes .section-kicker,
.programmes h2 {
  color: #fff;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.programme-grid article {
  min-height: 420px;
}

.programme-card-link {
  display: grid;
  min-height: 420px;
  height: 100%;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(41, 60, 152, 0.12), rgba(41, 60, 152, 0.88)), var(--mauve);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.programme-card-link:hover,
.programme-card-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 12px 16px 0 var(--blue);
}

.programme-card-link:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.programme-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--orange);
  color: var(--purple-dark);
}

.programme-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.6;
}

.programme-grid h3 {
  margin: 44px 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.programme-grid p {
  color: #fff;
  font-weight: 600;
  line-height: 1.55;
}

.programme-card-cta {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.session-gallery {
  padding: clamp(90px, 8vw, 140px) clamp(48px, 7vw, 118px);
  background: var(--paper);
}

.gallery-heading {
  display: grid;
  max-width: 960px;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.gallery-heading p:not(.section-kicker) {
  max-width: 850px;
  margin: 0;
  color: #303044;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 8px;
  background: var(--purple-dark);
  box-shadow: var(--shadow-blue);
}

.gallery-card-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.gallery-card-link:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: -4px;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.gallery-card:nth-child(1) img,
.gallery-card:nth-child(4) img {
  object-position: 70% center;
}

.gallery-card:nth-child(2) img,
.gallery-card:nth-child(5) img {
  object-position: 34% center;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(19, 24, 90, 0.05) 0%, rgba(19, 24, 90, 0.78) 64%, rgba(19, 24, 90, 0.94) 100%),
    linear-gradient(90deg, rgba(38, 54, 150, 0.24), rgba(185, 98, 171, 0.18));
}

.gallery-card:hover img,
.gallery-card-link:focus-visible img {
  transform: scale(1.04);
}

.gallery-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 28px;
  color: #fff;
}

.gallery-card-copy span {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.gallery-card-copy h3 {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.08;
}

.gallery-card-copy p {
  margin: 0;
  max-width: 34ch;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.gallery-card-cta {
  width: fit-content;
  max-width: 100%;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.gallery-hero {
  display: grid;
  gap: 18px;
  padding: clamp(90px, 8vw, 140px) clamp(48px, 7vw, 118px);
  background: var(--purple);
  color: #fff;
}

.gallery-hero.compact {
  padding-bottom: clamp(70px, 6vw, 100px);
}

.gallery-hero .section-kicker,
.gallery-hero h1,
.gallery-hero p {
  color: #fff;
}

.gallery-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1;
}

.gallery-hero p {
  max-width: 880px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.gallery-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.gallery-actions a + a {
  background: #fff;
  color: var(--purple-dark);
}

.session-index,
.all-images {
  padding: clamp(80px, 8vw, 130px) clamp(48px, 7vw, 118px);
  background: var(--paper);
}

.all-images {
  padding-top: 0;
}

.gallery-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.gallery-section-heading h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.session-link-grid,
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.session-link-card {
  min-height: 360px;
}

.session-link-card .session-card-link {
  position: relative;
  display: grid;
  min-height: 360px;
  height: 100%;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background: var(--purple-dark);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.session-link-card .session-card-link:hover,
.session-link-card .session-card-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 12px 16px 0 var(--blue);
}

.session-link-card .session-card-link:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.session-link-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  transition: opacity 180ms ease, transform 180ms ease;
}

.session-link-card .session-card-link:hover img,
.session-link-card .session-card-link:focus-visible img {
  opacity: 0.72;
  transform: scale(1.03);
}

.session-link-card .session-card-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 24, 90, 0.08) 0%, rgba(19, 24, 90, 0.95) 100%);
  pointer-events: none;
}

.session-link-card span,
.session-link-card h3,
.session-link-card p {
  position: relative;
  z-index: 1;
}

.session-link-card span {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 900;
}

.session-link-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.session-link-card p {
  margin: 0;
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.image-card {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(41, 60, 152, 0.16);
}

.image-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.image-open:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: -4px;
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: rgba(41, 60, 152, 0.08);
}

.image-card figcaption {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: #303044;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.image-card figcaption strong {
  color: var(--purple-dark);
  font-size: 17px;
  line-height: 1.25;
}

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

.gallery-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 14px;
  padding: 13px 16px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.gallery-step svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.gallery-step.next {
  text-align: right;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(18px, 3vw, 42px);
  background: rgba(19, 24, 90, 0.94);
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  display: grid;
  min-width: 0;
  max-height: calc(100vh - 84px);
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-frame figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 0 0;
  color: #fff;
  font-weight: 800;
}

.lightbox-frame figcaption strong {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
}

.lightbox-frame figcaption span,
.lightbox-frame figcaption small {
  font-size: 14px;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--purple-dark);
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  justify-self: center;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(90px, 8vw, 140px) clamp(48px, 7vw, 118px);
  background: var(--paper);
}

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

.method-grid article {
  background: var(--mauve);
}

.method-grid h3,
.method-grid p {
  color: #fff;
}

.get-involved {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(68px, 6vw, 96px) clamp(48px, 7vw, 118px);
  background: var(--mauve);
  color: #fff;
}

.get-involved h2,
.get-involved p {
  color: #fff;
}

.involved-actions {
  display: grid;
  gap: 14px;
}

.involved-actions a,
.contact-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.contact-form button.is-sent {
  background: #18a558;
}

.contact-form button.is-sent:disabled {
  cursor: default;
  opacity: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(76px, 9vw, 126px) clamp(24px, 6vw, 92px);
  background: var(--paper);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 10px;
  background: var(--purple);
  box-shadow: var(--shadow-blue);
  color: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form button,
.form-message {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  padding: 10px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-message {
  min-height: 24px;
  margin: 0;
  color: #fff !important;
  font-weight: 900;
}

.contact-form .form-message.is-success {
  color: #fff !important;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: clamp(560px, 66vh, 760px);
  background: var(--purple);
  color: #fff;
}

.service-hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-width: 0;
  padding: clamp(84px, 8vw, 140px) clamp(48px, 7vw, 118px);
}

.service-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1;
}

.service-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 700;
  line-height: 1.5;
}

.service-hero img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 460px;
  object-fit: cover;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.service-actions a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--purple-dark);
  font-weight: 900;
  text-decoration: none;
}

.service-actions a + a {
  background: transparent;
  color: #fff;
}

.service-overview,
.service-detail-section,
.related-services,
.service-cta {
  padding: clamp(78px, 7vw, 124px) clamp(48px, 7vw, 118px);
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  background: var(--paper);
}

.service-overview h2,
.service-detail-section h2,
.related-services h2,
.service-cta h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.service-overview p:not(.section-kicker),
.service-section-heading p,
.service-cta p {
  color: #303044;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.68;
}

.service-highlight-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-highlight-list li,
.service-card li {
  position: relative;
  padding-left: 26px;
  color: #242331;
  font-weight: 700;
  line-height: 1.5;
}

.service-highlight-list li::before,
.service-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(50px, 5vw, 80px) clamp(48px, 7vw, 118px);
  background: var(--mauve);
  color: #fff;
}

.service-stats article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.service-stats strong {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
}

.service-stats span {
  font-weight: 900;
}

.service-detail-section:nth-of-type(even) {
  background: #fff;
}

.service-detail-section {
  scroll-margin-top: 118px;
}

.service-section-heading {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.service-card-grid,
.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.related-service-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(41, 60, 152, 0.14);
}

.service-detail-section:nth-of-type(even) .service-card {
  background: var(--paper);
}

.service-card-meta {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.related-service-card strong {
  display: block;
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.service-card p,
.related-service-card span {
  margin: 0;
  color: #303044;
  font-weight: 600;
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.related-services {
  background: var(--purple);
  color: #fff;
}

.related-services .section-kicker,
.related-services h2 {
  color: #fff;
}

.related-service-grid {
  margin-top: 30px;
}

.related-service-card {
  display: grid;
  gap: 12px;
  align-content: start;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-service-card:hover,
.related-service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.related-service-card:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.related-service-card svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
  stroke-width: 2.5;
}

.service-cta {
  display: grid;
  gap: 18px;
  background: var(--mauve);
  color: #fff;
}

.service-cta h2,
.service-cta p {
  max-width: 900px;
  color: #fff;
}

.donate-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(24px, 6vw, 92px);
  background: var(--purple);
  color: #fff;
}

.donate-hero .section-kicker {
  color: var(--orange);
}

.donate-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
}

.donate-hero h1 strong {
  display: block;
  font-weight: 950;
}

.donate-hero p:not(.section-kicker) {
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.donate-hero img {
  width: 100%;
  height: clamp(300px, 36vw, 430px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-blue);
}

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

.donate-hero-actions a,
.donation-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.donate-hero-actions a + a {
  background: #fff;
  color: var(--purple-dark);
}

.donation-options {
  padding: clamp(76px, 9vw, 126px) clamp(24px, 6vw, 92px);
  background: var(--paper);
}

.donation-intro {
  max-width: 830px;
  margin-bottom: 38px;
}

.donation-intro h2,
.donation-impact h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.06;
}

.donation-intro p {
  color: #303044;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.donation-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 560px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 10px;
  box-shadow: var(--shadow-blue);
}

.gofundme-card {
  background: var(--orange);
}

.bank-card {
  background: var(--mauve);
  color: #fff;
}

.donation-card h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.bank-card h3,
.bank-card p {
  color: #fff;
}

.donation-card p {
  margin: 0;
  color: #242331;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.58;
}

.donation-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-dark);
}

.donation-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.8;
}

.amount-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.amount-row span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(41, 60, 152, 0.28);
  border-radius: 8px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.35);
  font-weight: 950;
}

.bank-details {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.bank-details dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.bank-card .donation-button {
  margin-top: 8px;
  background: #fff;
  color: var(--purple-dark);
}

.copy-status {
  min-height: 24px;
  margin: 0;
  color: #fff;
  font-weight: 850;
}

.donation-impact {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 6vw, 92px);
  background: var(--purple);
  color: #fff;
}

.donation-impact h2 {
  color: #fff;
}

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

.donation-impact-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  align-content: center;
  padding: 28px;
  border-radius: 10px;
  background: var(--mauve);
  box-shadow: 10px 10px 0 var(--orange);
}

.donation-impact-grid strong {
  font-size: 24px;
}

.donation-impact-grid span {
  font-weight: 650;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(160px, 0.8fr));
  gap: 38px;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 6vw, 92px) 32px;
  background: var(--purple);
  color: #fff;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
}

.site-footer h2 {
  font-size: 46px;
}

.site-footer a {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

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

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

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

.modal-card {
  position: relative;
  width: min(860px, 100%);
  min-height: min(610px, 84vh);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0 62%, rgba(0, 0, 0, 0.05) 62%),
    url("supabase-images/hero/hero-friday-night-youth-club.jpeg") center 58% / cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #ffd200;
  cursor: pointer;
}

.modal-close svg {
  width: 56px;
  height: 56px;
  stroke-width: 4;
}

.modal-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(44px, 7vw, 68px) clamp(28px, 6vw, 64px);
  color: #fff;
}

.modal-copy > p:first-child {
  margin: 0 0 14px;
  color: #ffd200;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
}

.modal-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.modal-copy h2 span {
  color: #ffd200;
}

.modal-copy #popup-copy {
  max-width: 660px;
  margin: 24px 0 28px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.modal-actions a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 999px;
  background: #ffd200;
  color: #111;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.modal-actions a + a {
  background: #fff;
  color: var(--purple-dark);
}

.modal-actions a.whatsapp-button {
  gap: 10px;
  background: #064578;
  color: #fff;
}

.modal-actions a.whatsapp-button svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 4px;
    padding: 14px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 22px 60px rgba(21, 17, 50, 0.28);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a,
  .nav-item > button {
    justify-content: space-between;
    color: var(--ink);
  }

  .donate-button {
    color: #fff !important;
  }

  .mega-menu,
  .mega-menu.compact {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 8px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .has-menu.open .mega-menu {
    display: grid;
    transform: none;
  }

  .hero-stage {
    height: 720px;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
  }

  .help-orbit {
    right: 50%;
    bottom: 40px;
    transform: translateX(50%);
    width: min(560px, calc(100vw - 32px));
    height: min(560px, calc(100vw - 32px));
    padding: clamp(58px, 8vw, 80px);
  }

  .about-section,
  .how-section,
  .contact-section,
  .service-hero,
  .service-overview,
  .donate-hero {
    grid-template-columns: 1fr;
  }

  .programme-grid,
  .gallery-grid,
  .session-link-grid,
  .full-gallery-grid,
  .service-card-grid,
  .related-service-grid,
  .stats-band,
  .donation-grid,
  .donation-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-cards,
  .method-grid,
  .get-involved,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .support-modal {
    place-items: start center;
    overflow: auto;
    padding: 12px;
  }

  .site-header {
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand {
    width: 134px;
    height: 48px;
  }

  .main-nav {
    top: 70px;
  }

  .hero h1 {
    padding: 20px 18px 14px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-stage {
    height: 560px;
  }

  .hero-photo {
    height: 100%;
  }

  .help-orbit {
    width: min(430px, calc(100vw + 48px));
    height: min(430px, calc(100vw + 48px));
    bottom: 28px;
    padding: 52px 58px;
  }

  .help-panel h2 {
    font-size: 27px;
  }

  .help-panel {
    gap: 10px;
  }

  .help-panel p {
    font-size: 13px;
  }

  .help-panel label {
    font-size: 17px;
  }

  .help-panel select {
    min-height: 44px;
  }

  .stats-band,
  .service-stats,
  .service-card-grid,
  .related-service-grid,
  .programme-grid,
  .gallery-grid,
  .session-link-grid,
  .full-gallery-grid,
  .contact-form,
  .donation-grid,
  .donation-impact-grid {
    grid-template-columns: 1fr;
  }

  .donate-hero {
    padding-top: 36px;
  }

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

  .service-hero-copy,
  .service-overview,
  .service-detail-section,
  .related-services,
  .service-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-hero h1 {
    font-size: clamp(32px, 10.5vw, 56px);
    overflow-wrap: break-word;
  }

  .service-hero img {
    min-height: 300px;
    max-height: 420px;
  }

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

  .donate-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .donate-hero img {
    height: 280px;
  }

  .donate-hero-actions a,
  .donation-button {
    width: 100%;
  }

  .donation-card {
    min-height: auto;
  }

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

  .bank-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .stats-band h2 {
    grid-row: auto;
  }

  .programme-grid article,
  .programme-card-link {
    min-height: 310px;
  }

  .gallery-card {
    min-height: 340px;
  }

  .gallery-card-copy {
    padding: 22px;
  }

  .gallery-hero,
  .session-index,
  .all-images {
    padding-right: 20px;
    padding-left: 20px;
  }

  .gallery-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .gallery-hero p {
    font-size: 17px;
  }

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

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

  .session-link-card,
  .session-link-card .session-card-link {
    min-height: 300px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
    padding: 72px 16px 20px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 260px);
  }

  .lightbox-nav {
    width: 100%;
    border-radius: 8px;
  }

  .modal-card {
    max-height: calc(100dvh - 24px);
    min-height: 0;
    overflow: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0 72%, rgba(0, 0, 0, 0.12) 72%),
      url("supabase-images/hero/hero-friday-night-youth-club.jpeg") center 58% / cover;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
  }

  .modal-close svg {
    width: 42px;
    height: 42px;
  }

  .modal-copy {
    padding: 68px 20px 24px;
  }

  .modal-copy h2 {
    font-size: clamp(32px, 12vw, 44px);
  }

  .modal-copy #popup-copy {
    margin: 18px 0 22px;
    font-size: 16px;
  }

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