:root {
  --ink: #15202b;
  --muted: #5c6672;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #e4e0d7;
  --brand: #0c6b5a;
  --brand-strong: #084c40;
  --accent: #d64f35;
  --accent-soft: #fff0e9;
  --sky: #e7f4f5;
  --gold: #f5b944;
  --shadow: 0 20px 60px rgba(21, 32, 43, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.has-lightbox {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-strong);
}

.skip-link:focus {
  top: 12px;
}

.site-shell {
  min-height: 100vh;
}

.top-strip {
  color: #fff;
  background: var(--brand-strong);
}

.top-strip__inner,
.nav__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10.12px 0;
  font-size: 1.0625rem;
}

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

.top-strip__donate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 800;
}

.paypal-donate-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.paypal-donate-form input[type="image"] {
  display: block;
  width: auto;
  height: 34px;
  border: 0;
}

.paypal-donate-form--compact input[type="image"] {
  height: 33.6px;
}

.tagline-accent {
  color: #f0bd4f;
  font-weight: 850;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(21, 32, 43, 0.08);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(18px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  width: 50px;
  height: 32px;
}

.brand-mark img {
  display: block;
  width: auto;
  max-width: none;
  height: 32px;
}

.brand-name {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 7px;
  max-width: none;
  font-size: clamp(1.05rem, 1.55vw, 1.36rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-name__blue {
  color: #214f93;
}

.brand-name__green {
  color: #0e5a45;
}

.brand-name__gold {
  color: #a45d00;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px 11px;
  border-radius: var(--radius);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a,
.nav-menu button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 8px 7px;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-menu a:hover,
.nav-menu button:hover {
  background: var(--sky);
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  display: none;
  width: 340px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-menu > li::after {
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  display: none;
  height: 14px;
  content: "";
}

.nav-menu > li:hover > .dropdown,
.nav-menu > li:focus-within > .dropdown,
.nav-menu > li.is-dropdown-open > .dropdown {
  display: block;
}

.nav-menu > li:hover::after,
.nav-menu > li:focus-within::after,
.nav-menu > li.is-dropdown-open::after {
  display: block;
}

.dropdown li {
  position: relative;
}

.dropdown a {
  display: block;
}

.dropdown button {
  width: 100%;
  justify-content: space-between;
}

.dropdown--nested {
  top: -9px;
  right: auto;
  left: calc(100% + 12px);
  display: none;
  width: 300px;
}

.dropdown__parent::after {
  position: absolute;
  top: 0;
  right: -14px;
  display: none;
  width: 14px;
  height: 100%;
  content: "";
}

.dropdown__parent:hover > .dropdown--nested,
.dropdown__parent:focus-within > .dropdown--nested,
.dropdown__parent.is-dropdown-open > .dropdown--nested {
  display: block;
}

.dropdown__parent:hover::after,
.dropdown__parent:focus-within::after,
.dropdown__parent.is-dropdown-open::after {
  display: block;
}

.media-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.btn--primary {
  color: #fff;
  background: var(--accent);
}

.btn--secondary {
  color: var(--brand-strong);
  background: var(--sky);
}

.btn--ghost {
  color: var(--brand-strong);
  border-color: var(--line);
  background: var(--surface);
}

.hero {
  background: linear-gradient(180deg, #fffdf8 0%, #f3faf8 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 68px;
}

.hero--home .hero__inner {
  padding: 29px 0 58px;
}

.hero--home .hero__media {
  justify-self: center;
  width: 90%;
}

.hero--home .hero__media video {
  cursor: zoom-in;
}

.hero--workshop-media .hero__inner {
  grid-template-columns: minmax(0, 1.275fr) minmax(240px, 0.735fr);
}

.hero--rising-stars .hero__media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-video-zoom {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 20px 28px;
  background: rgba(5, 20, 18, 0.88);
}

.hero-video-zoom.is-open {
  display: flex;
}

.hero-video-zoom__dialog {
  overflow: hidden;
  width: var(--hero-video-zoom-width, min(760px, calc(100vw - 40px)));
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 100px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: #081b18;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.hero-video-zoom__dialog video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.hero-video-zoom__close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 20, 18, 0.78);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 720px;
  margin-top: 22px;
}

.hero-copy__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero-copy__text:last-child {
  margin-bottom: 0;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero--compact-media .hero__media {
  justify-self: center;
  width: 70%;
}

.hero--workshop-media .hero__media {
  width: 92%;
}

.hero--workshop-media .eyebrow {
  font-size: 1.56rem;
}

.hero__media-link {
  display: block;
  cursor: zoom-in;
}

.hero__media-link img {
  transition: transform 180ms ease;
}

.hero__media-link:hover img {
  transform: scale(1.015);
}

.hero__media img,
.hero__media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f4efe5;
}

.section {
  padding: 36px 0;
}

.workshop-breadcrumb {
  position: relative;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(12, 107, 90, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(21, 32, 43, 0.06);
}

.workshop-breadcrumb::before,
.workshop-breadcrumb::after {
  position: absolute;
  top: 5px;
  bottom: 5px;
  z-index: 1;
  display: none;
  width: 42px;
  content: "";
  pointer-events: none;
}

.workshop-breadcrumb::before {
  left: 5px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #fff 18%, rgba(255, 255, 255, 0));
}

.workshop-breadcrumb::after {
  right: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 82%);
}

.workshop-breadcrumb.is-overflowing::after,
.workshop-breadcrumb.can-scroll-left::before {
  display: block;
}

.workshop-breadcrumb__list {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0 31px;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.workshop-breadcrumb__list::-webkit-scrollbar {
  display: none;
}

.workshop-breadcrumb__list li {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.workshop-breadcrumb__list li + li::before {
  width: 3px;
  height: 3px;
  margin: 0 3px 0 1px;
  border-radius: 50%;
  background: #b8c5bd;
  content: "";
}

.workshop-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #3f4a55;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.workshop-breadcrumb__link[href]:hover {
  border-color: #b9d9cf;
  color: var(--brand-strong);
  background: #edf8f4;
}

.workshop-breadcrumb__link.is-active {
  border-color: rgba(12, 107, 90, 0.24);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(12, 107, 90, 0.18);
}

.workshop-breadcrumb__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(12, 107, 90, 0.18);
  border-radius: 50%;
  color: #0a5b4d;
  background: linear-gradient(180deg, #ffffff 0%, #f1faf6 100%);
  box-shadow: 0 8px 18px rgba(21, 32, 43, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.workshop-breadcrumb__arrow::before {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.workshop-breadcrumb__arrow--prev::before {
  margin-left: 3px;
  transform: rotate(-135deg);
}

.workshop-breadcrumb__arrow--next::before {
  margin-right: 3px;
  transform: rotate(45deg);
}

.workshop-breadcrumb__arrow:hover {
  border-color: rgba(12, 107, 90, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #e6f6f0 100%);
  box-shadow: 0 10px 22px rgba(21, 32, 43, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.04);
}

.workshop-breadcrumb__arrow:active {
  box-shadow: 0 5px 12px rgba(21, 32, 43, 0.13), inset 0 2px 6px rgba(12, 107, 90, 0.12);
  transform: translateY(-50%) scale(0.98);
}

.workshop-breadcrumb.is-overflowing .workshop-breadcrumb__arrow {
  display: inline-flex;
}

.workshop-breadcrumb__arrow--prev {
  left: 6px;
}

.workshop-breadcrumb__arrow--next {
  right: 6px;
}

.workshop-breadcrumb__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.section--tint {
  background: var(--sky);
}

.section--workshops {
  background: #fff8ea;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section__header p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section__header .programs-eyebrow {
  margin-bottom: 10px;
  color: #0e5a45;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.programs-heading {
  max-width: 620px;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  background: linear-gradient(90deg, #214f93 0%, #0e5a45 48%, #a45d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-gradient-text {
  background: linear-gradient(90deg, #214f93 0%, #0e5a45 48%, #a45d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-section__header .gallery-eyebrow {
  margin-bottom: 10px;
  color: #0e5a45;
  font-size: 1.12rem;
  letter-spacing: 0.14em;
}

.gallery-section__header .gallery-heading {
  max-width: 620px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body {
  padding: 22px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card h3 {
  color: var(--brand-strong);
  font-weight: 850;
}

.card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.card a {
  text-decoration: none;
}

.program-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.program-detail__copy,
.program-detail__aside,
.program-current,
.program-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(21, 32, 43, 0.06);
}

.program-detail__copy h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
}

.program-heading--single-line {
  max-width: none;
  white-space: nowrap;
}

.program-detail__copy p,
.program-detail__aside p,
.program-current p {
  color: var(--muted);
}

.program-list-columns {
  display: grid;
  gap: 12px;
}

.program-current {
  margin-top: 24px;
}

.program-current .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-callout {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(231, 244, 245, 0.7), #fff);
}

.program-callout__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.program-callout__header h3 {
  margin-bottom: 0;
}

.program-callout__header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

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

.winner-link {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(12, 107, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.winner-link:hover {
  border-color: rgba(12, 107, 90, 0.36);
  box-shadow: 0 10px 24px rgba(21, 32, 43, 0.08);
  transform: translateY(-1px);
}

.winner-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
}

.winner-link__photo {
  width: 74px;
  height: 74px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(21, 32, 43, 0.12);
  object-fit: cover;
}

.winner-link strong,
.winner-link em {
  display: block;
}

.winner-link strong {
  font-size: 1rem;
}

.winner-link em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.winner-subsection {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(12, 107, 90, 0.16);
}

.winner-subsection__header {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.winner-subsection__header h4 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 1.2rem;
}

.winner-subsection__header p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.winner-list--single {
  grid-template-columns: minmax(0, calc(50% - 6px));
}

.home-voices {
  padding-block: 30.5px;
  border-block: 1px solid rgba(12, 107, 90, 0.12);
  background: linear-gradient(135deg, rgba(231, 244, 245, 0.76), rgba(255, 253, 248, 0.88));
}

.home-voices__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 20px;
}

.home-voices__header h2 {
  color: var(--brand-strong);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.home-voices__header > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-voices__winner {
  min-height: 99px;
  background: rgba(255, 255, 255, 0.9);
}

.home-voices__winner .winner-link__photo {
  width: 64px;
  height: 64px;
}

.home-voices__program-link {
  display: inline-block;
  margin-top: 17px;
  color: var(--brand-strong);
  font-weight: 850;
  text-underline-offset: 4px;
}

.section--rising-stars {
  background: #fffdf8;
}

.rising-stars-intro {
  max-width: 850px;
  margin-bottom: 32px;
}

.rising-stars-intro h2 {
  color: var(--brand-strong);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.rising-stars-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.rising-stars-list {
  display: grid;
  gap: 20px;
}

.rising-star-profile {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(21, 32, 43, 0.06);
}

.rising-star-profile > img {
  width: 150px;
  height: 150px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(21, 32, 43, 0.14);
}

.rising-star-profile__content h3 {
  margin-bottom: 12px;
  color: var(--brand-strong);
  font-size: 1.45rem;
}

.rising-star-profile__content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.rising-star-profile__content p:last-child {
  margin-bottom: 0;
}

.rising-stars-media {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 107, 90, 0.14);
}

.rising-stars-media__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.rising-stars-media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
}

.rising-stars-media-card a {
  display: block;
  padding: 8px;
  background: #fff;
  cursor: zoom-in;
}

.rising-stars-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  transition: transform 180ms ease;
}

.rising-stars-media-card a:hover img {
  transform: scale(1.015);
}

.rising-stars-media-card__body {
  padding: 14px 16px 16px;
}

.rising-stars-media-card__body h3 {
  color: var(--brand-strong);
  font-size: 1rem;
}

.rising-stars-media-card__body p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.rising-stars-media__gallery img {
  aspect-ratio: 16 / 10;
}

.rising-stars-media__videos video {
  object-fit: contain;
}

.program-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.program-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
  cursor: zoom-in;
}

.program-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  transition: transform 180ms ease;
}

.program-gallery a:hover img {
  transform: scale(1.02);
}

.program-gallery--contain img {
  object-fit: contain;
  padding: 8px;
}

.program-media-tabs {
  margin-top: 28px;
}

.program-media-tabs__header {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 4px;
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.05);
}

.program-media-tabs__header button {
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--brand-strong);
  font: inherit;
  font-weight: 850;
  padding: 10px 18px;
  cursor: pointer;
}

.program-media-tabs__header button.is-active {
  color: #fff;
  background: var(--brand);
}

.program-media-tabs__panel {
  display: none;
}

.program-media-tabs__panel.is-active {
  display: block;
}

.program-media-group {
  margin-top: 18px;
}

.program-media-group + .program-media-group {
  margin-top: 34px;
}

.program-media-group__header {
  max-width: 780px;
  margin-bottom: 16px;
}

.program-media-group__header h3 {
  margin-bottom: 6px;
  color: var(--brand-strong);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.program-media-group__header p {
  margin: 0;
  color: var(--muted);
}

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

.program-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
}

.program-video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0f2522;
}

.program-video-card h3 {
  padding: 16px 16px 4px;
  color: var(--brand-strong);
  font-size: 1rem;
}

.program-video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0 16px 16px;
}

.program-video-card a {
  color: var(--accent);
  font-weight: 800;
}

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

.workshop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
}

.workshop-card a {
  display: block;
  padding: 14px;
  background: #f7f1e6;
}

.workshop-card img {
  width: 75%;
  height: 255px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
}

.workshop-card__body {
  padding: 20px;
}

.workshop-card h3 {
  color: var(--brand-strong);
  font-weight: 850;
}

.workshop-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.split--video {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.donation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(21, 32, 43, 0.08);
}

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

.donation-card__body {
  padding: 24px;
}

.paypal-donate-form--large input[type="image"] {
  height: 46px;
}

.panel p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.section--volunteer {
  background: linear-gradient(180deg, #fffdf8 0%, #f1f8f6 100%);
}

.volunteer-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 24px;
}

.volunteer-intro h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.volunteer-intro h2 span {
  color: inherit;
}

.volunteer-summary {
  max-width: 940px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.volunteer-graphic {
  justify-self: end;
  width: min(100%, 360px);
  margin: 0;
}

.volunteer-graphic img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 32, 43, 0.08);
}

.volunteer-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(21, 32, 43, 0.07);
}

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

.volunteer-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.volunteer-form span {
  font-size: 0.92rem;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 1rem;
  padding: 14px 15px;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(12, 107, 90, 0.16);
}

.volunteer-form textarea {
  min-height: 178px;
  resize: vertical;
}

.volunteer-form__wide {
  grid-column: span 2;
}

.volunteer-form__message {
  grid-column: span 2;
  grid-row: span 3;
}

.volunteer-form__footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.volunteer-form__footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.form-status:not(:empty) {
  display: block;
}

.form-status--success {
  border-color: rgba(12, 107, 90, 0.24);
  background: rgba(12, 107, 90, 0.08);
  color: #0c6b5a;
}

.form-status--error {
  border-color: rgba(180, 58, 45, 0.24);
  background: rgba(180, 58, 45, 0.08);
  color: #8a2f27;
}

.volunteer-form button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.video-frame {
  overflow: hidden;
  justify-self: center;
  width: min(100%, 380px);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.mission-motion {
  text-align: center;
}

.mission-motion h2 {
  margin-bottom: 10px;
  color: var(--brand-strong);
}

.mission-motion > p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.mission-motion__video {
  overflow: hidden;
  width: min(100%, 1040px);
  margin: 0 auto;
  border-radius: var(--radius);
  background: #0f2522;
  box-shadow: var(--shadow);
}

.mission-motion__video video {
  display: block;
  width: 100%;
  max-height: 640px;
  margin: 0 auto;
  object-fit: contain;
  cursor: pointer;
}

.gallery-groups {
  display: grid;
  gap: 28px;
}

.gallery-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(21, 32, 43, 0.06);
}

.gallery-group__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
}

.gallery-group__header h3 {
  color: var(--brand-strong);
}

.gallery-group__header p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--muted);
}

.gallery-group__header span {
  flex: 0 0 auto;
  color: #a45d00;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(21, 32, 43, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7f1e6;
  border-radius: calc(var(--radius) - 2px);
  transition: transform 180ms ease;
}

.gallery-group--contain .gallery-grid img {
  object-fit: contain;
  background: #fff;
}

.gallery-grid a:hover img {
  transform: scale(1.025);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 76px;
  background: rgba(8, 22, 20, 0.88);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__figure {
  display: grid;
  gap: 14px;
  width: min(100%, 1080px);
  margin: 0;
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__figure figcaption {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 37, 34, 0.72);
  cursor: pointer;
}

.gallery-lightbox__close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 18px;
}

.gallery-lightbox__nav--next {
  right: 18px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card a {
  color: var(--brand-strong);
  font-weight: 800;
}

.contact-visual {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(21, 32, 43, 0.1);
}

.contact-visual img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.site-footer {
  color: #fff;
  background: #0f2522;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 30px;
  padding: 24px 0;
}

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

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .top-strip__inner {
    flex-wrap: wrap;
  }

  .nav__inner {
    flex-wrap: nowrap;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-menu button {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    display: block;
    width: auto;
    box-shadow: none;
    background: transparent;
  }

  .hero__inner,
  .split,
  .footer__inner,
  .contact-layout,
  .volunteer-intro,
  .program-detail,
  .program-callout__header,
  .home-voices__header,
  .winner-list {
    grid-template-columns: 1fr;
  }

  .winner-subsection__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .program-callout__header p:not(.eyebrow),
  .winner-subsection__header p {
    white-space: normal;
  }

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

  .grid--3,
  .grid--2,
  .workshop-grid,
  .rising-stars-media__gallery,
  .program-gallery,
  .program-video-grid,
  .program-current .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .section__header {
    display: block;
  }
}

@media (max-width: 560px) {
  .top-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-strip__donate {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .volunteer-form {
    padding: 18px;
  }

  .volunteer-form__grid {
    grid-template-columns: 1fr;
  }

  .volunteer-form__wide,
  .volunteer-form__message {
    grid-column: span 1;
  }

  .volunteer-form__footer {
    display: grid;
    justify-items: start;
  }

  .gallery-group {
    padding: 16px;
  }

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

  .winner-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .winner-link__photo {
    width: 62px;
    height: 62px;
  }

  .winner-link > span:last-child {
    grid-column: 1 / -1;
  }

  .rising-star-profile {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rising-star-profile > img {
    width: 128px;
    height: 128px;
  }

  .gallery-lightbox {
    padding: 72px 14px 24px;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: none;
  }

  .gallery-lightbox__nav--prev {
    left: 18px;
  }

  .gallery-lightbox__nav--next {
    right: 18px;
  }

  .gallery-lightbox__figure img {
    max-height: 72vh;
  }

  .hero__inner {
    padding: 22px 0 44px;
  }

  .hero--home .hero__inner {
    padding: 18.5px 0 37px;
  }

  .section {
    padding: 26px 0;
  }

  .home-voices {
    padding-block: 22px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 66px;
    height: 42px;
  }

  .brand-mark img {
    height: 42px;
  }

  .brand-name {
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 1px;
    max-width: 230px;
    font-size: 1.02rem;
    white-space: normal;
  }
}
