:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --blue: #102a43;
  --blue-soft: #1f4d7a;
  --green: #16a34a;
  --gold: #f6b73c;
  --ink: #172033;
  --muted: #687386;
  --line: #e7edf4;
  --paper: #fffaf5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.14);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf5;
  font-family: var(--font);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue-soft));
  font-weight: 900;
  box-shadow: var(--shadow);
  animation: pulse 1.2s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(16, 42, 67, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #314155;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff2e7;
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff2e7;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

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

.section {
  padding: 96px 0;
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 12% 15%, rgba(249, 115, 22, 0.2), transparent 34%),
    linear-gradient(135deg, #fff8ef 0%, #eef7ff 55%, #ffffff 100%);
}

.hero-backdrop {
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 55%;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.08), rgba(249, 115, 22, 0.14));
  transform: skewY(-4deg);
}

.hero-grid,
.split,
.donate-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--blue);
  line-height: 1.2;
}

.hero-copy p,
.section-heading p,
.section-copy p,
.donate-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.1);
}

.btn-wide {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.assurance-list span,
.payment-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #435066;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 150px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  color: var(--orange-dark);
  font-size: 2rem;
  line-height: 1;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.card-meals {
  top: 12%;
  left: -28px;
}

.card-school {
  right: -18px;
  bottom: 12%;
  animation-delay: -1.8s;
}

.halo {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
}

.halo-one {
  width: 180px;
  height: 180px;
  top: -28px;
  right: -28px;
  background: rgba(246, 183, 60, 0.55);
}

.halo-two {
  width: 130px;
  height: 130px;
  bottom: -22px;
  left: -22px;
  background: rgba(31, 77, 122, 0.25);
}

.about,
.stories,
.faq-contact {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.values-grid article,
.timeline-item,
.stat-card,
.story-card,
.testimonial,
.contact-card,
.form-card,
.events article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 42, 67, 0.08);
}

.values-grid article {
  padding: 18px;
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue-soft));
  font-weight: 900;
}

.values-grid h3,
.values-grid p,
.initiative-card h3,
.initiative-card p,
.story-card p,
.testimonial p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 74px;
}

.timeline-item span {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.initiative-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 42, 67, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.initiative-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.15);
}

.initiative-card img {
  height: 174px;
  object-fit: cover;
}

.initiative-card div {
  padding: 18px;
}

.initiative-card p {
  color: var(--muted);
}

.initiative-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange-dark);
  font-weight: 900;
}

.impact {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.94), rgba(31, 77, 122, 0.9)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: var(--white);
}

.impact h2,
.impact .eyebrow {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 2.35rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.transparency {
  background: #f4f8fb;
}

.dashboard {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.money-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.money-card {
  min-height: 128px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.money-card span {
  color: var(--muted);
  font-weight: 800;
}

.money-card strong {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 2rem;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 16px;
  margin-top: 16px;
}

.usage-panel,
.circle-panel,
.activity-wrap {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 900;
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.progress-item {
  margin-top: 18px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #435066;
  font-weight: 800;
}

.progress-bar {
  height: 10px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef5;
}

.progress-bar span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.circle-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

.circle-progress {
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) calc(var(--value) * 1%), #e8eef5 0);
}

.circle-progress span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
}

.activity-wrap {
  margin-top: 22px;
}

.activity-feed {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.activity-feed article {
  position: relative;
  padding: 16px;
  border-radius: var(--radius);
  background: #f8fafc;
}

.activity-feed time {
  color: var(--orange-dark);
  font-size: 0.83rem;
  font-weight: 900;
}

.activity-feed p {
  margin-bottom: 0;
  color: #435066;
  font-size: 0.92rem;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--blue);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
  opacity: 0.74;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 42, 67, 0.72);
  font-weight: 900;
}

.story-grid,
.team-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card,
.testimonial {
  padding: 24px;
}

.story-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.story-card strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
}

.person-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 42, 67, 0.08);
  text-align: center;
}

.person-card img {
  height: 260px;
  object-fit: cover;
}

.person-card h3 {
  margin: 18px 18px 4px;
}

.person-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.person-card div {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 20px;
}

.person-card a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff2e7;
  color: var(--orange-dark);
  font-weight: 900;
}

.testimonial-grid {
  margin-top: 26px;
}

.testimonial span {
  color: var(--gold);
  font-weight: 900;
}

.donate {
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.92), rgba(238, 247, 255, 0.92)),
    url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=1600&q=70") center/cover;
}

.payment-list,
.assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.qr-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 360px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.1);
}

.qr-code {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--blue) 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(var(--blue) 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(90deg, transparent 14px, var(--orange) 14px 18px, transparent 18px) 0 0 / 28px 28px,
    #f8fafc;
}

.qr-panel strong {
  display: block;
  color: var(--blue);
}

.qr-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-card {
  padding: 24px;
}

.form-card label,
.mini-form {
  display: grid;
  gap: 8px;
}

.form-card label {
  margin-top: 14px;
  color: #344055;
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #d7e0ea;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 115, 22, 0.2);
  border-color: var(--orange);
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.amount-buttons button {
  min-height: 42px;
  border: 1px solid #d7e0ea;
  border-radius: var(--radius);
  background: #fbfdff;
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.amount-buttons button.active,
.amount-buttons button:hover,
.amount-buttons button:focus-visible {
  border-color: var(--orange);
  background: #fff2e7;
  color: var(--orange-dark);
}

.volunteer-events {
  background: var(--white);
}

.events article {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
}

.events time {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.events h3,
.events p {
  margin-bottom: 0;
}

.events p {
  color: var(--muted);
}

.events a {
  color: var(--orange-dark);
  font-weight: 900;
}

.faq details {
  padding: 18px 20px;
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-card {
  padding: 24px;
}

.contact-info p {
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-info strong {
  display: block;
  color: var(--blue);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 18px 0;
  border-radius: var(--radius);
  color: #435066;
  background:
    linear-gradient(45deg, rgba(16, 42, 67, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(16, 42, 67, 0.08) 25%, transparent 25%),
    #eef4f9;
  background-size: 24px 24px;
  font-weight: 900;
}

.footer {
  padding: 56px 0 24px;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.78);
}

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

.footer .brand small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer nav a,
.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.newsletter label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 900;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter button {
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 42, 67, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  color: var(--white);
  font-weight: 900;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 1.6rem;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .initiative-grid,
  .money-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .activity-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
  }

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

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

  .hero-grid,
  .split,
  .donate-grid,
  .two-column,
  .dashboard-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .values-grid,
  .story-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .initiative-grid,
  .money-grid,
  .stats-grid,
  .activity-feed,
  .gallery-grid,
  .amount-buttons {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .events article {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
