:root {
  --ink: #122725;
  --muted: #5c6b66;
  --paper: #f6f1e8;
  --paper-deep: #eae2d3;
  --white: #fffdf9;
  --green: #123c35;
  --green-dark: #0d2b27;
  --gold: #f2bd49;
  --coral: #e55d46;
  --blue: #2756c7;
  --line: rgba(18, 39, 37, 0.16);
  --shadow: 0 22px 70px rgba(13, 43, 39, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.draft-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 34px;
  padding: 0.45rem 1rem;
  color: var(--paper);
  background: var(--green-dark);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.draft-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.3rem 4vw;
  border-bottom: 1px solid var(--line);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.wordmark,
.organizer-link,
.text-link {
  text-decoration: none;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.organizer-link {
  color: var(--muted);
  font-size: 0.85rem;
}

.organizer-link:hover,
.text-link:hover {
  color: var(--coral);
}

.top-donate-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.top-donate-button:hover {
  background: #c94b37;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: clamp(2.5rem, 7vw, 7.5rem);
  align-items: center;
  min-height: 690px;
  padding-top: clamp(4.5rem, 9vw, 8.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.45rem, 5.25vw, 5.6rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-deadline {
  max-width: 530px;
  margin: -0.8rem 0 2rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-deadline strong {
  color: var(--coral);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--coral);
}

.button-primary:hover {
  background: #c94b37;
}

.button-light {
  color: var(--green-dark);
  background: var(--paper);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  max-width: 520px;
  margin: 0;
  justify-self: end;
}

.hero-photo {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-photo img,
.story-slide img,
.organizer-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: 50% 25%;
}

.photo-caption {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.goal-band {
  color: var(--paper);
  background: var(--green);
  border-top: 5px solid var(--blue);
}

.goal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.goal-layout h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  letter-spacing: -0.045em;
}

.goal-numbers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.goal-number {
  display: grid;
  gap: 0.55rem;
}

.goal-value {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

.goal-value-note {
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.goal-label {
  color: rgba(246, 241, 232, 0.75);
  max-width: 150px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.goal-divider {
  width: 1px;
  height: 92px;
  background: rgba(246, 241, 232, 0.3);
}

.story {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 9vw, 9rem);
  padding-top: clamp(6rem, 11vw, 10.5rem);
  padding-bottom: clamp(6rem, 11vw, 10.5rem);
}

@media (min-width: 821px) {
  .story {
    align-items: center;
  }
}

.story-heading h2 {
  max-width: 450px;
}

.story-carousel {
  max-width: 470px;
  margin-top: 2.5rem;
}

.story-carousel-viewport {
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid rgba(18, 39, 37, 0.12);
  touch-action: pan-y;
}

.story-slide {
  display: none;
  margin: 0;
}

.story-slide.is-active {
  display: block;
}

.story-slide-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-slide img {
  border: 0;
  object-position: 50% 50%;
}

.story-slide-sign img {
  object-position: 50% 68%;
  transform: scale(1.08);
  transform-origin: 50% 68%;
}

.story-slide figcaption,
.organizer-photo figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.story-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
}

.carousel-arrow,
.carousel-dot {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
}

.carousel-arrow:hover {
  color: var(--paper);
  background: var(--coral);
  border-color: var(--coral);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.carousel-dot::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--muted);
}

.carousel-dot.is-active {
  border-color: var(--coral);
}

.carousel-dot.is-active::before {
  background: var(--coral);
}

.story-body {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.12rem;
}

.story-body p {
  margin-bottom: 1.5rem;
}

.story-body .story-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.12;
}

.story-signoff {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.priorities {
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.section-intro-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.section-intro-row h2 {
  margin-bottom: 0;
}

.section-note {
  max-width: 330px;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.priority-card {
  min-height: 250px;
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.priority-card:first-child {
  padding-left: 0;
}

.priority-card:last-child {
  border-right: 0;
}

.priority-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.organizer {
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.organizer-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--coral);
}

.organizer-photo {
  align-self: start;
  margin: 0;
}

.organizer-photo-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--coral);
}

.organizer-photo img {
  object-position: 50% 50%;
}

.organizer-photo figcaption {
  color: rgba(246, 241, 232, 0.72);
}

@media (min-width: 821px) {
  .organizer-photo {
    margin-top: 2rem;
  }
}

.organizer-card h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
}

.organizer-card p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(246, 241, 232, 0.88);
  font-size: 1.08rem;
}

.organizer-card .text-link {
  color: var(--paper);
}

.organizer-card .text-link:hover {
  color: var(--green-dark);
}

.organizer-disclaimer {
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 241, 232, 0.28);
  font-size: 0.92rem !important;
}

.give {
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.give-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--paper);
  background: var(--green-dark);
}

.give-copy h2 {
  max-width: 580px;
}

.give-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(246, 241, 232, 0.75);
  font-size: 1.05rem;
}

.gofundme-placeholder {
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--paper);
}

.gofundme-label {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--green);
  font-family: var(--serif);
  line-height: 1;
}

.card-amount > span {
  font-size: 1.5rem;
}

.card-amount small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.budget-caption {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gofundme-placeholder strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.05;
}

.gofundme-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.gfm-embed {
  width: 100%;
}

.gfm-embed iframe {
  display: none;
  max-width: 100%;
}

.gfm-embed.is-loaded iframe {
  display: block;
}

.gfm-widget-fallback {
  display: grid;
  gap: 0.7rem;
  max-width: 290px;
  margin: 0 auto;
  padding: 1.15rem;
  border: 1px solid #d9ded9;
  border-radius: 0.35rem;
  color: #263b2d;
  background: #fff;
}

.gfm-widget-fallback[hidden] {
  display: none;
}

.gfm-widget-brand {
  color: #4b9b5f;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.gfm-widget-fallback strong {
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.gfm-widget-progress {
  height: 0.34rem;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1ed;
}

.gfm-widget-progress span {
  display: block;
  width: 2%;
  height: 100%;
  border-radius: inherit;
  background: #69af75;
}

.gfm-widget-raised {
  color: #5f6d63;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.gfm-widget-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  color: var(--paper);
  background: #2f5d3d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gfm-widget-donate:hover {
  transform: translateY(-2px);
  background: #244a31;
}

.share {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: 3rem;
  align-items: end;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.share h2 {
  margin-bottom: 0;
}

.share > p {
  max-width: 390px;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.share-action {
  max-width: 390px;
  justify-self: end;
  align-self: end;
}

.share-action > p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-share {
  color: var(--paper);
  background: var(--blue);
}

.button-share:hover {
  background: #1d3d8b;
}

.share-status {
  min-height: 1.45em;
  margin: 0.75rem 0 0;
  color: var(--coral) !important;
  font-size: 0.82rem !important;
}

.share-status:empty {
  display: none;
}

.updates {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.updates-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.updates-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.04em;
  line-height: 1;
  list-style: none;
}

.updates-panel summary::-webkit-details-marker {
  display: none;
}

.updates-panel summary span {
  color: var(--coral);
  font-family: var(--sans);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.updates-panel[open] summary span {
  transform: rotate(90deg);
}

.updates-content {
  max-width: 680px;
  padding: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.updates-content p {
  margin-bottom: 0.85rem;
}

.updates-content p:last-child {
  margin-bottom: 0;
}

.updates-empty {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.organizer-disclaimer a,
.footer-note a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer {
  color: rgba(246, 241, 232, 0.74);
  background: var(--green);
}

.footer-note {
  max-width: 1120px;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.footer-note p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-note strong {
  color: var(--paper);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-donate-bar {
  display: none;
}

@media (max-width: 820px) {
  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .organizer-link {
    font-size: 0.76rem;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .hero,
  .goal-layout,
  .story,
  .give-card,
  .share {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 3rem;
    padding-top: 4.5rem;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: start;
    order: -1;
  }

  .hero-photo {
    aspect-ratio: 5 / 6;
  }

  .goal-numbers {
    justify-content: flex-start;
  }

  .story {
    gap: 2.75rem;
  }

  .story-carousel {
    max-width: 560px;
  }

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

  .priority-card,
  .priority-card:first-child,
  .priority-card:last-child {
    min-height: 0;
    padding: 1.8rem 0;
    border-right: 0;
  }

  .section-intro-row {
    display: block;
  }

  .section-note {
    margin-top: 1.2rem;
  }

  .organizer-card {
    gap: 1.4rem;
  }

  .share {
    gap: 1.5rem;
  }

  .share-action {
    justify-self: start;
  }

  .footer-layout {
    display: grid;
    gap: 0.4rem;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .draft-banner {
    min-height: 42px;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .site-header {
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .wordmark {
    gap: 0.45rem;
    max-width: 165px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .wordmark-mark {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .organizer-link {
    max-width: 145px;
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: right;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .organizer-link {
    display: none;
  }

  .top-donate-button {
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    font-size: 0.66rem;
  }

  .section-shell {
    width: min(100% - 2rem, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero {
    gap: 2.5rem;
    padding-top: 3.6rem;
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    font-size: 0.88rem;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
  }

  .goal-layout {
    gap: 2rem;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .goal-numbers {
    gap: 1rem;
  }

  .goal-number {
    gap: 0.4rem;
  }

  .goal-value {
    font-size: 2.5rem;
  }

  .goal-label {
    font-size: 0.65rem;
  }

  .goal-divider {
    height: 66px;
  }

  .story,
  .priorities,
  .organizer,
  .give,
  .share,
  .updates {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .story-body {
    font-size: 1.04rem;
  }

  .story-body .story-lead {
    font-size: 1.85rem;
  }

  .organizer-card {
    grid-template-columns: 1fr;
    padding: 1.65rem;
  }

  .organizer-photo-media,
  .organizer-photo img {
    min-height: 0;
  }

  .give-card {
    padding: 1.65rem;
  }

  .story-carousel {
    max-width: 100%;
  }

  .gofundme-placeholder {
    padding: 1.15rem;
  }

  .footer-layout {
    padding-bottom: 90px;
    font-size: 0.65rem;
  }

  .mobile-donate-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 74px;
    padding: 0.8rem 1rem;
    color: var(--paper);
    background: var(--green-dark);
    box-shadow: 0 -10px 32px rgba(13, 43, 39, 0.16);
  }

  .mobile-donate-bar span {
    max-width: 165px;
    font-family: var(--serif);
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .mobile-donate-bar .button {
    width: auto;
    min-height: 44px;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
