:root {
  --pink: #e83e8c;
  --pink-dark: #b91f67;
  --gold: #f1c75b;
  --gold-dark: #b68719;
  --black: #111111;
  --charcoal: #1b1b1b;
  --cream: #fff8f0;
  --white: #ffffff;
  --gray: #6f6f6f;
  --light-gray: #f4f2f3;
  --border: rgba(17, 17, 17, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  border: 2px solid var(--black);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.06rem;
}

.brand-text small {
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.site-nav a:not(.btn):hover {
  color: var(--pink-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 199, 91, 0.42), transparent 27%),
    radial-gradient(circle at 15% 85%, rgba(232, 62, 140, 0.27), transparent 30%),
    linear-gradient(125deg, #120b10 0%, #311225 48%, #111 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

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

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-text {
  max-width: 700px;
  margin: 26px 0 30px;
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.btn-small {
  min-height: 42px;
  padding: 9px 17px;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  background: var(--pink-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
}

.hero-facts {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero-facts div {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.hero-facts span {
  color: rgba(255,255,255,.66);
  font-size: .82rem;
}

.hero-card {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card .crown {
  font-size: 3rem;
  color: var(--gold);
}

.hero-card p {
  color: rgba(255,255,255,.75);
}

.hero-card a {
  color: var(--gold);
  font-weight: 800;
}

.mission-strip {
  padding: 22px 0;
  background: var(--gold);
}

.mission-strip p {
  margin: 0;
  text-align: center;
}

.section {
  padding: 105px 0;
}

.split,
.contact-grid,
.grant-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.section-copy p {
  color: var(--gray);
  font-size: 1.06rem;
}

.values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.values span {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
}

.quote-card {
  padding: 44px;
  border-radius: 28px;
  background: var(--cream);
  border-left: 7px solid var(--pink);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.35;
}

.quote-card p {
  margin: 0;
  color: var(--pink-dark);
  font-weight: 700;
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.program-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 24px;
  background: #252525;
  border: 1px solid rgba(255,255,255,.1);
}

.program-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 800;
}

.program-card p {
  color: rgba(255,255,255,.68);
}

.program-card .download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

.program-card .download-link:hover {
  color: var(--white);
}

.program-card .download-link span {
  font-size: 1.1rem;
}

.grant-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.grant-badge {
  aspect-ratio: 1;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 42%, transparent 43%),
    repeating-conic-gradient(from 0deg, var(--gold) 0 12deg, var(--pink) 12deg 24deg);
  box-shadow: var(--shadow);
  border: 12px solid var(--white);
  text-align: center;
}

.grant-badge span {
  max-width: 180px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.grant-badge strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.grant-badge small {
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 800;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 14px 0;
  padding-left: 34px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  font-size: .8rem;
}

.action-panel {
  display: grid;
  gap: 2px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}

.action-panel h3 {
  margin: 0;
  padding: 26px 28px;
  color: var(--gold);
}

.action-panel a {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.action-panel a:hover {
  background: var(--cream);
  color: var(--pink-dark);
}

.donate-section {
  background: var(--pink);
}

.donate-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: var(--white);
}

.donate-box > div {
  max-width: 730px;
}

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

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

.contact-grid {
  align-items: start;
}

.contact-details {
  margin-top: 34px;
}

.contact-details a {
  color: var(--pink-dark);
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #d8d5d6;
  border-radius: 12px;
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(232,62,140,.18);
  border-color: var(--pink);
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: .84rem;
}

.site-footer {
  padding: 65px 0 24px;
  color: rgba(255,255,255,.74);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h4 {
  color: var(--gold);
  margin-top: 0;
}

.footer-grid a:not(.brand) {
  margin: 5px 0;
}

.footer-grid a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}

.legal-note {
  text-align: right;
}

.notice {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.7);
}

.notice.is-open {
  display: grid;
}

.notice-card {
  position: relative;
  width: min(520px, 100%);
  padding: 36px;
  border-radius: 24px;
  background: var(--white);
}

.notice-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .grant-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 80px 0;
  }

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

  .grant-badge {
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-text strong {
    font-size: .9rem;
  }

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

  .hero-grid {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-card {
    padding: 28px;
  }

  .hero-facts {
    gap: 22px;
  }

  .section {
    padding: 75px 0;
  }

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

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

  .donate-box,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .legal-note {
    text-align: left;
  }

  .contact-form {
    padding: 24px;
  }
}
