:root {
  --bg: #f7efe3;
  --bg-strong: #f2e2ca;
  --surface: #fcf6ef;
  --surface-deep: #f6ecdf;
  --text: #2c1f19;
  --muted: #725e52;
  --line: #e4d1bc;
  --orange: #f59e0b;
  --orange-deep: #e98008;
  --pink: #e11d48;
  --ink: #1d1a18;
  --shadow: 0 18px 40px rgba(82, 49, 27, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-offset: 126px;
}

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

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-offset) + 1.5rem);
}

body {
  margin: 0;
  padding-top: var(--header-offset);
  font-family: "Noto Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(225, 29, 72, 0.1), transparent 26%),
    var(--bg);
  line-height: 1.7;
}

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

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

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

.skip-link,
.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;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.85rem 0;
  background: rgba(247, 239, 227, 0.94);
  border-bottom: 1px solid rgba(228, 209, 188, 0.8);
  transition: transform 0.42s ease, background 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1rem));
}

.site-header.is-scrolled {
  background: rgba(247, 239, 227, 0.98);
  box-shadow: 0 12px 28px rgba(82, 49, 27, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(228, 209, 188, 0.95);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(225, 29, 72, 0.06)),
    rgba(252, 246, 239, 0.96);
  box-shadow: 0 14px 30px rgba(82, 49, 27, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  transition: transform 0.24s ease;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.2), rgba(225, 29, 72, 0.12));
  padding: 0.3rem;
  border: 1px solid rgba(225, 29, 72, 0.1);
  box-shadow: 0 10px 22px rgba(225, 29, 72, 0.14);
  animation: logoGlow 5.5s ease-in-out infinite;
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.84rem;
}

.brand:hover {
  transform: translateY(-2px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.28rem;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(245, 158, 11, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

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

.hero-section {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.48s;
}

.hero-copy > *:nth-child(7) {
  animation-delay: 0.56s;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.hero-copy h1,
.section-heading h2,
.intro-grid h2,
.mission-copy h2,
.involved-grid h2,
.donation-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  line-height: 1.22;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-slogan {
  margin: 1.15rem 0 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text);
}

.hero-journey {
  margin: 1rem 0 0;
  max-width: 55ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-deep), var(--pink));
  box-shadow: 0 16px 30px rgba(225, 29, 72, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 36px rgba(225, 29, 72, 0.24);
}

.button-secondary {
  background: transparent;
  border-color: rgba(44, 31, 25, 0.15);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(252, 246, 239, 0.8);
}

.hero-note {
  display: inline-block;
  max-width: 46ch;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--orange);
  background: rgba(252, 246, 239, 0.82);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  padding: 1rem 0 0 1rem;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s ease 0.28s forwards, softFloat 6s ease-in-out 1.3s infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 2.8rem 2.5rem;
  border-radius: 2rem 2rem 7rem 2rem;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.22), rgba(225, 29, 72, 0.14));
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem 1.8rem 5rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-photo-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s ease;
}

.hero-visual:hover .hero-photo-frame {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(82, 49, 27, 0.16);
}

.hero-visual:hover .hero-photo-frame img {
  transform: scale(1.04);
}

.hero-caption {
  position: relative;
  max-width: 280px;
  margin: -2.2rem 0 0 auto;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(44, 31, 25, 0.9);
  color: #fff;
}

.hero-caption span {
  display: block;
  margin-bottom: 0.3rem;
  color: #f7c366;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-caption p {
  margin: 0;
  font-size: 0.95rem;
}

.section-divider,
.mission-section,
.work-section,
.impact-section,
.numbers-section,
.team-section,
.updates-section,
.involved-section,
.donation-section,
.registration-section {
  padding: 4rem 0;
}

.section-divider {
  border-top: 1px solid rgba(228, 209, 188, 0.8);
}

.intro-grid,
.mission-grid,
.involved-grid,
.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.intro-grid h2,
.mission-copy h2,
.involved-grid h2,
.donation-copy h2,
.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.intro-copy,
.mission-copy p,
.section-intro,
.story-copy p,
.work-item p,
.involved-actions p,
.donation-copy p,
.site-footer p,
.contact-list,
.team-group p {
  color: var(--muted);
}

.mission-panel {
  align-self: start;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(225, 29, 72, 0.06));
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.mission-side {
  display: grid;
  gap: 1.2rem;
  align-self: start;
}

.panel-title {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--text);
}

.mission-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.mission-panel li + li {
  margin-top: 0.75rem;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote-card,
.updates-quote,
.donation-quote {
  margin: 0;
  padding: 1.2rem 1.25rem;
  border-radius: 1.35rem;
  background: rgba(252, 246, 239, 0.9);
  border: 1px solid rgba(228, 209, 188, 0.92);
  box-shadow: 0 10px 24px rgba(82, 49, 27, 0.06);
}

.quote-card p,
.updates-quote p,
.donation-quote p {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.quote-card cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.quote-card-soft {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(225, 29, 72, 0.05));
}

.section-heading {
  max-width: 720px;
}

.section-intro {
  margin-top: 1rem;
}

.work-list {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem 2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.work-item h3,
.story-copy h3,
.team-group h3,
.involved-actions h3,
.site-footer h3 {
  margin: 0;
}

.work-item-highlight h3 {
  color: var(--pink);
}

.work-item p {
  margin: 0;
}

.work-item:hover {
  transform: translateX(6px);
  border-color: rgba(225, 29, 72, 0.24);
}

.activity-plan {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(228, 209, 188, 0.9);
}

.plan-label {
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.activity-item {
  padding: 1.3rem 1.35rem;
  border-radius: 1.2rem;
  background: rgba(252, 246, 239, 0.86);
  border: 1px solid rgba(228, 209, 188, 0.92);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.activity-item h3 {
  margin: 0 0 0.7rem;
  color: var(--text);
}

.activity-item ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.activity-item li {
  margin: 0;
  color: var(--muted);
}

.activity-item li + li {
  margin-top: 0.75rem;
}

.activity-item:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.24);
  box-shadow: 0 16px 28px rgba(82, 49, 27, 0.08);
}

.impact-story {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.story-copy {
  position: static;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(228, 209, 188, 0.9);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-gallery figcaption {
  padding: 0.95rem 1rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.story-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(82, 49, 27, 0.1);
}

.numbers-section {
  background: rgba(252, 246, 239, 0.85);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.number-block {
  padding: 1.6rem 1rem 1.4rem;
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, var(--orange), var(--pink)) 1;
  background: rgba(247, 239, 227, 0.82);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.number-block strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.number-block span {
  color: var(--muted);
  font-weight: 600;
}

.number-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(82, 49, 27, 0.08);
}

.updates-box {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(225, 29, 72, 0.05));
  border: 1px solid rgba(228, 209, 188, 0.95);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.updates-box h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.updates-copy p {
  margin: 0;
  color: var(--muted);
}

.updates-copy p + p {
  margin-top: 0.85rem;
}

.updates-quote {
  margin-top: 1rem;
}

.updates-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(82, 49, 27, 0.08);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  margin-top: 2.2rem;
}

.team-group {
  padding-left: 1rem;
  border-left: 2px solid rgba(228, 209, 188, 0.95);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.team-group-wide {
  grid-column: span 2;
}

.team-group h3 {
  margin-bottom: 0.85rem;
  color: var(--text);
}

.team-group:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 72, 0.3);
}

.team-group p {
  margin: 0.35rem 0 0;
}

.involved-section {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05), rgba(225, 29, 72, 0.05));
}

.involved-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.involved-actions article {
  padding-top: 1rem;
  border-top: 2px solid rgba(44, 31, 25, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.involved-actions article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
}

.donation-grid {
  align-items: center;
}

.bank-details {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

.donation-quote {
  margin-top: 1.1rem;
}

.bank-details div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.bank-details span {
  color: var(--muted);
}

.bank-details strong {
  color: var(--text);
}

.bank-details div:hover {
  transform: translateX(5px);
  border-color: rgba(225, 29, 72, 0.22);
}

.qr-panel {
  position: relative;
  padding: 1.1rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.1), rgba(225, 29, 72, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.qr-image {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 0.45rem;
  border-radius: 1.3rem;
  background: #fff;
  box-shadow: 0 14px 28px rgba(82, 49, 27, 0.1);
}

.qr-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 58px;
  opacity: 0.88;
  pointer-events: none;
}

.qr-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(82, 49, 27, 0.1);
}

.registration-section {
  padding-top: 0;
}

.registration-box {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(252, 246, 239, 0.86);
  border: 1px solid rgba(228, 209, 188, 0.9);
}

.registration-box h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.3;
}

.registration-copy p {
  margin: 0;
  color: var(--muted);
}

.registration-copy p + p {
  margin-top: 0.9rem;
}

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

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

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #211a16;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.contact-list {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li + li {
  margin-top: 0.55rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  50% {
    transform: translateY(-6px);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(225, 29, 72, 0.14);
  }

  50% {
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible,
  .hero-copy > *,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .intro-grid,
  .mission-grid,
  .impact-story,
  .updates-box,
  .involved-grid,
  .donation-grid,
  .registration-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    position: static;
  }

  .numbers-grid,
  .involved-actions,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-group-wide {
    grid-column: auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1rem;
    background: rgba(252, 246, 239, 0.98);
    border: 1px solid rgba(228, 209, 188, 0.95);
    box-shadow: var(--shadow);
  }

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

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

  .brand-tag {
    display: none;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-photo-frame img {
    min-height: 320px;
  }

  .work-item,
  .numbers-grid,
  .activity-grid,
  .story-gallery,
  .team-grid,
  .involved-actions {
    grid-template-columns: 1fr;
  }

  .work-item {
    gap: 0.6rem;
  }

  .section-divider,
  .mission-section,
  .work-section,
  .impact-section,
  .numbers-section,
  .team-section,
  .updates-section,
  .involved-section,
  .donation-section,
  .registration-section {
    padding: 3.3rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .registration-section {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 108px;
  }
}
