:root {
  --ink: #141414;
  --muted: #5d605c;
  --paper: #fff8fc;
  --white: #ffffff;
  --coral: #ff4fa3;
  --teal: #1a1a1d;
  --gold: #d9d9e3;
  --leaf: #f7a8d7;
  --rose: #ffe1f1;
  --silver: #cfd0d8;
  --glitter: linear-gradient(135deg, #ffffff 0%, #f5c9e1 20%, #d5d6df 42%, #ffffff 58%, #ff72b8 78%, #b9bbc7 100%);
  --line: rgba(20, 20, 20, 0.14);
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.solid-header {
  position: sticky;
  background: linear-gradient(90deg, #08080a, #23151e 48%, #0f0f12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glitter);
  color: var(--ink);
  font-size: 0.88rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 10px 26px rgba(255, 79, 163, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
  margin-left: auto;
  max-width: min(560px, 58vw);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-links a,
.nav-group summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
  color: var(--ink);
  opacity: 0.96;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.nav-links a::after,
.nav-group summary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px);
  opacity: 0.72;
  pointer-events: none;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  order: 2;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 7px;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.nav-group:not([open]) .nav-menu {
  display: none;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  justify-content: flex-start;
  width: 100%;
  color: var(--white);
}

.nav-group:nth-child(2) summary,
.nav-menu a:nth-child(2),
.nav-direct {
  background: linear-gradient(135deg, #08080a, #303038);
  color: var(--white);
}

.nav-group:nth-child(3) summary,
.nav-menu a:nth-child(3) {
  background: var(--glitter);
  color: var(--ink);
}

.nav-links a:hover,
.nav-group summary:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.page-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04));
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  padding: 130px clamp(20px, 6vw, 76px) 62px;
  color: var(--white);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 6.8vw, 7rem);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.02) 58%);
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  padding: 150px clamp(22px, 7vw, 92px) 96px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--coral);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-tagline {
  margin: 20px 0 0;
  max-width: 940px;
  font-size: clamp(3.05rem, 7.1vw, 7.4rem);
  line-height: 0.94;
  font-weight: 1000;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

@media (min-width: 640px) {
  .hero-tagline span {
    white-space: nowrap;
  }
}

.hero-brand-line {
  display: inline-flex;
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.86rem, 1.2vw, 1.04rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3.35rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.give-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
}

.button.primary {
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 79, 163, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--white);
}

.dark-button {
  width: fit-content;
}

.impact-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.impact-manifesto p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1;
  text-wrap: balance;
}

.impact-manifesto div {
  display: grid;
  gap: 8px;
}

.impact-manifesto span {
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--glitter);
  color: var(--ink);
  font-weight: 950;
}

.impact-manifesto span:nth-child(2) {
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
  color: var(--white);
}

.impact-manifesto span:nth-child(3) {
  background: linear-gradient(135deg, #08080a, #303038);
  color: var(--white);
}

.event-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.event-story-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.event-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, 14vw);
  gap: 12px;
}

.event-collage img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-collage .tall {
  grid-row: span 2;
}

.event-collage .wide {
  grid-column: span 2;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.split-section > p,
.copy-stack p,
.donation-placeholder p,
.form-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
  color: var(--teal);
}

.mission-grid {
  display: grid;
  gap: 18px;
  padding-top: 7px;
}

.mission-grid p,
.impact-copy p,
.give-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.belief-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.belief-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1080px;
}

.belief-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--rose);
  font-weight: 850;
  line-height: 1.25;
}

.color-band {
  background: linear-gradient(135deg, #fff8fc, #f1edf4);
  border-block: 1px solid var(--line);
}

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

.program-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.program-card img {
  height: 100%;
  object-fit: cover;
}

.program-card div {
  padding: 24px;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-grid-section {
  display: grid;
  gap: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-card img,
.program-card-video {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.program-card-video {
  width: 100%;
  background: var(--ink);
}

.detail-card div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.detail-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.leadership-quote-section {
  background: var(--ink);
  color: var(--white);
}

.leadership-quote-section blockquote {
  max-width: 1050px;
  margin: 0;
}

.founder-feature {
  background: var(--white);
}

.founder-copy {
  max-width: 1040px;
  margin: 0 auto;
}

.founder-feature p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.founder-feature .founder-lede {
  max-width: 850px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.9vw, 2.7rem);
  line-height: 1.12;
}

.founder-photo-below {
  margin: clamp(30px, 5vw, 56px) 0 0;
}

.founder-photo-below img {
  width: 100%;
  height: min(660px, 72vh);
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo-below figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-section {
  background: linear-gradient(135deg, #fff8fc, #f1edf4);
}

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

.board-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.board-card img {
  height: 300px;
  object-fit: cover;
}

.board-card div {
  padding: 24px;
}

.board-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background: var(--white);
}

.impact-stats {
  display: grid;
  gap: 12px;
}

.impact-stats div {
  display: grid;
  gap: 7px;
  padding: 26px;
  border-left: 8px solid var(--gold);
  background: var(--paper);
}

.impact-stats div:nth-child(2) {
  border-left-color: var(--teal);
}

.impact-stats div:nth-child(3) {
  border-left-color: var(--leaf);
}

.impact-stats strong {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.impact-stats span {
  color: var(--muted);
}

.gallery-section {
  background: var(--paper);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

figure:nth-child(2),
figure:nth-child(4) {
  margin-top: 54px;
}

figure img {
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.give-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 1fr);
  gap: 0;
  padding-block: 0;
  background: linear-gradient(135deg, #08080a, #2b1724);
  color: var(--white);
}

.involved-section {
  background: var(--white);
}

.donor-case-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.donor-case-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

blockquote {
  margin: 0 0 24px;
  padding: 0 0 0 20px;
  border-left: 8px solid var(--gold);
  color: inherit;
  font-size: clamp(1.45rem, 3vw, 2.9rem);
  font-weight: 950;
  line-height: 1.05;
  text-wrap: balance;
}

.page-quote {
  color: var(--ink);
}

.donor-reasons {
  display: grid;
  gap: 12px;
}

.donor-reasons article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 8px solid var(--gold);
}

.donor-reasons article:nth-child(2) {
  border-left-color: var(--coral);
}

.donor-reasons article:nth-child(3) {
  border-left-color: var(--teal);
}

.donor-reasons strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.donor-reasons span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

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

.involved-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: end;
  padding: 26px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.involved-card:nth-child(2) {
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
}

.involved-card:nth-child(3) {
  background: var(--glitter);
  color: var(--ink);
}

.involved-card:nth-child(3) span {
  color: rgba(20, 20, 20, 0.7);
}

.involved-card strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.involved-card span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.give-panel {
  display: grid;
  align-content: center;
  padding: clamp(54px, 7vw, 96px) clamp(22px, 5vw, 70px);
}

.give-panel .eyebrow,
.give-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.give-panel h2 {
  margin-bottom: 20px;
}

.give-panel p + p {
  margin-top: 14px;
}

.give-panel .note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.give-section > img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.contact-section {
  background: var(--paper);
}

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

.contact-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card p + p {
  margin-top: 10px;
}

.contact-card a {
  font-weight: 900;
  color: var(--coral);
}

.donation-placeholder,
.form-shell {
  background: var(--white);
}

.donation-placeholder h2,
.form-shell h2 {
  margin-bottom: 16px;
}

.donation-widget {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin-bottom: 20px;
}

.donation-widget a {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #08080a, #303038);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.donation-widget .wide-option {
  grid-column: 1 / -1;
  background: var(--glitter);
  color: var(--ink);
}

.sponsor-section {
  background: linear-gradient(135deg, #08080a, #2b1724);
  color: var(--white);
}

.sponsor-section .section-intro {
  max-width: 900px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
}

.sponsor-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 390px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.sponsor-card.signature-sponsor {
  background: var(--glitter);
  color: var(--ink);
}

.sponsor-amount {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 1000;
  line-height: 1;
}

.signature-sponsor .sponsor-amount {
  background: var(--ink);
}

.sponsor-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.02;
}

.sponsor-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.signature-sponsor p {
  color: rgba(20, 20, 20, 0.72);
}

.sponsor-card .button {
  margin-top: auto;
}

.shop-hero img {
  object-position: center 42%;
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  background: linear-gradient(135deg, #fff8fc, #f1edf4);
}

.shop-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.product-section {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  background: var(--white);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-card.reverse-product {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
}

.product-card.reverse-product img {
  order: 2;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-card div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 62px);
}

.product-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.product-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 79, 163, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.shop-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: linear-gradient(135deg, #08080a, #303038);
  color: var(--white);
}

.shop-cta h2 {
  max-width: 820px;
}

.shop-cta .secondary {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: var(--paper);
}

.contact-form button {
  width: fit-content;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff4fa3, #ff91c8);
  color: var(--white);
  font: inherit;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .solid-header {
    position: sticky;
  }

  .nav-links {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 10px;
    font-size: 0.74rem;
  }

  .nav-links a,
  .nav-group summary {
    min-height: 32px;
    padding: 8px 10px;
  }

  .nav-menu {
    left: 0;
    right: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
  }

  .hero-content {
    padding-top: 126px;
  }

  .mission-section,
  .split-section,
  .impact-manifesto,
  .event-story-section,
  .donor-case-section,
  .founder-feature,
  .impact-section,
  .shop-intro,
  .product-card,
  .product-card.reverse-product,
  .give-section {
    grid-template-columns: 1fr;
  }

  .product-card.reverse-product img {
    order: initial;
  }

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

  .impact-manifesto span {
    min-width: 0;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    min-height: 320px;
  }

  .program-grid,
  .photo-grid,
  .involved-grid,
  .sponsor-grid,
  .board-grid {
    grid-template-columns: 1fr 1fr;
  }

  figure:nth-child(2),
  figure:nth-child(4) {
    margin-top: 0;
  }

  .give-section > img {
    min-height: 380px;
  }

  .product-card img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.9rem;
  }

  .site-header {
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    gap: 7px;
  }

  .nav-group {
    position: static;
  }

  .nav-menu {
    top: auto;
    left: clamp(18px, 4vw, 54px);
    right: clamp(18px, 4vw, 54px);
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.4rem);
  }

  .hero-tagline {
    font-size: clamp(2.25rem, 11vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .impact-manifesto div {
    grid-template-columns: 1fr;
  }

  .event-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .event-collage .tall,
  .event-collage .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .program-grid,
  .photo-grid,
  .involved-grid,
  .sponsor-grid,
  .contact-grid,
  .donation-widget,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 62vh;
  }

  .page-hero-content {
    padding-top: 96px;
  }

  .program-card {
    grid-template-rows: 230px 1fr;
  }

  figure {
    min-height: 340px;
  }

  .site-footer {
    display: grid;
  }
}
