:root {
  --bg: #f6f1e8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #1f2b24;
  --muted: #5e6d62;
  --line: rgba(26, 54, 39, 0.12);
  --brand: #0f6c4f;
  --brand-strong: #094b37;
  --accent: #e7b54a;
  --footer: #123629;
  --shadow: 0 20px 60px rgba(20, 48, 35, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 181, 74, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(15, 108, 79, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f6f1e8 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 246, 0.94);
  border-bottom: 1px solid rgba(18, 54, 41, 0.08);
  box-shadow: 0 10px 30px rgba(22, 61, 46, 0.06);
}

.announcement-bar,
.header-inner,
.hero,
.page-content,
.site-footer {
  width: 100%;
}

.announcement-bar,
.header-inner,
.hero,
.page-content .content-flow,
.site-footer .footer-grid,
.site-footer .footer-note {
  width: var(--container);
  margin: 0 auto;
}

.announcement-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(18, 54, 41, 0.06);
}

.announcement-bar a {
  color: var(--brand-strong);
  font-weight: 600;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-strong);
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: -58px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  background: rgba(15, 108, 79, 0.08);
  color: var(--brand-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 12px 30px rgba(9, 75, 55, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 32px 0 20px;
}

.hero-copy {
  width: var(--container);
  margin: 0 auto;
  padding: 44px clamp(22px, 4vw, 52px);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 244, 226, 0.92)),
    linear-gradient(120deg, rgba(15, 108, 79, 0.16), rgba(231, 181, 74, 0.18));
  border: 1px solid rgba(18, 54, 41, 0.08);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.page-content {
  padding: 24px 0 80px;
}

.content-flow {
  display: grid;
  gap: 22px;
}

.content-flow > * {
  margin: 0;
}

.content-flow > h1,
.content-flow > h2,
.content-flow > h3,
.content-flow > h4,
.content-flow > h5,
.content-flow > h6,
.content-flow > p,
.content-flow > ul,
.content-flow > ol,
.content-flow > blockquote,
.content-flow > iframe,
.content-flow > form,
.content-flow > section {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}

.content-flow > h1,
.content-flow > h2,
.content-flow > h3 {
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

.content-flow > h2 {
  margin-top: 16px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.content-flow > h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  color: var(--brand-strong);
  letter-spacing: -0.02em;
}

.content-flow > h4,
.content-flow > h5,
.content-flow > h6 {
  font-size: 0.95rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-flow p,
.content-flow li {
  color: #33453a;
}

.content-flow ul,
.content-flow ol {
  padding-left: 22px;
}

.content-flow > img,
.content-flow > figure,
.content-flow > svg,
.content-flow > iframe {
  width: 100%;
  max-width: 1180px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 54, 41, 0.08);
  background: #fff;
}

.content-flow > figure img {
  width: 100%;
  border-radius: var(--radius);
}

.content-flow > svg {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  padding: 14px;
  border-radius: 20px;
  color: var(--brand);
  background: rgba(15, 108, 79, 0.08);
  box-shadow: none;
}

.content-flow li a,
.content-flow p a {
  color: var(--brand-strong);
}

.content-flow ul li {
  margin-bottom: 10px;
}

.content-flow ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.content-flow ul li a svg,
.content-flow p a svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-flow > iframe {
  min-height: 420px;
}

.image-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.page--home .image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(18, 54, 41, 0.08);
  box-shadow: var(--shadow);
}

.action-card,
.status-card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.status-card--success {
  border-color: rgba(15, 108, 79, 0.25);
}

.status-card--warning {
  border-color: rgba(231, 181, 74, 0.4);
}

.smart-form {
  display: grid;
  gap: 14px;
}

.smart-form label,
.smart-form fieldset {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.smart-form input,
.smart-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 54, 41, 0.14);
  background: #fff;
  font: inherit;
}

.smart-form fieldset {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 54, 41, 0.14);
}

.inline-option {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.site-footer {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(231, 181, 74, 0.2), transparent 22%),
    linear-gradient(180deg, #163d2e 0%, var(--footer) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.brand--footer {
  color: #fff;
}

.footer-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.section-center {
  padding: 56px 0;
  text-align: center;
}

.section-kicker {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #151515;
}

.section-rule {
  display: inline-block;
  width: 58px;
  height: 4px;
  margin: 18px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #ff1d8e 100%);
}

.section-rule--center {
  background: linear-gradient(90deg, #ff1d8e 0%, #ff4cab 100%);
}

.section-copy {
  width: min(100%, 860px);
  margin: 0 auto 24px;
  color: #33453a;
}

.section-copy--small {
  margin-top: 14px;
}

.home-hero {
  min-height: 78vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero__overlay {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.home-hero__content {
  width: var(--container);
  margin: 0 auto;
  color: #fff;
  padding: 84px 0;
}

.home-hero__content h1 {
  max-width: 15ch;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 1.04;
}

.home-hero .eyebrow {
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.home-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  padding: 54px 0;
}

.home-intro__summary h2 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.home-intro__summary h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: #151515;
}

.home-intro__services {
  display: grid;
  gap: 22px;
}

.service-blurb h3 {
  margin: 0 0 8px;
  color: #151515;
}

.service-blurb p {
  margin: 0;
}

.home-story {
  background:
    linear-gradient(rgba(22, 22, 22, 0.76), rgba(22, 22, 22, 0.76)),
    var(--story-bg) center/cover no-repeat;
  color: #fff;
}

.home-story__overlay {
  padding: 68px 0;
}

.home-story__content {
  width: min(100%, 920px);
  margin: 0 auto;
}

.home-story__content h2 {
  margin: 0 0 20px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-story__content h3 {
  margin-bottom: 8px;
  color: #ff1d8e;
  text-transform: uppercase;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 0 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}

.feature-card {
  padding: 26px 24px;
  color: #fff;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: #fff;
}

.feature-card p {
  margin: 0;
}

.feature-card--pink {
  background: #ff1d8e;
}

.feature-card--indigo {
  background: #2d3c96;
}

.feature-card--cyan {
  background: #1eb8e8;
}

.service-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.service-pill-grid li {
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #1f2b24;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  text-align: left;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: #fff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.team-card__body {
  padding: 16px;
}

.team-card__body h3 {
  margin: 0 0 8px;
  color: #151515;
  font-size: 1.65rem;
  line-height: 1.05;
}

.team-card__name {
  margin: 0 0 8px;
  font-weight: 700;
}

.team-card__body p {
  margin: 0;
  font-size: 0.95rem;
}

.map-block {
  padding: 20px 0 48px;
}

.map-block iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 42px 0 28px;
}

.page-hero__content {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(245,250,247,0.92));
  box-shadow: var(--shadow);
}

.page-hero__content h1 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero__content p:not(.eyebrow) {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.page-hero__media img {
  width: 100%;
  min-height: 380px;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-layout,
.donate-layout,
.volunteer-layout {
  display: grid;
  gap: 26px;
  padding: 26px 0 54px;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 22px;
}

.info-panel,
.contact-form-shell,
.donate-panel,
.volunteer-form-shell,
.volunteer-copy {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18, 54, 41, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.info-panel h2,
.contact-form-shell h2,
.donate-panel h2,
.volunteer-copy h2,
.volunteer-form-shell h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
}

.info-stack {
  display: grid;
  gap: 20px;
}

.info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.info-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(182, 0, 90, 0.12), rgba(15, 108, 79, 0.12));
  color: #b6005a;
  font-weight: 800;
}

.info-label,
.bank-grid span,
.impact-card span {
  color: var(--muted);
}

.contact-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form-shell .action-card,
.volunteer-form-shell .action-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.support-ribbon {
  margin-bottom: 56px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #314b93 0%, #0f6c4f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.support-ribbon h3,
.support-ribbon p {
  margin: 0;
}

.support-ribbon__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

.support-ribbon__meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.donate-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.donate-panel--primary {
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255, 239, 246, 0.96));
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.impact-card {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(182, 0, 90, 0.12);
}

.impact-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  color: #b6005a;
}

.bank-grid {
  display: grid;
  gap: 16px;
}

.bank-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 54, 41, 0.08);
}

.bank-grid span,
.bank-grid strong {
  display: block;
}

.bank-grid strong {
  margin-top: 6px;
}

.volunteer-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.volunteer-copy img {
  width: 100%;
  margin-top: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(18, 54, 41, 0.08);
  }

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

  .header-inner {
    position: relative;
    padding: 4px 0;
    min-height: 72px;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  body.page--home .image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

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

  .home-intro,
  .story-columns,
  .feature-strip,
  .service-pill-grid,
  .team-grid,
  .page-hero,
  .contact-layout,
  .donate-layout,
  .volunteer-layout,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .support-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100% - 20px));
    --radius: 20px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand img {
    width: 150px;
    height: 150px;
    margin: -34px 0;
  }

  .hero-copy {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 0.96rem;
  }

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

  body.page--home .image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .content-flow > img,
  .content-flow > figure,
  .content-flow > iframe {
    border-radius: 18px;
  }

  .content-flow > svg {
    width: 46px;
    height: 46px;
    max-width: 46px;
    max-height: 46px;
    padding: 11px;
    border-radius: 14px;
  }

  .button,
  .site-nav a,
  .nav-cta {
    min-height: 46px;
  }

  .home-hero,
  .home-hero__overlay {
    min-height: 58vh;
  }

  .home-hero__content {
    padding: 54px 0;
  }

  .home-hero__content h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .feature-card,
  .team-card__body,
  .page-hero__content,
  .info-panel,
  .contact-form-shell,
  .donate-panel,
  .volunteer-form-shell,
  .volunteer-copy {
    padding: 18px;
  }

  .page-hero {
    padding-top: 26px;
  }

  .page-hero__media img,
  .contact-map iframe {
    min-height: 260px;
  }
}
