:root {
  --black: #050505;
  --panel: #111213;
  --panel-soft: #171819;
  --ink: #f7f7f3;
  --muted: #b7b8bb;
  --line: rgba(255, 255, 255, 0.14);
  --magenta: #b83268;
  --magenta-dark: #842448;
  --magenta-soft: #d65a86;
  --cyan: #48b9bd;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --font-ui: "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  --font-display: "Bebas Neue", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 0%, rgba(184, 50, 104, 0.12), transparent 34rem),
    radial-gradient(circle at 0% 35%, rgba(72, 185, 189, 0.08), transparent 28rem),
    var(--black);
  font-family: var(--font-ui);
  line-height: 1.45;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--cyan);
  max-width: none;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.15vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--magenta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button,
.cart-button,
.close,
.quantity button {
  border: 1px solid transparent;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 42px;
  height: 42px;
  font-size: 2rem;
}

.cart-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.45rem;
}

.cart-button strong {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--magenta);
  font-family: var(--font-ui);
  font-size: 0.68rem;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 112px clamp(22px, 4vw, 56px) clamp(54px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.16) brightness(0.78);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 34%, rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 92px;
  right: -10vw;
  z-index: -1;
  width: 48vw;
  height: 34vw;
  min-width: 430px;
  min-height: 310px;
  background: linear-gradient(135deg, transparent 20%, rgba(184, 50, 104, 0.68), transparent 80%);
  clip-path: polygon(12% 24%, 100% 0, 76% 64%, 8% 100%, 0 58%);
  opacity: 0.58;
  mix-blend-mode: screen;
}

.hero-copy {
  width: min(720px, 100%);
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.6vw, 7.35rem);
  line-height: 0.96;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.44);
}

h1 span {
  display: block;
  color: var(--magenta);
  letter-spacing: 0.005em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 4.25rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
}

.lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.42;
}

.secondary-lead {
  max-width: 610px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead strong {
  color: var(--cyan);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta-dark), var(--magenta-soft));
  box-shadow: 0 14px 30px rgba(132, 36, 72, 0.22);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--magenta-dark), var(--magenta));
}

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

.wide {
  width: 100%;
}

.quote-panel {
  position: absolute;
  top: auto;
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(54px, 7vw, 92px);
  left: auto;
  width: min(360px, 28vw);
  padding: 22px 24px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.quote-mark {
  display: block;
  color: var(--cyan);
  font-size: 3.2rem;
  line-height: 0.7;
}

.quote-panel p,
.quote-panel strong {
  font-family: var(--font-ui);
}

.quote-panel p {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
}

.quote-panel strong {
  color: var(--cyan);
}

.role-box {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-box span:last-child {
  color: var(--cyan);
}

.product-strip,
.fundraising-strip,
.reason-grid,
.preview,
.stats,
.checkout,
.story-section,
.campaign-section,
.support-section,
.meet-section,
.program-section {
  width: min(1180px, calc(100% - 78px));
  margin-inline: auto;
}

.is-hidden {
  display: none !important;
}

.story-section,
.campaign-section,
.support-section,
.meet-section,
.program-section,
.preview,
.stats,
.checkout {
  scroll-margin-top: 92px;
}

.product-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4.2vw, 62px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 76px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.fundraising-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 76px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 12% 20%, rgba(184, 50, 104, 0.18), transparent 28rem);
  box-shadow: var(--shadow);
}

.fundraising-copy {
  display: grid;
  gap: 18px;
}

.fundraising-copy h2 {
  max-width: 13ch;
  margin: 0;
}

.fundraising-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.62;
}

.donation-panel {
  display: grid;
  align-content: center;
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.calendar-cover {
  position: relative;
  min-height: clamp(300px, 30vw, 390px);
  perspective: 900px;
}

.binder {
  position: absolute;
  top: 12px;
  left: 12%;
  right: 18%;
  height: 15px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, #c7c7c7 0 5px, transparent 5px 15px);
  opacity: 0.8;
}

.cover-art {
  position: absolute;
  inset: 38px 8% 10px 0;
  display: grid;
  align-content: center;
  padding: 28px;
  transform: rotateX(4deg) rotateY(-13deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(140deg, transparent, rgba(184, 50, 104, 0.66) 58%, transparent 70%),
    url("hero-person-campaign-v2.png") center / cover,
    #121212;
  box-shadow: 18px 24px 45px rgba(0, 0, 0, 0.62);
}

.cover-art span,
.cover-art small {
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.cover-art span {
  font-size: 1.6rem;
}

.cover-art strong {
  color: var(--magenta);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.86;
}

.cover-art em {
  color: var(--cyan);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-style: normal;
}

.cover-art small {
  max-width: 12ch;
  color: var(--white);
}

.product-copy p,
.product-copy li,
.buy-panel span,
.micro-benefits,
.reason-grid p,
.reason-grid a,
.section-head a,
.stats span,
.checkout p,
.order-form,
footer,
.form-note {
  font-family: var(--font-ui);
}

.product-copy {
  align-self: center;
}

.product-copy h2 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
  line-height: 0.98;
}

.cyan {
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 900;
}

.product-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
}

.product-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--white);
}

.buy-panel {
  display: grid;
  align-content: center;
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.price-line {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.price-line strong {
  color: var(--magenta);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
}

.price-line span {
  color: rgba(255, 255, 255, 0.82);
}

.option-group {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 800;
}

.option-group label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-family: var(--font-ui);
}

.option-group label:has(input:checked) {
  border-color: var(--magenta);
  box-shadow: inset 0 0 0 1px rgba(184, 50, 104, 0.26);
}

.custom-amount {
  display: grid;
  gap: 8px;
  margin: -6px 0 18px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 800;
}

.custom-amount input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
}

.custom-amount input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.quantity {
  display: grid;
  grid-template-columns: 1fr 42px 42px 42px;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-ui);
}

.quantity button,
.quantity output {
  display: grid;
  place-items: center;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.micro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 30px);
  margin-top: clamp(44px, 6vw, 78px);
}

.story-section,
.campaign-section,
.support-section {
  padding: clamp(72px, 9vw, 118px) 0 0;
}

.meet-section {
  padding-top: clamp(64px, 8vw, 104px);
}

.program-section {
  padding-top: clamp(62px, 8vw, 104px);
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-grid,
.campaign-section,
.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.story-grid h2,
.campaign-section h2,
.support-section h2 {
  max-width: 11ch;
}

.story-copy,
.support-copy,
.support-list,
.priority-list {
  font-family: var(--font-ui);
}

.story-copy {
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.68;
}

.story-copy p,
.support-copy p {
  margin: 0;
}

.campaign-section {
  align-items: center;
  padding-top: clamp(64px, 8vw, 104px);
}

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

.priority-list span,
.support-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.priority-list span::before,
.support-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--cyan);
}

.support-section {
  align-items: stretch;
}

.support-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.68;
}

.support-list {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(184, 50, 104, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.support-list ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.meet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: stretch;
}

.meet-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.meet-copy h2 {
  max-width: 10ch;
}

.meet-copy p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  line-height: 1.62;
}

.meet-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(184, 50, 104, 0.14), rgba(255, 255, 255, 0.035)),
    #101011;
  box-shadow: var(--shadow);
}

.meet-card article {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.26);
}

.meet-card span {
  color: var(--magenta-soft);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.meet-card strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.meet-card small {
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: right;
}

.program-head {
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.program-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.program-grid article {
  min-height: 285px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.program-grid article span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--font-ui);
  font-weight: 900;
}

.program-grid h3 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.program-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.58;
}

.reason-grid article {
  display: grid;
  grid-template-rows: 82px minmax(128px, auto) minmax(118px, auto) auto;
  align-content: start;
  min-height: clamp(390px, 30vw, 470px);
  padding: clamp(30px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("hero-person-campaign-v2.png") 78% 20% / auto 116% no-repeat,
    #101011;
  box-shadow: inset 0 -120px 110px rgba(0, 0, 0, 0.8), 0 22px 56px rgba(0, 0, 0, 0.28);
}

.reason-grid article:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("hero-person-campaign-v2.png") 82% 18% / auto 118% no-repeat,
    #101011;
}

.reason-grid article:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("hero-person-campaign-v2.png") 84% 18% / auto 118% no-repeat,
    #101011;
}

.reason-grid h3 {
  align-self: start;
  max-width: 11ch;
  margin-bottom: 20px;
}

.card-icon {
  display: block;
  align-self: start;
  width: 1em;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 4vw, 4.5rem);
  line-height: 1;
}

.card-icon-left {
  justify-self: start;
}

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

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

.reason-grid p {
  align-self: start;
  color: rgba(255, 255, 255, 0.84);
  max-width: 31ch;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

.reason-grid a {
  color: var(--magenta);
  display: inline-flex;
  align-self: end;
  margin-top: 16px;
  font-weight: 900;
}

.preview {
  margin-top: clamp(82px, 10vw, 136px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.section-head h2 span,
.section-head a {
  color: var(--cyan);
}

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

.month-row article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(160px, 14vw, 210px);
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.88)),
    url("hero-person-campaign-v2.png") center / cover;
}

.month-row article:nth-child(2) {
  background-position: 20% 50%;
}

.month-row article:nth-child(3) {
  background-position: 50% 50%;
}

.month-row article:nth-child(4) {
  background-position: 62% 45%;
}

.month-row article:nth-child(5) {
  background-position: 75% 50%;
}

.month-row article:nth-child(6) {
  background-position: 90% 50%;
}

.month-row span {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.month-row strong {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--magenta);
  font-size: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(56px, 7vw, 96px);
}

.stats div {
  margin: 0;
  min-height: clamp(210px, 18vw, 280px);
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(184, 50, 104, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(184, 50, 104, 0.16), rgba(255, 255, 255, 0.035)),
    #080808;
  overflow: hidden;
}

.stats div {
  display: grid;
  align-content: space-between;
  text-align: left;
}

.stats strong {
  display: block;
  color: var(--magenta);
  font-family: var(--font-display);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-size: clamp(2rem, 2.55vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.018em;
  text-transform: uppercase;
}

.stats span {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1500px) {
  .stats strong {
    font-size: clamp(1.75rem, 2.35vw, 2.65rem);
    letter-spacing: 0.012em;
  }
}

@media (max-width: 1180px) {
  .stats strong {
    font-size: clamp(1.45rem, 2.05vw, 2.1rem);
  }
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  padding: clamp(76px, 9vw, 118px) 0;
}

.transfer-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.75fr);
}

.section-copy p {
  max-width: 620px;
  color: var(--muted);
}

.order-form,
.cart-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 16px;
}

.order-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
}

.transfer-box {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-ui);
}

.transfer-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    #111;
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
}

.transfer-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.transfer-card-head span {
  color: var(--muted);
  font-weight: 800;
}

.transfer-card-head strong {
  color: var(--magenta);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1;
}

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

.transfer-details div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.transfer-details dt {
  color: var(--muted);
}

.transfer-details dd {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  text-align: right;
}

.transfer-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(72, 185, 189, 0.28);
  background: rgba(72, 185, 189, 0.07);
}

.transfer-note strong {
  color: var(--cyan);
}

.transfer-note span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.transfer-ready {
  margin: 0;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.45;
}

.transfer-box span,
.transfer-box small {
  color: var(--muted);
}

.transfer-box strong {
  color: var(--white);
  font-size: 1.18rem;
}

.order-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--magenta);
}

.order-summary,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.order-summary strong,
.cart-total strong {
  color: var(--magenta);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.68);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-card {
  position: relative;
  width: min(430px, 100%);
  min-height: 100%;
  overflow: auto;
  border-radius: 0;
  background: #0c0c0d;
}

.close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-color: var(--line);
  font-size: 1.5rem;
}

.cart-lines {
  display: grid;
  gap: 12px;
  min-height: 110px;
  font-family: var(--font-ui);
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-line span {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0f;
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 34px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .quote-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 100%);
    margin-top: 28px;
  }

  .product-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .fundraising-strip {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .donation-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .calendar-cover {
    min-height: 360px;
  }

  .product-copy h2 {
    max-width: 14ch;
  }

  .reason-grid,
  .checkout,
  .story-grid,
  .campaign-section,
  .support-section,
  .meet-section {
    grid-template-columns: 1fr;
  }

  .meet-copy h2 {
    max-width: 14ch;
  }

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

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

  .reason-grid article {
    grid-template-rows: 74px auto auto auto;
    min-height: 360px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.84) 56%, rgba(0, 0, 0, 0.26) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
      url("hero-person-campaign-v2.png") 92% 18% / auto 120% no-repeat,
      #101011;
  }

  .reason-grid article:nth-child(2),
  .reason-grid article:nth-child(3) {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.84) 56%, rgba(0, 0, 0, 0.26) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
      url("hero-person-campaign-v2.png") 92% 18% / auto 120% no-repeat,
      #101011;
  }

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

@media (max-width: 700px) {
  .product-strip,
  .fundraising-strip,
  .reason-grid,
  .preview,
  .stats,
  .checkout,
  .story-section,
  .campaign-section,
  .support-section,
  .meet-section,
  .program-section {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 14px 44px;
  }

  h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.85rem);
  }

  .lead {
    font-size: 1.1rem;
  }

  .quote-panel {
    padding: 20px;
  }

  .calendar-cover {
    min-height: 320px;
  }

  .cover-art {
    inset: 38px 0 10px 0;
    transform: rotateX(3deg) rotateY(-7deg);
  }

  .product-strip {
    padding: 20px;
  }

  .fundraising-strip {
    padding: 22px;
  }

  .fundraising-copy h2 {
    max-width: 100%;
  }

  .reason-grid {
    gap: 16px;
    margin-top: 42px;
  }

  .reason-grid article,
  .reason-grid article:nth-child(2),
  .reason-grid article:nth-child(3) {
    grid-template-rows: 64px auto auto auto;
    min-height: 330px;
    padding: 24px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.82)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.92)),
      url("hero-person-campaign-v2.png") 100% 8% / auto 92% no-repeat,
      #101011;
  }

  .reason-grid h3 {
    max-width: 12ch;
  }

  .reason-grid p {
    max-width: 28ch;
  }

  .product-copy h2 {
    max-width: 100%;
  }

  .option-group label {
    grid-template-columns: auto 1fr;
  }

  .option-group label strong {
    grid-column: 2;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

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

  .section-head {
    display: grid;
    align-items: start;
  }

  .meet-card article {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .meet-card small {
    text-align: left;
  }

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

  .program-grid article {
    min-height: auto;
  }

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

  .stats div {
    min-height: 190px;
  }

  .micro-benefits,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner div {
    display: grid;
  }
}
