*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #24303d;
  background: #fbfaf7;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #5C1A2B;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #5b6773;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E0A826;
  margin-bottom: 0.5rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head p {
  margin-top: 0.5rem;
  font-size: 1.15rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section--alt {
  background: #f1ede4;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #F2C14E;
  color: #3F0917;
  box-shadow: 0 2px 8px rgba(16, 37, 57, 0.08);
}

.btn--primary:hover {
  background: #E0A826;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 37, 57, 0.12);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn--outline {
  background: transparent;
  color: #5C1A2B;
  border: 1.5px solid #742F42;
}

.btn--outline:hover {
  background: #5C1A2B;
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fbfaf7;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3ddd0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: #5C1A2B;
}

.brand__name {
  font-size: 1.05rem;
  line-height: 1.15;
}

.brand__name small {
  display: block;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: #5b6773;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-links a {
  color: #24303d;
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: #E0A826;
}

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

@media (max-width: 768px) {
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
  }
}

.hero {
  background: linear-gradient(160deg, #5C1A2B 0%, #3F0917 100%);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding-block: 6rem;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 4rem;
  }
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero__title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__quote {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid #F2C14E;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  color: #F2C14E;
  font-style: italic;
}

@media (max-width: 1024px) {
  .hero__lede {
    margin-inline: auto;
  }
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero__actions {
    justify-content: center;
  }
}

.hero__figure {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 200px;
}

.hero__figure .hero__photo {
  border-radius: 14px;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 32px rgba(16, 37, 57, 0.12);
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  background: #F2C14E;
  color: #3F0917;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16, 37, 57, 0.08);
}

@media (max-width: 1024px) {
  .hero__badge {
    right: 50%;
    transform: translateX(50%);
  }
}

.about {
  padding-block: 6rem;
}

@media (max-width: 768px) {
  .about {
    padding-block: 4rem;
  }
}

.about .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr;
  }
}

.about__column {
  display: grid;
  gap: 1.5rem;
}

.about__facts {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e3ddd0;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(16, 37, 57, 0.08);
}

.about__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.about__fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.about__fact-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1ede4;
  color: #E0A826;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.about__fact h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about__fact p {
  font-size: 0.9rem;
  margin: 0;
}

.about__body p+p {
  margin-top: 1.1rem;
}

.about__quote {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid #F2C14E;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  color: #5C1A2B;
  font-style: italic;
}

.priorities {
  padding-block: 6rem;
}

@media (max-width: 768px) {
  .priorities {
    padding-block: 4rem;
  }
}

.priorities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .priorities__grid {
    grid-template-columns: 1fr;
  }
}

.priority-card {
  background: #ffffff;
  border: 1px solid #e3ddd0;
  border-radius: 14px;
  padding: 2rem;
}

.priorities__reel {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.priorities__reel iframe {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(16, 37, 57, 0.08);
}

.priority-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f1ede4;
  color: #E0A826;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.priority-card h3 {
  margin-bottom: 0.5rem;
}

.priority-card p {
  font-size: 0.95rem;
  margin: 0;
}

.donate {
  padding-block: 6rem;
}

@media (max-width: 768px) {
  .donate {
    padding-block: 4rem;
  }
}

.donate {
  background: #5C1A2B;
  color: #ffffff;
  position: relative;
}

.donate .section-head h2 {
  color: #ffffff;
}

.donate .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.donate .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .donate .container {
    grid-template-columns: 1fr;
  }
}

.donate__text {
  margin-top: 1rem;
}

.donate__card {
  background: #ffffff;
  color: #24303d;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(16, 37, 57, 0.12);
}

.donate__account {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.donate__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid #e3ddd0;
}

.donate__row:last-child {
  border-bottom: none;
}

.donate__row dt {
  flex: none;
  font-size: 0.82rem;
  color: #5b6773;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.donate__row dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #5C1A2B;
  text-align: right;
  word-break: break-word;
}

.donate__note {
  font-size: 0.85rem;
  color: #5b6773;
  border-top: 1px dashed #e3ddd0;
  padding-top: 1rem;
}

.site-footer {
  background: #3F0917;
  color: rgba(255, 255, 255, 0.75);
  padding-block: 2rem;
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  min-width: 0;
}

.site-footer__disclaimer {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}