:root {
  --cream: #fff8ec;
  --warm: #fffdf8;
  --paper: #ffffff;
  --teal: #073f46;
  --teal-2: #0b5963;
  --navy: #102c3a;
  --sky: #c9eafa;
  --sky-2: #eaf8fd;
  --gold: #f3be3f;
  --gold-2: #ffe8a9;
  --green: #92bd9e;
  --green-2: #e8f4eb;
  --charcoal: #263033;
  --muted: #637174;
  --line: rgba(7, 63, 70, 0.13);
  --shadow: 0 26px 70px rgba(14, 55, 58, 0.15);
  --soft-shadow: 0 16px 38px rgba(14, 55, 58, 0.09);
  --radius: 30px;
  --radius-sm: 20px;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
summary,
input,
select,
textarea {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 190, 63, 0.9);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 63, 70, 0.1);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 6px;
  border: 1px solid rgba(7, 63, 70, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--teal);
  box-shadow: 0 10px 28px rgba(7, 63, 70, 0.06);
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 63, 70, 0.15);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 232, 169, 0.9), transparent 38%),
    linear-gradient(135deg, #fef4d6, #dff4fb 58%, #e8f4eb);
  box-shadow: 0 14px 28px rgba(7, 63, 70, 0.12);
}

.brand-mark svg {
  width: 35px;
  height: 35px;
}

.mark-sun,
.mark-step {
  fill: var(--gold);
}

.mark-heart {
  fill: var(--green);
}

.mark-path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
}

.brand-text {
  display: grid;
  line-height: 1.04;
}

.brand-text strong,
.brand-text span {
  white-space: nowrap;
}

.brand-text strong {
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.desktop-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  min-height: 46px;
  max-width: 46px;
  margin-left: auto;
  padding: 11px;
  display: grid;
  gap: 5px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 22px rgba(7, 63, 70, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.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;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8, 23, 27, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  width: min(84vw, 360px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px;
  background: #fffdf8;
  box-shadow: -28px 0 60px rgba(7, 63, 70, 0.24);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.close-menu {
  width: 46px;
  height: 46px;
  min-height: 46px;
  max-width: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-links {
  display: grid;
  gap: 8px;
}

.drawer-links a {
  padding: 13px 14px;
  border: 1px solid rgba(7, 63, 70, 0.08);
  border-radius: 16px;
  background: rgba(201, 234, 250, 0.28);
  color: var(--teal);
  font-weight: 900;
}

.drawer-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-bottom: env(safe-area-inset-bottom);
}

.btn,
button,
.cta-button {
  width: 100%;
  max-width: 360px;
  min-height: 54px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  gap: 8px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: white;
  box-shadow: 0 16px 34px rgba(7, 63, 70, 0.22);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold), #ffd86a);
  color: #342706;
  box-shadow: 0 16px 34px rgba(162, 104, 7, 0.2);
}

.btn-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal);
}

.btn-small {
  min-height: 44px;
  padding-inline: 16px;
}

.section-frame {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 92px 20px 66px;
  min-height: auto;
  background:
    radial-gradient(circle at 16% 12%, rgba(243, 190, 63, 0.26), transparent 31%),
    radial-gradient(circle at 88% 8%, rgba(201, 234, 250, 0.9), transparent 34%),
    linear-gradient(145deg, #fff8ec 0%, #fffdf8 48%, #e7f3ea 100%);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.72;
  animation: floaty 8s ease-in-out infinite;
}

.orbit-one {
  width: 260px;
  height: 260px;
  right: -130px;
  top: 110px;
  background: rgba(201, 234, 250, 0.62);
}

.orbit-two {
  width: 190px;
  height: 190px;
  left: -98px;
  bottom: 180px;
  background: rgba(243, 190, 63, 0.18);
  animation-delay: -2s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
}

.hero-content {
  width: 100%;
  max-width: 100%;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 63, 70, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--teal);
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 20px 0 14px;
  font-size: clamp(40px, 11vw, 64px);
  line-height: 1.05;
  word-break: normal;
  overflow-wrap: normal;
}

h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 10vw, 52px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.slogan {
  margin-bottom: 10px;
  color: #8a650b;
  font-size: 17px;
  line-height: 1.55;
  max-width: 100%;
  font-weight: 900;
}

.hero-copy,
.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 100%;
}

.hero-copy {
  color: #596b6f;
}

.hero-actions,
.cta-buttons,
.button-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 26px;
}

.hero-proof {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-proof span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(146, 189, 158, 0.2);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 430px;
}

.photo-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 232, 169, 0.96) 0 11%, transparent 12%),
    radial-gradient(circle at 78% 24%, rgba(146, 189, 158, 0.9) 0 12%, transparent 13%),
    linear-gradient(145deg, #dff5fc 0%, #fff1cc 47%, #dceee1 100%);
  box-shadow: var(--shadow);
}

.photo-card::before,
.photo-card::after {
  content: "";
  position: absolute;
  bottom: 108px;
  border-radius: 999px 999px 24px 24px;
  box-shadow: 0 18px 36px rgba(7, 63, 70, 0.14);
}

.photo-card::before {
  left: 13%;
  width: 116px;
  height: 178px;
  background: linear-gradient(180deg, #0b5963 0 42%, #f3be3f 42% 100%);
}

.photo-card::after {
  right: 12%;
  width: 126px;
  height: 190px;
  background: linear-gradient(180deg, #92bd9e 0 42%, #073f46 42% 100%);
}

.sun-disc {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: rgba(243, 190, 63, 0.74);
}

.person {
  position: absolute;
  z-index: 2;
  top: 128px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #f2c7a1;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.55);
}

.person-left {
  left: 21%;
}

.person-right {
  right: 21%;
  background: #a96f55;
}

.person span {
  position: absolute;
  inset: auto -18px -100px;
  height: 116px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.23);
}

.parcel-box {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 136px;
  width: 126px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: linear-gradient(135deg, #f3be3f, #ffe8a9);
  box-shadow: 0 18px 32px rgba(121, 83, 8, 0.19);
}

.parcel-box::before {
  content: "";
  position: absolute;
  inset: 0 47%;
  background: rgba(7, 63, 70, 0.17);
}

.kindness-line {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 100px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7, 63, 70, 0.18), transparent);
}

.photo-card p {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(7, 63, 70, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.float-card {
  position: absolute;
  z-index: 5;
  padding: 16px;
  border: 1px solid rgba(7, 63, 70, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.float-card strong,
.float-card span,
.float-card small {
  display: block;
}

.float-card strong {
  color: var(--teal);
  font-weight: 900;
}

.float-card span,
.float-card small {
  color: var(--muted);
  font-weight: 700;
}

.float-one {
  top: 18px;
  left: 14px;
  right: 14px;
}

.float-one span {
  color: #8a650b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.float-two {
  right: 14px;
  bottom: 52px;
  width: min(230px, calc(100% - 28px));
}

.float-two strong {
  font-size: 2rem;
  line-height: 1;
}

.impact-strip {
  padding: 42px 20px 56px;
  border-block: 1px solid rgba(7, 63, 70, 0.08);
  background: var(--warm);
}

.impact-intro {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.impact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 8vw, 52px);
}

.pill-row {
  display: grid;
  gap: 10px;
}

.pill-row span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--teal);
  box-shadow: 0 8px 22px rgba(7, 63, 70, 0.05);
  font-weight: 900;
}

.pill-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(243, 190, 63, 0.18);
}

.demo-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.stats-grid,
.services-grid,
.support-grid,
.cards-grid,
.donation-grid,
.story-grid,
.gallery-grid,
.reviews-grid,
.partner-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat-card,
.service-card,
.step-card,
.action-card,
.story-card,
.review-card,
.contact-card,
.details-card,
.support-grid article,
.donation-grid article,
.partner-grid span,
details {
  border: 1px solid rgba(7, 63, 70, 0.11);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--soft-shadow);
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 253, 248, 0.99)),
    radial-gradient(circle at 90% 8%, rgba(243, 190, 63, 0.2), transparent 40%);
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(201, 234, 250, 0.42);
}

.stat-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: #8a650b;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--teal);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 76px 20px;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 234, 250, 0.45), transparent 24%),
    linear-gradient(180deg, #eef8f2 0%, #fff8ec 100%);
}

.split-grid,
.support-layout,
.faq-layout,
.contact-grid {
  display: grid;
  gap: 30px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-copy {
  max-width: 650px;
}

.tick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: var(--teal);
  font-weight: 900;
}

.tick-list li::before {
  content: "";
  position: absolute;
  top: 0.47em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff4d5;
}

.about-panel {
  display: grid;
  gap: 16px;
}

.mini-photo {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 25%, #f3be3f 0 10%, transparent 11%),
    radial-gradient(circle at 66% 29%, #0b5963 0 10%, transparent 11%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.72) 0 22%, transparent 23%),
    linear-gradient(145deg, #d9f0f8, #fff0cc 50%, #dceee1);
  box-shadow: var(--shadow);
}

.about-panel blockquote {
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--teal);
  box-shadow: var(--soft-shadow);
}

.about-panel blockquote strong,
.about-panel blockquote span {
  display: block;
}

.about-panel blockquote strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.about-panel blockquote span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.service-card,
.step-card,
.action-card,
.story-card {
  padding: 24px;
}

.service-card {
  min-height: 245px;
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 234, 250, 0.4), transparent 32%),
    white;
}

.card-icon,
.story-card span {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(243, 190, 63, 0.17);
  color: #8a650b;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.step-card p,
.action-card p,
.story-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway {
  position: relative;
  display: grid;
  gap: 16px;
}

.step-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.support-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(243, 190, 63, 0.18), transparent 26%),
    linear-gradient(135deg, var(--teal), #0e616b);
  color: white;
}

.support-section h2,
.support-section p,
.support-section .eyebrow {
  color: white;
}

.support-section .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.support-grid article {
  position: relative;
  min-height: 156px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 190, 63, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fcfd);
}

.support-grid article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(146, 189, 158, 0.18);
}

.support-grid article > span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(146, 189, 158, 0.16);
}

.support-grid h3 {
  margin-bottom: 8px;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.urgent-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  font-weight: 800;
}

.action-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  background: linear-gradient(180deg, white, #fffaf0);
}

.action-card.featured {
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 190, 63, 0.34), transparent 34%),
    linear-gradient(180deg, white, #fff7df);
}

.action-card a {
  align-self: end;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 900;
}

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

.donate-panel {
  display: grid;
  gap: 22px;
  padding: 28px 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(243, 190, 63, 0.38), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(201, 234, 250, 0.26), transparent 30%),
    linear-gradient(135deg, #073f46, #0b5963 54%, #0e6b69);
  color: white;
  box-shadow: var(--shadow);
}

.donate-panel h2,
.donate-panel p,
.donate-panel .eyebrow {
  color: white;
}

.donation-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
}

.donation-grid article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(243, 190, 63, 0.18);
}

.donation-grid small,
.donation-grid strong,
.donation-grid span {
  position: relative;
  z-index: 1;
  display: block;
}

.donation-grid small {
  margin-bottom: 12px;
  color: #8a650b;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.donation-grid strong {
  color: var(--teal);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

.donation-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.story-card {
  min-height: 205px;
  background: linear-gradient(180deg, white, #fffaf0);
}

.gallery-grid {
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 235px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 70, 0.1);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95) 0 9%, transparent 10%),
    radial-gradient(circle at 70% 31%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 100%, rgba(7, 63, 70, 0.16), transparent 44%),
    linear-gradient(135deg, #c9eafa, #ffe8a9 52%, #d7ecdc);
  box-shadow: var(--soft-shadow);
}

.gallery-card:nth-child(2n) {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    radial-gradient(circle at 52% 100%, rgba(7, 63, 70, 0.14), transparent 44%),
    linear-gradient(135deg, #e3f4e7, #dff4fb 52%, #ffe4a0);
}

.gallery-card::before,
.gallery-card::after {
  content: "";
  position: absolute;
  bottom: 72px;
  width: 76px;
  height: 112px;
  border-radius: 999px 999px 18px 18px;
  background: rgba(7, 63, 70, 0.78);
}

.gallery-card::before {
  left: 18%;
}

.gallery-card::after {
  right: 16%;
  background: rgba(146, 189, 158, 0.9);
}

.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(7, 63, 70, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--teal);
  font-weight: 900;
}

.review-card {
  margin: 0;
  padding: 24px;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 800;
}

.review-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--gold), var(--gold)) 14px 12px / 6px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 24px 12px / 6px 18px no-repeat,
    rgba(243, 190, 63, 0.18);
}

.review-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.partner-grid span {
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--teal);
  text-align: center;
  font-weight: 900;
  background: linear-gradient(180deg, white, #f2fbfe);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--teal);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 234, 250, 0.44), transparent 24%),
    linear-gradient(180deg, #fff8ec, #e8f4eb);
}

.contact-card,
.details-card {
  padding: 24px 18px;
}

.contact-card p,
.details-card p,
.details-card li {
  color: var(--muted);
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--teal);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(7, 63, 70, 0.22);
  border-radius: 15px;
  background: #fffdf8;
  color: var(--charcoal);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.details-card ul {
  padding-left: 18px;
}

.site-footer {
  padding: 54px 20px 34px;
  background:
    radial-gradient(circle at 85% 0%, rgba(243, 190, 63, 0.1), transparent 30%),
    #062f35;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  gap: 28px;
}

.footer-brand,
.site-footer h3 {
  color: white;
}

.site-footer .brand-text span {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.site-footer p {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.footer-bottom {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (hover: hover) {
  .btn:hover,
  .service-card:hover,
  .action-card:hover,
  .story-card:hover,
  .review-card:hover,
  .gallery-card:hover {
    transform: translateY(-3px);
  }

  .service-card,
  .action-card,
  .story-card,
  .review-card,
  .gallery-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .service-card:hover,
  .action-card:hover,
  .story-card:hover,
  .review-card:hover,
  .gallery-card:hover {
    box-shadow: var(--shadow);
  }
}

@media (min-width: 520px) {
  .pill-row,
  .stats-grid,
  .donation-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (min-width: 769px) {
  .container {
    width: min(1160px, calc(100% - 56px));
  }

  .btn,
  button,
  .cta-button {
    width: auto;
  }

  .hero {
    padding: 118px 0 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 54px;
  }

  h1 {
    font-size: clamp(4rem, 6.2vw, 6rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.7rem, 4.8vw, 4.85rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 610px;
    font-size: 1.15rem;
  }

  .slogan {
    font-size: 1.4rem;
  }

  .photo-card {
    min-height: 560px;
  }

  .float-one {
    top: 42px;
    left: -30px;
    right: auto;
    max-width: 245px;
  }

  .float-two {
    right: -18px;
    bottom: 62px;
  }

  .impact-strip {
    padding: 38px 0 62px;
  }

  .pill-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section {
    padding: 96px 0;
  }

  .split-grid,
  .support-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 56px;
  }

  .support-layout {
    grid-template-columns: 0.95fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 0.72fr 1fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.72fr;
    align-items: start;
  }

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

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

  .pathway {
    grid-template-columns: repeat(4, 1fr);
  }

  .pathway::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(7, 63, 70, 0), rgba(7, 63, 70, 0.22), rgba(7, 63, 70, 0));
  }

  .step-card {
    position: relative;
    z-index: 1;
  }

  .donate-panel {
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    padding: 46px;
  }

  .donate-panel .demo-note {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

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

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

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

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

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

  label:nth-last-of-type(2),
  label:last-of-type,
  form button {
    grid-column: 1 / -1;
  }

  .contact-card,
  .details-card {
    padding: 32px;
  }

  .site-footer {
    padding: 58px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(4, 1fr);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-left: auto;
    color: #395054;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .desktop-nav a,
  .donate-link {
    transition: color 180ms ease;
  }

  .desktop-nav a:hover,
  .donate-link:hover {
    color: var(--teal);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
  }

  .donate-link {
    color: var(--teal-2);
  }

  .menu-toggle {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .reviews-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

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

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 1.05;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions,
  .cta-buttons,
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .btn,
  button,
  .cta-button {
    width: 100%;
    max-width: 360px;
    min-height: 54px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grid,
  .cards-grid,
  .services-grid,
  .support-grid,
  .stats-grid,
  .gallery-grid,
  .reviews-grid,
  .donation-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .container,
  section,
  .hero,
  .impact-strip,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 15px;
  }

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

  .brand-text span {
    font-size: 0.71rem;
  }

  .hero-visual {
    min-height: 408px;
  }

  .photo-card {
    min-height: 390px;
  }

  .person {
    width: 58px;
    height: 58px;
    top: 140px;
  }

  .photo-card::before {
    left: 10%;
    width: 104px;
  }

  .photo-card::after {
    right: 8%;
    width: 110px;
  }

  .parcel-box {
    width: 110px;
  }

  .mobile-menu {
    padding: 16px;
  }
}

@media (max-width: 374px) {
  .container,
  section,
  .hero,
  .impact-strip,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

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

  .brand-text span {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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