:root {
  --ink: #2f2229;
  --muted: #705e67;
  --plum: #672f4f;
  --plum-dark: #341827;
  --rose: #bd637f;
  --rose-soft: #f5d8e1;
  --cream: #fff9f5;
  --paper: #fffefd;
  --line: #ead9df;
  --paypal-blue: #0070ba;
  --paypal-dark: #003087;
  --shadow: 0 24px 70px rgba(70, 31, 52, 0.14);
  --soft-shadow: 0 14px 40px rgba(70, 31, 52, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(1040px, calc(100% - 40px));
}

.site-header {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(251, 214, 226, 0.86), transparent 27%),
    radial-gradient(circle at 91% 16%, rgba(214, 135, 164, 0.30), transparent 31%),
    linear-gradient(135deg, #fffaf7 0%, #fdf0f3 52%, #f1d2dc 100%);
}

.nav {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-dark);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand-heart {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: #ffe6ed;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(103, 47, 79, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4f3b45;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  text-underline-offset: 6px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--plum);
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 68px;
  padding-block: 44px 90px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.07;
}

h1 {
  margin-bottom: 26px;
  color: var(--plum-dark);
  font-size: clamp(58px, 7vw, 94px);
  letter-spacing: -0.055em;
}

h1 span {
  color: #a84469;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.3;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 28px;
  color: #4f3c45;
  font-size: 18px;
}

.quiet-link {
  color: var(--plum);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo::before {
  position: absolute;
  inset: -20px 20px 26px -20px;
  border: 1px solid rgba(103, 47, 79, 0.27);
  border-radius: 44px;
  content: "";
  transform: rotate(-2deg);
}

.hero-photo img {
  position: relative;
  width: 100%;
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-photo figcaption {
  position: relative;
  margin: 16px 14px 0;
  color: #6e5863;
  font-size: 13px;
  text-align: center;
}

.section {
  padding-block: 108px;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.compact {
  max-width: 790px;
  margin-inline: auto;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.story-video-section {
  padding-block: 32px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 38%),
    #f8edf1;
  scroll-margin-top: 12px;
}

.story-video-section .section-heading {
  margin-bottom: 22px;
}

.story-video-section h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.story-video-section .section-intro {
  font-size: 17px;
}

.donation-section {
  padding-block: 0 110px;
  background: #f8edf1;
}

.video-frame {
  overflow: hidden;
  width: min(100%, 920px);
  margin-inline: auto;
  border: 8px solid white;
  border-radius: 28px;
  background: #1e1218;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1e1218;
}

.donation-action {
  max-width: 810px;
  margin: 34px auto 0;
  text-align: center;
}

.donation-action h3 {
  margin-bottom: 20px;
  color: var(--plum-dark);
  font-size: clamp(24px, 3vw, 34px);
}

.paypal-button {
  display: inline-flex;
  width: min(100%, 580px);
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 18px;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--paypal-blue), var(--paypal-dark));
  color: white;
  cursor: not-allowed;
  box-shadow: 0 18px 38px rgba(0, 48, 135, 0.28);
  opacity: 0.92;
  text-decoration: none;
}

.paypal-button-active {
  cursor: pointer;
  opacity: 1;
}

.paypal-button-active:hover,
.paypal-button-active:focus-visible {
  background: linear-gradient(135deg, #0784d7, #003087);
  transform: translateY(-1px);
}

.paypal-name {
  border-right: 1px solid rgba(255, 255, 255, 0.46);
  padding-right: 20px;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.paypal-label {
  font-size: 19px;
  font-weight: 850;
}

.paypal-note {
  max-width: 690px;
  margin: 18px auto 0;
  color: #6b5962;
  font-size: 14px;
}

.floating-donation {
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 0;
  max-width: min(290px, calc(100vw - 24px));
  padding: 8px 0 8px 8px;
  transform: translateY(-50%);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.floating-donation-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(105%, -50%);
}

.floating-paypal {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 14px 0 0 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--paypal-blue), var(--paypal-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 48, 135, 0.28);
  cursor: not-allowed;
  opacity: 0.92;
  text-decoration: none;
}

.floating-paypal-active {
  cursor: pointer;
  opacity: 1;
}

.floating-paypal-active:hover,
.floating-paypal-active:focus-visible {
  background: linear-gradient(135deg, #0784d7, #003087);
}

.floating-paypal-name {
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  padding-right: 12px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.floating-paypal-label {
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

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

.story-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  min-height: 390px;
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--soft-shadow);
}

.story-card-light {
  border: 1px solid var(--line);
  background: #fffaf7;
}

.story-card-dark {
  background:
    radial-gradient(circle at 88% 8%, rgba(246, 177, 199, 0.15), transparent 30%),
    linear-gradient(145deg, #3a1b2e, #713950);
  color: #fff8f5;
}

.story-number {
  display: block;
  margin-bottom: 58px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 34px;
}

.story-card-dark .story-number {
  color: #f2b6c8;
}

.story-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.story-card-dark p {
  color: #f1dfe6;
}

.gallery-section {
  background: #f8edf1;
}

.gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr 1.08fr;
  align-items: center;
  gap: 14px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  background: #eadce2;
  box-shadow: var(--soft-shadow);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.gallery-item-tall img {
  height: 430px;
}

.gallery-empty {
  color: var(--muted);
  text-align: center;
}

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

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

.fact-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 32px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.fact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 25px;
}

.fact-card h3 {
  margin-bottom: 14px;
  color: var(--plum-dark);
  font-size: 21px;
}

.fact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.campaign-note {
  max-width: 850px;
  margin: 42px auto 0;
  color: #74616a;
  font-size: 14px;
  text-align: center;
}

.closing-section {
  padding-block: 94px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 223, 232, 0.18), transparent 30%),
    linear-gradient(135deg, #371929, #71384f);
  color: #fff8f5;
}

.closing-content {
  text-align: center;
}

.closing-heart {
  display: block;
  margin-bottom: 20px;
  color: #f4bdcd;
  font-size: 62px;
  line-height: 1;
}

.closing-content h2 {
  margin-bottom: 18px;
}

.closing-content p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #f2e1e7;
  font-size: 18px;
}

.closing-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 10px 24px;
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.closing-link:hover,
.closing-link:focus-visible {
  background: white;
  color: var(--plum-dark);
}

footer {
  border-top: 1px solid var(--line);
  padding-block: 28px;
  background: #fffaf7;
  color: var(--muted);
  font-size: 13px;
}

.footer-materials {
  max-width: 980px;
  margin-bottom: 24px;
  color: #6b5962;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-materials p {
  margin: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 0;
}

@media (min-width: 901px) and (max-height: 820px) {
  .story-video-section {
    padding-block: 20px 18px;
  }

  .story-video-section .section-heading {
    margin-bottom: 14px;
  }

  .story-video-section h2 {
    font-size: 44px;
  }

  .story-video-section .section-intro {
    max-width: 680px;
    font-size: 15px;
  }

  .video-frame {
    width: min(100%, 820px);
  }
}

:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .story-pair,
  .facts {
    grid-template-columns: 1fr;
  }

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

  .story-number {
    margin-bottom: 30px;
  }

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

  .gallery-item img,
  .gallery-item-tall img {
    height: 370px;
  }
}

@media (max-width: 580px) {
  .shell,
  .narrow {
    width: min(100% - 26px, 1160px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-heart {
    width: 36px;
    height: 36px;
  }

  .hero {
    gap: 36px;
    padding-block: 25px 64px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-photo {
    order: 1;
  }

  h1 {
    font-size: 55px;
  }

  .hero-lead,
  .section-intro {
    font-size: 16px;
  }

  .section,
  .story-video-section {
    padding-block: 72px;
  }

  .story-video-section {
    padding-block: 28px 20px;
  }

  .story-video-section .section-heading {
    margin-bottom: 18px;
  }

  .donation-section {
    padding-bottom: 72px;
  }

  .video-frame {
    border-width: 4px;
    border-radius: 18px;
  }

  .paypal-button {
    min-height: 70px;
    flex-direction: column;
    gap: 6px;
    padding: 13px 20px;
  }

  .paypal-name {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding: 0 24px 5px;
    font-size: 22px;
  }

  .paypal-label {
    font-size: 16px;
  }

  .floating-donation {
    top: auto;
    right: 13px;
    bottom: 12px;
    left: 13px;
    max-width: none;
    padding: 0;
    transform: none;
  }

  .floating-donation-hidden {
    transform: translateY(140%);
  }

  .floating-paypal {
    min-height: 54px;
    border-radius: 14px;
    padding: 9px 16px;
  }

  .floating-paypal-name {
    font-size: 18px;
  }

  .floating-paypal-label {
    font-size: 13px;
  }

  .story-card {
    padding: 30px;
  }

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

  .gallery-item img,
  .gallery-item-tall img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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